/* ================================================================
   Surface Evolution Golf Greens
   Premium Editorial Style — Cormorant Garamond + DM Sans
   Palette: Forest green · Ivory · Warm gold
================================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Greens */
  --g950: #030b06;
  --g900: #071410;
  --g800: #0e2218;
  --g700: #163020;
  --g600: #1d3f2a;
  --g500: #245034;
  --g400: #2e6b46;
  --g300: #3e8e5e;
  --g100: #c8e8d0;

  /* Neutrals */
  --ink:    #111111;
  --ink2:   #333333;
  --ink3:   #555555;
  --border: #e2ded6;
  --cloud:  #f5f2ec;
  --cream:  #faf8f3;
  --white:  #ffffff;

  /* Gold */
  --gold:      #c2973e;
  --gold-lt:   #d9b96a;
  --gold-dk:   #8e6b18;
  --gold-pale: #faf1dc;

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h: 72px;
  --mw:    1160px;
  --px:    clamp(1.25rem, 5vw, 2.5rem);
  --py:    clamp(5rem, 9vw, 8rem);

  /* Radii */
  --r2: 4px;
  --r4: 8px;
  --r6: 14px;
  --r8: 22px;

  /* Shadows */
  --sh-sm: 0 2px 10px rgba(0,0,0,.07);
  --sh-md: 0 6px 26px rgba(0,0,0,.12);
  --sh-lg: 0 16px 54px rgba(0,0,0,.19);
  --sh-xl: 0 28px 80px rgba(0,0,0,.26);
  --sh-gold: 0 4px 22px rgba(194,151,62,.44);

  --ease: .22s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;scroll-padding-top:calc(var(--nav-h) + 12px);-webkit-text-size-adjust:100%}
body{font-family:var(--sans);line-height:1.7;color:var(--ink);background:var(--white);-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,select,textarea,button{font-family:inherit;font-size:inherit}
fieldset{border:none}

/* ── Layout helpers ─────────────────────────────────────────── */
.container{width:100%;max-width:var(--mw);margin-inline:auto;padding-inline:var(--px)}
.section{padding-block:var(--py)}
.section--light  {background:var(--cloud)}
.section--white  {background:var(--white)}
.section--cream  {background:var(--cream)}
.section--dark   {background:var(--g900)}

:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:3px}

/* ── Type helpers ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(194,151,62,.3);
  background: var(--gold-pale);
  padding: .3rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1.1rem;
}
.tag--gold{color:var(--gold-lt);background:rgba(194,151,62,.12);border-color:rgba(194,151,62,.28)}

.h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 1.1rem;
}
.h2--light{color:var(--white)}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--ink3);
  line-height: 1.8;
  max-width: 620px;
  margin-inline: auto;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-cta-center{text-align:center;margin-top:clamp(2.5rem,4vw,4rem)}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary,.btn-outline,.btn-green{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.6rem;font-weight:700;letter-spacing:.03em;
  border-radius:var(--r2);cursor:pointer;white-space:nowrap;
  text-decoration:none;transition:all var(--ease);
  padding:.9rem 1.9rem;font-size:.9375rem;line-height:1;
  position:relative;overflow:hidden;
}
.btn-xl{padding:1.1rem 2.4rem;font-size:1rem}

/* Gold primary */
.btn-primary{
  background:var(--gold);
  color:#0a1c0e;
  box-shadow:var(--sh-gold);
  font-family:var(--sans);
}
.btn-primary::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.18) 0%,transparent 55%);
  pointer-events:none;
}
.btn-primary:hover{
  background:var(--gold-lt);
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(194,151,62,.58);
}
.btn-primary:active{transform:translateY(0)}

/* Ghost / outline */
.btn-outline{
  background:transparent;color:var(--white);
  border:2px solid rgba(255,255,255,.55);
}
.btn-outline:hover{background:rgba(255,255,255,.12);border-color:var(--white);transform:translateY(-2px)}

/* Green */
.btn-green{
  background:var(--g500);color:var(--white);
  box-shadow:0 4px 20px rgba(36,80,52,.38);
}
.btn-green:hover{background:var(--g400);transform:translateY(-2px);box-shadow:0 8px 30px rgba(36,80,52,.5)}

/* ── Reveal ─────────────────────────────────────────────────── */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.15s}
.reveal-delay-2{transition-delay:.3s}

