/* =========================================================================
   WOODARD & COMPANY ASSET MANAGEMENT GROUP
   Shared stylesheet — all pages
   Typography: Garamond family only (Cormorant Garamond + EB Garamond)
   Fallback: Times New Roman, Georgia, serif
   ========================================================================= */

:root {
  --ink: #0F0F0F;
  --ink-soft: #2A2520;
  --forest: #1B3B2F;
  --forest-deep: #122A21;
  --gold: #B8860B;
  --gold-soft: #C9A961;
  --gold-pale: #E4D4A8;
  --gold-deep: #9A6F0A;
  --cream: #F5F1E8;
  --cream-warm: #EFE9DA;
  --paper: #FAF8F3;
  --rule: #D9D1BD;
  --rule-dark: #3A352C;
  --text: #2A2520;
  --text-muted: #6B6459;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'EB Garamond', 'Garamond', 'Times New Roman', Georgia, serif;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* TYPOGRAPHY UTILITIES -- Garamond only */
.display {
  font-family: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.1;
}
.eyebrow {
  font-family: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow--ink { color: var(--ink); }
.eyebrow--cream { color: var(--gold-pale); }

.rule { width: 60px; height: 1px; background: var(--gold); border: none; display: block; }
.rule-center { margin: 0 auto; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 0;
}
.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left { display: flex; align-items: center; }
.topbar-left span + span { margin-left: 24px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.15); }
.topbar-highlight { color: var(--gold-soft); }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right .divider { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }
.topbar-right a { color: var(--gold-soft); transition: color 0.2s; }
.topbar-right a:hover { color: var(--gold-pale); }
.topbar-socials { display: inline-flex; gap: 14px; align-items: center; }
.topbar-socials a { display: inline-flex; }
.topbar-socials svg { width: 14px; height: 14px; fill: var(--gold-soft); transition: fill 0.2s; }
.topbar-socials a:hover svg { fill: var(--gold-pale); }

/* ============ NAVIGATION ============ */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  font-family: 'Cormorant Garamond', 'Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links--left { justify-content: flex-end; }
.nav-links--right { justify-content: flex-start; }
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -4px;
  transform: translateX(-50%);
  width: 18px; height: 1px;
  background: var(--gold);
}
.nav-links li { position: relative; }
.nav-links li.has-submenu > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 8px;
  vertical-align: middle;
  opacity: 0.5;
}
.submenu {
  position: absolute;
  top: calc(100% + 22px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 18px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  list-style: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.nav-links li.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.submenu li { text-align: left; }
.submenu a {
  display: block;
  padding: 10px 24px;
  letter-spacing: 0.2em;
  font-size: 11px;
}
.submenu a:hover { background: var(--cream); color: var(--gold); }

.nav-logo {
  text-align: center;
  line-height: 1;
}
.nav-logo .lockup {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: block;
}
.nav-logo .sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.06em;
}

/* MOBILE MENU TOGGLE — base hidden, media queries enable on small screens */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 16px;
}

/* Nav items that should only appear in the mobile drawer (e.g. Client Login, already in topbar on desktop) */
.nav-mobile-only { display: none; }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--cream-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.trust-item::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}
.trust-item strong {
  font-weight: 500;
  color: var(--ink);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) saturate(1.05);
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.4) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 0 40px;
  text-align: center;
  color: var(--cream);
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1.2s 0.2s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1.2s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-pale);
}
.hero-rule {
  width: 80px; height: 1px;
  background: var(--gold-soft);
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}
.hero-sub {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 48px;
  color: rgba(245, 241, 232, 0.88);
  opacity: 0;
  animation: fadeUp 1.2s 1.2s forwards;
}
.hero-cta {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.2s 1.5s forwards;
}
.btn {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold-soft);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--solid { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--solid:hover { background: transparent; color: var(--cream); }
.btn--ink { border-color: var(--ink); color: var(--ink); }
.btn--ink:hover { background: var(--ink); color: var(--cream); }
.btn--gold-on-cream { border-color: var(--gold); color: var(--gold); }
.btn--gold-on-cream:hover { background: var(--gold); color: var(--paper); }

.hero-established {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--gold-pale);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.25em;
  opacity: 0;
  animation: fadeIn 1.5s 2s forwards;
}
.hero-established::before,
.hero-established::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold-pale);
  vertical-align: middle;
  margin: 0 18px;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============ SECTION DEFAULTS ============ */
