/* ======================================================================
   Timber Homes — design system
   Palette: warm near-black + brass gold + bone. Refined homebuilder editorial.
   Fonts: Fraunces (display serif) · Saira Condensed (labels/wordmark) · Hanken Grotesk (UI/body)
   ====================================================================== */

:root {
  --black:    #0F0E0C;
  --black-2:  #17150F;
  --black-3:  #211E16;
  --bone:     #F4EFE6;
  --paper:    #FBF8F2;
  --paper-2:  #F1EBDF;
  --ink:      #1C1A15;
  --muted:    #6F6A5C;
  --muted-d:  #A9A290;   /* muted on dark */
  --gold:     #C9A24B;
  --gold-soft:#E3C77E;
  --gold-deep:#A87C2E;

  --line-d:   rgba(244,239,230,.14);
  --line-l:   rgba(28,26,21,.12);

  --shell:    min(1240px, calc(100vw - 48px));
  --shell-narrow: min(940px, calc(100vw - 48px));
  --radius:   18px;
  --radius-lg:26px;
  --shadow:   0 30px 70px -30px rgba(15,14,12,.45);
  --shadow-gold: 0 18px 40px -16px rgba(168,124,46,.5);

  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-display: "Fraunces", Georgia, serif;
  --ff-cond:    "Saira Condensed", "Hanken Grotesk", sans-serif;
  --ff-body:    "Hanken Grotesk", system-ui, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- type scale ---------- */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.06; margin: 0; letter-spacing: -.01em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.1rem); font-weight: 600; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
p  { margin: 0 0 1rem; }
.serif-italic { font-style: italic; color: var(--gold-deep); }

.eyebrow {
  font-family: var(--ff-cond);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-weight: 600;
  font-size: .82rem;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .7em;
  margin: 0 0 1.1rem;
}
.eyebrow::before { content:""; width: 30px; height: 2px; background: var(--gold); display:inline-block; }
.eyebrow.center { justify-content:center; }
section.dark .eyebrow { color: var(--gold-soft); }

.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 56ch; }
section.dark .lede { color: var(--muted-d); }

/* ---------- layout ---------- */
.wrap { width: var(--shell); margin-inline: auto; }
.wrap.narrow { width: var(--shell-narrow); }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section.tight { padding-block: clamp(3rem,5vw,4.5rem); }
section.dark { background: var(--black); color: var(--bone); }
section.dark h1, section.dark h2, section.dark h3 { color: var(--bone); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.section-head { max-width: 760px; margin-bottom: clamp(2.2rem,4vw,3.4rem); }
.section-head.center { margin-inline:auto; }

/* grain overlay for atmosphere */
.grain::after {
  content:""; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--gold); --fg: var(--black);
  display: inline-flex; align-items: center; justify-content:center; gap: .6em;
  background: var(--bg); color: var(--fg);
  font-family: var(--ff-cond); font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; font-size: .95rem;
  padding: 1.02em 1.7em; border: 1px solid transparent; border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--bone); border-color: var(--line-d); }
.btn--ghost:hover { background: rgba(244,239,230,.06); box-shadow:none; border-color: var(--gold); }
.btn--dark { background: var(--ink); color: var(--bone); }
.btn--dark:hover { box-shadow: var(--shadow); }
.btn--outline-ink { background: transparent; color: var(--ink); border-color: var(--line-l); }
.btn--outline-ink:hover { border-color: var(--gold); box-shadow:none; }
.btn--lg { padding: 1.15em 2em; font-size: 1rem; }
.btn--block { display:flex; width:100%; }

.textlink { font-family: var(--ff-cond); text-transform: uppercase; letter-spacing:.12em; font-weight:600;
  font-size:.92rem; color: var(--gold-deep); display:inline-flex; gap:.5em; align-items:center; }