/* ================================================================
   STICKY MOBILE BAR
================================================================ */
.sticky-bar{
  position:fixed;
  bottom:0 !important;
  top:auto !important;
  left:0;right:0;
  z-index:500;
  display:flex;align-items:center;gap:.5rem;
  padding:.75rem var(--px) calc(.75rem + env(safe-area-inset-bottom));
  background:var(--g950);
  border-top:2px solid var(--gold);
  box-shadow:0 -6px 30px rgba(0,0,0,.5);
  transform:translateY(100%);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
}
.sticky-bar.is-visible{transform:translateY(0)}

.sticky-cta{
  flex:1;display:flex;align-items:center;justify-content:center;gap:.5rem;
  background:var(--gold);color:#0a1c0e;
  font-weight:700;font-size:.9375rem;
  padding:.8rem;border-radius:var(--r2);
  box-shadow:var(--sh-gold);transition:all var(--ease);
}
.sticky-phone{
  display:flex;align-items:center;gap:.4rem;
  color:rgba(255,255,255,.75);font-size:.875rem;font-weight:600;
  padding:.8rem 1rem;border:1.5px solid rgba(255,255,255,.2);
  border-radius:var(--r2);transition:all var(--ease);
}
.sticky-phone:hover{color:var(--white);border-color:rgba(255,255,255,.5)}

@media(min-width:860px){.sticky-bar{display:none!important}}

/* ================================================================
   HEADER / NAV  — all inline on the element, CSS just handles
   nav-links, hamburger, and drawer
================================================================ */

/* The <header> itself uses inline styles — nothing here to override it */

/* Desktop links — hidden on mobile, shown on desktop */
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: #d9b96a; background: rgba(255,255,255,0.06); }

.nav-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: 7px 14px;
  white-space: nowrap;
  transition: color .2s;
}
.nav-tel i { color: #d9b96a; }
.nav-tel:hover { color: #d9b96a; }

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #071410;
  background: #c2973e;
  padding: 10px 22px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(194,151,62,.45);
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: #d9b96a; transform: translateY(-1px); }

@media (min-width: 860px) { .nav-links { display: flex; } }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 860px) { .nav-toggle { display: none; } }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: #071410;
  border-bottom: 3px solid #c2973e;
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}
.nav-drawer.is-open { transform: translateY(0); }
.drawer-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.drawer-link:hover { color: #d9b96a; }
.drawer-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #d9b96a;
  padding: 16px 0;
  transition: color .2s;
}
.drawer-tel:hover { color: #ffffff; }
.drawer-cta{
  margin-top:.6rem;display:block;text-align:center;
  background:var(--gold);color:#0a1c0e;
  font-weight:700;font-size:1rem;
  padding:.95rem;border-radius:var(--r2);
  box-shadow:var(--sh-gold);transition:all var(--ease);
}
.drawer-cta:hover{background:var(--gold-lt)}

/* ================================================================
   HERO
================================================================ */
.hero{
  position:relative;
  min-height:100svh;min-height:100vh;
  display:flex;align-items:center;
  padding-top:72px;
  overflow:hidden;
  background:var(--g950);
}
.hero-media{position:absolute;inset:0;z-index:0}
.hero-photo{
  width:100%;height:100%;object-fit:cover;
  object-position:60% center;
  transform:scale(1.04);
  transition:transform 14s ease;
}
.hero:hover .hero-photo{transform:scale(1)}

/* Gradient: rich dark on left, lighter on right for photo breathing room */
.hero-grad{
  position:absolute;inset:0;
  background:
    linear-gradient(100deg,
      rgba(3,11,6,.98) 0%,
      rgba(7,20,16,.92) 35%,
      rgba(7,20,16,.72) 58%,
      rgba(7,20,16,.38) 78%,
      transparent 100%),
    linear-gradient(to bottom, transparent 50%, rgba(3,11,6,.7) 100%);
}

.hero-body{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:1fr;
  gap:3rem;
  padding-block:clamp(4rem,10vw,8rem);
  align-items:center;
}

/* Location tag */
.hero-label{
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold-lt);
  border:1px solid rgba(194,151,62,.28);
  background:rgba(194,151,62,.08);
  padding:.38rem 1rem;border-radius:2rem;
  margin-bottom:1.6rem;
}
.hero-label-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 8px rgba(194,151,62,.8);
  animation:pulse 2s ease infinite;
}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}

