/* ===========================================================
   BASR Capital & Advisory — site styles
   =========================================================== */

:root {
  /* palette */
  --espresso:      #2A2017;
  --espresso-deep: #211A11;
  --espresso-2:    #322619;
  --panel:         #2F2417;
  --cream:         #F4EFE6;
  --cream-warm:    #F8F3EA;
  --gold:          #BFA063;
  --gold-light:    #CDB079;
  --ink:           #2A2017;
  --ink-soft:      #6E6051;
  --ink-softer:    #8A7B68;
  --cream-soft:    rgba(244, 239, 230, 0.66);
  --cream-softer:  rgba(244, 239, 230, 0.40);

  /* hairlines */
  --line-light:    rgba(42, 32, 23, 0.14);
  --line-gold:     rgba(191, 160, 99, 0.30);
  --line-dark:     rgba(244, 239, 230, 0.14);
  --line-dark-gold:rgba(191, 160, 99, 0.26);

  /* type */
  --display: "Cormorant Garamond", Georgia, serif;
  --body:    "Spectral", Georgia, serif;
  --sans:    "Jost", "Helvetica Neue", Arial, sans-serif;

  /* metrics */
  --maxw: 1240px;
  --pad: clamp(22px, 5vw, 84px);
  --nav-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

::selection { background: rgba(191, 160, 99, 0.30); color: var(--ink); }

a { color: inherit; text-decoration: none; }

/* ---------- shared helpers ---------- */

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.eyebrow.muted { color: var(--ink-softer); }
section.dark .eyebrow.muted { color: var(--cream-softer); }

.lede {
  font-family: var(--body);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
  margin: 0;
}

section.dark .lede { color: var(--gold-light); }

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

section.dark .section-title { color: var(--cream); }

/* number prefix used on titles */
.num-prefix {
  font-family: var(--display);
  color: var(--gold);
  font-weight: 500;
  font-feature-settings: "lnum" 0;
}

/* reveal-on-scroll
   Base state is VISIBLE so content is never lost if time-based effects
   are unavailable; the entrance plays as a keyframe animation when JS
   adds .in (no fill-mode, so a frozen clock falls back to the visible base). */
@keyframes revealIn {
  from { transform: translateY(40px) scale(.99); }
  to   { transform: none; }
}
.reveal { opacity: 1; }
.reveal.in { animation: revealIn .95s cubic-bezier(.2,.7,.2,1) backwards; }
.reveal.in[data-d="1"] { animation-delay: .10s; }
.reveal.in[data-d="2"] { animation-delay: .20s; }
.reveal.in[data-d="3"] { animation-delay: .30s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { animation: none; transform: none; }
}

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .5s ease, box-shadow .5s ease, height .4s ease;
}
.nav .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* state: scrolled */
.nav.scrolled {
  background: rgba(33, 26, 17, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-dark-gold);
  height: 66px;
}

.brand { display: flex; align-items: baseline; gap: 11px; }
.brand .mark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.30em;
  color: var(--cream);
  padding-left: 2px;
}
.brand .mark .amp { color: var(--gold); }
.brand .sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-softer);
  display: none;
}
@media (min-width: 720px){ .brand .sub { display: inline; } }

.nav-links { display: none; align-items: center; gap: 34px; }
@media (min-width: 940px){ .nav-links { display: flex; } }
.nav-links a {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream-soft);
  position: relative;
  padding: 4px 0;
  transition: color .3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--cream); }
.nav-links a.active::after { width: 100%; background: var(--gold); }

.btn {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
  transition: background .35s ease, color .35s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--gold); color: var(--espresso-deep); }
.btn.solid { background: var(--gold); color: var(--espresso-deep); }
.btn.solid:hover { background: var(--gold-light); }
.btn.lg { padding: 16px 32px; font-size: 13px; }

.nav-cta { display: none; }
@media (min-width: 940px){ .nav-cta { display: inline-block; } }

/* mobile menu toggle */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-right: -8px;
}
@media (min-width: 940px){ .menu-toggle { display: none; } }
.menu-toggle span {
  width: 26px; height: 1.5px; background: var(--cream);
  transition: transform .35s ease, opacity .3s ease;
}
body.menu-open .menu-toggle span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2){ opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--espresso-deep);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
body.menu-open .drawer { opacity: 1; pointer-events: auto; }
.drawer a {
  font-family: var(--display);
  font-size: 32px;
  color: var(--cream);
  padding: 10px 0;
}
.drawer a .i { font-family: var(--sans); font-size: 13px; color: var(--gold); letter-spacing: .2em; margin-right: 14px; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 56px;
  overflow: hidden;
}
.hero::before {
  /* subtle radial warmth */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(191,160,99,0.12), transparent 55%),
    radial-gradient(80% 70% at 8% 100%, rgba(191,160,99,0.06), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; width: 100%; }

