/* Shared detail-page styles — identical palette & typography to the index */
:root {
  --paper: #f6f2ec;
  --paper-2: #ede5d8;
  --ink: #111014;
  --ink-soft: #2b2a31;
  --muted: #6a6562;
  --rule: #d7cfc2;
  --rule-strong: #bfb4a0;
  --oak: #b98c5a;
  --walnut: #6b3d1f;
  --moss: #3e5b3a;
  --sky: #2a6fb1;
  --coral: #da7756;
  --ink-deep: #0e1622;
  --cream: #f9f5ef;
  --serif: "Fraunces","Times New Roman",ui-serif,Georgia,serif;
  --sans: "Manrope",system-ui,-apple-system,"Helvetica Neue",Arial,sans-serif;
  --shadow-deep: 0 30px 60px -25px rgba(17,16,20,0.35), 0 16px 28px -20px rgba(107,61,31,0.25);
  --shadow-card: 0 18px 36px -22px rgba(17,16,20,0.30), 0 6px 14px -8px rgba(107,61,31,0.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased;
  /* subtle warm paper texture + soft vignette */
  background-image:
    radial-gradient(1200px 600px at 85% -10%, rgba(218,119,86,0.09), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(185,140,90,0.10), transparent 60%),
    radial-gradient(1000px 700px at 50% 120%, rgba(62,91,58,0.06), transparent 60%);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px,4vw,56px); position: relative; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 clamp(20px,4vw,56px); position: relative; }

.nav { position: sticky; top: 0; z-index: 60; background: rgba(246,242,236,0.88); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--rule); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px clamp(20px,4vw,56px); }
.nav-logo { font-family: var(--serif); font-weight: 500; font-size: 20px; letter-spacing: -0.01em; }
.nav-logo small { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; color: var(--muted); margin-left: 8px; text-transform: uppercase; }
.nav-links { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.12em; transition: color 180ms ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.on { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

.eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.24em; color: var(--muted); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow .dot { width: 6px; height: 6px; background: var(--walnut); border-radius: 50%; box-shadow: 0 0 0 4px rgba(107,61,31,0.12); }

.crumbs { padding: 18px 0 0; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.16em; }
.crumbs a { color: var(--ink-soft); transition: color 180ms ease; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- HERO (with 3D floating accents) ---------- */
.hero { position: relative; padding: clamp(40px,7vw,96px) 0 clamp(30px,5vw,70px); border-bottom: 1px solid var(--rule); overflow: hidden; }
.hero::before,
.hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px);
  pointer-events: none; z-index: 0;
}
.hero::before {
  width: 520px; height: 520px; top: -160px; right: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(218,119,86,0.45), rgba(218,119,86,0) 70%);
  animation: float-a 14s ease-in-out infinite alternate;
}
.hero::after {
  width: 460px; height: 460px; bottom: -180px; left: -100px;
  background: radial-gradient(circle at 60% 40%, rgba(185,140,90,0.40), rgba(185,140,90,0) 70%);
  animation: float-b 18s ease-in-out infinite alternate;
}
.hero > .container { position: relative; z-index: 1; }
@keyframes float-a { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-30px,40px,0) scale(1.08); } }
@keyframes float-b { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(40px,-30px,0) scale(1.05); } }

.hero h1 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(44px,7vw,96px); line-height: 0.98; letter-spacing: -0.025em; margin: 14px 0 18px;
  /* subtle extruded letterpress */
  text-shadow: 0 1px 0 rgba(255,255,255,0.7), 0 2px 0 rgba(107,61,31,0.06);
}
.hero .lede { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(20px,2.4vw,28px); line-height: 1.35; color: var(--ink-soft); max-width: 50ch; margin: 0; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 28px; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }
.hero-meta span b { color: var(--ink); font-weight: 600; }

