:root {
  --bg: #F7F4EF;
  --dark: #1A1A18;
  --body-color: #4A4844;
  --muted: #8A8580;
  --bronze: #8B6B47;
  --bronze-light: #B8966A;
  --border: #E0DAD0;
  --border-dark: #2A2A26;
  --logo-deep: #0C4D25;
  --logo-mid: #1A9650;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 8000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
}
.pl-icon { width: 42px; height: 42px; opacity: 0; }
.pl-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem; font-weight: 400;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--bg); opacity: 0;
}
.pl-line { width: 0; height: 1px; background: rgba(247,244,239,.25); }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500; height: 64px;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s, backdrop-filter .35s;
}
#nav.scrolled {
  background: rgba(247,244,239,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400; letter-spacing: .08em;
  color: var(--dark); text-decoration: none;
}
.nav-logo-icon {
  height: 28px; width: 28px; flex-shrink: 0;
  transition: filter .3s;
}
.nav-logo:hover .nav-logo-icon { filter: drop-shadow(0 0 6px rgba(26,150,80,.35)); }
.nav-tag {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-link {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; font-weight: 500;
  position: relative; padding-bottom: 2px;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--dark);
  transform-origin: right; transition: transform .3s ease;
  transform: scaleX(0);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-chev {
  font-size: .55rem; opacity: .55;
  transition: transform .25s, opacity .25s;
}

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown:hover .nav-link .nav-chev { transform: rotate(180deg); opacity: 1; }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 340px; padding: 12px 0;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 600;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* invisible bridge to prevent gap-hover-loss */
.nav-dropdown::before {
  content: ''; position: absolute; top: 100%; left: 0; right: 0;
  height: 18px;
}
.nav-dd-item {
  display: block; padding: 14px 28px;
  color: var(--dark); text-decoration: none;
  border-left: 2px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav-dd-item:hover { border-left-color: var(--bronze); background: rgba(139,107,71,.05); }
.nav-dd-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--dark); letter-spacing: -.01em;
  line-height: 1.2; margin-bottom: 3px;
}
.nav-dd-sub {
  font-size: .65rem; color: var(--muted);
  letter-spacing: .04em; line-height: 1.5;
}