/* Headline — editorial style, large serif */
.hero-h1{
  font-family:var(--serif);
  font-size:clamp(3.5rem, 10vw, 7rem);
  font-weight:600;
  line-height:1.0;
  color:var(--white);
  letter-spacing:-.02em;
  margin-bottom:1.5rem;
}
.hero-h1 em{
  font-style:italic;
  color:var(--gold-lt);
  display:block;
}

.hero-desc{
  font-size:clamp(1rem,2vw,1.2rem);
  color:rgba(255,255,255,.75);
  line-height:1.78;
  max-width:500px;
  margin-bottom:2.25rem;
}
.hero-actions{
  display:flex;flex-direction:column;gap:.875rem;
  margin-bottom:1.5rem;
}
@media(min-width:540px){.hero-actions{flex-direction:row;flex-wrap:wrap}}

.hero-note{
  display:flex;align-items:center;gap:.5rem;
  font-size:.8125rem;color:rgba(255,255,255,.4);
}
.hero-note i{color:var(--gold);font-size:.75rem}

/* Stat pills */
.hero-stats{
  display:none;
  flex-direction:column;gap:.875rem;
  max-width:270px;margin-left:auto;
}
.stat-pill{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(194,151,62,.18);
  border-radius:var(--r6);
  padding:1.25rem 1.5rem;
  backdrop-filter:blur(12px);
  display:flex;flex-direction:column;gap:.2rem;
  transition:background var(--ease),border-color var(--ease),transform var(--ease);
}
.stat-pill:hover{background:rgba(255,255,255,.10);border-color:rgba(194,151,62,.36);transform:translateX(-4px)}
.stat-num{
  font-family:var(--serif);
  font-size:2rem;font-weight:600;
  color:var(--gold-lt);line-height:1;
}
.stat-lbl{
  font-size:.7rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.45);
}

@media(min-width:920px){
  .hero-body{grid-template-columns:1fr 260px}
  .hero-stats{display:flex}
}

/* Scroll cue */
.hero-scroll-cue{
  position:absolute;bottom:2rem;left:50%;
  transform:translateX(-50%);z-index:1;
  width:38px;height:38px;border-radius:50%;
  border:1.5px solid rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.4);font-size:.75rem;
  animation:bob 2.5s ease infinite;
}
@keyframes bob{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}

/* ================================================================
   PROOF BAR
================================================================ */
.proof-bar{
  background:var(--g800);
  border-top:2px solid var(--gold);
  border-bottom:1px solid rgba(194,151,62,.18);
  padding-block:1rem;
}
.proof-bar-inner{
  display:flex;align-items:center;justify-content:center;
  flex-wrap:wrap;gap:0;
}
.proof-item{
  display:flex;align-items:center;gap:.65rem;
  padding:.45rem 1.75rem;
  font-size:.82rem;font-weight:600;letter-spacing:.04em;
  color:rgba(255,255,255,.92);white-space:nowrap;
  transition:color var(--ease);
}
.proof-item:hover{color:var(--gold-lt)}
.proof-item i{color:var(--gold-lt);font-size:.85rem}
.proof-sep{width:1px;height:20px;background:rgba(194,151,62,.3)}

/* ================================================================
   BENEFITS
================================================================ */
.benefit-grid{
  display:grid;grid-template-columns:1fr;gap:1.75rem;
}
@media(min-width:640px){.benefit-grid{grid-template-columns:repeat(3,1fr)}}

.benefit-card{
  background:var(--white);
  border-radius:var(--r6);
  padding:2.75rem 2rem;
  text-align:center;
  border:1px solid var(--border);
  box-shadow:var(--sh-sm);
  position:relative;overflow:hidden;
  transition:transform var(--ease),box-shadow var(--ease);
}
/* Top gold line on hover */
.benefit-card::after{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--g400),var(--gold));
  opacity:0;transition:opacity .3s ease;
}
.benefit-card:hover{transform:translateY(-8px);box-shadow:var(--sh-lg)}
.benefit-card:hover::after{opacity:1}

.benefit-icon-wrap{
  width:80px;height:80px;border-radius:50%;
  background:linear-gradient(135deg,var(--g700) 0%,var(--g400) 100%);
  display:flex;align-items:center;justify-content:center;
  margin-inline:auto;margin-bottom:1.5rem;
  color:var(--gold-lt);font-size:1.75rem;
  box-shadow:0 8px 28px rgba(22,48,32,.4);
}
.benefit-card h3{
  font-family:var(--serif);font-size:1.4rem;font-weight:600;
  color:var(--g800);margin-bottom:.65rem;
}
.benefit-card p{font-size:.9375rem;color:var(--ink3);line-height:1.72}

