/* ==========================================================================
   Brindle Financial — Design System
   Adapted from the "Quota" component export (React/Tailwind/Motion) into a
   plain static site. Structure, motion, and rhythm are kept close to the
   source design; every color has been swapped for the real Brindle Financial
   brand kit.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  /* Brand palette (brand kit, not the source template's colors) */
  --ink: #14100e;          /* near-black, warm */
  --panel: #1c1613;        /* off-black panel on dark sections */
  --paper: #f8f7f5;        /* Brindle's existing warm off-white */
  --paper-2: #f0ede8;      /* slightly deeper paper for contrast blocks */
  --burgundy: #772433;     /* primary brand accent */
  --burgundy-bright: #a85668; /* hover state for burgundy */
  --gold: #c5a46d;         /* secondary brand accent */
  --gold-bright: #d8bd8c;  /* hover state for gold */
  --ink-text: #2e2e2e;     /* body text on paper */
  --slate: #a3968e;        /* muted warm gray, text on dark */
  --slate-2: #6b6b6b;      /* muted gray, text on paper */
  --hairline: #2b2320;     /* hairline grid on dark */
  --hairline-paper: #e5ddd3; /* hairline on paper */

  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.tabular { font-variant-numeric: tabular-nums; }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

/* ---- texture utilities ---- */
.noise { position: relative; }
.noise::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.grid-lines {
  background-image:
    linear-gradient(to right, var(--hairline) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hairline) 1px, transparent 1px);
  background-size: 64px 64px;
}
.grid-lines-paper {
  background-image:
    linear-gradient(to right, var(--hairline-paper) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hairline-paper) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ---- homepage: light base instead of the dark-ink default ---- */
body.home { background: var(--paper); color: var(--ink-text); }

/* ---- reusable light-theme override for inner pages that use .page-header / .inner-hero
   (those components default to dark-ink assumptions: white nav text, translucent borders) ---- */
body.light-theme { background: var(--paper); color: var(--ink-text); }
body.light-theme .page-header { border-bottom: 1px solid var(--hairline-paper); }
body.light-theme .nav-brand { color: var(--ink); }
body.light-theme .page-header-links { color: var(--slate-2); }
body.light-theme .page-header-links a:hover { color: var(--ink); }
body.light-theme .menu-toggle span { background: var(--ink); }
body.light-theme .inner-hero { border-bottom: 1px solid var(--hairline-paper); }
body.light-theme .inner-hero h1 { color: var(--ink); }
body.light-theme .inner-hero p { color: var(--slate-2); }
body.light-theme .eyebrow { color: var(--burgundy); }
body.light-theme .btn-outline { border-color: rgba(46,46,46,0.2); color: var(--ink-text); }
body.light-theme .btn-outline:hover { border-color: rgba(46,46,46,0.45); }

/* ---- layout helpers ---- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .wrap { padding: 0 40px; } }
@media (min-width: 1680px) { .wrap { max-width: 1400px; } }
@media (min-width: 2400px) { .wrap { max-width: 1600px; } }
.section { padding: 96px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 144px 0; } }
.bg-ink { background: var(--ink); }
.bg-paper { background: var(--paper); }

/* ---- reveal-on-scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* alternate reveal: slides in from the right instead of up, for content that
   sits beside a block already using the standard up-fade (e.g. bio-list) */
.reveal.reveal-right { transform: translateX(32px); }
.reveal.reveal-right.in-view { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   NAV
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  width: min(940px, 92vw);
  opacity: 0;
  animation: navIn 0.5s 0.1s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes navIn { from { opacity: 0; transform: translateX(-50%) translateY(-16px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--ink);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  padding: 10px 10px 10px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.site-nav.scrolled .nav-bar {
  background: rgba(20,16,14,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--paper); }
.nav-badge {
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--gold); color: var(--ink); flex-shrink: 0;
}
.nav-badge svg { width: 16px; height: 16px; }
.nav-links { display: none; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--slate); }
.nav-links a { padding: 8px 12px; border-radius: 999px; transition: color 0.15s; }
.nav-links a:hover { color: var(--paper); }
@media (min-width: 860px) { .nav-links { display: flex; } }
.nav-cta {
  border-radius: 999px; background: var(--gold); color: var(--ink);
  padding: 9px 18px; font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--gold-bright); }

/* top-of-page (pre-scroll) simple header used on inner pages */
.page-header {
  position: relative;
  z-index: 50;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.page-header-links { display: none; align-items: center; gap: 22px; font-size: 14px; color: var(--slate); }
.page-header-links a:hover { color: var(--paper); }
@media (min-width: 860px) { .page-header-links { display: flex; } }
.page-header-cta {
  border-radius: 999px; background: var(--gold); color: var(--ink);
  padding: 10px 20px; font-size: 13px; font-weight: 700;
  transition: background 0.15s;
}
.page-header-cta:hover { background: var(--gold-bright); }
.menu-toggle {
  display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px;
}
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--paper); transition: transform 0.2s, opacity 0.2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 860px) { .menu-toggle { display: none; } }
.mobile-panel {
  position: fixed; inset: 0; z-index: 400; background: var(--ink);
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  padding: 96px 32px 40px; display: flex; flex-direction: column;
}
.mobile-panel.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-panel a {
  font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--paper);
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-panel a.mp-cta {
  margin-top: 24px; border-bottom: none; text-align: center; border-radius: 999px;
  background: var(--gold); color: var(--ink); padding: 14px;
}
@media (min-width: 860px) { .mobile-panel { display: none; } }
@media (max-width: 859px) {
  .nav-cta, .page-header-cta { display: none; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; font-family: var(--font-display); font-weight: 600;
  font-size: 15px; padding: 15px 28px; transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-bright); }