/* Hamburger */
.nav-burger {
  display: none; background: transparent; border: none; padding: 8px;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--dark); transition: transform .25s, opacity .25s;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 1000; display: none; flex-direction: column;
  padding: 80px 8vw 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 16px; right: 5vw;
  background: transparent; border: none; cursor: pointer;
  font-size: 2.4rem; line-height: 1; color: var(--dark);
  font-weight: 200;
}
.mobile-h {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  margin: 28px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mobile-h:first-of-type { margin-top: 8px; }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; letter-spacing: -.01em;
  color: var(--dark); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
#hero {
  min-height: 100svh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 80px 5vw 52px;
}
.hero-vbg { position: absolute; inset: 0; z-index: 0; }
.hero-vbg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-vgrad {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(247,244,239,.97) 0%,
    rgba(247,244,239,.93) 38%,
    rgba(247,244,239,.55) 58%,
    rgba(247,244,239,.08) 100%
  );
  z-index: 1;
}
.hero-body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: space-between;
  flex: 1; gap: 0;
}
.hero-eyebrow {
  display: block; font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500; margin-bottom: 20px;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 8.5vw, 10rem);
  font-weight: 300; line-height: .92;
  letter-spacing: -.03em; color: var(--dark);
}
.hero-h1 em { font-style: italic; color: var(--bronze); }
.wm { display: inline-block; vertical-align: bottom; }
.wi { display: inline-block; }
.hero-mid {
  display: flex; flex-direction: column; gap: 26px;
  margin-top: 40px;
}
.hero-descriptor {
  font-size: .9rem; color: var(--body-color); line-height: 1.75;
  max-width: 360px; border-left: 2px solid var(--logo-mid);
  padding-left: 22px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; font-weight: 500;
  width: fit-content;
}
.cta-line {
  width: 36px; height: 1px; background: var(--dark);
  position: relative; flex-shrink: 0;
  transition: width .35s ease;
}
.cta-line::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid var(--dark); border-bottom: 1px solid var(--dark);
  transform: rotate(-45deg);
}
.hero-cta:hover .cta-line { width: 54px; }
.hero-bottom {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(26,26,24,.15);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.hero-foot-left {
  font-size: .72rem; color: var(--muted); letter-spacing: .04em;
}
.hero-foot-left a { color: inherit; text-decoration: none; transition: color .2s; }
.hero-foot-left a:hover { color: var(--bronze); }
.scroll-hint {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 10px;
}
.scroll-hint::before {
  content: ''; display: block; width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--logo-mid), transparent);
  animation: sp 2.2s ease-in-out infinite;
}
@keyframes sp { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--dark); overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(224,218,208,.08);
}
.marquee-belt {
  display: flex; width: max-content;
  animation: mq 32s linear infinite;
}
.marquee-belt:hover { animation-play-state: paused; }
.mq-item {
  white-space: nowrap; padding: 0 56px;
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(247,244,239,.4); font-weight: 400;
  display: flex; align-items: center; gap: 56px;
}
.mq-item::after { content: '—'; color: var(--bronze); font-size: .55rem; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── DIFFERENTIATOR STRIP ── */
.diff-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 56px 5vw;
}
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.diff-item {
  padding-right: 48px;
  border-right: 1px solid var(--border);
}
.diff-item:last-child { border-right: none; padding-right: 0; }
.diff-item:not(:first-child) { padding-left: 48px; }
.diff-label {
  font-size: .57rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--logo-deep); font-weight: 500; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.diff-label::before {
  content: ''; display: inline-block; width: 14px; height: 1px;
  background: var(--logo-deep); flex-shrink: 0;
}
.diff-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  font-weight: 300; color: var(--dark); letter-spacing: -.01em;
  line-height: 1.2; margin-bottom: 12px;
}
.diff-desc {
  font-size: .78rem; color: var(--muted); line-height: 1.72;
}

/* ── SHARED SECTION ── */
.s-wrap { padding: 112px 5vw; }
.s-head {
  display: flex; align-items: baseline; gap: 20px;
  border-bottom: 1px solid var(--border); padding-bottom: 18px;
  margin-bottom: 60px;
}
.s-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem; font-weight: 400; color: var(--muted);
  letter-spacing: .06em; flex-shrink: 0;
}
.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300; letter-spacing: -.02em; line-height: 1.1;
  color: var(--dark);
}
.s-title em { font-style: italic; color: var(--bronze); }

/* ── STATS ── */
#stats { background: var(--dark); padding: 80px 5vw; }
#stats .s-head { border-bottom-color: var(--border-dark); margin-bottom: 0; padding-bottom: 0; border-bottom: none; margin-bottom: 52px; }
#stats .s-title { color: var(--bg); }
#stats .s-num { color: rgba(247,244,239,.2); }
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border-dark);
}
.stat-cell {
  padding: 52px 44px 52px 0;
  border-right: 1px solid var(--border-dark);
}
.stat-cell:last-child { border-right: none; padding-right: 0; }
.stat-cell:not(:first-child) { padding-left: 44px; }
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 300; color: var(--bg);
  line-height: .95; letter-spacing: -.025em;
  margin-bottom: 18px;
}
.stat-val em {
  font-style: italic; color: var(--bronze-light);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}
.stat-desc { font-size: .78rem; color: rgba(247,244,239,.38); line-height: 1.65; max-width: 260px; }
.stat-src {
  display: block; margin-top: 8px;
  font-size: .62rem; letter-spacing: .08em;
  color: rgba(247,244,239,.28);
  font-style: italic;
}

