/* ==========================================================================
   Jacob Miller Coaching — Brand Stylesheet
   Palette:  Navy #0F1B3D · Gold #C5A55A · Cream #F5F0E8 · White #FFFFFF
   Fonts:    Playfair Display (headings) · Inter (body)
   ========================================================================== */

:root {
  --navy: #0F1B3D;
  --navy-soft: #16244f;
  --navy-deep: #0a1330;
  --gold: #C5A55A;
  --gold-bright: #d8bd78;
  --gold-deep: #a98a3f;
  --cream: #F5F0E8;
  --cream-deep: #ece4d6;
  --white: #FFFFFF;
  --ink: #1c2233;
  --muted: #5b6275;
  --muted-light: rgba(245, 240, 232, 0.72);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1140px;
  --container-narrow: 860px;
  --radius: 6px;
  --shadow-sm: 0 4px 18px rgba(15, 27, 61, 0.08);
  --shadow-md: 0 18px 50px rgba(15, 27, 61, 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1.1em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: var(--container-narrow); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}
.section--navy .eyebrow { color: var(--gold); }

.lead { font-size: 1.2rem; line-height: 1.8; color: var(--muted); }
.section--navy .lead { color: var(--muted-light); }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; max-width: 720px; }

.divider {
  width: 64px; height: 3px; border: 0; border-radius: 2px;
  background: var(--gold); margin: 0 0 1.6rem;
}
.center .divider { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-bright); color: var(--navy); }

.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(197, 165, 90, 0.18);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28); }

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav__logo:hover { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream);
}
.nav__links a:hover, .nav__links a.active { color: var(--gold); }

.nav__right { display: flex; align-items: center; gap: 26px; }
.nav__social { display: flex; gap: 16px; }
.nav__social a { color: var(--cream); display: inline-flex; }
.nav__social a:hover { color: var(--gold); }
.nav__social svg { width: 19px; height: 19px; fill: currentColor; }

.nav__cta { padding: 12px 22px; font-size: 0.72rem; }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
}
.nav__toggle span { display: block; height: 2px; background: var(--cream); margin: 5px 0; transition: 0.3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(197, 165, 90, 0.2);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 0 24px;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  }
  .nav__menu.open { max-height: 460px; padding: 18px 24px 28px; }
  .nav__menu .nav__links { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .nav__menu .nav__links a { display: block; padding: 12px 0; width: 100%; }
  .nav__menu .nav__right { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 14px; width: 100%; }
  .nav__menu .nav__cta { align-self: stretch; text-align: center; }
}

/* ==========================================================================
   Hero (homepage)
   ========================================================================== */
.hero {
  position: relative;
  background:
    linear-gradient(160deg, rgba(15, 27, 61, 0.86) 0%, rgba(10, 19, 48, 0.96) 100%),
    radial-gradient(circle at 75% 25%, rgba(197, 165, 90, 0.22), transparent 55%),
    var(--navy);
  color: var(--cream);
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 26px 26px; opacity: 0.5; pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 820px; padding: 80px 0; }
.hero__name {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  color: var(--white); margin-bottom: 0.1em;
}
.hero__title {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.6rem;
}
.hero__tagline {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.6; color: var(--cream); max-width: 720px; margin-bottom: 2.4rem;
  font-family: var(--serif); font-style: italic; font-weight: 400;
}
.hero__photo-note {
  position: absolute; right: 28px; bottom: 22px; z-index: 1;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
}

/* ==========================================================================
   Pain-point / "Maybe You Can Relate"
   ========================================================================== */
.relate-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 2.5rem;
}
.relate-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); padding: 24px 26px; border-radius: var(--radius);
  border-left: 3px solid var(--gold); box-shadow: var(--shadow-sm);
}
.relate-item__mark { color: var(--gold-deep); font-size: 1.4rem; line-height: 1; flex: none; margin-top: 2px; }
.relate-item p { margin: 0; font-size: 1rem; color: var(--ink); }

@media (max-width: 760px) { .relate-grid { grid-template-columns: 1fr; } }

/* ---------- Pull statement ---------- */
.statement {
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5; max-width: 880px;
}
.statement .accent { color: var(--gold); }

/* ==========================================================================
   Outcomes
   ========================================================================== */
.outcomes {
  list-style: none; margin: 2.5rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px;
}
.outcomes li {
  position: relative; padding-left: 42px; line-height: 1.6;
}
.outcomes li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(197, 165, 90, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A55A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 15px; background-repeat: no-repeat; background-position: center;
}
@media (max-width: 760px) { .outcomes { grid-template-columns: 1fr; } }