.textlink .arrow { transition: transform .3s var(--ease); }
.textlink:hover .arrow { transform: translateX(4px); }
section.dark .textlink { color: var(--gold-soft); }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.1rem clamp(1.2rem, 3vw, 2.4rem);
  background: rgba(15,14,12,0); transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(15,14,12,.86); backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding-block: .7rem; border-bottom-color: var(--line-d);
}
.brand { display: flex; align-items: center; gap: .8rem; color: var(--bone); }
.brand__mark { width: 46px; height: 46px; transition: width .4s var(--ease), height .4s var(--ease); }
.scrolled .brand__mark { width: 40px; height: 40px; }
.brand__word { display:flex; flex-direction:column; line-height:1; }
.brand__name { font-family: var(--ff-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; font-size: 1.28rem; color: var(--bone); transition: font-size .4s var(--ease); }
.brand__sub { font-family: var(--ff-cond); font-weight: 600; text-transform: uppercase;
  letter-spacing: .47em; font-size: .66rem; color: var(--gold); margin-top: .28em; padding-left:.05em; }
.scrolled .brand__name { font-size: 1.16rem; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--ff-body); font-weight: 500; font-size: .98rem; color: var(--bone);
  position: relative; padding: .3em 0; opacity:.85; transition: opacity .25s;
}
.nav__links a::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--gold); transition: width .3s var(--ease); }
.nav__links a:hover { opacity: 1; } .nav__links a:hover::after { width: 100%; }
.nav__has { position: relative; }
.nav__menu { position:absolute; top: calc(100% + 14px); left: -16px; min-width: 230px;
  background: rgba(23,21,15,.97); backdrop-filter: blur(12px); border: 1px solid var(--line-d);
  border-radius: 14px; padding: .5rem; list-style:none; margin:0; opacity:0; visibility:hidden;
  transform: translateY(8px); transition: all .3s var(--ease); box-shadow: var(--shadow); }
.nav__has:hover .nav__menu, .nav__has:focus-within .nav__menu { opacity:1; visibility:visible; transform:translateY(0); }
.nav__menu a { display:flex; flex-direction:column; padding:.7rem .85rem; border-radius:10px; opacity:1; }
.nav__menu a small { color: var(--muted-d); font-size:.8rem; }
.nav__menu a::after { display:none; }
.nav__menu a:hover { background: rgba(201,162,75,.12); }
.nav__cta { display:flex; align-items:center; gap: 1rem; }
.nav__phone { display:flex; flex-direction:column; line-height:1.1; color: var(--bone); }
.nav__phone small { font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.2em; font-size:.62rem; color: var(--muted-d); }
.nav__phone b { font-family: var(--ff-cond); font-size:1.18rem; letter-spacing:.02em; }
.nav__phone b:hover { color: var(--gold-soft); }

.burger { display:none; width:46px; height:46px; border:1px solid var(--line-d); border-radius:12px;
  background:rgba(244,239,230,.05); flex-direction:column; gap:5px; align-items:center; justify-content:center; }
.burger span { width:20px; height:2px; background: var(--bone); transition: .3s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 99; background: rgba(15,14,12,.98);
  backdrop-filter: blur(8px); display:flex; flex-direction:column; justify-content:center;
  padding: 6rem 2rem 3rem; transform: translateX(100%); transition: transform .45s var(--ease); }
.drawer.open { transform: translateX(0); }
.drawer a { font-family: var(--ff-display); font-size: 1.7rem; color: var(--bone); padding:.55rem 0;
  border-bottom: 1px solid var(--line-d); display:flex; justify-content:space-between; align-items:center; }
.drawer a .arrow { color: var(--gold); }
.drawer .drawer__sub a { font-size:1.15rem; padding-left:1rem; color: var(--muted-d); }
.drawer .btn { margin-top: 1.6rem; }
.drawer__phone { margin-top:1.3rem; font-family:var(--ff-cond); font-size:1.4rem; color:var(--gold-soft); }
body.no-scroll { overflow: hidden; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display:flex; align-items:flex-end;
  color: var(--bone); overflow:hidden; }
