/* ============================================================
   Create-If Real Estate — styles
   Palette & type sampled from the Create-If brand deck.
   Design language echoes thebendclub.com: warm, editorial,
   whitespace-heavy, serif display + clean sans body.
   ============================================================ */

:root{
  /* brand */
  --cream:      #f4efe3;
  --cream-soft: #faf6ec;
  --paper:      #ffffff;
  --navy:       #14243d;
  --navy-2:     #1b3153;
  --navy-soft:  #24406a;
  --ink:        #1b2330;
  --ink-soft:   #55606f;
  --gold:       #c4a053;
  --gold-deep:  #a9863a;
  --gold-light: #ddc489;
  --line:       rgba(20,36,61,.12);
  --line-gold:  rgba(196,160,83,.28);

  --maxw: 1180px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(20,36,61,.05), 0 6px 20px rgba(20,36,61,.06);
  --shadow-md: 0 10px 40px rgba(20,36,61,.12);
  --shadow-gold: 0 14px 44px rgba(169,134,58,.22);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- base ---------- */
*,*::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(--sans);
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  /* Force Fraunces to a lower optical size so its dramatic display 'f' stops
     overhanging the next letter (e.g. the "fi" in "first"). Inter (body) has no
     opsz axis, so this only affects the serif headings; font weights are preserved. */
  font-optical-sizing:none;
  font-variation-settings:"opsz" 24;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--serif); font-weight:600; line-height:1.12; letter-spacing:-.01em; margin:0; }
/* clean ampersand inside serif headings (Fraunces default is a calligraphic form) */
.amp{ font-family:var(--sans); font-weight:600; font-style:normal; font-size:.86em; }
p{ margin:0 0 1rem; }
strong,b{ font-weight:600; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:clamp(20px,5vw,44px); }
.container--narrow{ max-width:820px; }

.skip-link{
  position:absolute; left:-999px; top:0; z-index:200;
  background:var(--navy); color:#fff; padding:12px 18px; border-radius:0 0 10px 0;
}
.skip-link:focus{ left:0; }