/* ================================================================
   PHOTO BAND
================================================================ */
.band-photo{
  position:relative;height:clamp(320px,45vw,550px);
  overflow:hidden;display:flex;align-items:center;justify-content:center;
}
.band-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center 40%;
  transform:scale(1.04);transition:transform 12s ease;
}
.band-photo:hover .band-img{transform:scale(1)}
.band-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(3,11,6,.9) 0%,rgba(22,48,32,.75) 100%);
}
/* Bottom gold accent line */
.band-overlay::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.band-content{
  position:relative;z-index:1;
  text-align:center;display:flex;flex-direction:column;
  align-items:center;gap:2rem;padding-inline:var(--px);
}
.band-quote{
  font-family:var(--serif);font-style:italic;
  font-size:clamp(1.6rem,4vw,2.6rem);
  color:var(--white);line-height:1.32;
  text-shadow:0 2px 24px rgba(0,0,0,.5);
  max-width:700px;
}
.band-quote::before{content:'\201C ';color:var(--gold);font-size:1.2em}
.band-quote::after {content:' \201D';color:var(--gold);font-size:1.2em}

/* ================================================================
   OPTIONS (WHAT WE BUILD)
================================================================ */
.options-grid{
  display:grid;grid-template-columns:1fr;
  gap:.875rem;margin-bottom:3.5rem;
}
@media(min-width:540px){.options-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:860px){.options-grid{grid-template-columns:repeat(3,1fr)}}

.option-card{
  position:relative;
  padding:1.5rem 1.35rem 1.5rem 1.35rem;
  border:1px solid var(--border);
  border-radius:var(--r4);
  background:var(--white);
  box-shadow:var(--sh-sm);
  transition:all var(--ease);overflow:hidden;
}
.option-card::before{
  content:'';position:absolute;left:0;top:0;bottom:0;width:3px;
  background:linear-gradient(180deg,var(--g400),var(--gold));
  opacity:0;transition:opacity .25s ease;
}
.option-card:hover{
  border-color:var(--g300);
  transform:translateX(4px);
  box-shadow:var(--sh-md);
}
.option-card:hover::before{opacity:1}

.option-num{
  font-family:var(--serif);
  font-size:3rem;font-weight:600;
  color:var(--g700);opacity:.13;
  line-height:1;margin-bottom:.3rem;letter-spacing:-.04em;
}
.option-icon{
  font-size:1.1rem;color:var(--gold);
  margin-bottom:.65rem;display:block;
}
.option-card h3{
  font-size:.9375rem;font-weight:700;
  color:var(--g800);margin-bottom:.3rem;
}
.option-card p{font-size:.875rem;color:var(--ink3);line-height:1.6}

