/* ============================================================
   Windermere Wealth Fund — Institutional design system
   Palette: deep navy + onyx + brushed gold
   Type:    Fraunces (display) / Inter (body) / JetBrains Mono (eyebrows)
   ============================================================ */

:root {
  /* Navy + onyx — site reads as navy blue throughout */
  --navy-deep:   #0a1e3d;
  --navy:        #0f2547;
  --navy-mid:    #14304d;
  --navy-light:  #1c3f63;
  --onyx:        #0a1e3d;  /* matched to navy-deep for a uniform navy ground */
  --ink:         #061830;  /* slightly darker navy for hero/footer/stats — keeps subtle layering */

  /* Gold */
  --gold:         #c9a14a;
  --gold-bright:  #e0bd5f;
  --gold-soft:    #b58e3a;
  --gold-deep:    #8c6a26;

  /* Azure (logo blue) — used sparingly */
  --azure:        #4a9fd4;

  /* Light surfaces */
  --paper:  #f5f1e8;
  --ivory:  #fafaf6;
  --cream:  #f9f6ee;

  /* Type colors */
  --text-on-dark:        #e9e4d6;
  --text-on-dark-mute:   #a8a292;
  --text-on-light:       #1a2540;
  --text-on-light-mute:  #4d5773;

  /* Lines */
  --hairline:       rgba(201, 161, 74, 0.28);
  --hairline-soft:  rgba(201, 161, 74, 0.14);
  --hairline-dark:  rgba(10, 22, 40, 0.18);
  --gold-line:      rgba(201, 161, 74, 0.4);
  --navy-glass:     rgba(10, 22, 40, 0.55);

  /* Type stacks */
  --serif: 'Fraunces', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:  'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Shadows */
  --shadow-soft: 0 24px 60px -20px rgba(7, 16, 31, 0.45);
  --shadow-deep: 0 40px 90px -30px rgba(7, 16, 31, 0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-on-dark);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain on entire body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--cream);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

h1 { font-size: clamp(2.6rem, 5.8vw, 5.2rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem);   font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; }

p  { font-size: 1.0625rem; line-height: 1.75; color: var(--text-on-dark); }

a  { color: var(--gold-bright); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold); }

em, .italic-gold {
  font-style: italic;
  font-family: var(--serif);
  color: var(--gold-bright);
  font-weight: 300;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold);
}

a.eyebrow.eyebrow-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
}
a.eyebrow.eyebrow-link::after {
  content: ' ↗';
  font-family: var(--sans);
  font-size: 0.85em;
  opacity: 0.7;
  margin-left: 0.2em;
}
a.eyebrow.eyebrow-link:hover { color: var(--gold-bright); }
a.eyebrow.eyebrow-link:hover::after { opacity: 1; }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 300; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}
.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

section { position: relative; padding: clamp(6rem, 11vh, 9rem) 0; }

.section-light  { background: var(--ivory); color: var(--text-on-light); }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--text-on-light); }
.section-light p { color: var(--text-on-light); }
.section-light .eyebrow { color: var(--gold-deep); }
.section-light .eyebrow::before { background: var(--gold-deep); }
.section-light em { color: var(--gold-deep); }