.btn-outline { border: 1px solid rgba(255,255,255,0.18); color: var(--paper); }
.btn-outline:hover { border-color: rgba(255,255,255,0.4); }
.btn-outline-dark { border: 1px solid rgba(46,46,46,0.2); color: var(--ink-text); }
.btn-outline-dark:hover { border-color: rgba(46,46,46,0.45); }
.btn-burgundy { background: var(--burgundy); color: var(--paper); }
.btn-burgundy:hover { background: var(--burgundy-bright); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(100vh, 880px);
  display: flex;
  padding: 100px 0 20px;
}
@media (min-width: 768px) { .hero { padding: 116px 0 28px; } }
.hero-glow-1, .hero-glow-2 { position: absolute; pointer-events: none; border-radius: 999px; filter: blur(120px); }
.hero-glow-1 { top: -160px; right: -10%; width: 560px; height: 560px; background: rgba(197,164,109,0.14); }
.hero-glow-2 { bottom: 0; left: -10%; width: 420px; height: 420px; background: rgba(119,36,51,0.22); }

/* ---- hero card: liquid-glass panel over the light page ---- */
.hero-outer { flex: 1; display: flex; min-width: 0; }
.hero-card {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.6);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.26) 100%),
    rgba(119,36,51,0.10);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 24px 60px -16px rgba(119,36,51,0.2), 0 6px 20px rgba(20,16,14,0.06);
  opacity: 0;
  animation: cardIn 0.9s 0.05s cubic-bezier(.16,1,.3,1) forwards;
}
@media (min-width: 768px) { .hero-card { border-radius: 28px; } }
@keyframes cardIn { to { opacity: 1; } }

.hero-card-content {
  position: relative; z-index: 2; width: 100%; min-width: 0; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 28px 22px 24px;
}
@media (min-width: 640px) { .hero-card-content { padding: 44px 44px 32px; } }
@media (min-width: 1024px) { .hero-card-content { padding: 60px 60px 36px; } }