section { padding: 120px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.container-tight { max-width: 820px; margin: 0 auto; padding: 0 40px; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-header h2 em { font-style: italic; color: var(--forest); }
.section-header .lede {
  font-style: italic;
  font-size: 20px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 24px auto 0;
  line-height: 1.55;
}

/* ============ PAGE HEADER (interior pages) ============ */
.page-header {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  padding: 100px 0 90px;
  min-height: 600px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(0.85);
}
.page-header-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.6) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow { color: var(--gold-soft); margin-bottom: 24px; }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--cream);
}
.page-header h1 em { font-style: italic; color: var(--gold-pale); }
.page-header .lede {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(245, 241, 232, 0.8);
  max-width: 720px;
  margin: 24px auto 0;
  line-height: 1.5;
}
.page-header .rule { margin: 36px auto 0; background: var(--gold-soft); }

/* ============ INTRODUCTION ============ */
.intro { background: var(--paper); position: relative; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.intro-text .eyebrow { margin-bottom: 28px; }
.intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 32px;
}
.intro-text h2 em { font-style: italic; color: var(--forest); }
.intro-text p {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.75;
}
.intro-text .rule { margin: 40px 0; }
.intro-signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.intro-image { position: relative; }
.intro-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.95);
  display: block;
}
.intro-image::before {
  content: '';
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.intro-image-caption {
  position: absolute;
  bottom: -50px; right: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ============ PILLARS ============ */
.pillars {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
}
.pillars::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: var(--gold);
}
.pillars .section-header h2 { color: var(--cream); }
.pillars .section-header h2 em { color: var(--gold-pale); }
.pillars .section-header .lede { color: rgba(245, 241, 232, 0.75); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}
.pillar {
  padding: 60px 48px;
  border-right: 1px solid rgba(201, 169, 97, 0.3);
  position: relative;
  transition: background 0.4s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(184, 134, 11, 0.06); }
.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--cream);
}
.pillar h3 em { font-style: italic; color: var(--gold-pale); }
.pillar p {
  color: rgba(245, 241, 232, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

/* ============ MOTTO ============ */
.motto {
  background: var(--paper);
  text-align: center;
  padding: 160px 0;
  position: relative;
}
.motto-ornament { display: inline-block; margin-bottom: 40px; }
.motto-ornament::before,
.motto-ornament::after {
  content: '';
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 20px;
}
.motto-ornament-center {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  vertical-align: middle;
}
.motto blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0.005em;
  margin-bottom: 40px;
}
.motto blockquote em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.motto blockquote sup {
  font-size: 0.35em;
  font-weight: 500;
  vertical-align: super;
  letter-spacing: 0;
  color: var(--gold);
}
.motto-attribution {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 32px;
}

/* ============ SERVICES ============ */
.services { background: var(--cream); position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service {
  background: var(--paper);
  padding: 56px 44px;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.service:hover { background: var(--cream-warm); }
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}
.service h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
}
.service h3 em { font-style: italic; color: var(--forest); }
.service p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.service-link {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
}
.service-link:hover { color: var(--ink); border-color: var(--ink); }

/* Inline service-link (used inside prose): inherits font + case, keeps gold underline */
.service-link--inline,
p .service-link[style*="font-size: inherit"],
li .service-link[style*="font-size: inherit"] {
  font-family: inherit;
  font-weight: 500;
  font-size: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.service-link--inline:hover { color: var(--ink); border-color: var(--ink); }

/* ============ MARKET LEADERS FEATURE ============ */
.market-leaders {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
/* Light-theme variant (for TAA section) — cream background, dark text */
.market-leaders--light {
  background: var(--cream);
  color: var(--ink);
}
.market-leaders--light .ml-text .eyebrow { color: var(--gold); }
.market-leaders--light .ml-text h2 { color: var(--ink); }
.market-leaders--light .ml-text h2 em { color: var(--forest); }
.market-leaders--light .ml-text p { color: var(--text); }
.market-leaders--light .ml-text .rule { background: var(--gold); }
.market-leaders--light .ml-stats { border-top-color: rgba(184, 134, 11, 0.3); }
.market-leaders--light .ml-stat-value { color: var(--forest); }
.market-leaders--light .ml-stat-label { color: var(--text-muted); }
/* Larger, title-weight eyebrow for the Market Leaders and Tactical Asset Allocation feature sections */
.market-leaders .ml-text .eyebrow {
  font-size: 23px;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}
/* Distinct treatment for the Tactical Asset Allocation section: a clearly deeper
   parchment background sets it apart from the cream services grid directly above it */
#tactical-asset-allocation.market-leaders--light {
  background: #E7DCC4;
  border-top: 1px solid var(--rule);
}
.ml-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.ml-image { position: relative; height: 640px; }
.ml-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.95);
}
.ml-image::before {
  content: '';
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 1px solid var(--gold);
  z-index: 1;
}

