/* ==========================================================================
   The Advocates — Los Angeles landing page
   Coded from Figma: "Advocates v1" (two desktop variants @1920px)
   Built on Bootstrap 5.3 — this sheet layers brand tokens + section styling.

   TWO THEMES, one sheet:
   - body.theme-playfair → LEFT Figma frame:  Playfair Display headlines,
     italic pull-quotes, green accent highlights, green nav CTA.
   - body.theme-museo    → RIGHT Figma frame: Museo/Museo Slab headlines,
     upright pull-quotes, teal accents, Noto Serif step titles, teal nav CTA.
   Shared structure/layout is unscoped; only type + accent colors differ.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens (from Figma)
   -------------------------------------------------------------------------- */
:root {
  --adv-blue: #005678;        /* deep ocean blue — panels, marquee, quotes */
  --adv-teal: #007986;        /* primary accent — buttons, eyebrows, links */
  --adv-green: #009764;       /* secondary accent — highlights (V1), logo tag */
  --adv-orange: #ffa600;      /* warm accent — stories heading, names, glows */
  --adv-ink: #414143;         /* charcoal body text + footer bg */
  --adv-border: rgba(0, 86, 120, 0.1);

  /* Fonts: commercial families first (Adobe Fonts), free look-alikes after.
     Playfair Display, Noto Serif and DM Sans load from Google Fonts. */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "proxima-nova", "Proxima Nova", "Montserrat", -apple-system, "Segoe UI", sans-serif;
  --font-sans-cond: "proxima-nova-condensed", "Proxima Nova Condensed", "Oswald", sans-serif;
  --font-museo: "museo", "Museo", "Zilla Slab", "Rockwell", serif;
  --font-museo-slab: "museo-slab", "Museo Slab", "Zilla Slab", "Rockwell", serif;
  --font-museo-sans: "museo-sans", "Museo Sans", "Mulish", "Verdana", sans-serif;
  --font-noto: "Noto Serif", Georgia, serif;

  /* Fluid type scale (Figma desktop px → clamp) */
  --fs-h1: clamp(2.625rem, 1.05rem + 3.28vw, 4.875rem);        /* 78px */
  --fs-h2: clamp(2.25rem, 1.157rem + 2.28vw, 3.75rem);         /* 60px */
  --fs-h2-cta: clamp(2.375rem, 1.147rem + 2.56vw, 4.1875rem);  /* 67px */
  --fs-h2-intro: clamp(2.125rem, 1.086rem + 2.17vw, 3.5625rem);/* 57px */
  --fs-body-lg: 1.25rem;                                       /* 20px */
  --fs-body: 1rem;                                             /* 16px */

  --section-gutter: 104px; /* content inset at 1920 */
}

/* --------------------------------------------------------------------------
   Zilla Slab variant — the Museo layout committed to free Google fonts.
   Used together with .theme-museo (body class="theme-museo theme-zilla"):
   every .theme-museo rule reads its family from these variables, so
   re-pointing them is the entire theme. No Adobe Fonts kit required.
   -------------------------------------------------------------------------- */
body.theme-zilla {
  --font-museo: "Zilla Slab", "Rockwell", serif;
  --font-museo-slab: "Zilla Slab", "Rockwell", serif;
  --font-museo-sans: "Mulish", "Verdana", sans-serif;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--adv-ink);
  background: #fff;
  overflow-x: hidden;
}

section[id], header[id] { scroll-margin-top: 120px; }

