/* =========================================================
   Empower Capital Tax Advisors — Design System
   Navy #0A1628 · Gold #C9A84C · Off-white #F8F7F4 · Ink #0F1115
   Typography: Fraunces (serif headings) · Inter (sans body)
   ========================================================= */

:root {
  --navy: #0A1628;
  --navy-80: rgba(10, 22, 40, 0.8);
  --navy-5: rgba(10, 22, 40, 0.05);
  --navy-10: rgba(10, 22, 40, 0.10);
  --gold: #C9A84C;
  --gold-ink: #8A7230;
  --gold-soft: rgba(201, 168, 76, 0.12);
  --off-white: #F8F7F4;
  --paper: #FFFFFF;
  --ink: #0F1115;
  --ink-70: #3a3d44;
  --ink-55: #5a5d66;
  --hairline: rgba(10, 22, 40, 0.12);
  --hairline-soft: rgba(10, 22, 40, 0.08);
  --hairline-gold: rgba(201, 168, 76, 0.35);

  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05), 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.06), 0 2px 4px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 20px 40px rgba(10, 22, 40, 0.10), 0 6px 12px rgba(10, 22, 40, 0.06);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --f-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --easing: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; }
a { color: var(--navy); text-decoration-color: var(--hairline-gold); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--gold-ink); }
h1, h2, h3, h4, h5 {
  font-family: var(--f-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.5em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(2.2rem, 1.4rem + 3.6vw, 4rem); letter-spacing: -0.022em; line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.75rem); letter-spacing: -0.018em; line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.625rem); line-height: 1.2; }
h4 { font-size: 1.125rem; font-weight: 600; font-family: var(--f-sans); letter-spacing: 0; }
p { margin: 0 0 1em; }
p.lede { font-size: clamp(1.125rem, 0.9rem + 0.6vw, 1.375rem); color: var(--ink-70); line-height: 1.55; max-width: 62ch; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--hairline); margin: 2.5rem 0; }
ul, ol { padding-left: 1.25em; }
li { margin: 0.25em 0; }
blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: var(--gold-soft);
  font-family: var(--f-serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--navy);
}
code, pre { font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace; font-size: 0.92em; }

::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container-narrow { max-width: 760px; }
.container-wide { max-width: 1320px; }
.eyebrow { display: inline-block; font-family: var(--f-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-ink); margin: 0 0 0.9em; }
.hairline-rule { display: inline-block; width: 32px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 0.75rem; }
.text-muted { color: var(--ink-55); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold-ink); }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.visually-hidden { clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--off-white);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-bottom-right-radius: var(--r-sm);
  font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--off-white); }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 6vw, 7rem) 0; }