.hero__bg { position:absolute; inset:0; z-index:-2; }
.hero__bg img { width:100%; height:100%; object-fit: cover; transform: scale(1.06); animation: kenburns 18s ease-out forwards; }
@keyframes kenburns { to { transform: scale(1); } }
.hero::before { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(15,14,12,.55) 0%, rgba(15,14,12,.2) 40%, rgba(15,14,12,.85) 100%); }
.hero__inner { width: var(--shell); margin-inline:auto; padding: 8rem 0 clamp(3rem,6vw,5.5rem); }
.hero h1 { max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub { max-width: 50ch; font-size: clamp(1.05rem,1.6vw,1.28rem); color: rgba(244,239,230,.9); margin-top:1.2rem; }
.hero__actions { display:flex; flex-wrap:wrap; gap: 1rem; margin-top: 2rem; }
.hero__trust { display:flex; flex-wrap:wrap; gap: clamp(1.2rem,3vw,3rem); margin-top: 2.8rem; padding-top: 1.8rem; border-top: 1px solid var(--line-d); }
.hero__trust div { display:flex; flex-direction:column; }
.hero__trust b { font-family: var(--ff-cond); font-size: 1.9rem; line-height:1; color: var(--gold-soft); }
.hero__trust span { font-size:.86rem; color: var(--muted-d); margin-top:.25rem; }
.scrollcue { position:absolute; bottom: 1.6rem; left:50%; transform:translateX(-50%);
  font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.3em; font-size:.65rem; color: var(--muted-d);
  display:flex; flex-direction:column; align-items:center; gap:.6rem; }
.scrollcue::after { content:""; width:1px; height:42px; background:linear-gradient(var(--gold),transparent); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* page hero (interior pages) */
.pagehero { position:relative; padding: clamp(8rem,14vw,11rem) 0 clamp(3rem,6vw,4.5rem); color: var(--bone); background: var(--black); overflow:hidden; }
.pagehero::after { content:""; position:absolute; right:-10%; top:-30%; width:55%; height:160%; background: radial-gradient(circle, rgba(201,162,75,.16), transparent 65%); }
.pagehero .crumbs { font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.18em; font-size:.78rem; color:var(--muted-d); margin-bottom:1.1rem; }
.pagehero .crumbs a:hover { color: var(--gold-soft); }
.pagehero h1 { max-width: 18ch; } .pagehero .lede { margin-top:1.1rem; }

/* ---------- trust strip ---------- */
.logos { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: clamp(1.5rem,4vw,3.5rem); }
.logos span { font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.14em; font-weight:600; color: var(--muted); font-size:.95rem; display:flex; align-items:center; gap:.6em; }
.logos span svg { color: var(--gold); width:20px; height:20px; }

/* ---------- category cards ---------- */
.cats { display:grid; grid-template-columns: repeat(2,1fr); gap: clamp(1rem,2vw,1.6rem); }
.cat { position:relative; border-radius: var(--radius-lg); overflow:hidden; min-height: 440px; display:flex; align-items:flex-end;
  color: var(--bone); isolation:isolate; }
.cat img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; transition: transform 1s var(--ease); }
.cat::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(15,14,12,.1), rgba(15,14,12,.82)); }
.cat:hover img { transform: scale(1.07); }
.cat__body { padding: clamp(1.6rem,3vw,2.4rem); width:100%; }
.cat__body h3 { font-size: clamp(1.7rem,3vw,2.3rem); color: var(--bone); }
.cat__count { font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.18em; font-size:.78rem; color: var(--gold-soft); margin-bottom:.6rem; }
.cat__body p { color: rgba(244,239,230,.82); max-width: 40ch; margin:.4rem 0 1.1rem; }
.cat .tag { position:absolute; top:1.3rem; left:1.3rem; z-index:1; background: rgba(201,162,75,.92); color: var(--black);
  font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.12em; font-weight:600; font-size:.72rem; padding:.45em .9em; border-radius:100px; }