/* ── PROCESS ACCORDION ── */
#process { background: var(--bg); }
.acc-list { border-bottom: 1px solid var(--border); }
.acc-row {
  border-top: 1px solid var(--border);
  cursor: pointer; overflow: hidden;
}
.acc-header {
  display: grid; grid-template-columns: 72px 1fr 40px;
  align-items: center; gap: 28px; padding: 30px 0;
}
.acc-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem; font-weight: 400;
  color: var(--muted); letter-spacing: .06em;
}
.acc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 300; letter-spacing: -.01em; color: var(--dark);
  transition: color .25s;
}
.acc-row:hover .acc-title { color: var(--bronze); }
.acc-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .35s, border-color .3s;
}
.acc-row.open .acc-n { color: var(--logo-mid); }
.acc-row.open .acc-icon { transform: rotate(45deg); border-color: var(--bronze); }
.acc-icon svg { width: 11px; height: 11px; stroke: var(--dark); transition: stroke .3s; }
.acc-row.open .acc-icon svg { stroke: var(--bronze); }
.acc-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}
.acc-row.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; padding-left: 100px; }
.acc-body-text {
  padding: 20px 0 36px;
  font-size: .875rem; color: var(--body-color);
  max-width: 520px; line-height: 1.8;
}

/* ── VERTICALS ── */
#verticals { background: var(--dark); }
#verticals .s-head { border-bottom-color: var(--border-dark); }
#verticals .s-title { color: var(--bg); }
#verticals .s-num { color: rgba(247,244,239,.25); }
.vert-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-dark);
}
.vert-item {
  border-bottom: 1px solid var(--border-dark);
  border-right: 1px solid var(--border-dark);
  padding: 32px 40px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
  cursor: default;
}
.vert-item:nth-child(even) { border-right: none; }
.vert-item::before {
  content: ''; position: absolute; inset: 0;
  background: var(--bronze) url('/public/texture-dark.jpg') center/cover;
  background-blend-mode: soft-light;
  transform: translateX(-101%);
  transition: transform .42s cubic-bezier(.76,0,.24,1);
}
.vert-item:hover::before { transform: translateX(0); }
.vert-top {
  display: flex; justify-content: space-between; align-items: baseline;
  position: relative; z-index: 1;
}
.vert-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 300; color: var(--bg); letter-spacing: .01em;
  transition: color .3s;
}
.vert-item:hover .vert-name { color: var(--dark); }
.vert-n {
  font-size: .6rem; letter-spacing: .1em;
  color: rgba(247,244,239,.25);
  transition: color .3s;
}
.vert-item:hover .vert-n { color: rgba(26,26,24,.35); }
.vert-sub {
  font-size: .65rem; color: rgba(247,244,239,.3);
  letter-spacing: .04em; line-height: 1.5;
  position: relative; z-index: 1;
  transition: color .3s;
}
.vert-item:hover .vert-sub { color: rgba(26,26,24,.5); }
a.vert-item { text-decoration: none; cursor: pointer; color: inherit; padding-bottom: 56px; }
a.vert-item .vert-arr {
  position: absolute; bottom: 28px; left: 40px; z-index: 2;
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bronze-light); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: color .3s, transform .3s, gap .3s;
}
a.vert-item .vert-arr::after {
  content: ''; width: 24px; height: 1px; background: var(--bronze-light);
  transition: width .3s, background .3s;
}
a.vert-item:hover .vert-arr { color: var(--dark); gap: 14px; }
a.vert-item:hover .vert-arr::after { background: var(--dark); width: 36px; }

/* ── WHO ── */
#who { background: var(--bg); }
.who-split {
  display: grid; grid-template-columns: 1fr 1.7fr;
  gap: 6vw; align-items: start;
}
.who-img-wrap {
  position: sticky; top: 88px;
}
.who-img-wrap img {
  width: 100%; height: 580px;
  object-fit: cover; display: block;
}
.who-img-caption {
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 14px;
}
.who-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
  font-weight: 300; line-height: 1.22; letter-spacing: -.02em;
  color: var(--dark); margin-bottom: 48px;
}
.who-quote em { font-style: italic; color: var(--bronze); }
.who-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4vw;
  border-top: 1px solid var(--border); padding-top: 40px;
}
.who-cols p { font-size: .875rem; color: var(--body-color); line-height: 1.85; }
.who-deal-band {
  background: var(--dark); padding: 28px 32px;
  margin-top: 40px;
  display: flex; gap: 48px; align-items: center; flex-wrap: wrap;
}
.wdb-item { display: flex; flex-direction: column; gap: 4px; }
.wdb-label {
  font-size: .55rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,244,239,.28); font-weight: 500;
}
.wdb-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300; color: var(--bg);
  letter-spacing: .01em;
}
.wdb-div { width: 1px; height: 36px; background: var(--border-dark); flex-shrink: 0; }