/* === FRAMED IMAGE WRAPPER (for inline content images) === */
.framed-image {
  position: relative;
  display: block;
  margin: 0;
}
.framed-image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.framed-image::before {
  content: '';
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

/* === GLOSSARY TOOLTIP SYSTEM === */
.glossary-term {
  color: var(--gold-deep);
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px dotted var(--gold);
  position: relative;
  transition: color 0.15s;
}
.glossary-term:hover {
  color: var(--gold);
}
.glossary-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  padding: 16px 20px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  width: 320px;
  max-width: 90vw;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  white-space: normal;
  text-align: left;
}
.glossary-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--gold);
}
.glossary-tooltip-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-pale);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.glossary-term.is-open .glossary-tooltip {
  display: block;
}
.glossary-tooltip-close {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold-pale);
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}
.glossary-tooltip-close:hover { opacity: 1; }
.ml-text .eyebrow { color: var(--gold-soft); margin-bottom: 28px; }
.ml-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 32px;
}
.ml-text h2 em { font-style: italic; color: var(--gold-pale); }
.ml-text p {
  color: rgba(245, 241, 232, 0.8);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.ml-text .rule { margin: 36px 0; background: var(--gold); }
.ml-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}
.ml-stat { text-align: left; padding-right: 24px; }
.ml-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 1;
  color: var(--gold-pale);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.ml-stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.65);
  line-height: 1.4;
}

/* ============ TEAM ============ */
.team { background: var(--paper); }
.team-showcase { position: relative; margin: 60px 0; }
.team-showcase-image { 
  width: 100%; 
  height: 680px; 
  object-fit: cover; 
  object-position: center 40%;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  margin-top: 80px;
}
.team-member { text-align: center; }
.team-member-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  margin: 0 auto 24px;
  filter: saturate(0.95);
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.team-member:hover .team-member-photo {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}
.team-member-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.team-member-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
}
.team-cta { text-align: center; margin-top: 80px; }

/* ============ TEAM DETAILED (full bios page) ============ */
.team-detailed { background: var(--paper); }
.team-intro {
  max-width: 900px;
  margin: 0 auto 100px;
  text-align: center;
}
.team-intro p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.team-member-full {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.team-member-full:last-child { border-bottom: none; margin-bottom: 0; }
.team-member-full .photo-wrap { position: relative; }
.team-member-full .photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.95);
}
.team-member-full .photo-wrap::before {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.team-member-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.team-member-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.team-member-socials a:hover {
  background: var(--gold);
  color: var(--paper);
  transform: translateY(-1px);
}
.team-member-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.invest-link {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed rgba(184, 134, 11, 0.35);
  font-style: italic;
  font-family: 'EB Garamond', serif;
  font-size: 17px;
}
.service-link--inline {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.service-link--inline:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}
.team-member-full .eyebrow { margin-bottom: 16px; }
.team-member-full h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}
.team-member-full h3 em { font-style: italic; color: var(--forest); }
.team-member-full .role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 32px;
}
.team-member-full p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: var(--text);
}