/* ---------- home cards ---------- */
.homes-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(330px,1fr)); gap: clamp(1.2rem,2.5vw,2rem); }
.home-card { background: #fff; border: 1px solid var(--line-l); border-radius: var(--radius-lg); overflow:hidden;
  display:flex; flex-direction:column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.home-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.home-card__media { position:relative; aspect-ratio: 4/3; overflow:hidden; }
.home-card__media img { width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.home-card:hover .home-card__media img { transform: scale(1.06); }
.home-card__price { position:absolute; bottom:.9rem; left:.9rem; background: rgba(15,14,12,.86); color: var(--bone);
  font-family:var(--ff-cond); padding:.5em .9em; border-radius:100px; font-size:1.05rem; letter-spacing:.02em; }
.home-card__price b { color: var(--gold-soft); }
.home-card__tag { position:absolute; top:.9rem; right:.9rem; background: var(--gold); color: var(--black);
  font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.1em; font-weight:600; font-size:.68rem; padding:.4em .8em; border-radius:100px; }
.home-card__body { padding: clamp(1.3rem,2vw,1.7rem); display:flex; flex-direction:column; flex:1; }
.home-card__body h3 { margin-bottom:.15rem; }
.home-card__type { font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.16em; font-size:.74rem; color: var(--gold-deep); margin-bottom:.7rem; }
.home-card__specs { display:flex; gap: 1.3rem; margin:.4rem 0 1.2rem; flex-wrap:wrap; }
.home-card__specs div { display:flex; flex-direction:column; }
.home-card__specs b { font-family:var(--ff-cond); font-size:1.25rem; line-height:1; }
.home-card__specs span { font-size:.76rem; color: var(--muted); }
.home-card .btn { margin-top:auto; }

/* ---------- spec sheet (detail page) ---------- */
.spec-row { display:grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap:1px; background: var(--line-l);
  border:1px solid var(--line-l); border-radius: var(--radius); overflow:hidden; }
.spec-row div { background: var(--paper); padding: 1.3rem 1.4rem; }
.spec-row b { display:block; font-family:var(--ff-cond); font-size: 1.9rem; line-height:1; color: var(--ink); }
.spec-row b em { font-style:normal; color: var(--gold-deep); }
.spec-row span { font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.14em; font-size:.72rem; color: var(--muted); margin-top:.4rem; display:block; }

/* ---------- included list ---------- */
.included { list-style:none; margin:0; padding:0; display:grid; grid-template-columns: repeat(2,1fr); gap: .8rem 2rem; }
.included li { display:flex; gap:.8rem; align-items:flex-start; padding:.7rem 0; border-bottom:1px solid var(--line-l); font-weight:500; }
section.dark .included li { border-color: var(--line-d); }
.included svg { flex:none; width:22px; height:22px; color: var(--gold); margin-top:2px; }

/* ---------- stats band ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,3vw,2.5rem); text-align:center; }
.stats div { position:relative; }
.stats div+div::before { content:""; position:absolute; left: calc(-1 * clamp(.5rem,1.5vw,1.25rem)); top:10%; bottom:10%; width:1px; background: var(--line-d); }
.stats b { font-family:var(--ff-display); font-size: clamp(2.4rem,4.5vw,3.6rem); color: var(--gold-soft); display:block; line-height:1; }
.stats span { font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.16em; font-size:.78rem; color: var(--muted-d); margin-top:.7rem; display:block; }

/* ---------- editorial showcase ---------- */
.showcase { display:grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1rem,2vw,1.5rem); align-items:stretch; }
.showcase__main, .showcase__side { display:grid; gap: clamp(1rem,2vw,1.5rem); }
.showcase figure { margin:0; border-radius: var(--radius); overflow:hidden; position:relative; }
.showcase figure img { width:100%; height:100%; object-fit:cover; transition: transform .9s var(--ease); }
.showcase figure:hover img { transform: scale(1.05); }
.showcase .tall { aspect-ratio: 4/5; }
.showcase .wide { aspect-ratio: 16/10; }
.showcase figcaption { position:absolute; left:1rem; bottom:1rem; background: rgba(15,14,12,.8); color:var(--bone);
  font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.12em; font-size:.7rem; padding:.4em .8em; border-radius:100px; }

/* ---------- split feature ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items:center; }
.split.flip .split__media { order:2; }
.split__media { border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 5/4; }
.split__media img { width:100%; height:100%; object-fit:cover; }

/* ---------- process steps ---------- */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,2.5vw,2rem); counter-reset: step; }
.step { padding-top: 1.6rem; border-top: 2px solid var(--line-d); }
.step::before { counter-increment: step; content: "0" counter(step); font-family:var(--ff-display); font-size: 2rem; color: var(--gold); display:block; margin-bottom:.6rem; }
.step h3 { font-size: 1.3rem; margin-bottom:.4rem; }
.step p { color: var(--muted-d); font-size:.97rem; margin:0; }
section:not(.dark) .step { border-color: var(--line-l); }
section:not(.dark) .step p { color: var(--muted); }

/* ---------- gallery + lightbox ---------- */
.gallery { columns: 3; column-gap: clamp(.8rem,1.5vw,1.1rem); }
.gallery button { display:block; width:100%; margin:0 0 clamp(.8rem,1.5vw,1.1rem); padding:0; border:0; background:none; border-radius: 14px; overflow:hidden; }
.gallery img { width:100%; transition: transform .7s var(--ease), filter .4s; border-radius:14px; }
.gallery button:hover img { transform: scale(1.04); filter: brightness(1.05); }
.lightbox { position:fixed; inset:0; z-index:200; background: rgba(11,10,8,.95); display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity .35s; padding: 4vw; }
.lightbox.open { opacity:1; visibility:visible; }
.lightbox img { max-width:92vw; max-height:86vh; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox__close, .lightbox__nav { position:absolute; background: rgba(244,239,230,.1); border:1px solid var(--line-d); color: var(--bone);
  width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; transition: background .25s; }
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__nav { top:50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 3vw; } .lightbox__nav.next { right: 3vw; }
.lightbox button:hover { background: var(--gold); color: var(--black); }

/* ---------- lead form ---------- */
.lead { display:grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items:start; }
.lead__copy h2 { margin-bottom: 1rem; }
.lead__points { list-style:none; margin: 1.6rem 0 0; padding:0; display:grid; gap:1rem; }
.lead__points li { display:flex; gap:.9rem; align-items:flex-start; color: var(--muted-d); }
.lead__points svg { flex:none; width:24px; height:24px; color: var(--gold); }
.lead__points b { color: var(--bone); display:block; }
.form-card { background: var(--paper); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.5rem,3vw,2.4rem); box-shadow: var(--shadow); }
.form-card h3 { margin-bottom:.4rem; }
.form-card > p { color: var(--muted); margin-bottom: 1.4rem; }
/* GHL embed slot — replace .ghl-slot contents with the GoHighLevel iframe */
.ghl-slot { min-height: 520px; border: 1.5px dashed var(--line-l); border-radius: var(--radius);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:.6rem; padding: 2rem; color: var(--muted); }
.ghl-slot iframe { width:100%; border:0; border-radius: var(--radius); }
.ghl-slot .pill { font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.16em; font-size:.7rem; color: var(--gold-deep); border:1px solid var(--line-l); border-radius:100px; padding:.4em .9em; }