/* ── PRINCIPAL ── */
#principal { background: var(--bg); }
.principal-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 6vw; align-items: start;
  padding-top: 12px;
}
.principal-side {
  position: sticky; top: 88px;
}
.principal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -.02em;
  color: var(--dark); margin-bottom: 8px;
}
.principal-role {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.principal-meta {
  margin-top: 28px; display: flex; flex-direction: column; gap: 10px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.principal-meta a {
  color: var(--dark); text-decoration: none;
  font-size: .82rem; line-height: 1.4;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px; width: fit-content;
  transition: color .25s, border-color .25s;
}
.principal-meta a:hover { color: var(--bronze); border-bottom-color: var(--bronze); }
.principal-body {
  display: flex; flex-direction: column; gap: 22px;
}
.principal-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 300; line-height: 1.32; letter-spacing: -.015em;
  color: var(--dark); margin-bottom: 14px;
}
.principal-lede em { font-style: italic; color: var(--bronze); }
.principal-body p {
  font-size: .875rem; color: var(--body-color); line-height: 1.85;
  max-width: 620px;
}

/* ── CONTACT ── */
#contact { background: var(--dark); }
#contact .s-head { border-bottom-color: var(--border-dark); }
#contact .s-title { color: var(--bg); }
#contact .s-num { color: rgba(247,244,239,.22); }
.contact-cols {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 8vw;
}
.ci-label {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,244,239,.3); margin-bottom: 10px;
}
.ci-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 300;
  color: var(--bg); margin-bottom: 36px; letter-spacing: .01em;
}
.ci-val a {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid rgba(247,244,239,.15);
  padding-bottom: 2px; transition: border-color .2s, color .2s;
}
.ci-val a:hover { color: var(--bronze-light); border-color: var(--bronze-light); }
.ci-note {
  font-size: .78rem; color: rgba(247,244,239,.25); line-height: 1.75;
  border-top: 1px solid var(--border-dark); padding-top: 22px;
}
.ci-intake {
  font-size: .68rem; letter-spacing: .04em;
  color: rgba(247,244,239,.18); line-height: 1.6;
  margin-bottom: 28px;
  display: flex; align-items: baseline; gap: 10px;
}
.ci-intake::before {
  content: ''; display: inline-block; width: 4px; height: 4px;
  background: var(--bronze); border-radius: 50%; flex-shrink: 0;
  position: relative; top: -1px;
}
/* Form */
.cform { display: flex; flex-direction: column; gap: 22px; }
.fr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fl {
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(247,244,239,.3); font-weight: 500;
}
.fi, .fs, .ft {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(247,244,239,.1);
  color: var(--bg); font-family: 'DM Sans', sans-serif;
  font-size: .875rem; padding: 10px 0 12px;
  outline: none; width: 100%;
  -webkit-appearance: none; appearance: none;
  border-radius: 0; transition: border-color .25s;
}
.fi:focus, .fs:focus, .ft:focus { border-bottom-color: var(--bronze-light); }
.fi::placeholder, .ft::placeholder { color: rgba(247,244,239,.18); font-weight: 300; }
.fs {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B8966A' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center;
}
.fs option { background: #1A1A18; color: var(--bg); }
.ft { resize: none; min-height: 72px; }
.btn-send {
  display: inline-flex; align-items: center; gap: 14px;
  background: transparent; border: 1px solid rgba(247,244,239,.18);
  color: var(--bg); font-family: 'DM Sans', sans-serif;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; padding: 15px 30px; cursor: pointer;
  align-self: flex-start; position: relative; overflow: hidden;
  transition: border-color .3s, color .3s;
}
.btn-send::before {
  content: ''; position: absolute; inset: 0;
  background: var(--bronze);
  transform: translateX(-101%);
  transition: transform .38s cubic-bezier(.76,0,.24,1);
}
.btn-send:hover { border-color: var(--bronze); color: var(--dark); }
.btn-send:hover::before { transform: translateX(0); }
.btn-send span, .btn-send-arr { position: relative; z-index: 1; }
.btn-send-arr { width: 12px; height: 1px; background: currentColor; flex-shrink: 0; }
.btn-send-arr::after {
  content: ''; position: absolute; right: 0; top: -2px;
  width: 4px; height: 4px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
}
#fs-ok { display: none; font-size: .78rem; color: var(--bronze-light); letter-spacing: .04em; margin-top: 4px; }

/* ── FOOTER ── */
footer {
  background: #111110;
  border-top: 1px solid rgba(255,255,255,.04);
}
.ft-block { padding: 64px 5vw 28px; }
.ft-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 6vw; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ft-col .ft-h {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(247,244,239,.45); font-weight: 500; margin-bottom: 18px;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col li a {
  font-size: .85rem; color: rgba(247,244,239,.65);
  text-decoration: none; transition: color .2s;
}
.ft-col li a:hover { color: var(--bronze-light); }
.ft-loc {
  font-size: .68rem; color: rgba(247,244,239,.32);
  margin-top: 14px; letter-spacing: .04em;
}
.ft-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; flex-wrap: wrap; gap: 10px;
}
.ft-text { font-size: .68rem; color: rgba(247,244,239,.32); letter-spacing: .04em; }
.ft-email { font-size: .7rem; color: rgba(247,244,239,.5); text-decoration: none; letter-spacing: .04em; transition: color .2s; }
.ft-email:hover { color: var(--bronze-light); }

/* ── PAGE-LEVEL: SUBPAGE HERO (compact, no video) ── */
.subhero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 120px 5vw 80px;
  position: relative; overflow: hidden;
}
.subhero-eyebrow {
  display: block; font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500; margin-bottom: 24px;
}
.subhero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  font-weight: 300; line-height: 1.02;
  letter-spacing: -.025em; color: var(--dark);
  max-width: 14ch; margin-bottom: 28px;
}
.subhero-h1 em { font-style: italic; color: var(--bronze); }
.subhero-lede {
  font-size: 1rem; color: var(--body-color); line-height: 1.72;
  max-width: 560px; border-left: 2px solid var(--logo-mid);
  padding-left: 22px; margin-bottom: 32px;
}
.subhero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; font-weight: 500;
}