/* ==========================================================================
   About-me teaser (two column)
   ========================================================================== */
.teaser { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.teaser__media {
  aspect-ratio: 3 / 4; border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(197,165,90,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy-soft), var(--navy-deep));
  position: relative; box-shadow: var(--shadow-md);
  display: flex; align-items: flex-end; justify-content: center; padding: 22px;
}
.teaser__media span {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4); text-align: center;
}
.teaser__body blockquote { margin: 0 0 1.6rem; padding: 0; }
.teaser__body .signature { font-family: var(--serif); font-style: italic; color: var(--gold-deep); }

@media (max-width: 820px) {
  .teaser { grid-template-columns: 1fr; gap: 36px; }
  .teaser__media { aspect-ratio: 4 / 3; max-width: 420px; }
}

/* ==========================================================================
   Program pillars
   ========================================================================== */
.program-name { font-size: clamp(2rem, 4.5vw, 3rem); }
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 3rem; }
.pillar {
  background: var(--white); border-radius: var(--radius);
  padding: 38px 34px; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}
.pillar__num {
  font-family: var(--serif); font-size: 0.95rem; letter-spacing: 0.2em;
  color: var(--gold-deep); text-transform: uppercase; margin-bottom: 0.4rem;
}
.pillar h3 { margin-bottom: 1rem; }
.pillar ul { list-style: none; margin: 0; padding: 0; }
.pillar li { position: relative; padding-left: 22px; margin-bottom: 0.7rem; font-size: 0.98rem; color: var(--ink); }
.pillar li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }

@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3rem; }
.testimonial {
  background: var(--navy-soft); border-radius: var(--radius); padding: 32px 30px;
  border: 1px solid rgba(197, 165, 90, 0.16);
}
.testimonial__quote { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--cream); margin-bottom: 1.4rem; line-height: 1.6; }
.testimonial__quote::before { content: "\201C"; color: var(--gold); font-size: 2.4rem; line-height: 0; vertical-align: -0.4rem; margin-right: 4px; }
.testimonial__name { font-weight: 700; color: var(--gold); font-size: 0.9rem; letter-spacing: 0.06em; }
.placeholder-tag {
  display: inline-block; margin-top: 0.6rem; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,240,232,0.4);
}
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }

/* ==========================================================================
   Social feed
   ========================================================================== */
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 2.5rem; }
.social-tile {
  aspect-ratio: 1; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--cream-deep), var(--cream));
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); border: 1px dashed rgba(15,27,61,0.14);
}
.social-tile svg { width: 26px; height: 26px; fill: var(--gold-deep); opacity: 0.55; }
@media (max-width: 760px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(15,27,61,0.9), rgba(10,19,48,0.97)),
    radial-gradient(circle at 50% 0%, rgba(197,165,90,0.25), transparent 60%),
    var(--navy);
  color: var(--cream);
}
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy-deep); color: var(--muted-light); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer__logo { font-family: var(--serif); font-size: 1.6rem; color: var(--white); margin-bottom: 1rem; }
.footer__mission { max-width: 360px; font-size: 0.98rem; font-style: italic; font-family: var(--serif); }
.footer h4 { color: var(--gold); font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.7rem; }
.footer a { color: var(--muted-light); font-size: 0.95rem; }
.footer a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 16px; margin-top: 0.4rem; }
.footer__social a svg { width: 20px; height: 20px; fill: currentColor; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(197,165,90,0.14);
  font-size: 0.82rem; color: rgba(245,240,232,0.5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  background:
    linear-gradient(160deg, rgba(15,27,61,0.9), rgba(10,19,48,0.97)),
    radial-gradient(circle at 80% 20%, rgba(197,165,90,0.2), transparent 55%),
    var(--navy);
  color: var(--cream); padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
}
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: var(--muted-light); max-width: 740px; }

/* ==========================================================================
   About page
   ========================================================================== */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { color: var(--gold-deep); margin-top: 2rem; }
.prose p { color: var(--ink); }
.prose blockquote {
  border-left: 3px solid var(--gold); margin: 0; padding: 4px 0 4px 26px;
  font-family: var(--serif); font-style: italic; color: var(--navy); font-size: 1.15rem;
}