.hero-top {
  display: flex; justify-content: space-between;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cream-softer);
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 22px; margin-bottom: clamp(40px, 8vh, 90px);
}
.hero-top .dot { color: var(--gold); }

.hero-glyph {
  width: clamp(150px, 18vw, 230px);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(46px, 8.2vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(24px, 4vh, 40px);
  max-width: 16ch;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(22px, 4vw, 56px);
  max-width: 760px;
}
.hero-meta p {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--cream-soft);
  margin: 0; max-width: 46ch;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: clamp(34px,5vh,52px); }

.hero-foot {
  position: absolute; left: var(--pad); right: var(--pad); bottom: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cream-softer);
}
.scroll-cue { display: flex; align-items: center; gap: 10px; }
.scroll-cue .ln { width: 46px; height: 1px; background: var(--gold); display: inline-block; transform-origin: left;
  animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0%,100%{ transform: scaleX(.4); opacity:.5 } 50%{ transform: scaleX(1); opacity:1 } }

/* ===========================================================
   SECTION SHELL
   =========================================================== */
section.block { padding: clamp(80px, 12vh, 150px) 0; }
section.dark { background: var(--espresso); color: var(--cream); }
section.warm { background: var(--cream-warm); }

.sec-head { max-width: 760px; margin-bottom: clamp(48px, 7vh, 88px); }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head .section-title { margin-bottom: 22px; }

/* ===========================================================
   WHO WE ARE
   =========================================================== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (min-width: 900px){ .who-grid { grid-template-columns: 0.85fr 1.15fr; } }

.who-mark {
  border: 1px solid var(--line-light);
  background: linear-gradient(180deg, #fff8, transparent);
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
}
.who-mark img { width: clamp(150px, 60%, 230px); margin: 0 auto 22px; }
.who-mark .wm {
  font-family: var(--sans); font-weight: 600; font-size: clamp(34px,5vw,52px);
  letter-spacing: 0.22em; color: var(--ink); padding-left: 0.22em;
}
.who-mark .rule { height: 1px; background: var(--line-gold); margin: 18px auto; width: 78%; }
.who-mark .ca {
  font-family: var(--body); font-style: normal; letter-spacing: 0.32em;
  text-transform: uppercase; font-size: 14px; color: var(--ink-soft);
}
.who-mark .ca .amp { color: var(--gold); }
.who-mark .triad {
  font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); margin-top: 24px;
}

.who-body p { margin: 0 0 1.25em; max-width: 40ch; }
.who-body .first { font-size: clamp(21px, 2.2vw, 26px); font-style: italic; color: var(--ink); line-height: 1.5; max-width: 30ch; }
.who-body .first b { font-style: normal; font-weight: 600; color: var(--gold); }
.who-body p b { color: var(--ink); }

/* ===========================================================
   TRACK RECORD — stats
   =========================================================== */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-dark-gold);
  border: 1px solid var(--line-dark-gold);
}
@media (min-width: 640px){ .stats { grid-template-columns: 1fr 1fr; } }

.stat {
  background: var(--espresso);
  padding: clamp(34px, 4vw, 54px);
}
.stat .fig {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}
.stat .fig .sm { font-size: 0.5em; }
.stat .label {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cream-soft);
  margin: 18px 0 10px;
}
.stat .desc { font-size: 16px; color: var(--cream-softer); margin: 0; max-width: 30ch; }

/* ===========================================================
   FOUNDER
   =========================================================== */
.founder-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 76px);
  align-items: start;
}
@media (min-width: 900px){ .founder-grid { grid-template-columns: 0.78fr 1.22fr; } }

.portrait {
  position: relative;
  background: var(--espresso);
  border: 1px solid var(--line-dark-gold);
  padding: 14px;
}
.portrait .frame {
  position: relative; overflow: hidden; background: #14110c;
}
.portrait img { width: 100%; aspect-ratio: 1 / 1.02; object-fit: cover; object-position: 50% 18%; }
.portrait .name-plate { padding: 22px 12px 8px; }
.portrait .pname {
  font-family: var(--display); font-weight: 600; font-size: clamp(28px, 3.2vw, 38px);
  color: var(--cream); line-height: 1;
}
.portrait .creds {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; color: var(--gold);
  margin: 12px 0 8px;
}
.portrait .role { font-style: italic; color: var(--cream-softer); font-size: 16px; }