.options-cta{
  background:linear-gradient(135deg,var(--g900) 0%,#050f08 100%);
  border-radius:var(--r8);
  padding:clamp(2.5rem,5.5vw,4rem);
  text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:2rem;
  border:1px solid rgba(194,151,62,.18);
  box-shadow:var(--sh-xl);
}
.options-cta p{
  font-size:clamp(.9375rem,1.9vw,1.1rem);
  color:rgba(255,255,255,.8);max-width:560px;line-height:1.8;
}

/* ================================================================
   WHY SURFACE EVOLUTION
================================================================ */
.why-grid{
  display:grid;grid-template-columns:1fr;gap:4rem;
  align-items:start;
}
@media(min-width:900px){.why-grid{grid-template-columns:1fr 1fr}}

.why-body{
  font-size:clamp(.9375rem,1.8vw,1.0625rem);
  color:rgba(255,255,255,.72);line-height:1.82;margin-bottom:1rem;
}

.check-list{
  display:flex;flex-direction:column;gap:.65rem;
  margin-bottom:2.25rem;margin-top:.75rem;
}
.check-list li{
  display:flex;align-items:center;gap:.85rem;
  font-size:.9375rem;color:rgba(255,255,255,.8);
}
.check-list li i{color:var(--gold);width:16px;text-align:center;font-size:.8rem;flex-shrink:0}

.why-cards{display:flex;flex-direction:column;gap:1rem}

.why-card{
  display:flex;align-items:flex-start;gap:1.2rem;
  padding:1.5rem;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(194,151,62,.1);
  border-radius:var(--r4);
  transition:background var(--ease),border-color var(--ease),transform var(--ease);
}
.why-card:hover{background:rgba(255,255,255,.08);border-color:rgba(194,151,62,.28);transform:translateX(4px)}
.why-card-icon{
  width:48px;height:48px;min-width:48px;
  background:linear-gradient(135deg,var(--gold-lt) 0%,var(--gold) 100%);
  border-radius:var(--r2);
  display:flex;align-items:center;justify-content:center;
  color:#0a1c0e;font-size:1.05rem;
  box-shadow:0 4px 14px rgba(194,151,62,.4);
}
.why-card h3{font-size:1rem;font-weight:700;color:var(--white);margin-bottom:.35rem}
.why-card p{font-size:.875rem;color:rgba(255,255,255,.58);line-height:1.65}

.why-nudge{
  background:rgba(194,151,62,.1);
  border:1px solid rgba(194,151,62,.28);
  border-radius:var(--r4);
  padding:1.25rem 1.4rem;
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;flex-wrap:wrap;
}
.why-nudge span{font-size:.9375rem;color:rgba(255,255,255,.75);font-weight:500}
.why-nudge-link{
  display:inline-flex;align-items:center;gap:.45rem;
  font-size:.875rem;font-weight:700;color:var(--gold-lt);
  border-bottom:1px solid rgba(194,151,62,.35);padding-bottom:1px;
  transition:color var(--ease),border-color var(--ease);white-space:nowrap;
}
.why-nudge-link:hover{color:var(--white);border-color:var(--white)}

/* ================================================================
   HOW IT WORKS
================================================================ */
.process-row{
  display:grid;grid-template-columns:1fr;gap:1.5rem;
  margin-bottom:3.5rem;
  counter-reset:none;
}
@media(min-width:860px){.process-row{grid-template-columns:repeat(4,1fr);gap:0}}

.process-step{
  position:relative;
  padding:2rem 1.6rem 2rem;
  background:var(--white);
  border-radius:var(--r6);
  border:1px solid var(--border);
  box-shadow:var(--sh-sm);
  transition:transform var(--ease),box-shadow var(--ease);
  overflow:hidden;
}
.process-step:hover{transform:translateY(-5px);box-shadow:var(--sh-lg)}

/* Bottom bar */
.process-line{
  position:absolute;bottom:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--g400),var(--gold));
}
.process-line--last{
  background:var(--gold);
}

.process-num{
  font-family:var(--serif);
  font-size:4.5rem;font-weight:600;
  color:var(--g700);opacity:.12;
  line-height:1;margin-bottom:.4rem;letter-spacing:-.04em;
}
.process-step h3{
  font-family:var(--serif);font-size:1.25rem;font-weight:600;
  color:var(--g800);margin-bottom:.5rem;
}
.process-step p{font-size:.9375rem;color:var(--ink3);line-height:1.65}

@media(min-width:860px){
  .process-step{border-radius:0;border-right:none;text-align:center}
  .process-step:first-child{border-radius:var(--r6) 0 0 var(--r6)}
  .process-step:last-child{border-radius:0 var(--r6) var(--r6) 0;border-right:1px solid var(--border)}
  .process-num{margin-inline:auto}
}

/* ================================================================
   WHO IT'S FOR
================================================================ */
.who-grid{display:grid;grid-template-columns:1fr;gap:3.5rem;align-items:center}
@media(min-width:820px){.who-grid{grid-template-columns:1fr 1fr}}

.who-img-frame{
  position:relative;border-radius:var(--r8);overflow:hidden;
  aspect-ratio:4/3;background:var(--g100);
  box-shadow:var(--sh-xl);
}
/* Inner gold ring */
.who-img-frame::after{
  content:'';position:absolute;inset:0;
  box-shadow:inset 0 0 0 1.5px rgba(194,151,62,.2);
  border-radius:var(--r8);pointer-events:none;z-index:2;
}
.who-img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.who-img-frame:hover .who-img{transform:scale(1.06)}

.who-img-badge{
  position:absolute;bottom:1.25rem;right:1.25rem;z-index:3;
  background:rgba(7,20,16,.92);
  border:1px solid rgba(194,151,62,.3);
  border-radius:var(--r4);
  padding:.85rem 1.1rem;
  display:flex;align-items:center;gap:.65rem;
  backdrop-filter:blur(10px);
  box-shadow:var(--sh-md);
}
.who-img-badge i{color:var(--gold-lt);font-size:1rem;flex-shrink:0}
.who-img-badge span{
  font-size:.68rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;color:var(--white);line-height:1.35;
}