.section-navy {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.section-onyx { background: var(--onyx); }
.section-ink  { background: var(--ink); }

/* ============================================================
   Top navigation — sticky, ultra-clean
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2rem;
  background: rgba(7, 16, 31, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--hairline-soft);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  padding: 0.7rem 2rem;
  background: rgba(7, 16, 31, 0.94);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.nav-brand img {
  height: 44px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
.nav.scrolled .nav-brand img { height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-bright); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.7rem 1.4rem;
  border-radius: 1px;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--ink);
  transform: translateY(-1px);
}
.nav-links a.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 920px) {
  .nav-toggle { display: block; z-index: 102; position: relative; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(380px, 85vw);
    background: #060d1a;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 6rem 2.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    border-left: 1px solid var(--hairline);
    z-index: 101;
    box-shadow: -30px 0 60px -10px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.95rem; padding: 0.5rem 0; }
  .nav-links .nav-cta { margin-top: 1rem; padding: 0.85rem 1.4rem; }

  body.menu-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
}

/* ============================================================
   HERO — full-bleed cinematic
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  background: var(--ink);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: kenBurns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media { animation: none; transform: scale(1.04); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,11,20,0.4) 0%, rgba(5,11,20,0.6) 55%, rgba(5,11,20,0.92) 100%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(201,161,74,0.10), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero-eyebrow {
  margin-bottom: 2.2rem;
  animation: fadeUp 0.9s 0.1s both ease-out;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 2.2rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.hero-title .word {
  display: inline-block;
  animation: fadeUp 0.9s both ease-out;
}
.hero-title .word:nth-child(1) { animation-delay: 0.15s; }
.hero-title .word:nth-child(2) { animation-delay: 0.25s; }
.hero-title .word:nth-child(3) { animation-delay: 0.35s; }
.hero-title .word:nth-child(4) { animation-delay: 0.45s; }
.hero-title .word:nth-child(5) { animation-delay: 0.55s; }
.hero-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-lede {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-on-dark);
  max-width: 620px;
  margin-bottom: 2.8rem;
  animation: fadeUp 0.9s 0.7s both ease-out;
}

.hero-cta-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.85s both ease-out;
}

/* Hero scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollCue 2.2s ease-in-out infinite;
}

/* ============================================================
   Facts strip — under-hero ribbon
   ============================================================ */
.facts-strip {
  background: var(--ink);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  padding: 1.8rem 0;
  position: relative;
  z-index: 3;
}
.facts-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: center;
}
.fact {
  padding: 0.4rem 1.5rem;
  border-left: 1px solid var(--hairline-soft);
  text-align: center;
}
.fact:first-child { border-left: none; }
.fact .label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--text-on-dark-mute);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.fact .value {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-bright);
  letter-spacing: -0.01em;
}
.fact .value a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-bright);
  font-family: var(--serif);
}
.fact .value a::after {
  content: '↗';
  font-family: var(--sans);
  font-size: 0.85em;
  color: var(--gold);
}

@media (max-width: 920px) {
  .facts-strip-inner { grid-template-columns: 1fr; row-gap: 1.2rem; }
  .fact { border-left: none; padding: 0.6rem 0; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(201, 161, 74, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--hairline);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(201, 161, 74, 0.06);
}
.btn .arrow {
  transition: transform 0.3s ease;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0;
}
.btn:hover .arrow { transform: translateX(5px); }

.section-light .btn-ghost {
  color: var(--text-on-light);
  border-color: var(--hairline-dark);
}
.section-light .btn-ghost:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: rgba(140, 106, 38, 0.05);
}

/* ============================================================
   Section header pattern
   ============================================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
  align-items: end;
}
.section-head .left .eyebrow { margin-bottom: 1.5rem; }
.section-head h2 { line-height: 1.05; }
.section-head h2 em { font-style: italic; color: var(--gold-bright); }
.section-light .section-head h2 em { color: var(--gold-deep); }
.section-head .right p {
  font-size: 1.0625rem;
  max-width: 580px;
  margin-top: 1.4rem;
  color: var(--text-on-dark-mute);
}
.section-light .section-head .right p { color: var(--text-on-light-mute); }

@media (max-width: 920px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
}

/* ============================================================
   Pillar row — borderless editorial 3-up
   ============================================================ */
.pillar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.pillar-col {
  position: relative;
  padding-top: 1.6rem;
  border-top: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
}
.pillar-col .num {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.pillar-col h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.pillar-col p {
  color: var(--text-on-dark-mute);
  font-size: 1rem;
  line-height: 1.75;
  flex: 1;
}
.pillar-col .meta {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pillar-col .meta span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
}
.pillar-col .meta strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-bright);
  font-weight: 400;
  font-style: italic;
}

@media (max-width: 920px) {
  .pillar-row { grid-template-columns: 1fr; gap: 3.5rem; }
}

/* ============================================================
   Editorial split — image / text
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split.split-reverse { direction: rtl; }
.split.split-reverse > * { direction: ltr; }

.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid var(--hairline-soft);
}
.split-image::before,
.split-image::after {
  content: '';
  position: absolute;
  width: 36px; height: 36px;
  z-index: 3;
}
.split-image::before {
  top: 12px; left: 12px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.split-image::after {
  bottom: 12px; right: 12px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.split-image img,
.split-image .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-image .bg {
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: 30% 50%;
}
.split-image .bg-cover {
  background-size: cover;
  background-position: center;
}
.split-image::after {
  z-index: 3;
}

.split-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(7, 16, 31, 0.5) 100%);
  pointer-events: none;
  z-index: 2;
}

.split-text h2 { margin-bottom: 1.6rem; }
.split-text h2 em { color: var(--gold-bright); font-style: italic; }
.section-light .split-text h2 em { color: var(--gold-deep); }
.split-text .eyebrow { margin-bottom: 1.4rem; }
.split-text p { margin-bottom: 1.2rem; }
.split-text p:last-child { margin-bottom: 0; }
.split-text strong { color: var(--gold-bright); font-weight: 600; }
.section-light .split-text strong { color: var(--gold-deep); }

@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.split-reverse { direction: ltr; }
  .split-image { aspect-ratio: 3 / 4; }
}

/* ============================================================
   Stats banner
   ============================================================ */