.founder-body .lede { margin-bottom: 1.6em; max-width: 32ch; }
.founder-body p { margin: 0 0 1.3em; max-width: 52ch; color: var(--ink); }
.founder-body p:last-child { margin-bottom: 0; }
.founder-body .pull b { color: var(--gold); font-weight: 600; }

/* ===========================================================
   ENGAGE — Discover / Diagnose / Design / Deliver
   =========================================================== */
.steps {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 680px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px){ .steps { grid-template-columns: repeat(4,1fr); } }

.step {
  padding: 34px clamp(20px, 2vw, 30px) 36px;
  border-top: 1px solid var(--line-gold);
  position: relative;
}
.step .n {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.28em; color: var(--gold);
}
.step h3 {
  font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3vw, 38px);
  margin: 16px 0 14px; color: var(--ink);
}
.step p { margin: 0; font-size: 16.5px; color: var(--ink-soft); max-width: 28ch; }

/* ===========================================================
   SERVICES — 4 pillars (full depth)
   =========================================================== */
.pillar {
  display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4vw, 60px);
  padding: clamp(46px, 6vh, 78px) 0;
  border-top: 1px solid var(--line-dark);
}
@media (min-width: 920px){
  .pillar { grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 5vw, 90px); }
}
.pillar:first-of-type { border-top: 1px solid var(--line-dark-gold); }

.pillar-lead .pn {
  font-family: var(--display); font-weight: 500; font-size: clamp(30px, 3.4vw, 44px);
  color: var(--gold); margin-right: 0.4em;
}
.pillar-lead h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 4.2vw, 56px); line-height: 1.02;
  color: var(--cream); margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.pillar-lead .titleline { display: block; }
.pillar-lead .desc {
  font-family: var(--body); font-style: italic;
  font-size: clamp(18px, 1.8vw, 21px); color: var(--gold-light);
  margin: 0; max-width: 34ch;
}

.pillar-detail { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); }
@media (min-width: 600px){ .pillar-detail { grid-template-columns: 1fr 1fr; } }

.pd-col .pd-label {
  font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 16px;
}
.pd-col h4 {
  font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2vw, 25px);
  color: var(--cream); margin: 0 0 18px;
}
.pd-col p { font-size: 16px; color: var(--cream-soft); margin: 0 0 1.1em; max-width: 36ch; }
.pd-col p:last-child { margin-bottom: 0; }

.approach-list { display: flex; flex-direction: column; gap: 0; margin: 0; padding: 0; list-style: none; }
.approach-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  padding: 16px 0; border-top: 1px solid var(--line-dark);
  font-size: 16px; color: var(--cream-soft); align-items: baseline;
}
.approach-list li:first-child { border-top: none; padding-top: 0; }
.approach-list .an {
  font-family: var(--display); color: var(--gold); font-size: 18px; font-weight: 500;
}

/* ===========================================================
   VALUES — Boardroom Thinking
   =========================================================== */
.values {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line-light); border: 1px solid var(--line-light);
}
@media (min-width: 640px){ .values { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px){ .values { grid-template-columns: repeat(3,1fr); } }
.value {
  background: var(--cream-warm);
  padding: clamp(30px, 3vw, 44px);
}
.value h3 {
  font-family: var(--display); font-weight: 600; font-size: clamp(22px, 2.2vw, 28px);
  margin: 0 0 14px; color: var(--ink);
}
.value .vn { font-family: var(--sans); font-size: 11px; letter-spacing: 0.26em; color: var(--gold); display: block; margin-bottom: 16px; }
.value p { margin: 0; font-size: 16px; color: var(--ink-soft); }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
@media (min-width: 920px){ .contact-grid { grid-template-columns: 1.05fr 0.95fr; } }

.contact-lead h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(44px, 6.4vw, 88px); line-height: 0.98; margin: 0 0 26px;
  color: var(--cream); letter-spacing: -0.015em;
}
.contact-lead h2 em { font-style: italic; color: var(--gold-light); }
.contact-lead .sub {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 26px;
}
.contact-lead .ty { font-style: italic; color: var(--cream-soft); font-size: 19px; max-width: 40ch; }