.hero-img {
  margin-top: clamp(28px,4vw,48px); position: relative; perspective: 1400px; transform-style: preserve-3d;
}
.hero-img img {
  width: 100%; aspect-ratio: 21/9; object-fit: cover;
  box-shadow: var(--shadow-deep);
  transform: translateZ(0) rotateX(0.6deg);
  transition: transform .9s cubic-bezier(.2,.8,.2,1), box-shadow .6s ease;
  border-radius: 2px;
}
.hero-img:hover img { transform: translateZ(14px) rotateX(0) scale(1.005); }
.hero-img::after {
  content: ""; position: absolute; inset: auto 8% -14px 8%; height: 28px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(17,16,20,0.28), rgba(17,16,20,0) 70%);
  filter: blur(6px); z-index: -1;
}

/* ---------- PROSE ---------- */
.prose { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); position: relative; }
.prose h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px,4vw,46px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 22px; }
.prose p { font-family: var(--serif); font-size: clamp(17px,1.5vw,19px); line-height: 1.7; color: var(--ink-soft); margin: 0 0 18px; }
.prose p.first::first-letter { font-family: var(--serif); font-weight: 500; font-size: 5em; float: left; line-height: 0.85; padding: 6px 10px 0 0; color: var(--walnut); text-shadow: 2px 2px 0 rgba(107,61,31,0.10); }

/* ---------- STATS (extruded numerals) ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 28px; padding: clamp(36px,5vw,60px) 0; border-bottom: 1px solid var(--rule); }
.stats .stat { position: relative; padding-left: 14px; }
.stats .stat::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(to bottom, var(--walnut), rgba(107,61,31,0));
}
.stats .stat .k {
  font-family: var(--serif); font-style: italic; font-size: clamp(34px,5vw,52px); color: var(--walnut); line-height: 1;
  text-shadow:
    1px 1px 0 rgba(107,61,31,0.18),
    2px 2px 0 rgba(107,61,31,0.14),
    3px 3px 0 rgba(107,61,31,0.10),
    4px 4px 0 rgba(107,61,31,0.06);
}
.stats .stat .v { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 10px; }

/* ---------- GALLERY (3D perspective tilt) ---------- */
.gallery { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); }
.gallery h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); margin: 0 0 28px; letter-spacing: -0.015em; }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 20px; perspective: 1400px; }
.gallery-grid figure {
  margin: 0; grid-column: span 4; position: relative;
  transform-style: preserve-3d;
  transform: translateZ(0) rotateX(0) rotateY(0);
  transition: transform .7s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
  will-change: transform;
}
.gallery-grid figure.wide { grid-column: span 8; }
.gallery-grid figure.full { grid-column: span 12; }
.gallery-grid figure img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
  border-radius: 2px;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}
.gallery-grid figure.wide img, .gallery-grid figure.full img { aspect-ratio: 16/9; }
.gallery-grid figure:hover {
  transform: translateZ(18px) rotateX(1.5deg) rotateY(-2deg);
  z-index: 2;
}
.gallery-grid figure:hover img {
  box-shadow: 0 40px 70px -30px rgba(17,16,20,0.45), 0 20px 30px -18px rgba(107,61,31,0.30);
}
.gallery-grid figure::after {
  content: ""; position: absolute; left: 10%; right: 10%; bottom: -10px; height: 20px;
  background: radial-gradient(closest-side, rgba(17,16,20,0.22), rgba(17,16,20,0) 70%);
  filter: blur(6px); z-index: -1; opacity: .6;
  transition: opacity .5s ease, transform .5s ease;
}
.gallery-grid figure:hover::after { opacity: 1; transform: translateY(6px) scaleX(1.04); }
.gallery-grid figcaption { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 12px; }
@media (max-width: 900px) {
  .gallery-grid figure, .gallery-grid figure.wide, .gallery-grid figure.full { grid-column: span 12; }
  .gallery-grid figure:hover { transform: none; }
}