.stats-banner {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 5rem 0;
  background:
    linear-gradient(135deg, rgba(201, 161, 74, 0.04) 0%, transparent 50%),
    var(--ink);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 880px;
  margin: 0 auto;
}
.stat {
  text-align: left;
  padding: 0 1rem;
  border-left: 1px solid var(--hairline-soft);
}
.stat:first-child { border-left: none; }
.stat .stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.stat .stat-num em {
  font-style: italic;
  color: var(--gold);
  font-size: 0.55em;
  margin-left: 0.1em;
  font-weight: 300;
}
.stat .stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  line-height: 1.6;
}

@media (max-width: 920px) {
  .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat { padding: 0 0.5rem; border-left: none; padding-left: 1rem; border-top: 1px solid var(--hairline-soft); padding-top: 1.5rem; }
  .stat:first-child { border-top: none; padding-top: 0; }
}

/* ============================================================
   Marquee quote — full-width navy section
   ============================================================ */
.marquee-quote {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: clamp(6rem, 12vh, 10rem) 0;
  position: relative;
  overflow: hidden;
}
.marquee-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201, 161, 74, 0.06), transparent 70%);
  pointer-events: none;
}
.marquee-quote-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}
.marquee-quote-mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 8rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.45;
  font-style: italic;
  font-weight: 300;
  margin-top: -0.4em;
}
.marquee-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.marquee-quote blockquote em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 300;
}
.marquee-quote .attr {
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
}

@media (max-width: 720px) {
  .marquee-quote-inner { grid-template-columns: 1fr; gap: 1rem; }
  .marquee-quote-mark { font-size: 4rem; margin-top: 0; }
}

/* ============================================================
   Page hero (sub-pages)
   ============================================================ */
.page-hero {
  padding: 11rem 0 6rem;
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: 20% 50%;
  opacity: 0.18;
  filter: saturate(0.8);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 30%, transparent 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero h1 em { font-style: italic; color: var(--gold-bright); font-weight: 300; }
.page-hero .lede {
  font-size: 1.2rem;
  color: var(--text-on-dark-mute);
  max-width: 680px;
  line-height: 1.7;
}

/* ============================================================
   Team — full-bleed portraits
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
}
.team-member { position: relative; }
.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 2.2rem;
  background: var(--navy-deep);
  border: 1px solid var(--hairline-soft);
}

/* Compact team layout — image left, bio right, fits one viewport per member */
.team-grid-compact {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.team-grid-compact .team-member {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2.8rem;
  align-items: center;
}
.team-grid-compact .team-photo {
  margin-bottom: 0;
  aspect-ratio: 4 / 5;
}
.team-grid-compact .team-photo::before,
.team-grid-compact .team-photo::after {
  width: 28px; height: 28px;
}
.team-grid-compact .team-member h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.team-grid-compact .team-member .bio {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.team-grid-compact .team-member .credentials {
  padding-top: 1.1rem;
  margin-top: 0.6rem;
}
.team-grid-compact .team-member .credentials span {
  font-size: 0.66rem;
  padding: 0.3rem 0.7rem;
}

@media (max-width: 720px) {
  .team-grid-compact .team-member {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .team-grid-compact .team-photo {
    max-width: 280px;
    margin: 0 auto;
  }
}
.team-photo::before,
.team-photo::after {
  content: '';
  position: absolute;
  width: 36px; height: 36px;
  z-index: 3;
}
.team-photo::before {
  top: 12px; left: 12px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.85;
}
.team-photo::after {
  bottom: 12px; right: 12px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  opacity: 0.85;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.04);
  transition: filter 0.6s ease, transform 0.8s ease;
  display: block;
}
.team-photo .photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 16, 31, 0.5) 100%);
  pointer-events: none;
  z-index: 2;
}
.team-member:hover .team-photo img {
  filter: grayscale(0) contrast(1.04);
  transform: scale(1.03);
}

.team-member .role {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.team-member h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.4rem;
  letter-spacing: -0.015em;
}
.team-member .bio {
  color: var(--text-on-dark-mute);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  font-size: 1rem;
}
.team-member .credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline-soft);
  margin-top: 0.8rem;
}
.team-member .credentials span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--hairline);
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .team-grid { grid-template-columns: 1fr; gap: 4rem; }
}

/* ============================================================
   Timeline — horizontal track (about page)
   ============================================================ */