.hero h1 {
  font-weight: 700; color: var(--ink);
  font-size: clamp(36px, 7.5vw, 78px);
  line-height: 1.03; letter-spacing: -0.02em;
  max-width: 780px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: block; transform: translateY(110%);
  animation: lineUp 0.9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero h1 .accent { color: var(--gold); }
.hero .l1 span { animation-delay: 0.18s; }
.hero .l2 span { animation-delay: 0.30s; }
.hero .l3 span { animation-delay: 0.42s; }

.hero-descriptor {
  margin-top: 22px; max-width: 560px;
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.55; color: var(--slate-2);
  opacity: 0; transform: translateY(14px);
  animation: fadeUp 0.7s 0.56s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-anim {
  margin-top: 18px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 2.4vw, 25px); color: var(--ink); white-space: nowrap;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp 0.7s 0.68s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-anim .anim-word {
  display: inline-block; min-width: 8em; text-align: left;
  color: var(--gold); font-style: italic;
  transition: opacity 0.35s ease;
}

.hero .ctas {
  margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  opacity: 0; transform: translateY(16px) scale(0.97);
  animation: fadeUpScale 0.6s 0.8s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUpScale { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes lineUp { to { transform: translateY(0); } }

/* primary hero CTA: solid burgundy pill with a circular arrow */
.btn-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--burgundy); color: var(--paper);
  border-radius: 999px; padding: 7px 7px 7px 22px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  transition: background 0.15s;
}
.btn-arrow:hover { background: var(--burgundy-bright); }
.btn-arrow .arrow-dot {
  display: grid; place-items: center; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--paper); color: var(--burgundy); transition: transform 0.2s;
}
.btn-arrow .arrow-dot svg { width: 15px; height: 15px; }
.btn-arrow:hover .arrow-dot { transform: translateX(3px); }

/* secondary hero CTA: burgundy outline pill */
.btn-outline-burgundy {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(119,36,51,0.4); color: var(--burgundy);
  border-radius: 999px; padding: 13px 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-outline-burgundy svg { width: 15px; height: 15px; transition: transform 0.2s; }
.btn-outline-burgundy:hover { background: var(--burgundy); color: var(--paper); border-color: var(--burgundy); }
.btn-outline-burgundy:hover svg { transform: translateX(3px); }

/* full-width ticker, flush with the bottom edge of the glass card */
.hero-marquee-full {
  width: 100%; flex-shrink: 0; overflow: hidden;
  border-top: 1px solid rgba(119,36,51,0.14);
  background: rgba(255,255,255,0.22);
  padding: 16px 0;
}
.hero-marquee-full .marquee-track { color: var(--slate-2); }
.marquee-track {
  display: flex; width: max-content; gap: 40px; white-space: nowrap;
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--slate);
  animation: marquee 34s linear infinite;
}
.marquee-track span { display: flex; align-items: center; gap: 40px; }
.marquee-track .slash { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   "WHO THIS IS FOR" (paper section, replaces fabricated stat counters)
   ========================================================================== */
.for-lede {
  max-width: 620px; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.4; color: var(--ink);
}
.for-grid {
  margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--hairline-paper);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
@media (min-width: 860px) { .for-grid { grid-template-columns: repeat(4, 1fr); } }
.for-item .for-num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 34px; color: var(--burgundy); letter-spacing: -0.01em;
}
.for-item p {
  margin-top: 12px; font-size: 14.5px; line-height: 1.65; color: var(--slate-2);
}

/* ==========================================================================
   PROCESS / CHART SECTION
   ========================================================================== */
.process-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .process-grid { grid-template-columns: 1fr 1.1fr; } }
.process-visual { display: none; }
@media (min-width: 900px) {
  .process-visual { display: block; position: sticky; top: 110px; align-self: start; }
}
.process-visual h3 { margin-top: 12px; font-size: 24px; font-weight: 600; color: var(--ink-text); }
.chart-panel {
  margin-top: 24px; position: relative; height: 360px; border-radius: 18px;
  border: 1px solid var(--hairline-paper); background: #fff; padding: 24px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.chart-panel svg { width: 100%; height: 100%; overflow: visible; }
.chart-legend { position: absolute; top: 24px; right: 24px; display: flex; flex-direction: column; gap: 6px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.chart-legend span { display: flex; align-items: center; gap: 6px; }
.legend-dash { width: 12px; height: 6px; border-radius: 999px; }

.process-steps { display: flex; flex-direction: column; gap: 88px; padding: 96px 0; }
.process-step { max-width: 460px; padding-left: 28px; border-left: 1px solid var(--hairline-paper); }
.process-step .tag { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--burgundy); }
.process-step h4 { margin-top: 12px; font-size: clamp(21px, 2.5vw, 27px); font-weight: 600; color: var(--ink-text); }
.process-step p { margin-top: 12px; font-size: 15px; line-height: 1.7; color: var(--slate-2); }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features-grid { margin-top: 60px; display: grid; gap: 20px; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-card {
  position: relative; overflow: hidden; border-radius: 18px;
  border: 1px solid var(--hairline-paper); background: #fff;
  padding: 32px; height: 100%;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
  transform-style: preserve-3d; transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(119,36,51,0.3); }
.feature-icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(197,164,109,0.14); color: var(--burgundy); margin-bottom: 20px;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 18px; font-weight: 600; color: var(--ink-text); }
.feature-card p { margin-top: 10px; font-size: 14.5px; line-height: 1.65; color: var(--slate-2); }
.card-glare {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity 0.3s;
  background: radial-gradient(circle at 50% 50%, rgba(197,164,109,0.16), transparent 60%);
}
.feature-card:hover .card-glare { opacity: 1; }

/* ==========================================================================
   PHILOSOPHY / BIO (replaces fabricated client testimonials)
   ========================================================================== */
.bio-split { margin-top: 36px; display: grid; gap: 40px; }
@media (min-width: 860px) { .bio-split { grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: start; } }
.bio-text { font-size: 16.5px; line-height: 1.8; color: var(--slate-2); max-width: 460px; }
.bio-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 18px; }
@media (min-width: 860px) { .bio-list { padding-top: 4px; } }
.bio-list li { padding-left: 24px; position: relative; font-size: 15px; line-height: 1.65; color: var(--slate-2); }
.bio-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 999px; background: var(--burgundy); }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section { position: relative; overflow: hidden; text-align: center; }
.cta-glow {
  position: absolute; top: 50%; left: 50%; width: 900px; height: 500px;
  transform: translate(-50%, -50%); border-radius: 999px;
  background: rgba(197,164,109,0.14); filter: blur(140px); pointer-events: none;
}
.cta-section .inner { position: relative; max-width: 780px; margin: 0 auto; padding: 0 24px; }
.cta-section h2 { font-size: clamp(30px, 6vw, 58px); font-weight: 700; color: var(--paper); line-height: 1.1; }
.cta-section p { margin: 20px auto 0; max-width: 460px; font-size: 16px; color: var(--slate); }
.cta-section .ctas { margin-top: 36px; display: flex; justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { border-top: 1px solid rgba(255,255,255,0.1); background: var(--ink); }
.footer-top { padding: 56px 0; }
.footer-top .wrap { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 860px) { .footer-top .wrap { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--paper); }
.footer-tagline { margin-top: 14px; max-width: 260px; font-size: 13.5px; line-height: 1.65; color: var(--slate); }
.footer-contact { margin-top: 16px; font-size: 13px; line-height: 2; color: var(--slate); }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { color: var(--paper); }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col-heading { font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--slate); }
.footer-links a:hover { color: var(--paper); }
.footer-newsletter p.sub { font-size: 13px; line-height: 1.6; color: var(--slate); margin-bottom: 16px; max-width: 260px; }
.footer-form { display: flex; margin-bottom: 10px; }
.footer-form input {
  flex: 1; padding: 11px 14px; font-size: 13px; font-family: var(--font-body);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-right: none; border-radius: 999px 0 0 999px; color: var(--paper); outline: none;
}
.footer-form input::placeholder { color: rgba(248,247,245,0.35); }
.footer-form input:focus { border-color: var(--gold); }
.footer-form button {
  padding: 11px 18px; font-size: 13px; font-weight: 600; font-family: var(--font-display);
  background: var(--gold); color: var(--ink); border: none; border-radius: 0 999px 999px 0; white-space: nowrap;
}
.footer-form button:hover { background: var(--gold-bright); }
.footer-note { font-size: 11px; color: rgba(248,247,245,0.35); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: var(--slate);
}
.footer-social a:hover { background: var(--burgundy); color: var(--paper); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-valor img { height: 32px; width: auto; opacity: 0.9; }
.footer-copy { font-size: 12px; color: rgba(248,247,245,0.3); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-legal p { font-size: 11px; line-height: 1.7; color: rgba(248,247,245,0.35); }
.footer-legal a { color: rgba(248,247,245,0.45); }
.footer-legal a:hover { color: var(--gold); }

/* ==========================================================================
   INNER PAGE HERO (pricing, blog, resources, book-a-call)
   ========================================================================== */
.inner-hero { padding: 64px 0 72px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.inner-hero h1 { font-size: clamp(32px, 5.5vw, 52px); font-weight: 700; color: var(--paper); line-height: 1.08; letter-spacing: -0.01em; max-width: 720px; }
.inner-hero p { margin-top: 20px; max-width: 560px; font-size: 16.5px; line-height: 1.7; color: var(--slate); }

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */
.pricing-grid { display: grid; gap: 24px; margin-top: 8px; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  border-radius: 20px; border: 1px solid var(--hairline-paper); background: #fff;
  padding: 36px 30px; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--gold); background: rgba(197,164,109,0.1); position: relative; }
.price-card .plan-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--burgundy); }
.price-card h3 { margin-top: 14px; font-size: 22px; font-weight: 600; color: var(--ink); }
.price-card .fee { margin-top: 16px; font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--ink); }
.price-card .fee small { display: block; margin-top: 4px; font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--slate-2); }
.price-card .desc { margin-top: 18px; font-size: 14.5px; line-height: 1.7; color: var(--slate-2); flex-grow: 1; }
.price-card ul { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 13.5px; line-height: 1.6; color: var(--slate-2); padding-left: 20px; position: relative; }
.price-card li::before { content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; border-radius: 999px; background: var(--gold); }
.price-card .btn { margin-top: 28px; justify-content: center; }
.price-note { margin-top: 40px; font-size: 13.5px; line-height: 1.7; color: var(--slate-2); max-width: 640px; }