/* ── PAGE-LEVEL: REALITY (long-form prose section) ── */
.reality {
  background: var(--bg);
  padding: 96px 5vw;
}
.reality-grid {
  display: grid; grid-template-columns: 1fr 1.7fr; gap: 6vw;
  align-items: start;
}
.reality-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 300; line-height: 1.28; letter-spacing: -.02em;
  color: var(--dark); position: sticky; top: 96px;
}
.reality-quote em { font-style: italic; color: var(--bronze); }
.reality-body { display: flex; flex-direction: column; gap: 22px; }
.reality-body p {
  font-size: .92rem; color: var(--body-color); line-height: 1.85;
  max-width: 640px;
}
.reality-body p strong { color: var(--dark); font-weight: 500; }

/* ── PAGE-LEVEL: BUYER TYPES (definition list) ── */
.buyers-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; border-top: 1px solid var(--border);
}
.buyer-cell {
  padding: 36px 40px 36px 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.buyer-cell:nth-child(even) { border-right: none; padding-right: 0; padding-left: 40px; }
.buyer-cell:last-child, .buyer-cell:nth-last-child(2) { border-bottom: none; }
.buyer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 300; color: var(--dark);
  margin-bottom: 10px; letter-spacing: -.01em;
}
.buyer-desc { font-size: .85rem; color: var(--body-color); line-height: 1.75; }