/* details card */
.detail-card { background: var(--cream); border: 1px solid var(--line-light); }
.detail-row {
  display: grid; grid-template-columns: 116px 1fr; gap: 18px;
  padding: 22px clamp(20px, 2.6vw, 32px);
  border-top: 1px solid var(--line-light);
  align-items: baseline;
}
.detail-row:first-child { border-top: none; }
.detail-row .k {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.detail-row .v { font-family: var(--body); font-size: 18px; color: var(--ink); }
.detail-row .v a { transition: color .3s ease; }
.detail-row .v a:hover { color: var(--gold); }
.detail-row .v a.social { display: inline-flex; color: var(--ink-soft); }
.detail-row .v a.social:hover { color: var(--gold); }
.detail-row .v a.social .social-ic { width: 22px; height: 22px; display: block; }
.detail-row .v .socials { display: inline-flex; align-items: center; gap: 20px; }
.detail-row .v .creds { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; color: var(--gold); display: block; margin-top: 6px; }
.detail-row .v .soon { font-style: italic; color: var(--ink-softer); display: block; font-size: 15px; margin-top: 4px; }

/* form */
.form { display: grid; gap: 20px; margin-top: 8px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.field input, .field textarea {
  font-family: var(--body); font-size: 17px; color: var(--cream);
  background: transparent; border: none; border-bottom: 1px solid var(--line-dark-gold);
  padding: 10px 2px; outline: none;
  transition: border-color .3s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--cream-softer); }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }
.form .btn { justify-self: start; margin-top: 6px; }
.form-note { font-size: 14px; color: var(--cream-softer); font-style: italic; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--espresso-deep); color: var(--cream-softer);
  padding: clamp(48px, 7vh, 78px) 0 40px;
  border-top: 1px solid var(--line-dark-gold);
}
.footer-top {
  display: flex; flex-wrap: wrap; gap: 30px;
  justify-content: space-between; align-items: flex-start;
  padding-bottom: 44px; border-bottom: 1px solid var(--line-dark);
}
.footer .f-brand .mark {
  font-family: var(--sans); font-weight: 600; font-size: 26px;
  letter-spacing: 0.30em; color: var(--cream); padding-left: 0.3em;
}
.footer .f-brand .amp { color: var(--gold); }
.footer .f-brand .ca {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--cream-softer); margin-top: 8px;
}
.f-nav { display: flex; flex-wrap: wrap; gap: 26px; }
.f-nav a {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cream-soft); transition: color .3s ease;
}
.f-nav a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  padding-top: 26px;
  font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer .f-brand { display: block; }

/* ===========================================================
   SUBPAGE HERO (The Firm / Services / Founder / Contact)
   =========================================================== */
.page-hero {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  padding: calc(var(--nav-h) + clamp(56px, 12vh, 132px)) 0 clamp(56px, 11vh, 120px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark-gold);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 80% at 84% 8%, rgba(191,160,99,0.12), transparent 55%),
    radial-gradient(70% 70% at 4% 100%, rgba(191,160,99,0.06), transparent 60%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero .ph-index {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 16px; margin-bottom: 30px;
}
.page-hero .ph-index .ln { width: 46px; height: 1px; background: var(--line-dark-gold); display: inline-block; }
.page-hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(44px, 7.4vw, 104px); line-height: 0.98;
  letter-spacing: -0.015em; margin: 0; max-width: 16ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .ph-lede {
  font-family: var(--body); font-style: italic;
  font-size: clamp(19px, 2.2vw, 26px); line-height: 1.5;
  color: var(--gold-light); margin: clamp(24px, 4vh, 36px) 0 0; max-width: 44ch;
}

/* centered variant (e.g. Contact hero) */
.page-hero.center { text-align: center; }
.page-hero.center .crumb { justify-content: center; }
.page-hero.center h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.page-hero.center .ph-lede { margin-left: auto; margin-right: auto; }
.page-hero .ph-meta {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px);
  margin-top: clamp(30px, 5vh, 48px);
  padding-top: clamp(26px, 4vh, 36px);
  border-top: 1px solid var(--line-dark);
}
.page-hero .ph-meta .mi { display: grid; gap: 6px; }
.page-hero .ph-meta .mk {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cream-softer);
}
.page-hero .ph-meta .mv {
  font-family: var(--display); font-size: clamp(22px, 2.4vw, 30px); color: var(--cream);
}

/* breadcrumb */
.crumb {
  display: flex; align-items: center; gap: 10px; margin-bottom: 26px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-softer);
}
.crumb a { transition: color .3s ease; }
.crumb a:hover { color: var(--gold-light); }
.crumb .sep { color: var(--gold); }

/* ===========================================================
   HOME — positioning + directory
   =========================================================== */
.positioning { background: var(--cream); }
.positioning .wrap {
  display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 880px){ .positioning .wrap { grid-template-columns: 0.8fr 1.2fr; } }