/* 1712px content column = 1920 − (2 × 104) */
.container-adv {
  width: 100%;
  max-width: calc(1712px + 3rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Eyebrow labels — Proxima Semibold 18/1.8px tracking */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--adv-teal);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-adv {
  --bs-btn-border-radius: 10px;
  --bs-btn-border-width: 0;
  --bs-btn-font-family: var(--font-sans);
  --bs-btn-font-weight: 700;
  --bs-btn-font-size: 1.0625rem; /* 17px */
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-adv-teal {
  --bs-btn-bg: var(--adv-teal);
  --bs-btn-hover-bg: #006974;
  --bs-btn-active-bg: #005c66;
}
.btn-adv-green {
  --bs-btn-bg: var(--adv-green);
  --bs-btn-hover-bg: #008457;
  --bs-btn-active-bg: #00734c;
}
.link-adv {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.048em;
  text-transform: uppercase;
  color: var(--adv-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.link-adv:hover { color: var(--adv-teal); }
.link-adv .chev { width: 7px; height: 12px; }

/* --------------------------------------------------------------------------
   Top bar — ENGLISH | ESPAÑOL
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--adv-blue);
  min-height: 35px;
  font-size: 1rem;
  letter-spacing: 0.096em;
  text-transform: uppercase;
}
.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}
.topbar a.active { font-weight: 800; }
.topbar .sep { color: #fff; }

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar-adv {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid var(--adv-border);
  min-height: 104px;
  padding-block: 0.75rem;
}
.navbar-adv .navbar-brand { display: block; }
.navbar-adv .brand-logo {
  width: 195px;
  height: 39px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.navbar-adv .brand-tag {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.873rem; /* 13.97px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--adv-green);
  margin-top: 4px;
  white-space: nowrap;
}
.navbar-adv .nav-link {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.096em;
  text-transform: uppercase;
  color: var(--adv-ink);
}
.navbar-adv .nav-link:hover { color: var(--adv-teal); }
@media (min-width: 992px) {
  .navbar-adv .navbar-nav { align-items: center; gap: 3rem; }
  .navbar-adv .btn-adv { min-width: 248px; }
}
@media (min-width: 1400px) {
  .navbar-adv .navbar-nav { gap: 6rem; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: #fff;
}
@media (min-width: 992px) {
  .hero { min-height: 984px; display: flex; align-items: center; }
}
.hero-copy { position: relative; z-index: 2; padding-block: 4rem; }
@media (min-width: 992px) {
  .hero-copy { padding-block: 6rem; }
}
.hero-title {
  font-size: var(--fs-h1);
  color: var(--adv-ink);
  margin: 2.2rem 0 0;
}
.theme-playfair .hero-title {
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.067; /* 83.2/78 */
  max-width: 745px;
}
.theme-playfair .hero-title .accent {
  font-weight: 900;
  font-style: italic;
  color: var(--adv-teal);
}
.theme-museo .hero-title {
  font-family: var(--font-museo-slab);
  font-weight: 500;
  line-height: 1.026; /* 80/78 */
  max-width: 830px;
}
.theme-museo .hero-title .accent {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  color: var(--adv-teal);
}
.hero-lede {
  line-height: 1.428; /* 28.56 */
  color: var(--adv-ink);
  margin-top: 2.6rem;
}
.theme-playfair .hero-lede { font-size: var(--fs-body-lg); max-width: 511px; }
.theme-museo .hero-lede { font-size: 1.0625rem; max-width: 520px; }
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-top: 3.4rem;
}
.hero-actions .btn-adv { min-width: 253px; }

/* Right photo panel */
.hero-media {
  position: relative;
  background: var(--adv-blue);
  overflow: hidden;
  min-height: 420px;
}
@media (min-width: 992px) {
  .hero-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    min-height: 0;
  }
}
.hero-media img.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.hero-media .grad {
  position: absolute;
  inset: 33.8% 0 0 0;
  background: linear-gradient(to top, rgba(255, 166, 0, 0.4), rgba(255, 166, 0, 0));
}
.quote-card {
  position: absolute;
  right: 6.5%;
  bottom: 63px;
  width: 333px;
  max-width: calc(100% - 3rem);
  background: #fff;
  border-radius: 10px;
  padding: 24px 28px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}
.quote-card .q {
  font-size: 1.875rem; /* 30px */
  line-height: 1.15;
  color: var(--adv-blue);
  margin: 0 0 1.25rem;
}
.theme-playfair .quote-card .q {
  font-family: var(--font-serif);
  font-weight: 800;
  font-style: italic;
}
.theme-museo .quote-card .q {
  font-family: var(--font-museo);
  font-weight: 700;
  font-style: normal;
}
.quote-card .cite {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--adv-teal);
  font-style: normal;
  display: block;
}

/* --------------------------------------------------------------------------
   Marquee strip
   -------------------------------------------------------------------------- */