/* ---------- SPEC TABLE ---------- */
.spec-table { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); background: var(--paper-2); position: relative; }
.spec-table h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); margin: 0 0 28px; letter-spacing: -0.015em; }
.spec-table table { width: 100%; border-collapse: collapse; font-family: var(--sans); }
.spec-table tr { border-bottom: 1px solid var(--rule); transition: background 180ms ease; }
.spec-table tr:hover { background: rgba(255,255,255,0.35); }
.spec-table td { padding: 18px 0; vertical-align: top; font-size: 15px; color: var(--ink-soft); }
.spec-table td:first-child { width: 34%; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; font-weight: 600; padding-left: 8px; }

/* ---------- CATALOG ---------- */
.catalog { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); }
.catalog h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); margin: 0 0 12px; letter-spacing: -0.015em; }
.catalog .lede2 { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 18px; margin: 0 0 28px; max-width: 60ch; }
.catalog-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 0; border-top: 1px solid var(--rule); }
.catalog-list .cat { padding: 22px 6px; border-bottom: 1px solid var(--rule); transition: transform .4s ease, padding-left .4s ease, background .4s ease; }
.catalog-list .cat:hover { background: rgba(255,255,255,0.4); padding-left: 18px; transform: translateZ(0); }
.catalog-list .cat h4 { font-family: var(--serif); font-weight: 500; font-size: 19px; margin: 0 0 6px; letter-spacing: -0.01em; }
.catalog-list .cat p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- CONNECT (dark, multi-layered) ---------- */
.connect {
  padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(218,119,86,0.18), transparent 60%),
    radial-gradient(700px 500px at 100% 100%, rgba(42,111,177,0.14), transparent 60%),
    var(--ink-deep);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.connect h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); margin: 0 0 30px; letter-spacing: -0.015em; color: var(--cream); }
.connect-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; perspective: 1200px; }
.connect-card {
  padding: 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), background .4s ease, border-color .4s ease;
}
.connect-card:hover {
  transform: translateZ(14px) translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(218,119,86,0.45);
}
.connect-card .tag { font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--coral); margin-bottom: 10px; }
.connect-card h4 { font-family: var(--serif); font-weight: 500; font-size: 20px; margin: 0 0 8px; color: var(--cream); }
.connect-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.55; margin: 0; }
.connect-card a { display: inline-block; margin-top: 14px; font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--cream); border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 2px; }
.connect-card a:hover { border-bottom-color: var(--coral); color: var(--coral); }

/* ---------- CTA ROW ---------- */
.cta-row { padding: clamp(50px,7vw,90px) 0; text-align: left; position: relative; }
.cta-row h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px,4vw,46px); letter-spacing: -0.02em; margin: 0 0 16px; max-width: 22ch; }
.cta-row p { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 19px; max-width: 52ch; margin: 0 0 28px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px;
  font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--ink); cursor: pointer; background: var(--ink); color: var(--paper);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 4px 0 rgba(17,16,20,0.15);
}
.btn-primary:hover { background: var(--walnut); border-color: var(--walnut); transform: translateY(-2px); box-shadow: 0 8px 0 rgba(107,61,31,0.18); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: 0 4px 0 rgba(17,16,20,0.08); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); box-shadow: 0 8px 0 rgba(17,16,20,0.18); }

.foot { padding: 60px 0 36px; background: var(--paper-2); border-top: 1px solid var(--rule); }
.foot-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; }
.foot-row a { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.14em; transition: color 180ms ease; }
.foot-row a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.foot small { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; }

/* ---------- REVEAL ANIMATIONS (IntersectionObserver target) ---------- */
.lift { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.lift.in { opacity: 1; transform: translateY(0); }
.lift.delay-1 { transition-delay: .08s; }
.lift.delay-2 { transition-delay: .16s; }
.lift.delay-3 { transition-delay: .24s; }
.lift.delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .lift { opacity: 1; transform: none; transition: none; }
  .hero::before, .hero::after { animation: none; }
  .gallery-grid figure { transform: none !important; }
}

