:root {
  --green: #173a2b;
  --green-2: #214b38;
  --cream: #ddd4cc;
  --paper: #e7e0da;
  --ink: #16221b;
  --muted: #687168;
  --line: rgba(19, 42, 31, .14);
  --white-line: rgba(255,255,255,.2);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display:block; width:100%; height:100%; object-fit:cover; }
button, input, textarea { font: inherit; }

.site-header { position: fixed; z-index: 50; top: 18px; left: 50%; transform: translateX(-50%); width: min(calc(100% - 36px), var(--max)); display:flex; align-items:center; justify-content:space-between; gap:24px; padding: 11px 13px 11px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(16, 36, 27, .78); color:white; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 10px 40px rgba(0,0,0,.12); }
.brand { font-weight:800; letter-spacing:.08em; font-size:.9rem; }
.site-nav { display:flex; align-items:center; gap:22px; font-size:.84rem; }
.site-nav > a { opacity:.86; }
.site-nav > a:hover { opacity:1; }
.nav-cta { padding:10px 14px; background:#fff; color:var(--green); border-radius:999px; opacity:1 !important; font-weight:700; }
.menu-toggle { display:none; border:0; background:none; padding:8px; color:#fff; }
.menu-toggle span { display:block; width:22px; height:1px; background:currentColor; margin:5px 0; }

.section-shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  padding: 190px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 44%, rgba(45, 91, 66, .28), transparent 31%),
    linear-gradient(118deg, #0d2b1f 0%, #123425 56%, #0b251a 100%);
  color: #f2eadf;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(170px, .28fr) minmax(360px, .9fr);
  gap: 28px;
  align-items: center;
}
.hero.section-shell {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max))/2));
  padding-right: max(24px, calc((100vw - var(--max))/2));
}
.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 18px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #a9d3b2;
}
.eyebrow.dark { color: #466b55; }
.hero-kicker {
  max-width: 360px;
  margin-bottom: 32px;
  color: #c99b59;
  line-height: 1.7;
}
.hero h1, h2 { letter-spacing: -.045em; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 6.1vw, 6.7rem);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.055em;
  color: #eee4d6;
}
.hero-rule {
  width: 105px;
  height: 1px;
  margin-top: 34px;
  background: #b9894d;
}
.hero-text {
  max-width: 610px;
  margin: 30px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
  color: rgba(245, 239, 230, .78);
}
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border: 0;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 750;
  cursor: pointer;
}
.button-light {
  background: #eee4d6;
  color: #123425;
}
.text-link { font-weight: 700; font-size: .92rem; }
.hero-blueprint {
  position: absolute;
  z-index: 1;
  top: 108px;
  right: max(-40px, calc((100vw - var(--max))/2 - 120px));
  width: min(58vw, 850px);
  height: calc(100% - 130px);
  opacity: .72;
  pointer-events: none;
}
.hero-blueprint::before {
  content: "";
  position: absolute;
  inset: 8% 0 10% 4%;
  background:
    linear-gradient(rgba(196,157,96,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,157,96,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent, black 14%, black 88%, transparent);
}
.hero-blueprint img {
  position: absolute;
  inset: 9% 0 0 0;
  width: 100%;
  height: 88%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.16));
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,36,25,.98) 0%, rgba(10,36,25,.92) 33%, rgba(10,36,25,.45) 55%, rgba(10,36,25,.04) 78%);
  pointer-events: none;
}
.hero-process {
  position: relative;
  z-index: 3;
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding-left: 28px;
  border-left: 1px solid rgba(201,155,89,.65);
  color: #c99b59;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 700;
}
.hero-process span {
  position: relative;
}
.hero-process span::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid #c99b59;
  border-radius: 50%;
  background: #103224;
  transform: translateY(-50%);
}
.hero-scroll {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(242,234,223,.8);
  font-size: 1.35rem;
}