/* ============ PODCAST ============ */
.podcast {
  background: linear-gradient(to bottom, var(--forest-deep) 0%, #0A1A13 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.podcast::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
}
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.podcast-image { position: relative; height: 560px; }
.podcast-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.podcast-image::after {
  content: 'EPISODES NOW STREAMING';
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-pale);
  background: rgba(10, 10, 10, 0.8);
  padding: 10px 18px;
  border: 1px solid rgba(201, 169, 97, 0.4);
}
.podcast-text .eyebrow { color: var(--gold-soft); margin-bottom: 24px; }
.podcast-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.podcast-text h2 em { font-style: italic; color: var(--gold-pale); }
.podcast-text .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-soft);
  margin-bottom: 32px;
  line-height: 1.4;
}
.podcast-text p {
  color: rgba(245, 241, 232, 0.8);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.podcast-hosts {
  display: flex;
  gap: 32px;
  margin: 40px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  flex-wrap: wrap;
}
.podcast-host {
  font-family: 'Cormorant Garamond', serif;
}
.podcast-host-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.podcast-host-name {
  font-size: 20px;
  color: var(--cream);
  font-weight: 500;
}

/* ============ HISTORY / TIMELINE ============ */
.history { background: var(--cream); position: relative; }
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.history-image { position: relative; }
.history-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  filter: sepia(0.15) saturate(0.9);
}
.history-image-label {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--paper);
  padding: 10px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.1em;
  border: 1px solid var(--gold);
}
.history-text .eyebrow { margin-bottom: 24px; }
.history-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 28px;
}
.history-text h2 em { font-style: italic; color: var(--forest); }
.history-text p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.timeline {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(217, 209, 189, 0.5);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-date {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.timeline-event {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  color: var(--text);
  line-height: 1.5;
}

/* ============ CONTENT SECTION (interior pages) ============ */
.content-section { background: var(--paper); padding: 120px 0; }
.content-section--cream { background: var(--cream); }
.content-section--forest { background: var(--forest-deep); color: var(--cream); }
.content-section--ink { background: var(--ink); color: var(--cream); }
.content-section--forest h2, .content-section--ink h2 { color: var(--cream); }
.content-section--forest h2 em, .content-section--ink h2 em { color: var(--gold-pale); }
.content-section--forest p, .content-section--ink p { color: rgba(245, 241, 232, 0.85); }
.content-section--forest .eyebrow, .content-section--ink .eyebrow { color: var(--gold-soft); }

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.content-two-col--image-left { grid-template-columns: 1fr 1.1fr; }
.content-two-col img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.content-flow h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
}
.content-flow h2 em { font-style: italic; color: var(--forest); }
.content-flow h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.content-flow h3 em { font-style: italic; color: var(--forest); }
.content-flow p {
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 22px;
  color: var(--text);
}
.content-flow p.lede {
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.content-flow ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.content-flow ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 18px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(217, 209, 189, 0.6);
}
.content-flow ul li:last-child { border-bottom: none; }
.content-flow ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 22px;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.content-flow .rule { margin: 40px 0; }

/* ============ HIGHLIGHT CARDS ============ */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 60px 0;
}
.highlight-cards--cream { background: rgba(217, 209, 189, 0.3); }
.highlight-card {
  background: var(--paper);
  padding: 48px 40px;
  text-align: left;
}
.highlight-card--cream { background: var(--cream-warm); }
.highlight-card-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
}
.highlight-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.highlight-card h4 em { font-style: italic; color: var(--forest); }
.highlight-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