/* ---------- SUB-MODAL ---------- */
.sub-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(14,16,20,0.58); backdrop-filter: blur(8px); z-index: 1000; padding: 24px; }
.sub-modal.open { display: flex; animation: modal-in .3s ease; }
@keyframes modal-in { from { opacity: 0; } to { opacity: 1; } }
.sub-card { background: var(--paper); color: var(--ink); width: min(520px,100%); max-height: 92vh; overflow: auto; border: 1px solid var(--rule-strong); padding: clamp(28px,4vw,44px); position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.35); animation: card-in .4s cubic-bezier(.2,.8,.2,1); }
@keyframes card-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.sub-card .sub-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: transparent; border: 1px solid var(--rule-strong); color: var(--ink-soft); cursor: pointer; font-size: 18px; line-height: 1; transition: background 180ms ease, color 180ms ease, border-color 180ms ease; }
.sub-card .sub-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sub-card .sub-eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.sub-card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px,3.4vw,34px); line-height: 1.08; letter-spacing: -0.015em; margin: 0 0 10px; }
.sub-card .sub-brand { font-family: var(--serif); font-style: italic; color: var(--walnut); }
.sub-card .sub-lede { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 22px; }
.sub-form { display: flex; flex-direction: column; gap: 14px; }
.sub-form label { font-family: var(--sans); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.sub-form input[type="email"] { width: 100%; padding: 13px 14px; font-family: var(--sans); font-size: 15px; border: 1px solid var(--rule-strong); background: #fff; color: var(--ink); border-radius: 0; }
.sub-form input[type="email"]:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 2px rgba(17,16,20,0.08); }
.sub-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.sub-chip { font-family: var(--sans); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; padding: 6px 10px; border: 1px solid var(--rule-strong); background: var(--paper-2); color: var(--ink-soft); }
.sub-submit { margin-top: 8px; padding: 13px 18px; background: var(--ink); color: var(--paper); font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--ink); cursor: pointer; transition: background 200ms ease, border-color 200ms ease, transform 200ms ease; }
.sub-submit:hover { background: var(--walnut); border-color: var(--walnut); transform: translateY(-1px); }
.sub-fineprint { font-size: 12px; color: var(--muted); line-height: 1.55; margin: 14px 0 0; }
.sub-success { margin-top: 18px; padding: 14px 16px; background: var(--paper-2); border-left: 3px solid var(--moss); font-size: 14px; color: var(--ink-soft); display: none; }
.sub-success.show { display: block; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero-meta { gap: 10px 18px; }
  .hero::before, .hero::after { filter: blur(50px); }
}

/* ---------- DOnNA logo block (shared) ---------- */
.donna-block { padding: clamp(40px,6vw,80px) 0; border-bottom: 1px solid var(--rule);
  background: radial-gradient(900px 480px at 50% 0%, rgba(218,119,86,0.10), transparent 70%), var(--paper); }
.donna-logo {
  font-family: var(--serif); font-weight: 500; font-size: clamp(68px,12vw,180px);
  line-height: 0.9; letter-spacing: -0.045em; margin: 0;
  background: linear-gradient(180deg, #1b1b22 0%, #3a3a44 48%, #0e0e14 52%, #545460 70%, #1a1a22 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 2px 0 rgba(255,255,255,0.4);
  filter: drop-shadow(0 20px 28px rgba(17,16,20,0.32)) drop-shadow(0 6px 10px rgba(107,61,31,0.22));
}
.donna-sub { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); margin: 14px 0 0; }
.donna-caption { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: clamp(18px,2.2vw,24px); line-height: 1.45; margin: 18px 0 0; max-width: 60ch; }

