:root {
  --ink: #171714;
  --muted: #64645b;
  --paper: #fbfaf6;
  --paper-strong: #ffffff;
  --line: #ded9cc;
  --forest: #315741;
  --forest-dark: #173225;
  --wood: #b56f34;
  --gold: #d7a44c;
  --shadow: 0 18px 60px rgba(24, 24, 20, .14);
  --radius: 8px;
  --font-display: "Montserrat", Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: #fff;
  background: transparent;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}
.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}
.nav a { opacity: .86; }
.nav a:hover { opacity: 1; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone,
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  white-space: nowrap;
}
.header-phone svg {
  width: 17px;
  height: 17px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 7px;
}
.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(215,164,76,.22);
}
.social-links svg {
  width: 19px;
  height: 19px;
}
.header-cta {
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #171714;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 14, 12, .86), rgba(14, 14, 12, .52) 43%, rgba(14, 14, 12, .22)),
    linear-gradient(0deg, rgba(14, 14, 12, .65), rgba(14, 14, 12, .08) 50%);
}
.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 48px;
}
.hero-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-kicker span {
  width: 42px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark { color: var(--wood); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: min(760px, 100%);
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
.hero-subtitle {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2.2vw, 25px);
  color: rgba(255,255,255,.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 46px;
}
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #171714;
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(215, 164, 76, .26);
}
.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}
.btn-dark {
  color: #fff;
  background: var(--forest-dark);
}
.btn-full { width: 100%; border: 0; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 12px;
  margin: 0;
}
.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.hero-stats dt {
  font-size: 34px;
  font-weight: 900;
}
.hero-stats dd {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.lead-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 2 * clamp(18px, 4vw, 56px)));
  margin: 28px auto 0;
  padding: 22px clamp(18px, 4vw, 40px);
  border-radius: 16px;
  background: var(--gold);
  color: var(--ink);
}
.lead-strip div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.section {
  padding: clamp(66px, 8vw, 112px) clamp(18px, 4vw, 56px);
}
.section-head {
  width: min(820px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}
h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}
.section-head p:not(.eyebrow), .media-copy p, .proof-copy p { color: var(--muted); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.value-card,
.step,
.lead-form,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 8px 24px rgba(24,24,20,.04);
}
.value-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}
.value-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(181,111,52,.18);
  border-radius: 18px;
  transform: rotate(20deg);
}
.icon-badge,
.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 12px;
  transform: rotate(45deg);
  color: var(--forest-dark);
  background: #f1dfbd;
}
.icon-badge svg,
.service-icon svg {
  width: 21px;
  height: 21px;
  transform: rotate(-45deg);
}
.value-card p, .service-card p, .step p, .faq p { color: var(--muted); margin-bottom: 0; }

.section-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.media-band {
  background: #f0ede4;
}
.media-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.media-copy {
  position: sticky;
  top: 110px;
}
.service-grid {
  display: grid;
  gap: 16px;
}
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 70px rgba(24, 24, 20, .17);
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.project-card {
  position: relative;
  margin: 0;
  padding: 0;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #ddd;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  appearance: none;
  box-shadow: 0 12px 36px rgba(24,24,20,.12);
}
.project-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .6s ease;
}
.project-card:hover img { transform: scale(1.04); }
.project-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  padding: 14px;
  border-radius: 6px;
  color: #fff;
  background: rgba(18,18,16,.72);
  backdrop-filter: blur(12px);
}
.project-caption span { color: rgba(255,255,255,.76); font-size: 14px; }
.gallery-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border-radius: 999px;
  color: #171714;
  background: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.gallery-pill svg {
  width: 16px;
  height: 16px;
}

.proof {
  background: var(--forest-dark);
  color: #fff;
}
.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.proof-image img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
}
.proof-copy .eyebrow { color: var(--gold); }
.proof-copy h2 { color: #fff; }
.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,.82);
}
.check-list li svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 44px auto 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 44px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--wood) 0 10px, transparent 10px 20px);
  opacity: .55;
}
.step {
  position: relative;
  padding: 28px 22px 26px;
  overflow: hidden;
}
.step:nth-child(even) {
  transform: translateY(30px);
}
.step:nth-child(odd)::before {
  content: "";
  position: absolute;
  inset: auto 0 -6px 0;
  height: 6px;
  background: var(--gold);
}
.step:nth-child(even)::before {
  content: "";
  position: absolute;
  inset: -6px 0 auto 0;
  height: 6px;
  background: var(--forest);
}
.step-index {
  position: absolute;
  right: 12px;
  top: -14px;
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(49, 87, 65, .14);
  pointer-events: none;
}
.step-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 12px;
  transform: rotate(45deg);
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--wood));
  box-shadow: 0 10px 20px rgba(181, 111, 52, .28);
}
.step-icon svg {
  width: 19px;
  height: 19px;
  transform: rotate(-45deg);
}
.step h3,
.step p {
  position: relative;
}