/* ---------- blueprint motif ---------- */
.blueprint{ position:relative; isolation:isolate; }
.blueprint::before{
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background-image:
    linear-gradient(var(--line-gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-gold) 1px, transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:radial-gradient(120% 100% at 50% 0%, #000 0%, transparent 78%);
          mask-image:radial-gradient(120% 100% at 50% 0%, #000 0%, transparent 78%);
  opacity:.5;
}
.blueprint--gold::before{ opacity:.32; }

/* ---------- buttons ---------- */
.btn{
  --bg:var(--navy); --fg:#fff; --bd:var(--navy);
  display:inline-flex; align-items:center; justify-content:center; gap:.5ch;
  font-family:var(--sans); font-weight:600; font-size:.98rem; letter-spacing:.01em;
  padding:.82em 1.5em; border-radius:999px; cursor:pointer;
  background:var(--bg); color:var(--fg); border:1.5px solid var(--bd);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn:focus-visible{ outline:3px solid var(--gold); outline-offset:2px; }
.btn--gold{ --bg:var(--gold); --fg:var(--navy); --bd:var(--gold); box-shadow:var(--shadow-gold); }
.btn--gold:hover{ --bg:var(--gold-deep); --bd:var(--gold-deep); color:#fff; }
.btn--ghost{ --bg:transparent; --fg:var(--navy); --bd:rgba(20,36,61,.28); }
.btn--ghost:hover{ --bg:var(--navy); --fg:#fff; --bd:var(--navy); }
.btn--block{ width:100%; }

/* ---------- eyebrow / section heads ---------- */
.eyebrow{
  font-family:var(--sans); font-weight:600; font-size:.8rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--gold-deep); margin:0 0 .9rem;
}
.eyebrow--onDark{ color:var(--gold-light); }

.section{ padding:clamp(64px,9vw,120px) 0; }
.section--soft{ background:var(--cream-soft); }
.section--navy{ background:var(--navy); color:#e9edf4; }

.section__head{ max-width:720px; margin:0 auto clamp(38px,5vw,60px); text-align:center; }
.section__title{ font-size:clamp(2rem,4.4vw,3.1rem); color:var(--navy); }
.section__title--light{ color:#fff; }
.section__intro{ margin-top:1rem; font-size:1.09rem; color:var(--ink-soft); }
.section__intro--light{ color:#c4cfdd; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(244,239,227,.82);
  backdrop-filter:saturate(140%) blur(12px);
  -webkit-backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid transparent;
  transition:background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled{
  background:rgba(244,239,227,.94);
  border-bottom-color:var(--line);
  box-shadow:0 6px 24px rgba(20,36,61,.06);
}
.nav__inner{ display:flex; align-items:center; gap:1.5rem; height:72px; }
.brand{ display:flex; align-items:center; gap:.62rem; }
.brand__mark{ width:auto; height:38px; }
.brand__text{ display:flex; flex-direction:column; line-height:1; }
.brand__name{ font-family:var(--serif); font-weight:600; font-size:1.2rem; color:var(--navy); letter-spacing:-.01em; }
.brand__sub{ font-family:var(--sans); font-weight:600; font-size:.62rem; letter-spacing:.28em; text-transform:uppercase; color:var(--gold-deep); margin-top:2px; }

.nav__links{ display:flex; gap:1.7rem; margin-left:auto; }
.nav__links a{ font-weight:500; font-size:.95rem; color:var(--ink); position:relative; padding:.3em 0; }
.nav__links a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background:var(--gold);
  transition:width .22s ease;
}
.nav__links a:hover{ color:var(--navy); }
.nav__links a:hover::after{ width:100%; }
.nav__cta{ margin-left:.4rem; padding:.6em 1.15em; }

.nav__toggle{ display:none; margin-left:auto; background:none; border:0; width:44px; height:44px; cursor:pointer; padding:10px; }
.nav__toggle span{ display:block; height:2px; background:var(--navy); border-radius:2px; margin:5px 0; transition:transform .25s, opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{ display:none; flex-direction:column; gap:.3rem; padding:12px clamp(20px,5vw,44px) 24px; border-top:1px solid var(--line); background:var(--cream-soft); }
.mobile-menu a{ padding:.85rem .2rem; font-weight:500; border-bottom:1px solid var(--line); }
.mobile-menu a:last-child{ border:0; margin-top:.8rem; text-align:center; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ padding:clamp(48px,7vw,96px) 0 clamp(56px,7vw,104px); overflow:hidden; }
.hero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,72px); align-items:center; }
.hero__title{ font-size:clamp(2.5rem,5.6vw,4.05rem); color:var(--navy); margin:.2em 0 .35em; }
.hero__lede{ font-size:1.18rem; color:var(--ink-soft); max-width:44ch; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:.9rem; margin:1.7rem 0 1.9rem; }
.trust-chips{ list-style:none; display:flex; flex-wrap:wrap; gap:.55rem; padding:0; margin:0; }
.trust-chips li{
  font-size:.82rem; font-weight:500; color:var(--navy);
  background:rgba(255,255,255,.65); border:1px solid var(--line-gold);
  padding:.42em .9em; border-radius:999px;
}

.hero__media{ position:relative; }
.hero__frame{
  margin:0; border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--line-gold); box-shadow:var(--shadow-md);
  aspect-ratio:1/1;
}
.hero__frame::after{ /* warm gold edge */
  content:""; position:absolute; inset:0; border-radius:var(--radius-lg);
  box-shadow:inset 0 0 0 6px rgba(255,255,255,.35); pointer-events:none;
}
.hero__frame img{ width:100%; height:100%; object-fit:cover; }
.stat-card{
  position:absolute; left:-14px; bottom:-22px;
  background:var(--navy); color:#fff; border-radius:14px; padding:16px 20px;
  box-shadow:var(--shadow-md); display:flex; flex-direction:column;
  border:1px solid var(--navy-soft); max-width:210px;
}
.stat-card__num{ font-family:var(--serif); font-weight:700; font-size:1.9rem; color:var(--gold-light); line-height:1; }
.stat-card__label{ font-size:.8rem; color:#c4cfdd; margin-top:.3rem; }

/* ============================================================
   STAT BAND
   ============================================================ */
.statband{ background:var(--navy); color:#fff; }
.statband__grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.stat{ padding:clamp(28px,4vw,44px) 1.2rem; text-align:center; border-left:1px solid rgba(255,255,255,.08); }
.stat:first-child{ border-left:0; }
.stat__num{ display:block; font-family:var(--serif); font-weight:700; font-size:clamp(1.9rem,3.4vw,2.6rem); color:var(--gold-light); line-height:1; }
.stat__label{ display:block; margin-top:.6rem; font-size:.9rem; color:#bcc8d8; }

/* ============================================================
   STORY
   ============================================================ */
.story{ padding:clamp(52px,7vw,88px) 0 0; text-align:center; }
.story__inner{ max-width:760px; margin-inline:auto; }
.story__logo{ width:auto; height:58px; margin:0 auto 1.6rem; opacity:.95; }
.story__quote{ font-size:clamp(1.7rem,3.6vw,2.6rem); color:var(--navy); font-style:italic; font-weight:500; }
.story__body{ margin-top:1.4rem; font-size:1.12rem; color:var(--ink-soft); }

/* ============================================================
   PILLARS (opportunity)
   ============================================================ */
.pillars{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.1rem; }
.pillar{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  padding:1.7rem 1.5rem; box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--line-gold); }
.pillar__icon{ display:inline-grid; place-items:center; width:44px; height:44px; border-radius:10px;
  background:rgba(196,160,83,.14); color:var(--gold-deep); font-size:1.2rem; margin-bottom:1rem; }
.pillar h3{ font-size:1.24rem; color:var(--navy); margin-bottom:.5rem; }
.pillar p{ font-size:.98rem; color:var(--ink-soft); margin:0; }

/* ============================================================
   FORMULA
   ============================================================ */
.formula__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(20px,3vw,36px); align-items:stretch; }
.buybox, .flow{
  background:rgba(255,255,255,.05); border:1px solid rgba(221,196,137,.28);
  border-radius:var(--radius-lg); padding:clamp(22px,3vw,34px);
}
.buybox__head, .flow__title{ display:flex; align-items:center; gap:.6rem; }
.buybox__head h3, .flow__title{ font-size:1.4rem; color:#fff; margin:0; }
.tick{ display:grid; place-items:center; width:30px; height:30px; border-radius:50%; background:#2e7d5b; color:#fff; font-size:.9rem; }
.buybox__img{ width:100%; height:180px; object-fit:cover; border-radius:12px; margin:1.1rem 0; border:1px solid rgba(221,196,137,.3); }
.buybox__list{ list-style:none; padding:0; margin:0; display:grid; gap:.55rem; }
.buybox__list li{ position:relative; padding-left:1.5rem; color:#d7deea; }
.buybox__list li::before{ content:"—"; position:absolute; left:0; color:var(--gold-light); }

.flow{ display:flex; flex-direction:column; }
.flow__title{ margin-bottom:1.2rem; }
.flow__steps{ list-style:none; padding:0; margin:0 0 .4rem; display:flex; flex-direction:column; align-items:stretch; gap:.35rem; }
.flow__step{
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  border-radius:12px; padding:1rem 1.2rem;
}
.flow__step--gold{ background:var(--gold); border-color:var(--gold); }
.flow__step--gold .flow__k, .flow__step--gold .flow__v{ color:var(--navy); }
.flow__k{ font-weight:500; color:#dbe2ee; }
.flow__v{ font-family:var(--serif); font-weight:700; font-size:1.25rem; color:#fff; white-space:nowrap; }
.flow__arrow{ text-align:center; color:var(--gold-light); font-size:1.1rem; line-height:1; }

.dealbreakers{ margin-top:1.6rem; padding-top:1.4rem; border-top:1px solid rgba(255,255,255,.12); }
.dealbreakers__title{ display:flex; align-items:center; gap:.5rem; font-weight:600; color:#fff; margin:0 0 .8rem; }
.dealbreakers__title span{ display:grid; place-items:center; width:24px; height:24px; border-radius:50%; background:#b3402f; color:#fff; font-size:.75rem; }
.dealbreakers ul{ list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:.5rem; }
.dealbreakers li{ font-size:.85rem; color:#d7deea; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); padding:.35em .8em; border-radius:999px; }
.dealbreakers__note{ margin:.9rem 0 0; font-style:italic; color:var(--gold-light); font-size:.95rem; }

/* ============================================================
   CASE STUDY
   ============================================================ */
.case__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(24px,4vw,48px); align-items:center; margin-bottom:clamp(36px,5vw,58px); }
.case__photo{ margin:0; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--line); position:relative; }
.case__photo img{ width:100%; height:100%; max-height:420px; object-fit:cover; }
.case__photo figcaption{
  position:absolute; left:14px; bottom:14px; background:rgba(20,36,61,.86); color:#fff;
  font-size:.82rem; font-weight:500; padding:.4em .85em; border-radius:999px; backdrop-filter:blur(4px);
}
.case__numbers{ display:flex; flex-direction:column; }
.numrow{ display:flex; justify-content:space-between; align-items:baseline; gap:1rem; padding:1.05rem .2rem; border-bottom:1px solid var(--line); }
.numrow span{ color:var(--ink-soft); font-weight:500; }
.numrow b{ font-family:var(--serif); font-weight:700; font-size:1.4rem; color:var(--navy); }
.numrow--hi b{ color:var(--gold-deep); font-size:1.7rem; }
.numrow--hi{ border-bottom:0; }
.case__safety{ margin-top:.8rem; font-size:.95rem; color:var(--ink-soft); }

/* waterfall */
.waterfall{
  display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(12px,3vw,40px); align-items:end;
  height:320px; padding:20px clamp(8px,3vw,40px) 0; margin-bottom:clamp(40px,5vw,64px);
  background:var(--cream-soft); border:1px solid var(--line); border-radius:var(--radius-lg);
}
.wf__col{ height:100%; display:flex; flex-direction:column; justify-content:flex-end; align-items:center; }
.wf__bar{
  width:min(120px,80%); border-radius:8px 8px 4px 4px; color:#fff;
  font-weight:700; font-family:var(--serif); font-size:1.05rem;
  display:flex; align-items:flex-start; justify-content:center; padding-top:.55rem;
  box-shadow:0 8px 20px rgba(20,36,61,.12);
}
.wf__bar--navy{ background:var(--navy); }
.wf__bar--steel{ background:var(--navy-soft); }
.wf__bar--margin{ background:transparent; border:2px dashed var(--gold-deep); color:var(--gold-deep); box-shadow:none; }
.wf__bar--gold{ background:linear-gradient(180deg,var(--gold-light),var(--gold)); color:var(--navy); }
.wf__label{ margin-top:.7rem; font-family:var(--sans); font-weight:600; font-size:.82rem; color:var(--ink-soft); text-align:center; }

/* comparables */
.comps__title{ font-size:1.4rem; color:var(--navy); text-align:center; margin-bottom:1.4rem; }
.comps__table{ border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:var(--paper); box-shadow:var(--shadow-sm); }
.comps__row{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.2fr 1.1fr; }
.comps__row > span{ padding:1rem 1.1rem; border-bottom:1px solid var(--line); font-size:.95rem; display:flex; align-items:center; }
.comps__row--head > span{ background:var(--navy); color:#fff; font-weight:600; font-size:.82rem; letter-spacing:.06em; text-transform:uppercase; border-bottom:0; }
.comps__row--subject{ background:rgba(196,160,83,.08); }
.comps__row--subject b{ color:var(--gold-deep); }
.comps__row:last-child > span{ border-bottom:0; }

/* ============================================================
   TEAM
   ============================================================ */
.partners{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(20px,3vw,32px); margin-bottom:clamp(46px,6vw,72px); }
.partner{
  display:flex; gap:1.4rem; background:var(--paper); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:1.5rem; box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .2s ease;
}
.partner:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.partner__photo{ position:relative; flex:0 0 128px; }
.partner__photo img{ width:128px; height:150px; object-fit:cover; object-position:top center; border-radius:14px; border:1px solid var(--line-gold); }
.partner__photonote{
  position:absolute; left:0; bottom:-8px; right:0; margin:auto; width:max-content;
  font-size:.62rem; letter-spacing:.04em; text-transform:uppercase; font-weight:600;
  background:var(--navy); color:var(--gold-light); padding:.25em .6em; border-radius:999px;
}
.partner__body h3{ font-size:1.45rem; color:var(--navy); }
.partner__role{ color:var(--gold-deep); font-weight:600; font-size:.9rem; margin:.15rem 0 .8rem; }
.partner__body p{ font-size:.98rem; color:var(--ink-soft); }
.partner__tags{ font-size:.82rem; color:var(--navy); font-weight:500; margin:0; }

.local__title{ text-align:center; font-size:1.5rem; color:var(--navy); margin-bottom:1.4rem; }
.local__grid{ display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; max-width:840px; margin-inline:auto; }
.localcard{ display:flex; gap:1.1rem; align-items:flex-start; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:1.4rem 1.5rem; box-shadow:var(--shadow-sm); }
.localcard__mono{ flex:0 0 auto; display:grid; place-items:center; width:52px; height:52px; border-radius:50%;
  background:var(--navy); color:var(--gold-light); font-family:var(--serif); font-weight:700; font-size:1.5rem; }
.localcard__photo{ flex:0 0 auto; width:60px; height:60px; border-radius:50%; object-fit:cover;
  object-position:center 22%; border:2px solid var(--line-gold); background:var(--navy); }
.localcard h4{ font-size:1.2rem; color:var(--navy); margin:0; }
.localcard__role{ color:var(--gold-deep); font-weight:600; font-size:.85rem; margin:.1rem 0 .5rem; }
.localcard p{ margin:0; font-size:.93rem; color:var(--ink-soft); }

/* ============================================================
   PATHWAYS
   ============================================================ */
.pathways{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; align-items:stretch; }
.path{
  position:relative; background:rgba(255,255,255,.05); border:1px solid rgba(221,196,137,.26);
  border-radius:var(--radius-lg); padding:2rem 1.7rem; display:flex; flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.path:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.path--featured{ background:rgba(196,160,83,.12); border-color:var(--gold); box-shadow:var(--shadow-gold); }
.path__flag{ position:absolute; top:-13px; left:1.7rem; background:var(--gold); color:var(--navy);
  font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:.35em .85em; border-radius:999px; }
.path__name{ font-size:1.55rem; color:#fff; }
.path__tagline{ color:var(--gold-light); font-weight:600; margin:.35rem 0 1rem; }
.path__desc{ color:#c9d3e0; font-size:.98rem; flex:1; }
.path__badge{ margin-top:1.2rem; align-self:flex-start; background:rgba(255,255,255,.08);
  border:1px solid rgba(221,196,137,.4); color:var(--gold-light); font-weight:600; font-size:.85rem;
  padding:.5em 1em; border-radius:999px; }
.path--featured .path__badge{ background:var(--navy); color:var(--gold-light); border-color:var(--navy); }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ display:flex; flex-direction:column; gap:.8rem; }
.faq__item{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-sm); overflow:hidden; }
.faq__item summary{
  list-style:none; cursor:pointer; padding:1.2rem 1.4rem; font-family:var(--serif); font-weight:600;
  font-size:1.14rem; color:var(--navy); display:flex; justify-content:space-between; align-items:center; gap:1rem;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary::after{ content:"+"; font-family:var(--sans); font-weight:400; font-size:1.5rem; color:var(--gold-deep); transition:transform .2s ease; }
.faq__item[open] summary::after{ transform:rotate(45deg); }
.faq__item p{ margin:0; padding:0 1.4rem 1.3rem; color:var(--ink-soft); font-size:.99rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(28px,5vw,64px); align-items:start; }
.contact__lede{ font-size:1.12rem; color:var(--ink-soft); max-width:40ch; }
.contact__direct{ font-size:.98rem; color:var(--ink-soft); }
.contact__direct a{ color:var(--gold-deep); font-weight:600; border-bottom:1px solid var(--line-gold); }
.contact__form{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:clamp(24px,3vw,38px); box-shadow:var(--shadow-md); }
.field{ margin-bottom:1.1rem; }
.field label{ display:block; font-weight:600; font-size:.9rem; color:var(--navy); margin-bottom:.4rem; }
.field input, .field select, .field textarea{
  width:100%; font-family:var(--sans); font-size:1rem; color:var(--ink);
  padding:.8em .95em; border:1.5px solid var(--line); border-radius:10px; background:var(--cream-soft);
  transition:border-color .18s ease, box-shadow .18s ease;
}
.field textarea{ resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(196,160,83,.18); background:#fff;
}
.form-note{ margin:.9rem 0 0; font-size:.92rem; min-height:1.2em; }
.form-note.is-ok{ color:#2e7d5b; font-weight:600; }
.form-note.is-err{ color:#b3402f; font-weight:600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--navy); color:#c4cfdd; padding:clamp(48px,6vw,72px) 0 2.2rem; }
.footer__grid{ display:flex; justify-content:space-between; gap:2rem; flex-wrap:wrap; padding-bottom:2.2rem; border-bottom:1px solid rgba(255,255,255,.1); }
.brand--footer .brand__name{ color:#fff; }
.footer__tag{ margin:1rem 0 0; color:#9fb0c6; max-width:32ch; }
.footer__nav{ display:grid; grid-template-columns:1fr 1fr; gap:.7rem 2.6rem; align-content:start; }
.footer__nav a{ color:#c4cfdd; font-size:.95rem; font-weight:500; }
.footer__nav a:hover{ color:var(--gold-light); }
.footer__base{ padding-top:1.8rem; display:flex; flex-direction:column; gap:.8rem; }
.footer__base p{ margin:0; font-size:.82rem; color:#8698af; }
.footer__disc{ max-width:70ch; line-height:1.55; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Only hide reveals when JS is available (progressive enhancement) */
.js .reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .js .reveal{ opacity:1; transform:none; transition:none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px){
  .nav__links{ display:none; }
  .nav__cta{ display:none; }
  .nav__toggle{ display:block; }
  .mobile-menu{ display:none; }
  .mobile-menu.is-open{ display:flex; }
  .hero__grid{ grid-template-columns:1fr; }
  .hero__media{ order:-1; max-width:520px; }
  .statband__grid{ grid-template-columns:1fr 1fr; }
  .stat:nth-child(3){ border-left:0; }
  .stat{ border-top:1px solid rgba(255,255,255,.08); }
  .stat:nth-child(1),.stat:nth-child(2){ border-top:0; }
  .pillars{ grid-template-columns:1fr 1fr; }
  .formula__grid,.case__grid,.contact__grid,.partners{ grid-template-columns:1fr; }
  .pathways{ grid-template-columns:1fr; }
  .path--featured{ order:-1; }
}
@media (max-width: 620px){
  body{ font-size:16px; }
  .pillars,.local__grid{ grid-template-columns:1fr; }
  .statband__grid{ grid-template-columns:1fr; }
  .stat{ border-left:0; }
  .hero__actions .btn{ flex:1; }
  .partner{ flex-direction:column; }
  .partner__photo{ flex-basis:auto; }
  .partner__photo img{ width:100%; height:220px; }
  .stat-card{ left:0; }
  .waterfall{ height:250px; gap:8px; padding-inline:8px; }
  .wf__bar{ font-size:.8rem; }
  .wf__label{ font-size:.68rem; }
  /* stacked comparables table */
  .comps__row--head{ display:none; }
  .comps__row{ grid-template-columns:1fr; padding:.6rem 0; }
  .comps__row > span{ border-bottom:1px solid var(--line); justify-content:space-between; }
  .comps__row > span::before{ content:attr(data-k); font-weight:600; color:var(--navy); font-size:.8rem; text-transform:uppercase; letter-spacing:.04em; }
  .comps__row:not(:last-child){ border-bottom:6px solid var(--cream); }
}