.marquee {
  background: var(--adv-blue);
  color: #fff;
  min-height: 78px;
  font-weight: 600;
  font-size: 1.0625rem; /* 17px */
  letter-spacing: 0.122em;
  text-transform: uppercase;
}
.marquee .star {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Intro — “Saturated. Yet underserved.”
   -------------------------------------------------------------------------- */
.intro {
  background: #fff;
  border-bottom: 1px solid var(--adv-border);
}
.intro .intro-cell {
  border: 1px solid var(--adv-border);
  border-top: 0;
  padding: 5rem 2.5rem 5rem clamp(1.5rem, 5.4vw, 104px);
  min-height: 100%;
}
@media (min-width: 992px) {
  .intro .intro-cell { min-height: 455px; }
}
.intro-copy-wrap {
  padding: 3rem clamp(1.5rem, 8.3vw, 159px) 3rem clamp(1.5rem, 4.5vw, 86px);
}
@media (max-width: 991.98px) {
  .intro-copy-wrap { padding-block: 3.5rem; }
}
.intro-heading {
  font-size: var(--fs-h2-intro);
  margin: 1.4rem 0 0;
}
.theme-playfair .intro-heading {
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.067; /* 60.8/57 */
  color: var(--adv-blue);
}
.theme-playfair .intro-heading .l2 {
  font-weight: 900;
  font-style: italic;
  color: var(--adv-green);
}
.theme-museo .intro-heading {
  font-family: var(--font-museo);
  font-weight: 700;
  line-height: 1;
  color: var(--adv-blue);
}
.theme-museo .intro-heading .l2 { color: var(--adv-teal); }
.intro-copy {
  font-size: clamp(1.25rem, 0.936rem + 0.66vw, 1.8125rem); /* 29px */
  line-height: 1.655; /* 48/29 */
  color: var(--adv-blue);
  margin: 0;
}
.theme-playfair .intro-copy {
  font-family: var(--font-serif);
  font-weight: 800;
}
.theme-playfair .intro-copy .hl { color: var(--adv-green); }
.theme-museo .intro-copy {
  font-family: var(--font-museo-sans);
  font-weight: 500;
}
.theme-museo .intro-copy .hl {
  font-family: var(--font-museo);
  font-weight: 700;
  color: var(--adv-teal);
}

/* --------------------------------------------------------------------------
   Three truths
   -------------------------------------------------------------------------- */
.truths {
  background: #fff;
  border-bottom: 1px solid var(--adv-border);
  padding-block: 8rem 9rem;
}
.truths h3 {
  line-height: 1.0625; /* 34px */
  color: var(--adv-ink);
  min-height: 68px;
  display: flex;
  align-items: flex-end;
  margin: 0;
}
.theme-playfair .truths h3 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 2rem; /* 32px */
}
.theme-museo .truths h3 {
  font-family: var(--font-museo);
  font-weight: 700;
  font-size: 2.25rem; /* 36px */
  line-height: 0.944; /* 34/36 */
}
.truths p {
  font-size: var(--fs-body);
  line-height: 1.564; /* 25.02/16 */
  margin: 1.15rem 0 0;
}

/* --------------------------------------------------------------------------
   Split photo sections (Doni story / The Promise)
   -------------------------------------------------------------------------- */