.who-list{display:flex;flex-direction:column;gap:.4rem;margin-bottom:2.25rem}
.who-list li{
  display:flex;align-items:center;gap:.9rem;
  font-size:1rem;color:var(--ink2);
  padding:.65rem .9rem;border-radius:var(--r2);
  border:1px solid transparent;
  transition:background var(--ease),border-color var(--ease);
}
.who-list li:hover{background:var(--cloud);border-color:var(--border)}
.who-list li i{color:var(--g400);font-size:.9rem;flex-shrink:0}
.who-list li span{line-height:1.4}

/* ================================================================
   FAQ
================================================================ */
.faq-list{max-width:800px;margin-inline:auto;display:flex;flex-direction:column;gap:.75rem}

.faq-item{
  border:1.5px solid var(--border);
  border-radius:var(--r4);
  overflow:hidden;background:var(--white);
  box-shadow:var(--sh-sm);
  transition:box-shadow var(--ease),border-color var(--ease),transform var(--ease);
}
.faq-item:hover{transform:translateY(-2px);box-shadow:var(--sh-md)}
.faq-item.is-open{border-color:var(--gold);box-shadow:0 6px 28px rgba(194,151,62,.18);transform:none}

.faq-btn{
  width:100%;display:flex;align-items:center;
  justify-content:space-between;gap:1.25rem;
  padding:1.35rem 1.5rem;
  font-size:1rem;font-weight:600;color:var(--ink);
  background:var(--white);text-align:left;cursor:pointer;
  transition:background var(--ease),color var(--ease);
  border:none;font-family:inherit;
}
.faq-btn:hover{background:var(--cloud)}
.faq-item.is-open .faq-btn{
  background:var(--g800);color:var(--white);
}

.faq-icon{
  flex-shrink:0;width:28px;height:28px;border-radius:50%;
  background:var(--cloud);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--g500);font-size:.75rem;
  transition:transform .28s ease,background var(--ease),color var(--ease);
}
.faq-item.is-open .faq-icon{
  transform:rotate(45deg);
  background:rgba(194,151,62,.16);border-color:rgba(194,151,62,.3);
  color:var(--gold-lt);
}

.faq-panel{
  padding:1.4rem 1.5rem;
  border-top:1px solid var(--border);
  background:var(--cloud);
}
.faq-panel p{font-size:.9375rem;color:var(--ink3);line-height:1.8}

/* ================================================================
   FORM SECTION
================================================================ */
.form-section{overflow:hidden;position:relative}
.form-section::before{
  content:'';position:absolute;
  top:-120px;right:-120px;width:550px;height:550px;
  background:radial-gradient(circle,rgba(194,151,62,.06) 0%,transparent 65%);
  pointer-events:none;
}
.form-section::after{
  content:'';position:absolute;
  bottom:-100px;left:-100px;width:450px;height:450px;
  background:radial-gradient(circle,rgba(36,80,52,.08) 0%,transparent 65%);
  pointer-events:none;
}

.form-grid{
  display:grid;grid-template-columns:1fr;gap:4rem;
  align-items:start;position:relative;z-index:1;
}
@media(min-width:960px){.form-grid{grid-template-columns:1fr 1.4fr}}

.form-sub{
  font-size:clamp(.9375rem,1.8vw,1.05rem);
  color:rgba(255,255,255,.68);line-height:1.8;
  margin-bottom:2rem;margin-top:.5rem;
}

.trust-list{
  display:flex;flex-direction:column;gap:.65rem;margin-bottom:2.5rem;
}
.trust-list li{
  display:flex;align-items:center;gap:.85rem;
  font-size:.9375rem;color:rgba(255,255,255,.75);
  padding:.55rem .85rem;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--r2);transition:background var(--ease);
}
.trust-list li:hover{background:rgba(255,255,255,.07)}
.trust-list li i{color:var(--gold);width:16px;text-align:center;flex-shrink:0;font-size:.85rem}