.section { padding: 120px 0; }
.light { background:var(--paper); }
.cream { background:var(--cream); }
.dark-section, .consultation { background:var(--green); color:#fff; }
.section-intro { max-width:780px; margin-bottom:60px; }
.section-intro h2, .two-column h2, .experience h2, .consultation h2 { margin:0; font-size:clamp(2.4rem,4.8vw,5.2rem); line-height:.98; font-weight:650; }
.section-intro > p:last-child { max-width:590px; margin:22px 0 0; line-height:1.65; color:var(--muted); }
.dark-section .section-intro > p:last-child { color:rgba(255,255,255,.62); }
.section-intro.split { display:grid; grid-template-columns:1.1fr .8fr; max-width:none; gap:80px; align-items:end; }

.feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.feature-card { min-height:280px; padding:26px; border:1px solid var(--line); border-radius:var(--radius); display:flex; flex-direction:column; background:#e4dcd5; }
.feature-card span { color:#66806f; font-size:.75rem; font-weight:800; }
.feature-card h3 { margin:auto 0 14px; font-size:1.45rem; letter-spacing:-.03em; }
.feature-card p { margin:0; color:var(--muted); line-height:1.55; font-size:.95rem; }
.feature-card.wide { grid-column: span 2; background:var(--green); color:#fff; }
.feature-card.wide p { color:rgba(255,255,255,.65); }
.feature-card.wide span { color:#9ac5a5; }

.process-list { border-top:1px solid var(--white-line); }
.process-step { display:grid; grid-template-columns:120px 1fr; gap:30px; padding:34px 0; border-bottom:1px solid var(--white-line); }
.process-step span { color:#9ac5a5; font-size:.82rem; font-weight:800; }
.process-step div { display:grid; grid-template-columns:.9fr 1fr; gap:50px; }
.process-step h3 { margin:0; font-size:clamp(1.45rem,2.5vw,2.3rem); letter-spacing:-.035em; }
.process-step p { margin:0; color:rgba(255,255,255,.65); line-height:1.6; }

.media-section { height:min(72vw,760px); min-height:420px; overflow:hidden; }
.two-column { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:start; }
.large-copy { margin:0 0 34px; font-size:clamp(1.15rem,2vw,1.55rem); line-height:1.5; }
.check-list { list-style:none; padding:0; margin:0; border-top:1px solid var(--line); }
.check-list li { padding:18px 0; border-bottom:1px solid var(--line); }
.check-list li::before { content:"↳"; margin-right:12px; color:#5b8268; }

.gallery { display:grid; grid-template-columns:1.2fr .8fr; grid-template-rows:330px 330px; gap:16px; }
.gallery figure { margin:0; border-radius:20px; overflow:hidden; }
.gallery-main { grid-row:1 / 3; }

.experience { display:grid; grid-template-columns:1.18fr .82fr; min-height:720px; background:#132f23; color:#fff; }
.experience-image { min-height:520px; }
.experience-copy { padding: clamp(48px,7vw,110px); display:flex; flex-direction:column; justify-content:center; }
.experience-copy p:last-child { color:rgba(255,255,255,.66); line-height:1.65; max-width:520px; margin-top:28px; }

.faq-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:90px; }
.faq-list details { border-top:1px solid var(--line); padding:0; }
.faq-list details:last-child { border-bottom:1px solid var(--line); }
.faq-list summary { cursor:pointer; list-style:none; padding:24px 34px 24px 0; font-size:1.18rem; font-weight:700; position:relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:0; top:20px; font-size:1.5rem; font-weight:400; }
.faq-list details[open] summary::after { content:"−"; }
.faq-list details p { margin:0; padding:0 36px 26px 0; color:var(--muted); line-height:1.65; }

.consultation-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; align-items:start; }
.consultation-grid > div > p:last-child { color:rgba(255,255,255,.66); line-height:1.65; max-width:520px; }
.consultation-form { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.consultation-form label { display:flex; flex-direction:column; gap:9px; font-size:.8rem; font-weight:700; color:rgba(255,255,255,.75); }
.consultation-form label span { font-weight:400; opacity:.7; }
.consultation-form input, .consultation-form textarea { width:100%; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.06); color:#fff; border-radius:14px; padding:14px 15px; outline:none; }
.consultation-form input:focus, .consultation-form textarea:focus { border-color:rgba(255,255,255,.55); background:rgba(255,255,255,.09); }
.consultation-form textarea { resize:vertical; }
.full { grid-column:1 / -1; }
.form-note { margin:0; color:rgba(255,255,255,.5); line-height:1.5; font-size:.76rem; }
.form-note code { color:rgba(255,255,255,.8); }

.footer { background:#0e241a; color:rgba(255,255,255,.7); border-top:1px solid rgba(255,255,255,.1); }
.footer-inner { min-height:130px; display:grid; grid-template-columns:auto 1fr auto auto; align-items:center; gap:28px; font-size:.82rem; }
.footer .brand { color:#fff; }

.reveal { opacity:0; transform:translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; transition:none; }
}

@media (max-width: 980px) {
  .site-header { top:12px; }
  .menu-toggle { display:block; }
  .site-nav { display:none; position:absolute; top:58px; left:0; right:0; flex-direction:column; align-items:stretch; gap:0; padding:12px; background:rgba(16,36,27,.97); border:1px solid rgba(255,255,255,.15); border-radius:22px; box-shadow:0 20px 50px rgba(0,0,0,.24); }
  .site-nav.open { display:flex; }
  .site-nav > a { padding:13px 10px; }
  .nav-cta { margin-top:7px; text-align:center; }
  .hero { grid-template-columns:1fr; min-height:780px; padding-top:150px; }
  .hero-meta { align-items:flex-start; text-align:left; gap:18px; }
  .section { padding:90px 0; }
  .section-intro.split, .two-column, .faq-layout, .consultation-grid { grid-template-columns:1fr; gap:46px; }
  .feature-grid { grid-template-columns:1fr 1fr; }
  .feature-card.wide { grid-column:span 2; }
  .gallery { grid-template-columns:1fr 1fr; grid-template-rows:460px 300px; }
  .gallery-main { grid-column:1 / -1; grid-row:auto; }
  .experience { grid-template-columns:1fr; }
  .experience-image { min-height:520px; }
  .footer-inner { grid-template-columns:1fr 1fr; padding:32px 0; }
}

@media (max-width: 640px) {
  .section-shell { width:min(calc(100% - 32px), var(--max)); }
  .hero.section-shell { padding-left:16px; padding-right:16px; }
  .hero { min-height:720px; padding-top:135px; padding-bottom:46px; }
  .hero h1 { font-size:clamp(3rem,14vw,4.7rem); }
  .hero-text { margin-top:24px; }
  .hero-actions { align-items:stretch; flex-direction:column; gap:14px; }
  .button, .text-link { width:100%; text-align:center; }
  .feature-grid { grid-template-columns:1fr; }
  .feature-card, .feature-card.wide { grid-column:auto; min-height:235px; }
  .process-step { grid-template-columns:48px 1fr; gap:16px; }
  .process-step div { grid-template-columns:1fr; gap:12px; }
  .media-section { height:480px; }
  .gallery { grid-template-columns:1fr; grid-template-rows:390px 250px 250px; }
  .gallery-main { grid-column:auto; }
  .experience-image { min-height:430px; }
  .experience-copy { padding:64px 22px; }
  .consultation-form { grid-template-columns:1fr; }
  .consultation-form label, .full { grid-column:1; }
  .footer-inner { grid-template-columns:1fr; gap:12px; align-items:start; }
}

/* Warm, forest-inspired craftsmanship layer */
:root {
  --wood: #7a5a3a;
  --wood-dark: #493421;
  --wood-soft: #b99a73;
  --forest-black: #102219;
  --warm-paper: #ddd3cb;
}

.craft-section {
  background:
    linear-gradient(rgba(228,214,194,.96), rgba(228,214,194,.96)),
    repeating-linear-gradient(90deg, rgba(73,52,33,.05) 0 1px, transparent 1px 36px);
  border-top: 1px solid rgba(73,52,33,.12);
}
.eyebrow.warm { color: var(--wood); }
.craft-heading { display:grid; grid-template-columns:1.15fr .65fr; gap:90px; align-items:end; margin-bottom:54px; }
.craft-heading h2, .story-copy h2 { margin:0; font-size:clamp(2.5rem,4.8vw,5.25rem); line-height:.98; font-weight:650; letter-spacing:-.045em; }
.craft-heading > p { margin:0; color:#655f55; line-height:1.7; max-width:520px; }
.prototype-grid { display:grid; grid-template-columns:1.18fr .82fr; grid-template-rows:420px 290px; gap:16px; }
.prototype-grid figure { margin:0; position:relative; overflow:hidden; border-radius:22px; background:#d7cec6; }
.prototype-main { grid-row:1 / 3; }
.prototype-grid img { transition:transform .7s ease; }
.prototype-grid figure:hover img { transform:scale(1.015); }
.prototype-sketch img { object-fit:contain; padding:18px; background:#ddd4cc; }
.prototype-grid figcaption { position:absolute; left:14px; right:14px; bottom:14px; display:flex; justify-content:space-between; gap:20px; padding:11px 14px; border-radius:999px; background:rgba(16,34,25,.82); color:#fff; font-size:.76rem; backdrop-filter:blur(12px); }
.prototype-grid figcaption span { color:#d5bea0; font-weight:800; }

.story-section { padding:130px 0; color:#fff; background:
  radial-gradient(circle at 88% 18%, rgba(185,154,115,.18), transparent 27%),
  linear-gradient(120deg, #102219, #183729 65%, #203c2f);
  border-top:1px solid rgba(255,255,255,.08);
}
.story-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:90px; align-items:center; }
.story-copy { max-width:610px; }
.story-copy .story-lead { margin-top:32px; color:#fff; font-size:1.25rem; line-height:1.55; }
.story-copy > p:not(.eyebrow):not(.story-lead) { color:rgba(255,255,255,.68); line-height:1.72; }
.founders { margin-top:36px; padding-top:24px; border-top:1px solid rgba(185,154,115,.35); display:flex; flex-direction:column; gap:5px; }
.founders strong { font-size:1rem; }
.founders span { color:#c8b69e; font-size:.82rem; }
.story-image { margin:0; min-height:650px; position:relative; overflow:hidden; border-radius:26px 26px 8px 26px; border:1px solid rgba(255,255,255,.12); }
.story-image img { position:absolute; inset:0; }
.story-image::after { content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(9,21,15,.58), transparent 35%); pointer-events:none; }
.story-image figcaption { position:absolute; z-index:1; left:24px; bottom:22px; color:rgba(255,255,255,.82); font-size:.78rem; letter-spacing:.03em; }

@media (max-width:980px) {
  .craft-heading, .story-grid { grid-template-columns:1fr; gap:42px; }
  .prototype-grid { grid-template-columns:1fr 1fr; grid-template-rows:500px 280px; }
  .prototype-main { grid-column:1 / -1; grid-row:auto; }
  .story-image { min-height:540px; }
}
@media (max-width:640px) {
  .craft-heading { margin-bottom:34px; }
  .prototype-grid { grid-template-columns:1fr; grid-template-rows:470px 470px 250px; }
  .prototype-main { grid-column:auto; }
  .prototype-grid figcaption { border-radius:16px; }
  .story-section { padding:88px 0; }
  .story-image { min-height:480px; border-radius:22px; }
}

/* V3 warmer natural palette */
.light { background: linear-gradient(180deg, #e7e0da 0%, #ddd4cc 100%); }
.cream { background: #d9d0c8; }
.feature-card { box-shadow: inset 0 1px 0 rgba(255,255,255,.35); }
.section-intro .eyebrow, .eyebrow { letter-spacing:.14em; }
.craft-section { box-shadow: inset 0 10px 40px rgba(91,65,40,.035); }
.faq-list details { border-color: rgba(91,65,40,.18); }


/* V5 minimal blueprint hero */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 820px;
    padding-top: 150px;
    align-items: end;
  }
  .hero-copy { max-width: 690px; }
  .hero-process {
    display: none;
  }
  .hero-blueprint {
    top: 122px;
    right: -12%;
    width: 78vw;
    height: 72%;
    opacity: .42;
  }
  .hero::after {
    background: linear-gradient(90deg, rgba(10,36,25,.98) 0%, rgba(10,36,25,.88) 48%, rgba(10,36,25,.2) 100%);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
    padding-top: 138px;
    padding-bottom: 72px;
  }
  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.7rem);
    line-height: .98;
  }
  .hero-kicker {
    max-width: 300px;
    margin-bottom: 24px;
    font-size: .67rem;
  }
  .hero-text { margin-top: 24px; max-width: 92%; }
  .hero-actions { margin-top: 28px; }
  .hero-actions .button {
    width: auto;
    min-width: 230px;
  }
  .hero-blueprint {
    top: 155px;
    right: -34%;
    width: 112vw;
    height: 58%;
    opacity: .25;
  }
  .hero::after {
    background: linear-gradient(90deg, rgba(10,36,25,.99) 0%, rgba(10,36,25,.9) 62%, rgba(10,36,25,.38) 100%);
  }
  .hero-scroll { bottom: 18px; }
}


/* V6 — larger unified blueprint hero */
.hero-blueprint {
  top: 72px;
  right: max(-105px, calc((100vw - var(--max))/2 - 185px));
  width: min(69vw, 1080px);
  height: calc(100% - 82px);
  opacity: .78;
}
.hero-blueprint::before {
  inset: 3% 0 5% 0;
  background-size: 58px 58px;
}
.hero-blueprint img {
  inset: 1% -1% 0 0;
  width: 101%;
  height: 99%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.13);
  transform-origin: center bottom;
}
.hero::after {
  background: linear-gradient(
    90deg,
    rgba(10,36,25,.99) 0%,
    rgba(10,36,25,.96) 29%,
    rgba(10,36,25,.58) 48%,
    rgba(10,36,25,.10) 70%,
    rgba(10,36,25,0) 100%
  );
}

@media (max-width: 980px) {
  .hero-blueprint {
    top: 106px;
    right: -21%;
    width: 96vw;
    height: 76%;
    opacity: .48;
  }
  .hero-blueprint img {
    transform: scale(1.18);
  }
}

@media (max-width: 640px) {
  .hero-blueprint {
    top: 155px;
    right: -48%;
    width: 142vw;
    height: 63%;
    opacity: .28;
  }
  .hero-blueprint img {
    transform: scale(1.2);
  }
}


/* V7 — exact single-blueprint hero inspired by approved reference */
.hero {
  min-height: 880px;
  padding-top: 155px;
  padding-bottom: 72px;
  grid-template-columns: minmax(0, 0.92fr) minmax(150px, 0.22fr) minmax(520px, 1.2fr);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(4.2rem, 5.45vw, 6.45rem);
  line-height: 0.98;
  max-width: 650px;
}

.hero-kicker {
  display: none;
}

.hero-text {
  max-width: 520px;
  font-size: 1.08rem;
  line-height: 1.65;
  margin-top: 28px;
}

.hero-rule {
  margin-top: 28px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-process {
  justify-self: end;
  margin-right: 8px;
  gap: 48px;
}

.hero-blueprint {
  top: 88px !important;
  right: max(36px, calc((100vw - var(--max))/2 - 20px)) !important;
  width: min(58vw, 910px) !important;
  height: calc(100% - 120px) !important;
  opacity: .92 !important;
  overflow: hidden;
}

/* Hide the left half of the source sketch so only the clean right-hand system remains. */
.hero-blueprint img {
  position: absolute !important;
  top: 2% !important;
  left: -102% !important;
  width: 205% !important;
  height: 98% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  transform: none !important;
  filter: none !important;
}

.hero-blueprint::before {
  inset: 1% 0 0 0 !important;
  background:
    linear-gradient(rgba(196,157,96,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,157,96,.07) 1px, transparent 1px) !important;
  background-size: 52px 52px !important;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 94%, transparent 100%);
}

.hero::after {
  background: linear-gradient(
    90deg,
    rgba(10,36,25,.995) 0%,
    rgba(10,36,25,.97) 27%,
    rgba(10,36,25,.70) 41%,
    rgba(10,36,25,.14) 58%,
    rgba(10,36,25,0) 76%
  ) !important;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 820px;
    padding-top: 145px;
    align-items: end;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-process {
    display: none;
  }

  .hero-blueprint {
    top: 105px !important;
    right: -5% !important;
    width: 69vw !important;
    height: 70% !important;
    opacity: .52 !important;
  }

  .hero-blueprint img {
    left: -103% !important;
    width: 206% !important;
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(10,36,25,.995) 0%,
      rgba(10,36,25,.95) 46%,
      rgba(10,36,25,.30) 74%,
      rgba(10,36,25,.05) 100%
    ) !important;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
    padding-top: 130px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 13.5vw, 4.65rem);
  }

  .hero-blueprint {
    top: 182px !important;
    right: -29% !important;
    width: 108vw !important;
    height: 52% !important;
    opacity: .24 !important;
  }

  .hero-blueprint img {
    left: -104% !important;
    width: 208% !important;
  }

  .hero-text {
    max-width: 92%;
  }
}


/* V8 — use the exact polished blueprint artwork from the approved generated reference */
.hero-blueprint {
  top: 84px !important;
  right: max(18px, calc((100vw - var(--max))/2 - 70px)) !important;
  width: min(61vw, 990px) !important;
  height: calc(100% - 105px) !important;
  opacity: 1 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}

.hero-blueprint::before {
  display: none !important;
}

.hero-blueprint img {
  position: absolute !important;
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;

  /* Feather the artwork into the hero so it feels like one background rather than a pasted image. */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,.18) 5%,
    #000 15%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,.18) 5%,
    #000 15%,
    #000 100%
  );
}

.hero::after {
  background: linear-gradient(
    90deg,
    rgba(10,36,25,.995) 0%,
    rgba(10,36,25,.97) 27%,
    rgba(10,36,25,.72) 40%,
    rgba(10,36,25,.14) 54%,
    rgba(10,36,25,0) 68%
  ) !important;
}

@media (max-width: 1100px) {
  .hero-blueprint {
    top: 100px !important;
    right: -11% !important;
    width: 78vw !important;
    height: 72% !important;
    opacity: .58 !important;
  }
}

@media (max-width: 640px) {
  .hero-blueprint {
    top: 180px !important;
    right: -46% !important;
    width: 138vw !important;
    height: 54% !important;
    opacity: .27 !important;
  }
}


/* V9 — polished single blueprint, smooth unified green background */
.hero {
  min-height: 790px !important;
  padding-top: 142px !important;
  padding-bottom: 68px !important;
  grid-template-columns: minmax(0, 0.88fr) minmax(125px, 0.18fr) minmax(500px, 1.12fr) !important;
  gap: 28px !important;
  background:
    radial-gradient(circle at 70% 47%, rgba(29, 78, 54, .20), transparent 34%),
    #0d2b1f !important;
}

.hero-copy {
  max-width: 590px !important;
}

.hero h1 {
  max-width: 590px !important;
  font-size: clamp(4rem, 5.15vw, 6rem) !important;
  line-height: .99 !important;
}

.hero-text {
  max-width: 505px !important;
}

.hero-process {
  justify-self: center !important;
  margin-right: 0 !important;
  gap: 44px !important;
}

/* One transparent blueprint image only. */
.hero-blueprint {
  top: 130px !important;
  right: max(48px, calc((100vw - var(--max))/2 + 10px)) !important;
  width: min(53vw, 825px) !important;
  height: 590px !important;
  opacity: .96 !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.hero-blueprint::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 4% -3% 2% -2% !important;
  background:
    linear-gradient(rgba(188,143,65,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188,143,65,.055) 1px, transparent 1px) !important;
  background-size: 52px 52px !important;
  mask-image: linear-gradient(to right, transparent 0%, black 13%, black 91%, transparent 100%) !important;
  pointer-events: none !important;
}

.hero-blueprint img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  max-width: none !important;
  transform: none !important;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.12)) !important;
  opacity: 1 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* Smooth continuous green: no image-backed rectangle or second green block. */
.hero::after {
  background: linear-gradient(
    90deg,
    rgba(13,43,31,.99) 0%,
    rgba(13,43,31,.97) 27%,
    rgba(13,43,31,.56) 40%,
    rgba(13,43,31,.08) 53%,
    rgba(13,43,31,0) 64%
  ) !important;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 790px !important;
    grid-template-columns: 1fr !important;
  }

  .hero-blueprint {
    top: 150px !important;
    right: -8% !important;
    width: 68vw !important;
    height: 560px !important;
    opacity: .43 !important;
  }

  .hero-process {
    display: none !important;
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(13,43,31,.995) 0%,
      rgba(13,43,31,.93) 47%,
      rgba(13,43,31,.25) 75%,
      rgba(13,43,31,0) 100%
    ) !important;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 735px !important;
    padding-top: 125px !important;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 13.2vw, 4.45rem) !important;
  }

  .hero-blueprint {
    top: 210px !important;
    right: -36% !important;
    width: 112vw !important;
    height: 470px !important;
    opacity: .20 !important;
  }
}


/* V10 — clean reference-matched hero */
.hero {
  min-height: 900px !important;
  padding-top: 155px !important;
  padding-bottom: 80px !important;
  grid-template-columns: minmax(0, .86fr) minmax(120px, .16fr) minmax(520px, 1.08fr) !important;
  gap: 24px !important;
  background:
    radial-gradient(circle at 72% 48%, rgba(35, 92, 63, .22) 0%, rgba(13, 43, 31, 0) 34%),
    #0d2b1f !important;
}

.hero-copy {
  max-width: 600px !important;
}

.hero h1 {
  max-width: 600px !important;
  font-size: clamp(4.05rem, 5.25vw, 6.15rem) !important;
  line-height: .99 !important;
}

.hero-text {
  max-width: 500px !important;
  font-size: 1.07rem !important;
}

.hero-process {
  justify-self: center !important;
  align-self: center !important;
  margin: 0 !important;
  gap: 48px !important;
}

/* One clean blueprint, centered on the right. */
.hero-blueprint {
  top: 155px !important;
  right: max(44px, calc((100vw - var(--max))/2 + 4px)) !important;
  width: min(52vw, 800px) !important;
  height: 650px !important;
  opacity: 1 !important;
  overflow: visible !important;
  background: transparent !important;
}

/* subtle restrained glow behind the system */
.hero-blueprint::after {
  content: "" !important;
  position: absolute !important;
  inset: 14% 7% 8% 7% !important;
  border-radius: 50% !important;
  background: radial-gradient(
    ellipse at center,
    rgba(53, 113, 78, .22) 0%,
    rgba(28, 82, 55, .11) 38%,
    rgba(13, 43, 31, 0) 72%
  ) !important;
  filter: blur(20px) !important;
  pointer-events: none !important;
}

.hero-blueprint::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 4% 1% 1% 1% !important;
  background:
    linear-gradient(rgba(188,143,65,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188,143,65,.04) 1px, transparent 1px) !important;
  background-size: 54px 54px !important;
  mask-image: linear-gradient(to right, transparent 0%, black 14%, black 92%, transparent 100%) !important;
  pointer-events: none !important;
}

.hero-blueprint img {
  position: relative !important;
  z-index: 2 !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.hero::after {
  background: linear-gradient(
    90deg,
    rgba(13,43,31,.995) 0%,
    rgba(13,43,31,.97) 27%,
    rgba(13,43,31,.60) 40%,
    rgba(13,43,31,.10) 53%,
    rgba(13,43,31,0) 65%
  ) !important;
}

/* No scroll arrow in this version. */
.hero-scroll {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 820px !important;
    grid-template-columns: 1fr !important;
  }

  .hero-process {
    display: none !important;
  }

  .hero-blueprint {
    top: 165px !important;
    right: -10% !important;
    width: 72vw !important;
    height: 575px !important;
    opacity: .40 !important;
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(13,43,31,.995) 0%,
      rgba(13,43,31,.94) 48%,
      rgba(13,43,31,.25) 76%,
      rgba(13,43,31,0) 100%
    ) !important;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px !important;
    padding-top: 126px !important;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 13.2vw, 4.45rem) !important;
  }

  .hero-blueprint {
    top: 220px !important;
    right: -40% !important;
    width: 120vw !important;
    height: 465px !important;
    opacity: .18 !important;
  }
}