.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 2.5rem; }
.principle { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); border-left: 3px solid var(--gold); }
.principle__num { font-family: var(--serif); color: var(--gold-deep); font-size: 1.3rem; margin-bottom: 0.4rem; }
.principle h3 { color: var(--navy); margin: 0 0 0.6rem; font-size: 1.15rem; }
.principle p { margin: 0; font-size: 0.98rem; color: var(--muted); }
@media (max-width: 760px) { .principles { grid-template-columns: 1fr; } }

.modalities { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; list-style: none; padding: 0; }
.modalities li {
  background: var(--cream); border: 1px solid var(--cream-deep); border-radius: 50px;
  padding: 12px 24px; font-weight: 600; color: var(--navy); font-size: 0.95rem;
}

.credentials { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.credentials li { position: relative; padding-left: 28px; margin-bottom: 0.9rem; }
.credentials li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px;
  border: 2px solid var(--gold); border-radius: 50%;
}

.about-portrait {
  aspect-ratio: 4 / 5; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(197,165,90,0.18), transparent 60%), linear-gradient(180deg, var(--navy-soft), var(--navy-deep));
  display: flex; align-items: flex-end; justify-content: center; padding: 20px; box-shadow: var(--shadow-md);
}
.about-portrait span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.4); }

/* ==========================================================================
   Blog page
   ========================================================================== */
.blog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--cream); border-radius: var(--radius); padding: 30px; text-align: center; margin-bottom: 28px; }
.sidebar-avatar {
  width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(160deg, var(--navy-soft), var(--navy-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); color: var(--gold); font-size: 1.8rem; border: 3px solid var(--gold);
}
.sidebar-card h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.sidebar-card .role { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; }
.sidebar-card p { font-size: 0.95rem; color: var(--muted); font-style: italic; font-family: var(--serif); }

.search-box { display: flex; margin-bottom: 28px; }
.search-box input { flex: 1; border: 1px solid var(--cream-deep); border-right: 0; padding: 12px 16px; border-radius: var(--radius) 0 0 var(--radius); font-family: var(--sans); font-size: 0.95rem; }
.search-box button { border: 0; background: var(--navy); color: var(--white); padding: 0 18px; border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer; }

.categories { list-style: none; margin: 0; padding: 0; }
.categories li { border-bottom: 1px solid var(--cream-deep); }
.categories a { display: flex; justify-content: space-between; padding: 12px 4px; color: var(--navy); font-size: 0.95rem; }
.categories a:hover { color: var(--gold-deep); }

.posts { display: grid; gap: 36px; }
.post-card { display: grid; grid-template-columns: 280px 1fr; gap: 28px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.post-card__img {
  background: linear-gradient(150deg, var(--navy-soft), var(--navy-deep)); min-height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.post-card__img span { color: rgba(245,240,232,0.4); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.post-card__body { padding: 30px 30px 30px 0; }
.post-card__cat { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.post-card h3 { margin: 0.6rem 0; font-size: 1.35rem; }
.post-card h3 a { color: var(--navy); }
.post-card h3 a:hover { color: var(--gold-deep); }
.post-card__meta { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }

@media (max-width: 920px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 620px) {
  .post-card { grid-template-columns: 1fr; }
  .post-card__body { padding: 24px; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info dl { margin: 0; }
.contact-info .row { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--cream-deep); }
.contact-info dt { flex: none; width: 110px; font-weight: 700; color: var(--gold-deep); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 2px; }
.contact-info dd { margin: 0; color: var(--ink); }

.contact-form { background: var(--cream); border-radius: var(--radius); padding: 40px; }
.contact-form label { display: block; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 0.5rem; color: var(--navy); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--cream-deep); border-radius: var(--radius);
  font-family: var(--sans); font-size: 1rem; margin-bottom: 1.4rem; background: var(--white); color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .disclaimer { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(15,27,61,0.12); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: 1.2rem; color: var(--navy);
  padding: 24px 44px 24px 0; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  color: var(--gold-deep); font-family: var(--sans); font-size: 1.6rem; font-weight: 400; transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q::after { content: "\2013"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 44px 24px 0; margin: 0; color: var(--muted); }

/* ==========================================================================
   Privacy / legal prose
   ========================================================================== */
.legal { max-width: 800px; }
.legal h2 { font-size: 1.5rem; margin-top: 2.4rem; }
.legal p, .legal li { color: var(--ink); }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 0.6rem; }
.legal .updated { color: var(--muted); font-size: 0.9rem; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utility ---------- */
.mt-2 { margin-top: 2rem; }
.stack-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.center .stack-cta { justify-content: center; }