.timeline {
  position: relative;
  padding: 3rem 0 1rem;
  margin-top: 2rem;
}
.timeline-track {
  position: absolute;
  left: 0; right: 0;
  top: 3rem;
  height: 1px;
  background: var(--hairline);
}
.timeline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.timeline-node {
  padding-top: 2.2rem;
  position: relative;
  text-align: left;
}
.timeline-node::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px var(--gold);
  transform: translateY(-50%);
  z-index: 2;
}
.timeline-node .year {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold-bright);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.timeline-node strong {
  display: block;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.timeline-node p {
  font-size: 0.9rem;
  color: var(--text-on-dark-mute);
  line-height: 1.6;
}

@media (max-width: 920px) {
  .timeline-track { display: none; }
  .timeline-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .timeline-node { padding-top: 0; padding-left: 1.6rem; border-left: 1px solid var(--hairline); }
  .timeline-node::before { top: 0.5rem; left: -5px; }
}

/* ============================================================
   Editorial three-up (light section, on About page)
   ============================================================ */
.editorial-three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.editorial-three-up .col {
  border-top: 1px solid var(--gold-deep);
  padding-top: 1.6rem;
}
.editorial-three-up h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--text-on-light);
}
.editorial-three-up p {
  color: var(--text-on-light-mute);
  font-size: 1rem;
}
.editorial-three-up .num {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .editorial-three-up { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   Portfolio — register pattern
   ============================================================ */
.portfolio-filters {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--hairline-soft);
  padding-bottom: 1.5rem;
}
.portfolio-filter {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  background: none;
  border: 1px solid var(--hairline-soft);
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.portfolio-filter:hover { color: var(--gold-bright); border-color: var(--hairline); }
.portfolio-filter.active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.portfolio-item {
  display: grid;
  grid-template-columns: 140px 70px 1fr 200px;
  gap: 2rem;
  padding: 2.4rem 0;
  border-top: 1px solid var(--hairline-soft);
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
}
.portfolio-item:last-child { border-bottom: 1px solid var(--hairline-soft); }
.portfolio-item:hover {
  background: linear-gradient(90deg, transparent 0%, rgba(201, 161, 74, 0.04) 100%);
}
.portfolio-item.hidden { display: none; }

.portfolio-thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
}
.portfolio-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.png');
  background-size: 220% 220%;
  background-position: var(--bg-pos, 30% 30%);
  opacity: 0.55;
  filter: saturate(0.85);
}
.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.7) 100%);
}
.portfolio-thumb .thumb-label {
  position: absolute;
  bottom: 0.6rem;
  left: 0.7rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  z-index: 2;
}