/* ---------- Role grid (C-suite personality cards) ---------- */
.roles { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); }
.roles h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); margin: 0 0 10px; letter-spacing: -0.015em; }
.roles .lede2 { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 17px; margin: 0 0 36px; max-width: 64ch; }
.role-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 18px; perspective: 1200px; }
.role-card {
  background: #fff; border: 1px solid var(--rule); padding: 22px 22px 20px;
  transform-style: preserve-3d; transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease, border-color .4s ease;
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.role-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(600px 300px at var(--mx,50%) var(--my,0%), rgba(218,119,86,0.12), transparent 70%);
  transition: opacity .5s ease;
}
.role-card:hover { transform: translateZ(12px) translateY(-3px); border-color: rgba(218,119,86,0.45); }
.role-card:hover::before { opacity: 1; }
.role-avatar {
  width: 56px; height: 56px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500; font-size: 22px; color: #fff;
  background: linear-gradient(135deg, var(--walnut), var(--ink-deep));
  box-shadow: 0 8px 14px -8px rgba(107,61,31,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  margin-bottom: 14px;
}
.role-card[data-tone="coral"] .role-avatar { background: linear-gradient(135deg, var(--coral), var(--walnut)); }
.role-card[data-tone="moss"]  .role-avatar { background: linear-gradient(135deg, var(--moss), #22361f); }
.role-card[data-tone="sky"]   .role-avatar { background: linear-gradient(135deg, var(--sky), #103a66); }
.role-card[data-tone="oak"]   .role-avatar { background: linear-gradient(135deg, var(--oak), #6b4a22); }
.role-card[data-tone="ink"]   .role-avatar { background: linear-gradient(135deg, #2b2a31, #0e0e14); }
.role-card h4 { font-family: var(--serif); font-weight: 500; font-size: 20px; margin: 0 0 2px; letter-spacing: -0.01em; }
.role-card .rank { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.role-card .prompt, .role-card .reply {
  font-family: var(--sans); font-size: 13px; line-height: 1.55; padding: 10px 12px; border-radius: 2px; margin-top: 8px; position: relative;
}
.role-card .prompt { background: var(--paper-2); color: var(--ink-soft); border-left: 2px solid var(--oak); }
.role-card .reply  { background: #0e1622; color: #f1e8da; border-left: 2px solid var(--coral); }
.role-card .prompt b, .role-card .reply b { font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; opacity: .7; display: block; margin-bottom: 4px; }
.role-card .persona { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--walnut); margin-top: 10px; }

/* ---------- Tool / feature pill row ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.pill { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid var(--rule-strong); color: var(--ink-soft); background: var(--paper-2); border-radius: 999px; }
.pill.coral { border-color: rgba(218,119,86,0.5); background: rgba(218,119,86,0.08); color: var(--walnut); }

/* ---------- Video reel (looping MP4 as GIF-like asset) ---------- */
.reel-block { padding: clamp(40px,6vw,80px) 0; border-bottom: 1px solid var(--rule); }
.reel-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--rule); box-shadow: var(--shadow-deep); background: #0e1622; }
.reel-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-wrap.portrait { aspect-ratio: 9/16; max-width: 420px; margin: 0 auto; }
.reel-caption { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- Compare table (cost comparison) ---------- */
.compare { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); background: var(--paper-2); }
.compare h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); margin: 0 0 10px; letter-spacing: -0.015em; }
.compare .lede2 { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 17px; margin: 0 0 28px; max-width: 64ch; }
.compare-table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 14px; background: #fff; box-shadow: var(--shadow-card); }
.compare-table th, .compare-table td { padding: 14px 14px; text-align: left; border-bottom: 1px solid var(--rule); }
.compare-table th { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); background: var(--paper); }
.compare-table td.lksb { background: rgba(62,91,58,0.08); font-weight: 600; color: var(--moss); }
.compare-table td.broker { color: #b33a1a; }
.compare-table td.gov { color: var(--ink-soft); }
.compare-highlight { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 18px; margin-top: 22px; }
.compare-highlight .box { padding: 18px; background: #fff; border: 1px solid var(--rule); box-shadow: var(--shadow-card); }
.compare-highlight .box .n { font-family: var(--serif); font-style: italic; color: var(--walnut); font-size: 36px; line-height: 1; }
.compare-highlight .box .l { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-top: 8px; }

/* ---------- Ticket / seminar subscription block ---------- */
.seminar { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule);
  background: radial-gradient(800px 400px at 10% 0%, rgba(42,111,177,0.14), transparent 60%), radial-gradient(700px 500px at 100% 100%, rgba(218,119,86,0.18), transparent 60%), var(--ink-deep); color: var(--cream); }
.seminar h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); margin: 0 0 14px; letter-spacing: -0.015em; color: var(--cream); }
.seminar .lede2 { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.8); margin: 0 0 28px; max-width: 60ch; }
.seminar-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; }
@media (max-width: 900px) { .seminar-grid { grid-template-columns: 1fr; } }
.ticket-card { padding: 26px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.ticket-card .price { font-family: var(--serif); font-weight: 500; font-size: 56px; line-height: 1; color: var(--coral); }
.ticket-card .plabel { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }
.ticket-card ul { padding-left: 18px; margin: 20px 0; color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.7; }
.ticket-form { display: grid; gap: 12px; padding: 26px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.ticket-form label { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.ticket-form input { width: 100%; padding: 13px 14px; background: rgba(255,255,255,0.06); color: var(--cream); font-family: var(--sans); font-size: 15px; border: 1px solid rgba(255,255,255,0.18); border-radius: 0; }
.ticket-form input:focus { outline: none; border-color: var(--coral); background: rgba(255,255,255,0.12); }
.ticket-form button { padding: 14px 16px; background: var(--coral); color: #0e1622; font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--coral); cursor: pointer; transition: transform 180ms ease, background 180ms ease; }
.ticket-form button:hover { background: #f0916b; transform: translateY(-1px); }
.ticket-success { display: none; padding: 14px 16px; background: rgba(62,91,58,0.22); border-left: 3px solid var(--moss); color: var(--cream); font-size: 14px; }
.ticket-success.show { display: block; }

/* ---------- Process timeline (DOnNA build steps) ---------- */
.timeline { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); }
.timeline h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); margin: 0 0 10px; letter-spacing: -0.015em; }
.timeline .lede2 { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 17px; margin: 0 0 28px; max-width: 60ch; }
.timeline-list { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.timeline-list li { counter-increment: step; padding: 18px 20px 18px 80px; background: #fff; border: 1px solid var(--rule); box-shadow: var(--shadow-card); position: relative; transition: transform .4s ease, border-color .4s ease; }
.timeline-list li:hover { transform: translateX(4px); border-color: rgba(218,119,86,0.45); }
.timeline-list li::before {
  content: counter(step,decimal-leading-zero); position: absolute; left: 20px; top: 14px;
  font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--walnut);
  text-shadow: 1px 1px 0 rgba(107,61,31,0.18), 2px 2px 0 rgba(107,61,31,0.12);
}
.timeline-list h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; margin: 0 0 4px; letter-spacing: -0.01em; }
.timeline-list p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }
.timeline-list .t { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); margin-right: 10px; }

/* ---------- Social flow (LKSB Media 9-brand web) ---------- */
.socials-flow { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); background: var(--paper-2); }
.socials-flow h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); margin: 0 0 14px; letter-spacing: -0.015em; }
.socials-flow .lede2 { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 17px; margin: 0 0 28px; max-width: 64ch; }
.social-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 14px; }
.social-card { padding: 18px; background: #fff; border: 1px solid var(--rule); box-shadow: var(--shadow-card); transition: transform .4s ease, border-color .4s ease; }
.social-card:hover { transform: translateY(-3px); border-color: rgba(218,119,86,0.45); }
.social-card .brand { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
.social-card h4 { font-family: var(--serif); font-weight: 500; font-size: 17px; margin: 0 0 6px; }
.social-card .handles { font-family: var(--sans); font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ---------- Site-wide outbound link footer ---------- */
.brothers-bar { padding: 28px 0; background: var(--ink-deep); color: var(--cream); text-align: center; }
.brothers-bar a {
  font-family: var(--sans); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--cream); border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 3px; transition: color .2s ease, border-color .2s ease;
}
.brothers-bar a:hover { color: var(--coral); border-bottom-color: var(--coral); }
.brothers-bar small { display: block; margin-top: 8px; font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Volt-X philosophy grid ---------- */
.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 32px; perspective: 1000px; }
.philosophy-card { position: relative; padding: 24px 22px 22px; background: #fff; border: 1px solid var(--rule); box-shadow: var(--shadow-card); overflow: hidden; transition: transform .5s cubic-bezier(.2,.8,.2,1), border-color .4s ease; }
.philosophy-card::before { content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none; background: radial-gradient(500px 260px at var(--mx,50%) var(--my,0%), rgba(218,119,86,0.14), transparent 70%); transition: opacity .5s ease; }
.philosophy-card:hover { transform: translateY(-4px); border-color: rgba(218,119,86,0.45); }
.philosophy-card:hover::before { opacity: 1; }
.philosophy-card .p-num { font-family: var(--serif); font-style: italic; font-size: 36px; line-height: 1; color: var(--walnut); margin-bottom: 10px; }
.philosophy-card[data-tone="coral"] .p-num { color: var(--coral); }
.philosophy-card[data-tone="moss"]  .p-num { color: var(--moss); }
.philosophy-card[data-tone="sky"]   .p-num { color: var(--sky); }
.philosophy-card[data-tone="oak"]   .p-num { color: var(--oak); }
.philosophy-card h4 { font-family: var(--serif); font-weight: 500; font-size: 20px; letter-spacing: -0.01em; margin: 0 0 8px; }
.philosophy-card p { font-family: var(--sans); font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- Spotlight (Richard Lee bio) ---------- */
.spotlight { padding: clamp(60px,8vw,100px) 0; border-bottom: 1px solid var(--rule); background: var(--paper-2); }
.spotlight-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: center; margin-top: 18px; }
@media (max-width: 900px) { .spotlight-grid { grid-template-columns: 1fr; } }
.spotlight-media { position: relative; border: 1px solid var(--rule); box-shadow: var(--shadow-deep); overflow: hidden; background: #0e1622; aspect-ratio: 9/16; max-height: 600px; }
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-body h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px,4vw,48px); letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 8px; }
.spotlight-body h2 small { display: block; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.spotlight-body .role-line { font-family: var(--serif); font-style: italic; color: var(--walnut); font-size: 16px; line-height: 1.5; margin: 10px 0 22px; }
.spotlight-body p { font-family: var(--sans); font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 12px; }
.spotlight-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.spotlight-facts > div { padding: 14px 16px; background: #fff; border: 1px solid var(--rule); box-shadow: var(--shadow-card); }
.spotlight-facts b { display: block; font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.spotlight-facts span { font-family: var(--serif); font-size: 16px; color: var(--ink); }

/* ---------- Spotlight 3D flip (Richard Lee · two-portrait rotation) ---------- */
.spotlight-media.spotlight-3d {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  aspect-ratio: 3/4;
  max-height: 680px;
  perspective: 1600px;
}
.spotlight-3d .flip-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: lee-rotate 11s cubic-bezier(.68,.03,.32,.97) infinite;
  will-change: transform;
}
.spotlight-3d:hover .flip-3d { animation-play-state: paused; }
.spotlight-3d .flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  border-radius: 4px;
  background: #0e1622;
  box-shadow: 0 42px 90px -32px rgba(14,22,34,0.55), 0 0 0 1px var(--rule);
}
.spotlight-3d .flip-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}
.spotlight-3d .flip-back { transform: rotateY(180deg); }
.spotlight-3d .flip-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(14,22,34,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
}
@keyframes lee-rotate {
  0%, 42% { transform: rotateY(0deg); }
  50%, 92% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .spotlight-3d .flip-3d { animation: none; transform: rotateY(0deg); }
}

/* ---------- Video reel (looping road-trip clip) ---------- */
.video-reel { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); background: var(--paper); }
.video-reel h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); letter-spacing: -0.015em; margin: 0 0 10px; }
.video-reel .reel-lede { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 17px; line-height: 1.55; margin: 0 0 26px; max-width: 64ch; }
.reel-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--rule); box-shadow: var(--shadow-deep); background: #0e1622; }
.reel-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Investment flow diagram ---------- */
.investment-flow { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); background: var(--paper-2); }
.investment-flow h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); letter-spacing: -0.015em; margin: 0 0 10px; }
.investment-flow .flow-lede { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 17px; line-height: 1.55; margin: 0 0 26px; max-width: 64ch; }
.flow-frame { background: #0e1622; border: 1px solid var(--rule); padding: 22px; box-shadow: var(--shadow-deep); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.flow-frame img { max-width: 100%; height: auto; display: block; }
.flow-caveat { margin: 14px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; max-width: 72ch; }

/* ---------- Curriculum / gallery shared eyebrow ---------- */
.curriculum { padding: clamp(50px,7vw,90px) 0; border-bottom: 1px solid var(--rule); }
.curriculum h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3.4vw,40px); margin: 0 0 24px; letter-spacing: -0.015em; }
.gallery-lede { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 17px; line-height: 1.55; margin: 6px 0 22px; max-width: 64ch; }