.form-phone{border-top:1px solid rgba(255,255,255,.08);padding-top:2rem}
.form-phone-label{font-size:.78rem;color:rgba(255,255,255,.38);margin-bottom:.4rem}
.form-phone-num{
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:1.85rem;font-weight:700;color:var(--gold-lt);
  letter-spacing:-.02em;transition:color var(--ease);
  font-family:var(--serif);
}
.form-phone-num:hover{color:var(--white)}

/* Form card */
.form-card{
  background:var(--white);border-radius:var(--r8);
  padding:clamp(1.75rem,5vw,3rem);
  box-shadow:0 28px 80px rgba(0,0,0,.45),0 6px 20px rgba(0,0,0,.18),0 0 0 1px rgba(194,151,62,.1);
}

/* Fields */
.field-row{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:480px){.field-row{grid-template-columns:1fr 1fr}}

.field-group{margin-bottom:1.1rem}
.field-group label{
  display:block;font-size:.73rem;font-weight:700;
  color:var(--ink2);margin-bottom:.4rem;
  letter-spacing:.08em;text-transform:uppercase;
}
.req{color:#b33;margin-left:.1rem}
.opt{font-weight:400;color:var(--ink3);font-size:.72rem;text-transform:none;letter-spacing:0;margin-left:.2rem}

.field-group input[type="text"],
.field-group input[type="email"],
.field-group input[type="tel"],
.field-group select,
.field-group textarea{
  width:100%;padding:.82rem 1rem;
  border:1.75px solid var(--border);border-radius:var(--r2);
  font-size:1rem;color:var(--ink);background:var(--cloud);
  transition:border-color var(--ease),box-shadow var(--ease),background var(--ease);
  -webkit-appearance:none;appearance:none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus{
  outline:none;border-color:var(--g400);
  background:var(--white);
  box-shadow:0 0 0 3.5px rgba(46,107,70,.13);
}
.field-group input.has-error,
.field-group select.has-error,
.field-group textarea.has-error{
  border-color:#b33;box-shadow:0 0 0 3px rgba(179,51,51,.1);
}

.field-group select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;
  background-size:12px;padding-right:2.5rem;cursor:pointer;
  background-color:var(--cloud);
}
.field-group select:focus{background-color:var(--white)}
.field-group textarea{resize:vertical;min-height:88px}

.field-err{display:block;font-size:.77rem;color:#b33;margin-top:.3rem;min-height:1.1em;font-weight:600}
.field-hint{font-size:.77rem;color:var(--ink3);margin-top:.3rem;line-height:1.5}

/* Radio */
.radio-fieldset{border:none;padding:0}
.radio-fieldset legend{
  font-size:.73rem;font-weight:700;color:var(--ink2);
  margin-bottom:.6rem;display:block;
  letter-spacing:.08em;text-transform:uppercase;
}
.radio-row{display:flex;flex-wrap:wrap;gap:.5rem}
.radio-opt{
  display:flex;align-items:center;gap:.5rem;
  font-size:.9rem;color:var(--ink2);cursor:pointer;
  padding:.5rem .9rem;border:1.5px solid var(--border);
  border-radius:var(--r2);background:var(--cloud);
  transition:background var(--ease),border-color var(--ease),color var(--ease);
  user-select:none;
}
.radio-opt:hover{background:var(--g100);border-color:var(--g300);color:var(--g700)}
.radio-opt input[type="radio"]{accent-color:var(--g500);width:15px;height:15px;flex-shrink:0}

/* Upload */
.upload-wrap{position:relative}
.upload-input{position:absolute;inset:0;width:100%;height:100%;opacity:0;cursor:pointer;z-index:2}
.upload-face{
  display:flex;align-items:center;justify-content:center;gap:.7rem;
  padding:1.1rem;border:2px dashed var(--border);border-radius:var(--r2);
  background:var(--cloud);color:var(--ink3);
  font-size:.9rem;font-weight:500;cursor:pointer;
  transition:border-color var(--ease),background var(--ease),color var(--ease);text-align:center;
}
.upload-face:hover,.upload-wrap:focus-within .upload-face{
  border-color:var(--g400);background:var(--g100);color:var(--g700);
}

/* Submit */
.btn-submit{
  width:100%;display:flex;align-items:center;justify-content:center;gap:.65rem;
  background:var(--gold);color:#0a1c0e;
  font-weight:800;font-size:1.1rem;
  padding:1.2rem 1.5rem;border-radius:var(--r2);
  box-shadow:var(--sh-gold);transition:all var(--ease);
  cursor:pointer;border:none;font-family:inherit;
  letter-spacing:.02em;position:relative;overflow:hidden;margin-top:.25rem;
}
.btn-submit::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.15) 0%,transparent 55%);
  pointer-events:none;
}
.btn-submit:hover{background:var(--gold-lt);transform:translateY(-2px);box-shadow:0 10px 36px rgba(194,151,62,.58)}
.btn-submit:active{transform:translateY(0)}
.btn-submit:disabled{opacity:.62;cursor:not-allowed;transform:none}