.section-tight { padding: clamp(3rem, 4vw, 4.5rem) 0; }
.section-dark { background: var(--navy); color: var(--off-white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--off-white); }
.section-dark a { color: var(--gold); }
.section-dark p { color: rgba(248, 247, 244, 0.82); }
.section-dark .eyebrow { color: var(--gold); }
.section-paper { background: var(--paper); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms var(--easing), color 180ms var(--easing), border-color 180ms var(--easing), transform 180ms var(--easing);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: #d8b85c; color: var(--navy); border-color: #d8b85c; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--off-white); }
.btn-outline-light { background: transparent; color: var(--off-white); border-color: rgba(248, 247, 244, 0.35); }
.btn-outline-light:hover { background: var(--off-white); color: var(--navy); border-color: var(--off-white); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--navy-5); }
.btn-lg { min-height: 56px; padding: 1rem 2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Top bar + Header ---------- */
.topbar {
  background: var(--navy);
  color: var(--off-white);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.55rem var(--gutter);
  letter-spacing: 0.02em;
}
.topbar a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201, 168, 76, 0.5); text-underline-offset: 3px; }
.topbar a:hover { color: #e7c765; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 247, 244, 0.88);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--r-xs);
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.brand-name { line-height: 1.1; }
.brand-name small { display: block; font-family: var(--f-sans); font-size: 0.68rem; font-weight: 500; color: var(--ink-55); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0.5rem 0.15rem;
  position: relative;
}
.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
}
.nav-cta { display: inline-flex; gap: 0.6rem; align-items: center; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle:hover { background: var(--navy-5); }
.nav-toggle svg { display: block; }

/* Services dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: -0.75rem;
  min-width: 280px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 180ms var(--easing), transform 180ms var(--easing), visibility 180ms var(--easing);
  list-style: none;
  margin: 0.3rem 0 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  line-height: 1.35;
}
.dropdown a strong { display: block; color: var(--navy); font-weight: 600; }
.dropdown a span { color: var(--ink-55); font-size: 0.82rem; }
.dropdown a:hover { background: var(--navy-5); }
.dropdown a::after { display: none; }

@media (max-width: 940px) {
  .nav-links, .nav-cta .desktop-only { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    border-top: 1px solid var(--hairline);
    padding: 0.5rem var(--gutter) 1.25rem;
    box-shadow: var(--shadow-md);
  }
  .site-header.is-open .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--hairline-soft);
    font-size: 1rem;
  }
  .site-header.is-open .nav-links a::after { display: none; }
  .site-header.is-open .dropdown { position: static; box-shadow: none; border: 0; padding: 0 0 0 0.75rem; opacity: 1; visibility: visible; transform: none; margin: 0; background: transparent; }
  .site-header.is-open .dropdown a { padding: 0.55rem 0; border: 0; font-size: 0.9rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 6vw, 6.5rem) 0 clamp(3rem, 5vw, 5rem);
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201, 168, 76, 0.08), transparent 60%),
    linear-gradient(180deg, var(--off-white) 0%, var(--paper) 100%);
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero .lede { margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; color: var(--ink-55); font-size: 0.9rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-meta svg { color: var(--gold-ink); }

.hero-aside {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.hero-aside::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-lg) + 1px);
  padding: 1px;
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.6), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.credential-card { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.credential-card h3 { font-family: var(--f-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-55); margin: 0 0 0.35rem; }
.credential-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.credential-list li { display: grid; grid-template-columns: 18px 1fr; gap: 0.55rem; align-items: baseline; font-size: 0.93rem; color: var(--navy); }
.credential-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 0.5rem; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { order: 2; }
}

/* ---------- Trust bar ---------- */
.trustbar {
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  background: var(--paper);
  padding: 1rem 0;
}
.trustbar ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2rem;
  color: var(--ink-70);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.trustbar li { display: inline-flex; align-items: center; gap: 0.5rem; }
.trustbar li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.trustbar li:first-child::before { display: none; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: border-color 180ms var(--easing), transform 180ms var(--easing), box-shadow 180ms var(--easing);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
}
.card:hover { border-color: var(--hairline-gold); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 0.25rem; font-size: 1.2rem; }
.card p { color: var(--ink-70); margin: 0; font-size: 0.97rem; }
.card .card-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px dashed var(--hairline); font-size: 0.86rem; color: var(--ink-55); gap: 1rem; }
.card .card-meta strong { color: var(--navy); font-weight: 600; }
.card-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}
.card-link::after { content: "→"; transition: transform 160ms var(--easing); }
.card-link:hover::after { transform: translateX(3px); }
.card-icon { color: var(--gold-ink); width: 28px; height: 28px; margin-bottom: 0.35rem; }