/* V11 — final color cleanup */
.hero h1,
.hero-text {
  color: #f1eadc !important;
}

.hero-process,
.hero-process span,
.hero-process strong,
.hero-process div {
  color: #e2d8c4 !important;
}

.hero-process::before,
.hero-process::after {
  border-color: rgba(226,216,196,.72) !important;
  background-color: rgba(226,216,196,.72) !important;
}

/* Keep the blueprint clean cream/beige rather than gold. */
.hero-blueprint img {
  filter: none !important;
}

/* Remove any glow: clean, flat, minimal blueprint presentation. */
.hero-blueprint::after {
  display: none !important;
}

/* Keep construction grid extremely restrained in the same beige family. */
.hero-blueprint::before {
  background:
    linear-gradient(rgba(226,216,196,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,216,196,.025) 1px, transparent 1px) !important;
}


/* V12 — final blueprint framing fix */
.hero-blueprint {
  top: 138px !important;
  right: max(18px, calc((100vw - var(--max))/2 - 8px)) !important;
  width: min(50vw, 780px) !important;
  height: 630px !important;
  overflow: visible !important;
}

.hero-blueprint img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: scale(.94) !important;
  transform-origin: center center !important;
}

@media (max-width: 1100px) {
  .hero-blueprint {
    right: -6% !important;
    width: 68vw !important;
    height: 550px !important;
  }

  .hero-blueprint img {
    transform: scale(.93) !important;
  }
}

@media (max-width: 640px) {
  .hero-blueprint {
    right: -34% !important;
    width: 112vw !important;
    height: 450px !important;
  }

  .hero-blueprint img {
    transform: scale(.9) !important;
  }
}


/* V13 — full blueprint visible, including complete lower-left base */
.hero-blueprint {
  top: 136px !important;
  right: max(12px, calc((100vw - var(--max))/2 - 14px)) !important;
  width: min(52vw, 805px) !important;
  height: 640px !important;
  overflow: visible !important;
}

.hero-blueprint img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: scale(.92) !important;
  transform-origin: center center !important;
}