/* ============ FEATURE QUOTE ============ */
.feature-quote {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.feature-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.3;
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto 32px;
}
.feature-quote blockquote em {
  color: var(--gold-pale);
  font-style: italic;
}
.feature-quote cite {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-style: normal;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 32px 0;
}
.faq-item summary {
  cursor: pointer;
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  list-style: none;
  padding-right: 40px;
  position: relative;
}
.faq-item summary em {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: -4px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--gold);
}
.faq-item p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  margin-top: 20px;
}
.faq-item p + p { margin-top: 14px; }

/* ============ CONTACT CTA ============ */
.contact-cta {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 140px 0;
  position: relative;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--gold);
}
.contact-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
}
.contact-cta h2 em { font-style: italic; color: var(--gold-pale); }
.contact-cta p {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(245, 241, 232, 0.8);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.55;
}
.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.contact-item { text-align: center; }
.contact-item .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.contact-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.5;
}
.contact-item .value a:hover { color: var(--gold-pale); }
.contact-hours {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-soft);
  font-size: 16px;
  margin-top: 32px;
  letter-spacing: 0.05em;
}

/* ============ CONTACT FORM ============ */
.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  padding: 60px;
  border: 1px solid var(--rule);
}
.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
  text-align: center;
}
.contact-form-wrap .intro-line {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
}
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--rule);
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit { text-align: center; margin-top: 32px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.footer-brand .footer-logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-soft);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}
.footer-brand p {
  color: rgba(245, 241, 232, 0.65);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.footer-socials svg {
  width: 16px; height: 16px;
  fill: var(--gold-soft);
  transition: fill 0.3s;
}
.footer-socials a:hover svg { fill: var(--ink); }
.footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: rgba(245, 241, 232, 0.8);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--gold-pale); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
}
.footer-disclosure {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(245, 241, 232, 0.45);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  max-width: 900px;
}

/* ============ FEE TABLE (fees page) ============ */
.fee-table {
  width: 100%;
  max-width: 760px;
  margin: 20px auto 0;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.fee-table thead th {
  padding: 22px 28px;
  background: var(--ink);
  color: var(--cream);
  text-align: left;
  font-family: 'Cormorant Garamond', 'Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}
.fee-table tbody td {
  padding: 22px 28px;
  font-family: 'EB Garamond', 'Garamond', serif;
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
}
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table tbody tr:hover td { background: var(--cream-warm); }
.fee-table td:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--forest);
  font-size: 19px;
}
.fee-table .fee-annual {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
  .intro-grid, .ml-grid, .podcast-grid, .history-grid, .content-two-col {
    grid-template-columns: 1fr !important;
    gap: 60px;
  }
  .intro-image img, .ml-image, .podcast-image, .history-image img, .content-two-col img {
    height: 440px;
  }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(201, 169, 97, 0.3); }
  .pillar:last-child { border-bottom: none; }
  .services-grid, .highlight-cards { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-info { flex-direction: column; gap: 30px; }
  .trust-bar-inner { flex-wrap: wrap; gap: 20px 32px; justify-content: center; }
  .team-member-full { grid-template-columns: 220px 1fr; gap: 40px; }

  /* Mobile nav fires at iPad-portrait and below */
  .nav-inner { padding: 18px 24px; grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .nav-links { display: none; }
  .topbar { display: none; }
  .menu-toggle { display: inline-block; }
  .nav-logo { order: -1; margin-bottom: 12px; }
  /* Mobile drawer: .nav-inner becomes the drawer container, both lists stack inside it */
  .nav-mobile-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.4);
    z-index: 199;
    pointer-events: none;
  }
  .nav-mobile-open .nav-inner {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--paper);
    z-index: 200;
    padding: 80px 30px 40px;
    border-left: 1px solid var(--rule);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    grid-template-columns: none;
    text-align: left;
  }
  .nav-mobile-open .nav-logo {
    display: none;
  }
  .nav-mobile-open .menu-toggle {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 201;
  }
  .nav-mobile-open .nav-links {
    display: flex !important;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 14px;
    position: static;
    width: auto;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .nav-mobile-open .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 8px 0 0 16px;
    min-width: auto;
    background: transparent;
  }
  /* Client Login pill in the mobile drawer */
  .nav-mobile-open .nav-mobile-only {
    display: block;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
  }
  .nav-mobile-open .nav-mobile-only a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .nav-mobile-open .nav-mobile-only a:hover {
    background: var(--gold);
    color: var(--paper);
  }

  /* Stack the contact page columns at iPad-portrait so form is usable */
  .contact-grid-split { grid-template-columns: 1fr !important; gap: 60px !important; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container, .container-narrow, .container-tight { padding: 0 24px; }
  .trust-bar { padding: 14px 0; }
  .trust-bar-inner { font-size: 11px; gap: 14px 20px; }
  .hero-sub { font-size: 18px; }
  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.28em;
    color: var(--cream);
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  }
  .team-grid, .services-grid, .highlight-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ml-stats { grid-template-columns: 1fr; gap: 24px; }
  .ml-stat { border-bottom: 1px solid rgba(201, 169, 97, 0.2); padding-bottom: 20px; }
  .intro-image-caption { position: static; margin-top: 20px; }
  .timeline-item { grid-template-columns: 1fr; gap: 4px; }
  .team-member-full { grid-template-columns: 1fr; }
  .team-member-full .photo-wrap { max-width: 280px; margin: 0 auto; }
  .contact-form-wrap { padding: 40px 24px; }
  .form-row-split { grid-template-columns: 1fr; }
  .page-header { min-height: 710px; padding: 60px 0; }
  .framed-image::before { inset: -10px 10px 10px -10px; }

  /* Show full team photo on mobile instead of aggressive crop */
  .team-showcase-image {
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center center;
  }

  /* Hero adjustments for true phone size */
  .hero {
    min-height: calc(100vh - 80px);
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-image { filter: brightness(0.55) saturate(1.05); }
  /* On mobile, take Winston-Salem · Established 1985 out of absolute position so it sits below the CTA, not on top of it */
  .hero-established {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    margin-top: 40px;
    font-size: 13px;
    text-align: center;
  }
  .hero-established::before,
  .hero-established::after {
    width: 20px;
    margin: 0 12px;
  }
}