.testimonials {
  background:
    radial-gradient(circle at 12% 12%, rgba(215,164,76,.18), transparent 32%),
    linear-gradient(180deg, #fbfaf6, #efebe0);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.testimonial-card.accent {
  color: #fff;
  background: var(--forest-dark);
  border-color: rgba(255,255,255,.12);
}
.testimonial-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.testimonial-card p {
  color: var(--muted);
  margin: 22px 26px 20px;
}
.testimonial-card.accent p {
  color: rgba(255,255,255,.76);
}
.testimonial-card span {
  margin-top: auto;
  padding: 0 26px 26px;
  color: var(--wood);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.4;
}
.testimonial-card.accent span { color: var(--gold); }

.lead-section {
  color: #fff;
  background:
    linear-gradient(rgba(23,23,20,.88), rgba(23,23,20,.9)),
    url("../img/process-assembly.jpg") center / cover;
}
.lead-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.lead-copy h2 { color: #fff; }
.lead-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.mini-gallery img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 32px);
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 14px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(215,164,76,.28);
  border-color: var(--gold);
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.form-note.is-success { color: var(--forest); font-weight: 800; }
.form-note.is-error { color: #9a3412; font-weight: 800; }

.contacts {
  background: linear-gradient(180deg, #fbfaf6, #ede8dc);
}
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
}
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 24px rgba(24,24,20,.05);
}
.contact-card svg {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--forest-dark);
}
.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.contact-card strong {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.25;
}
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.contact-socials a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--forest-dark);
  font-weight: 900;
}
.contact-socials svg {
  width: 18px;
  height: 18px;
}
.map-panel {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ddd;
}
.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: saturate(.9) contrast(1.04);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}
.faq details p {
  padding: 0 22px 22px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--ink);
}
.footer div {
  display: grid;
  gap: 2px;
}
.footer span { color: rgba(255,255,255,.64); }
.footer a { color: var(--gold); font-weight: 800; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer .social-links a {
  border-color: rgba(255,255,255,.2);
}
.mobile-sticky-cta { display: none; }

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #fff;
  background: rgba(9, 9, 8, .92);
}
.lightbox.is-open { display: flex; }
.lightbox-figure {
  width: min(1080px, calc(100vw - 120px));
  margin: 0;
}
.lightbox-figure img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #111;
}
.lightbox-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
}
.lightbox-figure span { color: rgba(255,255,255,.68); }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.lightbox-close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  font-size: 32px;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 42px;
  transform: translateY(-50%);
}
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav,
  .header-cta { display: none; }
  .header-actions {
    margin-left: auto;
  }
  .media-layout,
  .proof-layout,
  .lead-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .media-copy { position: static; }
  .value-grid,
  .timeline,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::before { display: none; }
  .step:nth-child(even) { transform: none; }
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 16px;
  }
  .brand-logo { height: 36px; }
  .header-phone {
    font-size: 13px;
    height: 42px;
    padding: 0 10px;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
  }
  .header-phone svg {
    width: 19px;
    height: 19px;
  }
  .site-header .social-links {
    display: none;
  }
  .hero { min-height: 86svh; }
  .hero-inner { width: min(100% - 32px, 1180px); padding-bottom: 32px; }
  h1 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.1;
  }
  .hero-subtitle { font-size: 17px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .hero-stats div { padding: 12px 9px; }
  .hero-stats dt { font-size: 25px; }
  .hero-stats dd { font-size: 12px; }
  .lead-strip {
    align-items: stretch;
    flex-direction: column;
  }
  .section { padding: 58px 16px; }
  .value-grid,
  .timeline,
  .project-grid,
  .form-row,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    grid-template-columns: 1fr;
  }
  .project-grid {
    grid-auto-rows: auto;
  }
  .project-card {
    aspect-ratio: auto;
    min-height: 300px;
  }
  .mini-gallery img { height: 120px; }
  .map-panel,
  .map-panel iframe {
    min-height: 340px;
  }
  .lightbox {
    padding: 14px;
  }
  .lightbox-figure {
    width: 100%;
  }
  .lightbox-figure img {
    max-height: 72svh;
  }
  .lightbox-nav {
    top: auto;
    bottom: 22px;
    width: 48px;
    height: 48px;
  }
  .lightbox-nav.prev { left: 18px; }
  .lightbox-nav.next { right: 18px; }
  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 86px;
  }
  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 60;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: #171714;
    background: var(--gold);
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