/* fallback native form styling (used until GHL embed dropped in) */
.field { display:flex; flex-direction:column; gap:.4rem; margin-bottom: 1rem; }
.field label { font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.1em; font-size:.74rem; color: var(--muted); }
.field input, .field select, .field textarea { font:inherit; padding:.85em 1em; border:1px solid var(--line-l); border-radius: 12px; background:#fff; color: var(--ink); transition: border-color .25s, box-shadow .25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }

/* ---------- CTA band ---------- */
.cta-band { position:relative; overflow:hidden; }
.cta-band::after { content:""; position:absolute; left:-5%; bottom:-60%; width:45%; height:160%; background: radial-gradient(circle, rgba(201,162,75,.18), transparent 65%); }
.cta-band .wrap { position:relative; z-index:1; text-align:center; }
.cta-band h2 { max-width: 18ch; margin-inline:auto; }
.cta-band .hero__actions { justify-content:center; }

/* ---------- footer ---------- */
.footer { background: var(--black-2); color: var(--muted-d); padding: clamp(3.5rem,6vw,5rem) 0 2rem; border-top: 1px solid var(--line-d); }
.footer__grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(1.5rem,3vw,2.5rem); }
.footer__brand .brand { margin-bottom: 1.1rem; }
.footer__brand p { max-width: 34ch; font-size:.96rem; }
.footer h4 { font-family:var(--ff-cond); text-transform:uppercase; letter-spacing:.16em; font-size:.8rem; color: var(--bone); font-weight:600; margin-bottom: 1.1rem; }
.footer ul { list-style:none; margin:0; padding:0; display:grid; gap:.7rem; }
.footer ul a { font-size:.96rem; transition: color .25s; }
.footer ul a:hover { color: var(--gold-soft); }
.footer__contact a { color: var(--bone); }
.footer__bottom { display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:center;
  margin-top: clamp(2.5rem,5vw,3.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line-d); font-size:.84rem; }
.footer__bottom a:hover { color: var(--gold-soft); }
.disclaimer { font-size:.78rem; color: var(--muted); margin-top:1rem; max-width: 70ch; line-height:1.5; }

/* ---------- reveal animation ---------- */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform: none; }
.reveal[data-delay="1"]{ transition-delay:.08s } .reveal[data-delay="2"]{ transition-delay:.16s }
.reveal[data-delay="3"]{ transition-delay:.24s } .reveal[data-delay="4"]{ transition-delay:.32s }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; } .hero__bg img { animation:none; transform:none; } }

/* hero staggered load */
.hero .anim { opacity:0; transform: translateY(20px); animation: rise .9s var(--ease) forwards; }
.hero .anim.d1{ animation-delay:.15s } .hero .anim.d2{ animation-delay:.3s } .hero .anim.d3{ animation-delay:.45s } .hero .anim.d4{ animation-delay:.6s } .hero .anim.d5{ animation-delay:.75s }
@keyframes rise { to { opacity:1; transform:none; } }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .nav__links, .nav__phone small { display:none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .lead { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 2.5rem 1rem; }
  .stats div:nth-child(3)::before, .stats div:nth-child(odd)::before { display:none; }
  .steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .burger { display:flex; }
  .nav__cta .btn, .nav__phone { display:none; }
  .cats { grid-template-columns: 1fr; }
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip .split__media { order:0; }
  .showcase { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .stats, .steps { grid-template-columns: 1fr; }
  .stats div::before { display:none !important; }
  .gallery { columns: 1; }
  .hero__trust b { font-size:1.6rem; }
}