/* ==========================================================================
   BLOG PAGE
   ========================================================================== */
.blog-grid { display: grid; gap: 24px; margin-top: 8px; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  display: flex; flex-direction: column; border-radius: 18px;
  border: 1px solid var(--hairline-paper); background: #fff;
  padding: 26px; transition: border-color 0.2s, transform 0.2s;
}
.post-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.post-card .cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--burgundy); }
.post-card h3 { margin-top: 12px; font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.4; flex-grow: 1; }
.post-card p { margin-top: 10px; font-size: 13.5px; line-height: 1.6; color: var(--slate-2); }
.post-card .meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--hairline-paper); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--slate-2); }
.post-card .meta .read { color: var(--burgundy); font-weight: 600; }

/* ==========================================================================
   SUCCESS STORIES
   ========================================================================== */
.disclaimer-box {
  margin-top: 28px; padding: 18px 22px; border-radius: 14px;
  border: 1px solid rgba(119,36,51,0.2); background: rgba(119,36,51,0.05);
  font-size: 13.5px; line-height: 1.65; color: var(--slate-2); max-width: 780px;
}
.disclaimer-box strong { color: var(--burgundy); }

/* ---- centered hero variant (success stories) ---- */
.inner-hero.centered .wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.inner-hero.centered h1 { max-width: 720px; }
.stories-intro { margin-top: 22px; max-width: 640px; font-size: 19.5px; line-height: 1.75; }
.stories-disclaimer { margin-top: 14px; max-width: 560px; font-size: 13px; line-height: 1.6; opacity: 0.75; font-style: italic; }