.split {
  position: relative;
  background: #fff;
}
@media (min-width: 992px) {
  .split { min-height: 744px; display: flex; align-items: center; }
}
.split-media {
  position: relative;
  background: var(--adv-blue);
  overflow: hidden;
  min-height: 420px;
}
@media (min-width: 992px) {
  .split-media {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    min-height: 0;
  }
}
.split-media img.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}
.split-media .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 86, 120, 0.65) 0.6%, rgba(255, 166, 0, 0) 89.7%);
}
.split-media .grad-promise {
  background: linear-gradient(to top, rgba(0, 86, 120, 0.75) 12.1%, rgba(255, 166, 0, 0) 79%);
}
.split-media .media-caption {
  position: absolute;
  left: clamp(1.5rem, 5.4vw, 104px);
  right: 1.5rem;
  bottom: 54px;
  color: #fff;
}
.split-media .media-caption .label {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.split-media .media-caption .quote {
  font-size: 1.875rem; /* 30px */
  line-height: 1.15;
  max-width: 548px;
  margin: 0;
}
.theme-playfair .split-media .media-caption .quote {
  font-family: var(--font-serif);
  font-weight: 800;
  font-style: italic;
}
.theme-museo .split-media .media-caption .quote {
  font-family: var(--font-museo);
  font-weight: 700;
  font-style: normal;
}
.split-copy { position: relative; z-index: 2; padding-block: 4.5rem; }
@media (min-width: 992px) {
  .split-copy { padding-block: 5rem; }
  .split-copy-right { padding-left: clamp(0px, 4.8vw, 93px); }
}
.split h2 {
  font-size: var(--fs-h2);
  color: var(--adv-ink);
  margin: 1.25rem 0 0;
}
.theme-playfair .split h2 {
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1;
}
.theme-museo .split h2 {
  font-family: var(--font-museo);
  font-weight: 700;
  line-height: 0.983; /* 59/60 */
}
/* Doni: “came home.” */
.theme-playfair .split h2 .accent-italic { font-style: italic; }
.theme-museo .split h2 .accent-italic {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
}
.split .body-copy {
  font-size: var(--fs-body);
  line-height: 1.813; /* 29.01/16 */
  margin-top: 2.3rem;
  max-width: 605px;
}
.split .body-copy p { margin-bottom: 1.8rem; }
.split .body-copy .lead-in { color: var(--adv-blue); }
.credential {
  font-family: var(--font-sans-cond);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1125em;
  text-transform: uppercase;
  color: var(--adv-green);
  margin-top: 0.6rem;
}

/* --------------------------------------------------------------------------
   Client stories
   -------------------------------------------------------------------------- */
.stories {
  position: relative;
  background: var(--adv-blue);
  color: #fff;
  overflow: hidden;
  padding-block: 7rem;
}
@media (min-width: 992px) {
  .stories { min-height: 744px; display: flex; align-items: center; padding-block: 6rem; }
}
.stories .glow {
  position: absolute;
  pointer-events: none;
  transform: rotate(27.95deg);
}
.stories .glow-1 {
  width: 1345px;
  height: 1870px;
  right: -640px;
  top: -350px;
}
.stories .glow-2 {
  width: 1611px;
  height: 1418px;
  left: -840px;
  bottom: -420px;
}
.stories .eyebrow { color: #fff; }
@media (min-width: 992px) {
  .stories-text { padding-left: clamp(0px, 5.4vw, 103px); }
}
.stories-heading {
  font-size: var(--fs-h2);
  margin: 1.4rem 0 0;
}
.stories-heading .l1, .stories-heading .l2 { display: block; }
.theme-playfair .stories-heading { line-height: 1; }
.theme-playfair .stories-heading .l1 {
  font-family: var(--font-serif);
  font-weight: 800;
  color: #fff;
}
.theme-playfair .stories-heading .l2 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-style: italic;
  color: var(--adv-orange);
}
.theme-museo .stories-heading { line-height: 0.983; }
.theme-museo .stories-heading .l1 {
  font-family: var(--font-museo);
  font-weight: 700;
  color: #fff;
}
.theme-museo .stories-heading .l2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  color: var(--adv-orange);
}
.stories-copy {
  font-size: var(--fs-body);
  line-height: 1.663; /* 26.6/16 */
  max-width: 563px;
  margin-top: 2.6rem;
}
.stories-copy p { margin-bottom: 1.65rem; }
.stories-copy p:last-child { margin-bottom: 0; }