.positioning .p-eyebrow { margin-bottom: 22px; }
.positioning .p-lead {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 3.8vw, 50px); line-height: 1.08; color: var(--ink);
  letter-spacing: -0.01em; margin: 0; max-width: 14ch;
}
.positioning .p-body p { margin: 0 0 1.3em; max-width: 46ch; }
.positioning .p-body p:last-child { margin-bottom: 0; }
.positioning .p-body .first { font-style: italic; font-size: clamp(20px, 2.1vw, 25px); color: var(--ink); max-width: 32ch; }
.positioning .p-body .first b { font-style: normal; color: var(--gold); font-weight: 600; }
.positioning .p-body b { color: var(--ink); }

/* directory of pages */
.directory { background: var(--espresso); color: var(--cream); }
.dir-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line-dark-gold); border: 1px solid var(--line-dark-gold);
  margin-top: clamp(40px, 6vh, 70px);
}
@media (min-width: 720px){ .dir-grid { grid-template-columns: 1fr 1fr; } }
.dir-card {
  background: var(--espresso);
  padding: clamp(34px, 4vw, 52px);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .4s ease;
  position: relative;
}
.dir-card:hover { background: var(--espresso-2); }
.dir-card .dc-n {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.26em; color: var(--gold);
}
.dir-card h3 {
  font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3.2vw, 40px);
  margin: 0; color: var(--cream); line-height: 1.02;
}
.dir-card p { margin: 0; font-size: 16.5px; color: var(--cream-soft); max-width: 36ch; }
.dir-card .dc-go {
  margin-top: auto; font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-light);
  display: inline-flex; align-items: center; gap: 10px;
}
.dir-card .dc-go .arr { transition: transform .35s ease; }
.dir-card:hover .dc-go .arr { transform: translateX(6px); }

/* service teaser cards (home) */
.svc-teaser { display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line-light); border: 1px solid var(--line-light);
  margin-top: clamp(40px, 6vh, 64px); }
@media (min-width: 640px){ .svc-teaser { grid-template-columns: 1fr 1fr; } }
.svc-tcard { background: var(--cream-warm); padding: clamp(28px, 3vw, 42px); display: flex; flex-direction: column; gap: 12px; }
.svc-tcard .st-n { font-family: var(--display); color: var(--gold); font-size: 22px; }
.svc-tcard h4 { font-family: var(--display); font-weight: 600; font-size: clamp(21px, 2.2vw, 27px); margin: 0; color: var(--ink); }
.svc-tcard p { margin: 0; font-size: 15.5px; color: var(--ink-soft); }

/* founder teaser (home) */
.founder-teaser .wrap {
  display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 72px); align-items: center;
}
@media (min-width: 860px){ .founder-teaser .wrap { grid-template-columns: 0.6fr 1.4fr; } }
.ft-portrait { background: var(--espresso); border: 1px solid var(--line-dark-gold); padding: 12px; }
.ft-portrait img { width: 100%; aspect-ratio: 1/1.05; object-fit: cover; object-position: 50% 16%; }
.founder-teaser .ft-body .lede { margin-bottom: 1.4em; max-width: 30ch; }
.founder-teaser .ft-body p { max-width: 50ch; }

/* CTA band */
.cta-band { background: var(--espresso-deep); color: var(--cream); text-align: center; }
.cta-band .wrap { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.cta-band h2 {
  font-family: var(--display); font-weight: 500; font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.0; margin: 0; letter-spacing: -0.015em; max-width: 18ch;
}
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band .actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ===========================================================
   WEB-NATIVE CUES (site-wide)
   =========================================================== */

/* scroll progress bar (injected by script.js) */
.scroll-prog {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1000; pointer-events: none;
}

/* hero generative data-field (canvas injected by script.js) */
.page-hero { overflow: hidden; }
.hero-field { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .6; }
.page-hero > .wrap { z-index: 1; }

/* chapter marker — number + eyebrow */
.chapter { display: flex; align-items: baseline; gap: 16px; margin-bottom: 26px; }
.chapter .ch-num {
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  letter-spacing: .24em; color: var(--gold); flex: none;
}
.chapter .eyebrow { margin: 0; flex: none; }

/* card hover lift */
.step, .value, .stat {
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease, background .45s ease;
}
.step:hover, .value:hover, .stat:hover {
  transform: translateY(-5px); box-shadow: 0 24px 50px -30px rgba(0,0,0,.6);
  position: relative; z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .step:hover, .value:hover, .stat:hover { transform: none; box-shadow: none; }
}