/* ---- stories: tabbed select, one row visible per tab ---- */
.stories-tabs-wrap { display: flex; justify-content: center; }
.stories-tabs {
  position: relative; display: inline-flex; gap: 2px; max-width: 100%;
  padding: 6px; border-radius: 999px; background: #fff;
  border: 1px solid var(--hairline-paper); box-shadow: 0 2px 10px rgba(20,16,14,0.05);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.stories-tabs-indicator {
  position: absolute; top: 6px; left: 6px; height: calc(100% - 12px);
  border-radius: 999px; background: var(--burgundy);
  transition: left 0.35s cubic-bezier(.65,0,.35,1), width 0.35s cubic-bezier(.65,0,.35,1);
  z-index: 1;
}
.stories-tab {
  position: relative; z-index: 2; flex-shrink: 0;
  padding: 12px 24px; border: none; background: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  color: var(--slate-2); border-radius: 999px; white-space: nowrap;
  transition: color 0.3s ease;
}
.stories-tab.active { color: #fff; }
@media (max-width: 520px) { .stories-tab { padding: 11px 16px; font-size: 13.5px; } }

.stories-list { display: flex; flex-direction: column; }
.story-row {
  display: none; gap: 32px;
  padding: 48px 0 8px;
}
.story-row.active { display: grid; }
@media (min-width: 860px) { .story-row { grid-template-columns: 1fr 300px; gap: 56px; } }

.story-goal { font-family: var(--font-display); font-weight: 600; font-size: clamp(19px, 2.2vw, 24px); line-height: 1.4; color: var(--ink); max-width: 640px; }
.story-goal .label { display: block; font-family: var(--font-body); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--burgundy); margin-bottom: 10px; }

.story-section { margin-top: 32px; }
.story-section h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--burgundy); }
.story-section p { margin-top: 10px; font-size: 15.5px; line-height: 1.8; color: var(--slate-2); }
.story-results-list { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.story-results-list li { padding-left: 22px; position: relative; font-size: 15px; line-height: 1.6; color: var(--slate-2); }
.story-results-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 999px; background: var(--gold); }