a.card { text-decoration: none; color: inherit; }
a.card h3 { color: var(--navy); }

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature-row + .feature-row { margin-top: clamp(3rem, 5vw, 4.5rem); }
.feature-row.reverse .feature-row-text { order: 2; }
@media (max-width: 780px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-row-text { order: 0; }
}
.feature-row-visual {
  background: var(--navy);
  color: var(--off-white);
  padding: 2.25rem;
  border-radius: var(--r-lg);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.feature-row-visual::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.feature-row-visual .stat { font-family: var(--f-serif); font-size: clamp(2.2rem, 4vw, 3.3rem); color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.feature-row-visual .stat-label { font-size: 0.85rem; color: rgba(248, 247, 244, 0.7); margin-top: 0.4rem; letter-spacing: 0.04em; }

/* ---------- Credibility strip ---------- */
.cred-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
}
.cred-strip > div {
  background: var(--paper);
  padding: 1.4rem 1.5rem;
}
.cred-strip .stat { font-family: var(--f-serif); font-size: 2rem; color: var(--navy); line-height: 1; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
.cred-strip .label { font-size: 0.83rem; color: var(--ink-55); line-height: 1.3; }

/* ---------- Process timeline ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.5rem;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-serif);
  font-size: 0.95rem;
  color: var(--gold-ink);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.6rem;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; font-family: var(--f-sans); font-weight: 600; }
.process-step p { font-size: 0.92rem; color: var(--ink-70); margin: 0; }

/* ---------- Founder / bio ---------- */
.bio {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.bio-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, var(--navy), #17263f);
  border-radius: var(--r-md);
  color: var(--gold);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem;
  font-family: var(--f-serif);
  font-size: 2.6rem;
  position: relative;
  overflow: hidden;
}
.bio-portrait::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 80%; aspect-ratio: 1;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
}
.bio h3 { margin-bottom: 0.15rem; }
.bio .bio-title { color: var(--gold-ink); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; margin: 0 0 0.9rem; }
.bio ul { padding-left: 1rem; margin: 0.75rem 0 0; color: var(--ink-70); font-size: 0.95rem; }
@media (max-width: 640px) {
  .bio { grid-template-columns: 1fr; }
  .bio-portrait { max-width: 260px; }
}

/* ---------- Proof / testimonials ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.proof-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.proof-card .outcome { font-family: var(--f-serif); font-size: 1.7rem; color: var(--navy); line-height: 1.1; }
.proof-card .outcome em { color: var(--gold-ink); font-style: italic; }
.proof-card .situation { color: var(--ink-70); font-size: 0.95rem; }
.proof-card .attribution { font-size: 0.82rem; color: var(--ink-55); border-top: 1px solid var(--hairline-soft); padding-top: 0.75rem; margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  border-top: 1px solid var(--hairline);
  padding: 1.25rem 0;
}
.faq details:last-child { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--f-serif);
  font-size: 1.2rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--f-sans);
  font-size: 1.6rem;
  color: var(--gold-ink);
  line-height: 1;
  transition: transform 200ms var(--easing);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0.85rem 0 0; color: var(--ink-70); font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--off-white);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.25rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: -80px; top: -80px;
  width: 240px; height: 240px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.16), transparent 70%);
}
.cta-band h2 { color: var(--off-white); margin: 0 0 0.4rem; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem); }
.cta-band p { color: rgba(248, 247, 244, 0.78); margin: 0; max-width: 60ch; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; position: relative; z-index: 1; }
@media (max-width: 720px) {
  .cta-band { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(248, 247, 244, 0.78);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
  font-size: 0.92rem;
}
.site-footer a { color: var(--off-white); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
}
.footer-grid h4 { color: var(--off-white); font-family: var(--f-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-brand .brand { color: var(--off-white); }
.footer-brand p { max-width: 36ch; margin: 0.75rem 0 1rem; }
.footer-brand .brand-mark { background: var(--gold); color: var(--navy); }
.footer-brand .brand-name small { color: rgba(248, 247, 244, 0.55); }
.footer-form label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(248, 247, 244, 0.6); margin-bottom: 0.4rem; }
.footer-form-row { display: flex; gap: 0.5rem; }
.footer-form input[type="email"] {
  flex: 1;
  min-width: 0;
  background: rgba(248, 247, 244, 0.06);
  border: 1px solid rgba(248, 247, 244, 0.15);
  color: var(--off-white);
  padding: 0.7rem 0.85rem;
  border-radius: var(--r-sm);
  font: inherit;
}
.footer-form input[type="email"]:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.footer-form input[type="email"]::placeholder { color: rgba(248, 247, 244, 0.5); }
.footer-form button { min-height: 44px; padding: 0.6rem 1rem; }
.footer-form small { display: block; margin-top: 0.5rem; color: rgba(248, 247, 244, 0.55); font-size: 0.78rem; }

.footer-legal {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 247, 244, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(248, 247, 244, 0.6);
}
.footer-legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

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

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--ink-55);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.breadcrumbs li + li::before { content: "›"; margin-right: 0.35rem; color: var(--ink-55); }
.breadcrumbs a { color: var(--ink-55); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs [aria-current="page"] { color: var(--navy); }

/* ---------- Page header (simple hero for inner pages) ---------- */
.page-hero {
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(2rem, 3vw, 3rem);
  background:
    radial-gradient(900px 300px at 80% -20%, rgba(201, 168, 76, 0.07), transparent 60%),
    linear-gradient(180deg, var(--off-white), var(--paper));
  border-bottom: 1px solid var(--hairline-soft);
}
.page-hero h1 { max-width: 22ch; }
.page-hero .lede { max-width: 68ch; margin-top: 0.5rem; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; align-items: stretch; }
.price-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.price-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.price-card .tier-name { font-family: var(--f-sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; }
.price-card .price { font-family: var(--f-serif); font-size: 2.2rem; color: var(--navy); line-height: 1; letter-spacing: -0.01em; }
.price-card .price small { font-family: var(--f-sans); font-size: 0.82rem; color: var(--ink-55); font-weight: 500; letter-spacing: 0.03em; margin-left: 0.3rem; }
.price-card .tier-desc { color: var(--ink-70); font-size: 0.95rem; margin: 0; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.price-card li { display: grid; grid-template-columns: 18px 1fr; gap: 0.5rem; font-size: 0.92rem; }
.price-card li::before { content: "✓"; color: var(--gold-ink); font-weight: 600; }
.price-card .btn { margin-top: auto; }
.price-card .featured-badge {
  position: absolute;
  top: -10px; right: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-size: 0.86rem; color: var(--navy); font-weight: 500; }
.field input, .field select, .field textarea {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  min-height: 44px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.field-help { font-size: 0.8rem; color: var(--ink-55); }

/* ---------- Article / prose ---------- */
.prose {
  max-width: 68ch;
  margin: 0 auto;
}
.prose h2 { margin-top: 2.25rem; font-size: 1.8rem; }
.prose h3 { margin-top: 1.6rem; font-size: 1.25rem; font-family: var(--f-sans); font-weight: 600; letter-spacing: 0; }
.prose p { font-size: 1.06rem; line-height: 1.7; color: #242830; }
.prose ul li, .prose ol li { font-size: 1.02rem; line-height: 1.7; color: #242830; }
.prose a { color: var(--navy); text-decoration-color: var(--gold); text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-ink); }
.prose hr { margin: 2.5rem 0; }

/* TL;DR box */
.tldr {
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.4rem;
  border-radius: var(--r-sm);
  margin: 1.5rem 0 2rem;
}
.tldr h3 { font-family: var(--f-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-ink); margin: 0 0 0.5rem; }
.tldr p { margin: 0; color: var(--navy); }

/* Article meta / toc */
.article-header { margin-bottom: 2rem; }
.article-header .eyebrow { color: var(--gold-ink); }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.88rem; color: var(--ink-55); margin-top: 0.75rem; }
.article-meta time { color: var(--ink-70); }

.toc {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem;
}
.toc h3 { font-family: var(--f-sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-55); font-weight: 600; margin: 0 0 0.75rem; }
.toc ol { margin: 0; padding-left: 1.2rem; display: grid; gap: 0.3rem; }
.toc a { color: var(--navy); font-size: 0.92rem; text-decoration: none; border-bottom: 1px solid transparent; }
.toc a:hover { border-color: var(--gold); color: var(--gold-ink); }

.author-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--f-serif); font-size: 1.6rem; display: flex; align-items: center; justify-content: center; }
.author-card h4 { margin: 0 0 0.1rem; }
.author-card p { margin: 0; font-size: 0.9rem; color: var(--ink-70); }

/* ---------- Announcement newsletter card ---------- */
.signup-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  max-width: 540px;
}
.signup-card .form-row { display: flex; gap: 0.5rem; }
.signup-card input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  font: inherit;
  background: var(--paper);
}
.signup-card small { font-size: 0.82rem; color: var(--ink-55); }