.disclaimer{font-size:.73rem;color:var(--ink3);text-align:center;margin-top:.85rem;line-height:1.55}

/* Success */
.form-success{text-align:center;padding:2.25rem 1rem}
.success-icon{font-size:4.5rem;color:var(--g400);margin-bottom:1.25rem}
.form-success h3{font-family:var(--serif);font-size:1.8rem;color:var(--g800);margin-bottom:.75rem}
.form-success>p{font-size:1rem;color:var(--ink3);line-height:1.75;max-width:460px;margin-inline:auto;margin-bottom:2rem}
.success-steps{
  background:var(--cloud);border-radius:var(--r4);
  padding:1.75rem;text-align:left;margin-bottom:2rem;border:1px solid var(--border);
}
.success-steps-label{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:var(--ink3);margin-bottom:1rem}
.success-steps ul{display:flex;flex-direction:column;gap:.7rem}
.success-steps li{display:flex;align-items:flex-start;gap:.75rem;font-size:.9375rem;color:var(--ink2)}
.success-steps li i{color:var(--g400);flex-shrink:0;margin-top:.2rem}

/* ================================================================
   FOOTER
================================================================ */
.site-footer{
  background:linear-gradient(180deg,#0f0f0f 0%,var(--g950) 100%);
  padding-block:4rem 1.5rem;
  border-top:3px solid var(--gold);
  position:relative;
}

.footer-top{
  display:grid;grid-template-columns:1fr;gap:2.5rem;
  padding-bottom:2.75rem;
  border-bottom:1px solid rgba(255,255,255,.07);
  margin-bottom:1.75rem;
}
@media(min-width:640px){.footer-top{grid-template-columns:repeat(3,1fr)}}

.footer-name{
  font-family:var(--serif);font-size:1.2rem;font-weight:600;
  color:var(--white);margin-bottom:.3rem;
}
.footer-sub{font-size:.8rem;color:rgba(255,255,255,.32);margin-bottom:.65rem}
.footer-loc{
  display:flex;align-items:center;gap:.45rem;
  font-size:.875rem;color:var(--gold-lt);
}
.footer-col-label{
  font-size:.63rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.16em;color:rgba(255,255,255,.35);margin-bottom:.7rem;
}
.footer-phone{
  display:block;font-size:1.2rem;font-weight:700;
  color:var(--white);margin-bottom:.45rem;transition:color var(--ease);
}
.footer-phone:hover{color:var(--gold-lt)}
.footer-email{
  display:block;font-size:.875rem;color:rgba(255,255,255,.38);transition:color var(--ease);
}
.footer-email:hover{color:var(--white)}
.footer-service p{font-size:.875rem;color:rgba(255,255,255,.38);line-height:1.6;margin-bottom:.9rem}
.footer-cta{
  display:inline-flex;align-items:center;gap:.35rem;
  font-size:.875rem;font-weight:700;color:var(--gold-lt);
  border-bottom:1px solid rgba(194,151,62,.3);padding-bottom:1px;
  transition:color var(--ease),border-color var(--ease);
}
.footer-cta:hover{color:var(--white);border-color:rgba(255,255,255,.45)}

.footer-bottom{
  display:flex;flex-direction:column;gap:.5rem;
  align-items:center;text-align:center;
  font-size:.8125rem;color:rgba(255,255,255,.22);
}
@media(min-width:640px){.footer-bottom{flex-direction:row;justify-content:space-between}}
.footer-legal{display:flex;align-items:center;gap:.65rem}
.footer-legal a{color:rgba(255,255,255,.35);transition:color var(--ease)}
.footer-legal a:hover{color:var(--white)}
.footer-legal span{color:rgba(255,255,255,.15)}

/* ================================================================
   PRINT & REDUCED MOTION
================================================================ */
@media print{.sticky-bar,.site-header,.hero-scroll-cue{display:none!important}}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
  .reveal{opacity:1!important;transform:none!important}
  .hero-photo{transform:none!important}
}