/* ---- side card: placeholder photo + name/age/occupation ---- */
.story-side { order: -1; }
@media (min-width: 860px) { .story-side { order: 0; } }
.story-photo-placeholder {
  width: 100%; aspect-ratio: 4 / 5; border-radius: 16px;
  border: 1.5px dashed var(--hairline-paper); background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--slate-2);
}
.story-photo-placeholder svg { width: 32px; height: 32px; opacity: 0.5; }
.story-photo-placeholder span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.story-photo {
  width: 100%; aspect-ratio: 4 / 5; border-radius: 16px;
  object-fit: cover; display: block; background: var(--hairline-paper);
}
.story-name { margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); }
.story-meta { margin-top: 4px; font-size: 13.5px; line-height: 1.5; color: var(--slate-2); }

/* ==========================================================================
   RESOURCES / PDF PAGE
   ========================================================================== */
.resource-grid { display: grid; gap: 24px; margin-top: 8px; }
@media (min-width: 760px) { .resource-grid { grid-template-columns: repeat(2, 1fr); } }
.resource-card {
  border-radius: 20px; border: 1px solid var(--hairline-paper); background: #fff;
  padding: 34px; display: flex; flex-direction: column;
}
.resource-card .plan-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--burgundy); }
.resource-card h3 { margin-top: 14px; font-size: 21px; font-weight: 600; color: var(--ink); }
.resource-card p { margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: var(--slate-2); flex-grow: 1; }
.resource-card .btn { margin-top: 24px; align-self: flex-start; }

/* ==========================================================================
   BOOK ROUTING PAGE (post-form: Loom video + Calendly)
   ========================================================================== */
.book-step-heading {
  font-family: var(--font-display); font-weight: 800; color: var(--ink);
  font-size: clamp(24px, 3.2vw, 34px); letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.book-video-wrap {
  width: 100%; position: relative; padding-bottom: 56.25%;
  border-radius: 18px; overflow: hidden; margin-bottom: 56px;
  border: 1px solid var(--hairline-paper); background: #fff;
  box-shadow: 0 20px 50px rgba(20,16,14,0.1);
}
.book-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.book-video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  border: 1.5px dashed var(--hairline-paper); color: var(--slate-2);
}
.book-video-placeholder .label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--burgundy); }
.book-video-placeholder .title { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 3vw, 24px); color: var(--ink); }
.book-divider { border: none; border-top: 1px solid var(--hairline-paper); margin: 0 0 48px; }
.book-calendly-wrap { border-radius: 18px; overflow: hidden; border: 1px solid var(--hairline-paper); background: #fff; }
.book-fallback { text-align: center; padding: 64px 24px; }
.book-fallback h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.book-fallback p { font-size: 15.5px; line-height: 1.7; color: var(--slate-2); margin-bottom: 28px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   BOOK A CALL PAGE
   ========================================================================== */
.book-grid { display: grid; gap: 48px; align-items: start; }
@media (min-width: 860px) { .book-grid { grid-template-columns: 1fr 1.15fr; } }
.book-left { text-align: center; }
@media (min-width: 860px) { .book-left { text-align: left; } }
.book-photo {
  width: 160px; height: 160px; border-radius: 999px; overflow: hidden; margin: 0 auto 24px;
  box-shadow: 0 4px 24px rgba(20,16,14,0.18);
}
@media (min-width: 860px) { .book-photo { margin: 0 0 24px; } }
.book-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.book-left h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }
.book-left p.sub { margin-top: 18px; font-size: 15.5px; line-height: 1.7; color: var(--slate-2); }
.book-left p.sub { max-width: 420px; }
@media (min-width: 860px) { .book-left p.sub { margin-left: 0; } }
.book-left { margin: 0 auto; max-width: 420px; }
@media (min-width: 860px) { .book-left { margin: 0; max-width: none; } }
.form-card {
  background: #fff; border: 1px solid var(--hairline-paper); border-radius: 18px; padding: 30px 30px 22px;
  box-shadow: 0 10px 40px rgba(20,16,14,0.12);
}
.form-card iframe { display: block; width: 100%; border: none; }
.form-disclosure { margin-top: 16px; font-size: 11px; line-height: 1.6; color: var(--slate-2); }
.form-disclosure a { color: var(--burgundy); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 599px) {
  .section { padding: 72px 0; }
  .footer-cols { gap: 32px; }
}