/* ---------- Exit intent / modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 22, 40, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: pop 220ms var(--easing);
}
@keyframes pop { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal h2 { margin-top: 0; font-size: 1.6rem; }
.modal .form-row { display: flex; gap: 0.5rem; margin-top: 1rem; }
.modal input[type="email"] { flex: 1; min-width: 0; padding: 0.85rem 1rem; border: 1px solid var(--hairline); border-radius: var(--r-sm); font: inherit; }
.modal .close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: transparent; border: 0;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink-55);
}
.modal .close:hover { background: var(--navy-5); color: var(--navy); }

/* ---------- Scroll newsletter prompt ---------- */
.scroll-prompt {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--navy);
  color: var(--off-white);
  padding: 1.25rem 1.4rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  max-width: 340px;
  z-index: 60;
  display: none;
  border: 1px solid var(--gold);
}
.scroll-prompt.show { display: block; animation: slideup 260ms var(--easing); }
@keyframes slideup { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.scroll-prompt h4 { color: var(--gold); margin: 0 0 0.35rem; font-family: var(--f-sans); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; }
.scroll-prompt p { margin: 0 0 0.75rem; font-size: 0.92rem; color: rgba(248, 247, 244, 0.82); }
.scroll-prompt .form-row { display: flex; gap: 0.4rem; }
.scroll-prompt input[type="email"] { flex: 1; min-width: 0; padding: 0.55rem 0.7rem; border-radius: var(--r-sm); border: 1px solid rgba(248, 247, 244, 0.25); background: rgba(248, 247, 244, 0.06); color: var(--off-white); font: inherit; font-size: 0.88rem; }
.scroll-prompt input[type="email"]::placeholder { color: rgba(248, 247, 244, 0.55); }
.scroll-prompt .close { position: absolute; top: 0.25rem; right: 0.25rem; background: transparent; border: 0; color: rgba(248, 247, 244, 0.6); cursor: pointer; padding: 0.25rem 0.5rem; }
.scroll-prompt .close:hover { color: var(--gold); }

/* ---------- Calendly embed ---------- */
.calendly-embed {
  position: relative;
  min-height: 720px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--paper);
}
.calendly-inline-widget { height: 720px; width: 100%; }

/* ---------- Utility space ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }
.text-center { text-align: center; }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .scroll-prompt, .modal-backdrop { display: none !important; }
  body { background: #fff; color: #000; }
  a { text-decoration: underline; color: #000; }
}