@media (max-width: 600px) {
  .fee-table thead th,
  .fee-table tbody td { padding: 14px 10px; font-size: 13px; }
  .fee-table td:first-child { font-size: 14px; }
  .fee-table .fee-annual { font-size: 16px; }
  .fee-table { table-layout: fixed; width: 100%; }
}

/* ============================================================
   HOME PAGE SCROLL EFFECTS  (progressive enhancement)
   Active only under html.js-anim, which the head script adds
   before paint and only when reduced motion is NOT requested.
   Helper classes are removed by js/scroll-fx.js once each reveal
   finishes, so native hover styling is never affected.
   ============================================================ */
html.js-anim .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.js-anim .reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Images settle from a hair larger, for a quiet "ease into place" */
html.js-anim .intro-image.reveal,
html.js-anim .ml-image.reveal,
html.js-anim .podcast-image.reveal,
html.js-anim .history-image.reveal {
  transform: translateY(28px) scale(1.035);
}
html.js-anim .intro-image.reveal.in-view,
html.js-anim .ml-image.reveal.in-view,
html.js-anim .podcast-image.reveal.in-view,
html.js-anim .history-image.reveal.in-view {
  transform: none;
}

/* Hero entrance is the site's existing fadeUp/fadeIn animation (left untouched). */

/* Hairline gold scroll-progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-pale));
  z-index: 2000;
  pointer-events: none;
}

/* Honor reduced motion: disable the site's hero load animation AND the
   scroll effects, so the home page presents with no movement at all. */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-title,
  .hero-rule,
  .hero-sub,
  .hero-cta,
  .hero-established {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  html.js-anim .reveal,
  html.js-anim .reveal.in-view,
  html.js-anim .intro-image.reveal,
  html.js-anim .ml-image.reveal,
  html.js-anim .podcast-image.reveal,
  html.js-anim .history-image.reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .scroll-progress { display: none !important; }
}