.portfolio-item .num {
  font-family: var(--mono);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.portfolio-item .type {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--text-on-dark-mute);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.portfolio-item h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.portfolio-item .desc {
  font-size: 0.95rem;
  color: var(--text-on-dark-mute);
  margin-top: 0.4rem;
}
.portfolio-item .meta { text-align: right; }
.portfolio-item .meta .status {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.4rem;
  display: block;
}
.portfolio-item .meta .year {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: -0.01em;
  font-weight: 400;
}

@media (max-width: 920px) {
  .portfolio-item {
    grid-template-columns: 100px 1fr;
    gap: 1.2rem;
    padding: 2rem 0;
  }
  .portfolio-item .num { display: none; }
  .portfolio-item .meta { grid-column: 2 / 3; text-align: left; }
}

/* ============================================================
   Insights cards
   ============================================================ */
.insights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.insight-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding: 2.6rem 0;
  border-top: 1px solid var(--hairline-soft);
  align-items: center;
}
.insight-card:last-child { border-bottom: 1px solid var(--hairline-soft); }
.insight-card .cover {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
}
.insight-card .cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.png');
  background-size: 280% 280%;
  background-position: var(--bg-pos, 35% 30%);
  opacity: 0.55;
  filter: saturate(0.8);
}
.insight-card .cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.85) 100%);
}
.insight-card .cover-issue {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.insight-card .cover-coming {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.25rem 0.6rem;
}
.insight-meta {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.insight-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.insight-card h3 em { color: var(--gold-bright); font-style: italic; font-weight: 300; }
.insight-card p {
  color: var(--text-on-dark-mute);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.insight-card .read-more {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: not-allowed;
  opacity: 0.6;
}

@media (max-width: 720px) {
  .insight-card { grid-template-columns: 1fr; gap: 1.4rem; }
  .insight-card .cover { aspect-ratio: 16 / 10; }
}

.insights-empty {
  border: 1px solid var(--hairline);
  background: linear-gradient(160deg, rgba(28, 52, 99, 0.32) 0%, rgba(15, 30, 54, 0.6) 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  margin-bottom: 4rem;
}
.insights-empty::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 50px; height: 50px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.insights-empty .eyebrow { margin-bottom: 1.4rem; }
.insights-empty h2 { margin-bottom: 1.2rem; }
.insights-empty h2 em { color: var(--gold-bright); font-style: italic; font-weight: 300; }
.insights-empty p { color: var(--text-on-dark-mute); max-width: 580px; margin-bottom: 1.8rem; }

.subscribe-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: stretch;
}
.subscribe-row input {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--cream);
  padding: 1rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  flex: 1;
  min-width: 240px;
  transition: border-color 0.3s ease;
}
.subscribe-row input:focus { outline: none; border-color: var(--gold); }
.subscribe-row .btn { padding: 1rem 1.8rem; }

/* Insights teaser on homepage */
.insights-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.teaser-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--gold-line);
}
.teaser-card .meta {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.teaser-card h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.teaser-card p {
  color: var(--text-on-dark-mute);
  font-size: 0.95rem;
}
.teaser-card .coming {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding-top: 1.2rem;
}

@media (max-width: 920px) {
  .insights-teaser { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   CTA panel
   ============================================================ */
.cta-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--hairline);
  padding: clamp(3rem, 6vw, 5.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.cta-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201, 161, 74, 0.08), transparent 70%);
  pointer-events: none;
}
.cta-panel .eyebrow { margin-bottom: 1.5rem; justify-content: center; }
.cta-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1.5rem;
  color: var(--cream);
  font-weight: 300;
}
.cta-panel h2 em { color: var(--gold-bright); font-style: italic; font-weight: 300; }
.cta-panel p {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--text-on-dark-mute);
  font-size: 1.1rem;
}
.cta-panel .btn-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}
.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--cream);
  font-weight: 400;
}
.contact-info .info-block {
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--hairline-soft);
}
.contact-info .info-block:last-child { border-bottom: none; }
.contact-info .info-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.contact-info .info-value {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  line-height: 1.4;
  font-weight: 400;
}
.contact-info .info-value.mono {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.contact-info .info-value a { color: var(--cream); border-bottom: 1px solid var(--hairline); padding-bottom: 2px; }
.contact-info .info-value a:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

.contact-form {
  background: linear-gradient(160deg, rgba(28, 52, 99, 0.32) 0%, rgba(15, 30, 54, 0.6) 100%);
  border: 1px solid var(--hairline-soft);
  padding: 3rem;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 50px; height: 50px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.contact-form::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 50px; height: 50px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.form-row { margin-bottom: 1.6rem; }
.form-row label {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  padding: 0.8rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--cream);
  transition: border-color 0.3s ease;
}
.form-row select { color: var(--cream); }
.form-row select option { background: var(--navy-deep); color: var(--cream); }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-row textarea { resize: vertical; min-height: 130px; }

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form { padding: 2rem; }
  .form-row-2col { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--ink);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--hairline-soft);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}
.footer-brand img { height: 70px; margin-bottom: 1.5rem; width: auto; }
.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-on-dark-mute);
  max-width: 360px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  font-size: 0.95rem;
  color: var(--text-on-dark-mute);
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-col p {
  font-size: 0.95rem;
  color: var(--text-on-dark-mute);
  line-height: 1.7;
}

.footer-meta {
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-meta p {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-on-dark-mute);
}
.footer-meta .sec-note {
  max-width: 760px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--text-on-dark-mute);
}

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   Buying / Passing — light section block (portfolio)
   ============================================================ */
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 1rem;
}
.criteria-col h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-on-light);
}
.criteria-col h3 .mark {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ivory);
}
.criteria-col.buying h3 .mark { background: var(--gold-deep); }
.criteria-col.passing h3 .mark { background: var(--text-on-light-mute); }
.criteria-col ul { list-style: none; }
.criteria-col li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
  color: var(--text-on-light);
  font-size: 0.98rem;
  line-height: 1.6;
}
.criteria-col li:last-child { border-bottom: none; }

@media (max-width: 920px) {
  .criteria-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollCue {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50%      { transform: scaleY(0.3); transform-origin: bottom; opacity: 0.5; }
}

.reveal { opacity: 1; transform: translateY(0); }
html.js-loaded .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
html.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Utilities
   ============================================================ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Print */
@media print {
  .nav, .hero-scroll, .nav-toggle, footer { display: none; }
  body { background: white; color: black; }
  body::before { display: none; }
}