/* ---------- Seminar ticket (Volt-X $399) ---------- */
.seminar-ticket { padding: clamp(50px,7vw,100px) 0; border-bottom: 1px solid var(--rule);
  background: radial-gradient(900px 500px at 0% 0%, rgba(42,111,177,0.18), transparent 65%),
              radial-gradient(900px 500px at 100% 100%, rgba(218,119,86,0.22), transparent 65%),
              var(--ink-deep); color: var(--cream); }
.seminar-ticket .ticket-card { padding: clamp(26px,4vw,44px); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.seminar-ticket .ticket-header h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px,4vw,48px); line-height: 1.05; letter-spacing: -0.015em; color: var(--cream); margin: 8px 0 10px; }
.seminar-ticket .ticket-sub { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.78); margin: 0 0 24px; max-width: 64ch; }
.eyebrow.light { color: rgba(255,255,255,0.6); }
.eyebrow.light .dot { background: var(--coral); }
.ticket-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
@media (max-width: 860px) { .ticket-grid { grid-template-columns: 1fr; } }
.ticket-info { display: grid; gap: 10px; padding: 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }
.ticket-line { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.12); font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.78); }
.ticket-line:last-child { border-bottom: 0; }
.ticket-line span { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.ticket-line b { color: var(--cream); font-weight: 600; font-family: var(--serif); font-size: 15px; }
.ticket-line.price-line { margin-top: 10px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.2); }
.ticket-line.price-line .price { font-family: var(--serif); font-weight: 500; font-size: 56px; line-height: 1; color: var(--coral); }
.ticket-form select { width: 100%; padding: 13px 14px; background: rgba(255,255,255,0.06); color: var(--cream); font-family: var(--sans); font-size: 15px; border: 1px solid rgba(255,255,255,0.18); border-radius: 0; appearance: none; -webkit-appearance: none;
  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 fill='%23f9f5ef' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 10px;
}
.ticket-form select:focus { outline: none; border-color: var(--coral); background-color: rgba(255,255,255,0.12); }
.ticket-submit { padding: 16px 18px; background: var(--coral); color: #0e1622; font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid var(--coral); cursor: pointer; transition: transform 180ms ease, background 180ms ease; }
.ticket-submit:hover { background: #f0916b; transform: translateY(-1px); }
.ticket-fineprint { font-family: var(--sans); font-size: 11px; line-height: 1.55; color: rgba(255,255,255,0.55); margin: 10px 0 0; }
.ticket-fineprint a { color: var(--coral); text-decoration: underline; }