.story-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 28px 36px 30px;
  min-height: 143px;
}
.story-card + .story-card { margin-top: 18px; }
.story-card .q {
  font-size: 1.1875rem; /* 19px */
  line-height: 1.347;   /* 25.6/19 */
  opacity: 0.9;
  margin: 0 0 0.95rem;
  max-width: 505px;
}
.theme-playfair .story-card .q {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
}
.theme-museo .story-card .q {
  font-family: var(--font-noto);
  font-stretch: 62.5%;
  font-variation-settings: "wdth" 62.5;
  font-weight: 800;
  font-style: normal;
}
.story-card .who {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1.25rem;
  font-size: 1rem;
}
.story-card .who .name {
  font-weight: 600;
  letter-spacing: 0.047em;
  text-transform: uppercase;
  color: var(--adv-orange);
  font-style: normal;
}
.story-card .who .case { color: #fff; }

/* --------------------------------------------------------------------------
   The Promise — numbered steps
   -------------------------------------------------------------------------- */
.promise { border-top: 1px solid var(--adv-border); }
.promise .sub {
  font-size: 1.0625rem;
  line-height: 1.61;
  margin-top: 1.9rem;
}
/* “the final resolution.” accent */
.theme-playfair .promise h2 .accent-h2 {
  font-weight: 900;
  font-style: italic;
  color: var(--adv-green);
}
.theme-museo .promise h2 .accent-h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  color: var(--adv-teal);
}
.steps { margin-top: 1.6rem; }
.step {
  display: flex;
  gap: 14px;
  padding-block: 1.35rem;
}
.step + .step { border-top: 1px solid var(--adv-border); }
.step .num {
  font-family: var(--font-sans-cond);
  font-weight: 200;
  font-size: 2.3125rem; /* 37px */
  line-height: 1;
  color: var(--adv-blue);
  min-width: 26px;
  flex-shrink: 0;
  margin-top: -2px;
}
.step h3 {
  font-size: 1.5rem; /* 24px */
  line-height: 0.96;
  color: var(--adv-blue);
  margin: 0 0 0.65rem;
}
.theme-playfair .step h3 {
  font-family: var(--font-serif);
  font-weight: 800;
}
.theme-museo .step h3 {
  font-family: var(--font-noto);
  font-weight: 800;
  font-variation-settings: "wdth" 100;
}
.step p {
  font-size: var(--fs-body);
  line-height: 1.44; /* 23.04/16 */
  margin: 0;
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  position: relative;
  border-top: 1px solid var(--adv-border);
  padding: 5.4rem 0 7rem;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -313px;
  width: 600px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(26, 58, 92, 0.05), rgba(26, 58, 92, 0) 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: var(--fs-h2-cta);
  line-height: 1.09; /* 73/67 */
  color: var(--adv-ink);
  margin: 1.5rem auto 0;
}
.theme-playfair .final-cta h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  max-width: 872px;
}
.theme-playfair .final-cta h2 .accent {
  font-weight: 800;
  font-style: italic;
  color: var(--adv-blue);
}
.theme-museo .final-cta h2 {
  font-family: var(--font-museo);
  font-weight: 500;
  max-width: 914px;
}
.theme-museo .final-cta h2 .accent {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  color: var(--adv-teal);
}
.final-cta .sub {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 496px;
  margin: 2.4rem auto 0;
}
.final-cta .btn-adv { min-width: 347px; margin-top: 3rem; }
@media (max-width: 575.98px) {
  .final-cta .btn-adv { min-width: 0; width: 100%; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--adv-ink);
  color: #fff;
  padding-block: 3.9rem;
  font-size: 1.0625rem;
  letter-spacing: 0.044em;
}
.footer .footer-logo { width: 295px; max-width: 100%; height: auto; }
.footer .phone,
.footer .cities {
  font-weight: 700;
  font-size: 1.1875rem; /* 19px */
  margin: 0 0 0.55rem;
}
.footer .tagline {
  font-weight: 400;
  font-size: 1.125rem;
  margin: 0.15rem 0 0;
}
.footer .copyright { font-size: 1.0625rem; margin: 0; }
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Version chooser (index.html)
   -------------------------------------------------------------------------- */
.chooser {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--adv-blue);
  padding-block: 4rem;
}
.chooser .card-version {
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 3rem 2.5rem;
  text-decoration: none;
  color: var(--adv-ink);
  height: 100%;
  transition: transform 0.15s ease;
}
.chooser .card-version:hover { transform: translateY(-4px); }
.chooser .card-version .eyebrow { font-size: 0.875rem; }
.chooser .card-version h2 { margin: 0.75rem 0 1rem; }
.chooser .card-version.v1 h2 {
  font-family: var(--font-serif);
  font-weight: 800;
  color: var(--adv-blue);
}
.chooser .card-version.v2 h2 {
  font-family: var(--font-museo);
  font-weight: 700;
  color: var(--adv-blue);
}
.chooser .card-version.v3 h2 {
  font-family: "Zilla Slab", "Rockwell", serif;
  font-weight: 700;
  color: var(--adv-blue);
}
.chooser .card-version p { margin: 0; line-height: 1.6; }
.chooser .heading {
  font-family: var(--font-serif);
  font-weight: 800;
  color: #fff;
}
