:root {
  --wood: #8a5227;
  --wood-dark: #351f12;
  --wood-soft: #b9844e;
  --palm: #214f3d;
  --palm-dark: #123126;
  --sand: #f2d8a7;
  --sand-soft: #fff3dc;
  --cream: #fffaf1;
  --white: #ffffff;
  --ink: #22150d;
  --muted: #6f5b49;
  --line: rgba(53, 31, 18, .12);
  --shadow: 0 24px 70px rgba(53, 31, 18, .16);
  --radius: 30px;
  --radius-sm: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--wood-dark);
  border-radius: 12px;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 250, 241, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(var(--max-width), calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--sand);
  background: linear-gradient(135deg, var(--wood), var(--palm));
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(53, 31, 18, .22);
}

.brand-name {
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  letter-spacing: -.03em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 800;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--ink);
  background: rgba(138, 82, 39, .12);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  cursor: pointer;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(53, 31, 18, .12);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--wood-dark);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 216, 167, .36), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(185, 132, 78, .28), transparent 28%),
    linear-gradient(135deg, var(--palm-dark), var(--palm) 45%, var(--wood-dark));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero::before {
  width: 560px;
  height: 560px;
  right: -210px;
  top: -170px;
  background: rgba(242, 216, 167, .16);
}

.hero::after {
  width: 340px;
  height: 340px;
  left: -130px;
  bottom: -120px;
  background: rgba(138, 82, 39, .34);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(35deg, transparent 31%, rgba(255, 255, 255, .22) 32%, transparent 33%),
    linear-gradient(145deg, transparent 31%, rgba(255, 255, 255, .12) 32%, transparent 33%);
  background-size: 48px 48px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900;
}

.eyebrow.dark {
  color: var(--wood);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  line-height: .94;
  letter-spacing: -.075em;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--palm);
  box-shadow: 0 18px 42px rgba(18, 49, 38, .24);
}

.hero .button-primary {
  color: var(--wood-dark);
  background: var(--sand);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
}

.button-muted {
  color: var(--palm);
  background: #e2eedb;
}

.hero-panel {
  padding: 34px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.panel-line {
  width: 92px;
  height: 6px;
  margin-bottom: 24px;
  background: var(--sand);
  border-radius: 999px;
}

.hero-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.hero-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, .84);
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 12px;
  height: 12px;
  background: var(--sand);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(242, 216, 167, .14);
}

.phone-panel {
  margin-top: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, .12);
  border-radius: 22px;
}

.phone-panel span,
.contact-number span {
  display: block;
  color: rgba(255, 255, 255, .72);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .84rem;
  font-weight: 900;
}

.phone-panel strong,
.contact-number strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
}

.intro,
.coverage,
.contact {
  background: var(--white);
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
  align-items: start;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.15rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.section-title p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
}

.section-title.center {
  max-width: 840px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-title.center p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.text-card,
.contact-card {
  padding: 34px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.text-card p:first-child,
.contact-card p:first-child {
  margin-top: 0;
}

.text-card p:last-child {
  margin-bottom: 0;
}

.services {
  background:
    radial-gradient(circle at 20% 8%, rgba(242, 216, 167, .55), transparent 28%),
    linear-gradient(180deg, var(--white), var(--cream));
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(53, 31, 18, .08);
}

.number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--palm);
  background: #e2eedb;
  border-radius: 18px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.materials {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--palm-dark), var(--palm), var(--wood-dark));
}

.materials::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    radial-gradient(circle at 28% 18%, rgba(242, 216, 167, .55), transparent 26%),
    linear-gradient(35deg, transparent 31%, rgba(255, 255, 255, .12) 32%, transparent 33%);
  background-size: auto, 50px 50px;
}

.materials .container {
  position: relative;
  z-index: 1;
}

.section-title.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
}

.material-list {
  display: grid;
  gap: 14px;
}

.material-item {
  padding: 23px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.material-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .68);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .82rem;
  font-weight: 900;
}

.material-item strong {
  display: block;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.2;
}

.coverage-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(242, 216, 167, .58), rgba(226, 238, 219, .78)),
    var(--sand-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coverage-box h2 {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.coverage-box p {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
}

.gallery-section {
  background: var(--cream);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  margin: 0;
  min-height: 280px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(53, 31, 18, .1);
}

.gallery-button {
  width: 100%;
  min-height: 280px;
  height: 100%;
  padding: 12px;
  border: 0;
  cursor: zoom-in;
  background: var(--white);
}

.gallery-button img {
  width: 100%;
  height: 256px;
  object-fit: contain;
  background: var(--white);
  border-radius: 18px;
  transition: transform .25s ease;
}

.gallery-button:hover img,
.gallery-button:focus-visible img {
  transform: scale(1.025);
}

.contact {
  background:
    radial-gradient(circle at 82% 0%, rgba(242, 216, 167, .62), transparent 30%),
    var(--white);
}

.contact-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.contact-card p {
  color: var(--muted);
}

.contact-number {
  margin-top: 24px;
  padding: 22px;
  background: #e2eedb;
  border-radius: 22px;
}

.contact-number span,
.contact-number strong {
  color: var(--palm);
}

.copy-message {
  min-height: 1.4em;
  margin: 14px 0 0;
  font-weight: 800;
}

.summary-card {
  min-height: 100%;
  padding: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--palm), var(--wood-dark));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.summary-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.summary-card p,
.summary-card li {
  color: rgba(255, 255, 255, .82);
}

.summary-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, .84);
  background: var(--wood-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr auto;
  gap: 22px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--sand);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 10, 5, .88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  color: var(--white);
  background: var(--palm);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(18, 49, 38, .35);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--max-width));
  }

  .section {
    padding: 66px 0;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .menu {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255, 250, 241, .98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 13px 14px;
  }

  .brand-name {
    max-width: 220px;
    line-height: 1.06;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-panel,
  .text-card,
  .contact-card,
  .summary-card,
  .coverage-box {
    padding: 26px;
    border-radius: 24px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cards-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .coverage-box {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-card,
  .gallery-button {
    min-height: 238px;
  }

  .gallery-button img {
    height: 216px;
  }

  .floating-call {
    left: 18px;
    right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