/* ── PAGE-LEVEL: VALUATION DRIVERS ── */
.driver-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--border-dark);
}
.driver-col {
  padding: 40px 44px;
  border-right: 1px solid var(--border-dark);
}
.driver-col:last-child { border-right: none; }
.driver-label {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bronze-light); margin-bottom: 18px;
}
.driver-col.up .driver-label { color: var(--logo-mid); }
.driver-col.down .driver-label { color: #c08a8a; }
.driver-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.driver-col li {
  font-size: .85rem; color: rgba(247,244,239,.78); line-height: 1.7;
  padding-left: 16px; position: relative;
}
.driver-col li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 8px; height: 1px; background: rgba(247,244,239,.4);
}
.driver-col.up li::before { background: var(--logo-mid); }
.driver-col.down li::before { background: #c08a8a; }

/* ── PAGE-LEVEL: FAQ ── */
#faq { background: var(--bg); }
.faq-list { border-bottom: 1px solid var(--border); }
.faq-row {
  border-top: 1px solid var(--border);
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 28px; padding: 26px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 300; color: var(--dark); letter-spacing: -.01em;
  transition: color .25s;
}
.faq-row:hover .faq-q { color: var(--bronze); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .35s, border-color .3s;
}
.faq-row.open .faq-icon { transform: rotate(45deg); border-color: var(--bronze); }
.faq-icon svg { width: 10px; height: 10px; stroke: var(--dark); transition: stroke .3s; }
.faq-row.open .faq-icon svg { stroke: var(--bronze); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-row.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-text {
  padding: 0 0 28px;
  font-size: .92rem; color: var(--body-color); line-height: 1.8;
  max-width: 720px;
}

/* ── PAGE-LEVEL: BREADCRUMB + BACK CTA ── */
.crumb {
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.crumb a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 1px; }
.crumb a:hover { color: var(--bronze); border-color: var(--bronze); }
.crumb-sep { margin: 0 10px; opacity: .5; }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .hero-vgrad { background: rgba(247,244,239,.93); }
  .diff-grid { grid-template-columns: 1fr; gap: 36px; }
  .diff-item { border-right: none; padding: 0 0 36px; border-bottom: 1px solid var(--border); }
  .diff-item:last-child { border-bottom: none; padding-bottom: 0; }
  .diff-item:not(:first-child) { padding-left: 0; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border-dark); padding: 44px 0; }
  .stat-cell:last-child { border-bottom: none; }
  .acc-header { grid-template-columns: 48px 1fr 36px; gap: 16px; }
  .acc-body-inner { padding-left: 64px; }
  .vert-grid { grid-template-columns: 1fr; }
  .vert-item { border-right: none; }
  .who-split { grid-template-columns: 1fr; }
  .who-img-wrap { display: none; }
  .who-cols { grid-template-columns: 1fr; }
  .who-deal-band { gap: 28px; }
  .wdb-div { display: none; }
  .principal-grid { grid-template-columns: 1fr; gap: 32px; }
  .principal-side { position: relative; top: 0; }
  .contact-cols { grid-template-columns: 1fr; gap: 48px; }
  .fr2 { grid-template-columns: 1fr; }
  .nav-tag { display: none; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .ft-cols { grid-template-columns: 1fr; gap: 36px; padding-bottom: 28px; }
  .ft-bar { flex-direction: column; align-items: flex-start; }
  /* Subpage responsive */
  .subhero { padding: 96px 5vw 56px; }
  .reality-grid { grid-template-columns: 1fr; gap: 32px; }
  .reality-quote { position: relative; top: 0; }
  .buyers-grid { grid-template-columns: 1fr; }
  .buyer-cell { border-right: none; padding: 28px 0; }
  .buyer-cell:nth-child(even) { padding-left: 0; }
  .driver-grid { grid-template-columns: 1fr; }
  .driver-col { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .driver-col:last-child { border-bottom: none; }
}
