/* =========================================================================
   West Michigan Notary — Design System
   Professional, trustworthy, attractive. Mobile-first, no build step.
   ========================================================================= */

:root {
  /* Brand palette — deep navy (trust) + warm gold (premium) + lake teal accent */
  --navy-900: #0b1f33;
  --navy-800: #102a44;
  --navy-700: #163a5c;
  --navy-600: #1d4d77;
  --navy-500: #2a6396;
  --blue-50:  #eef4fa;
  --blue-100: #dce8f4;

  --gold-600: #b3892f;
  --gold-500: #c79a3a;
  --gold-400: #d9b15a;
  --gold-200: #f0e2bd;

  --teal-500: #2b8a86;

  --ink-900: #0f1722;
  --ink-700: #2b3645;
  --ink-500: #56616f;
  --ink-300: #97a1ad;

  --paper:    #ffffff;
  --paper-50: #f7f9fc;
  --paper-100:#eef2f7;
  --line:     #e2e8f0;

  --ok-500:   #1f8a52;
  --warn-500: #b4451f;
  --warn-bg:  #fdf0ec;
  --ok-bg:    #eef7f1;

  /* Type */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing / shape */
  --radius:   14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,31,51,.06), 0 1px 3px rgba(11,31,51,.10);
  --shadow:    0 8px 24px rgba(11,31,51,.10);
  --shadow-lg: 0 20px 48px rgba(11,31,51,.16);
  --container: 1140px;
  --header-h: 72px;
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold-600); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.18; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* --------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(48px, 7vw, 92px) 0; }
.section--tint { background: var(--paper-50); }
.section--navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #dbe6f1; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 2.6rem; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-500); font-size: 1.08rem; }
.section--navy .section-head p { color: #b8c8da; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: .74rem; color: var(--gold-600);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); display: inline-block; }
.section--navy .eyebrow { color: var(--gold-400); }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .85em 1.5em; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-400); color: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--navy-200, #cdd9e6); }
.btn-ghost:hover { border-color: var(--navy-600); color: var(--navy-700); }
.btn-light { background: #fff; color: var(--navy-800); }
.btn-light:hover { background: var(--blue-50); color: var(--navy-900); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { font-size: 1.08rem; padding: 1em 1.8em; }

/* --------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; color: var(--navy-900); font-size: 1.18rem; letter-spacing: -.01em; }
.brand:hover { color: var(--navy-900); }
.brand .mark { width: 40px; height: 40px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-600); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 500; font-size: .96rem; color: var(--ink-700);
  padding: .5em .8em; border-radius: 8px;
}
.nav-links a:hover { background: var(--paper-100); color: var(--navy-800); }
.nav-links a.active { color: var(--navy-800); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-book-mobile { display: none; }
@media (max-width: 940px) {
  .nav-book-mobile { display: block; }
  .nav-actions .btn-book { display: none; }
}

/* Language toggle */
.lang-toggle { display: inline-flex; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.lang-toggle button {
  font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .03em;
  padding: .4em .8em; border: 0; background: transparent; color: var(--ink-500); cursor: pointer;
}
.lang-toggle button.is-active { background: var(--navy-800); color: #fff; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy-800); position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 8px 14px 18px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8em .6em; border-radius: 8px; }
  .nav-links li + li a { border-top: 1px solid var(--paper-100); }
}

/* --------------------------------------------------------------- Hero */
.hero { position: relative; color: #e9f1f9; overflow: hidden; background: var(--navy-900); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 540px at 78% -10%, rgba(199,154,58,.30), transparent 60%),
    radial-gradient(900px 600px at 8% 110%, rgba(43,138,134,.28), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
}
.hero .container { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; padding: clamp(54px, 8vw, 104px) 0; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 34px; } }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .lead { font-size: 1.18rem; color: #c5d6e8; max-width: 38ch; }
.hero .eyebrow { color: var(--gold-400); }
.habla-badge {
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--gold-500); color: var(--navy-900);
  font-weight: 700; font-size: 1.3rem; line-height: 1; letter-spacing: .005em;
  padding: .55em 1.15em; border-radius: 999px; margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
}
.habla-badge svg { flex: none; width: 22px; height: 22px; }
@media (max-width: 600px) { .habla-badge { font-size: 1.1rem; } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 2.1rem; color: #aebfd2; font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .5em; }
.hero-trust svg { color: var(--gold-400); }

/* Hero card (price / quick facts) */
.hero-card {
  background: rgba(255,255,255,.96); color: var(--ink-700);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.5);
}
.hero-card h3 { color: var(--navy-900); }
.price-row { display: flex; align-items: baseline; gap: .4em; margin: .2rem 0 .2rem; }
.price-row .amt { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--navy-900); line-height: 1; }
.price-row .per { color: var(--ink-500); font-weight: 600; }
.hero-card ul { list-style: none; padding: 0; margin: 1.1rem 0 0; }
.hero-card li { display: flex; gap: .7em; padding: .5em 0; border-top: 1px solid var(--paper-100); font-size: .97rem; }
.hero-card li:first-child { border-top: 0; }
.hero-card li .ic { color: var(--ok-500); flex: none; margin-top: .15em; }

/* --------------------------------------------------------------- Cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic-badge {
  width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--navy-600); margin-bottom: 16px;
}
.card h3 { margin-bottom: .35em; font-size: 1.18rem; }
.card p { color: var(--ink-500); font-size: .98rem; margin: 0; }
.card-link { margin-top: 14px; display: inline-flex; align-items: center; gap: .4em; font-weight: 600; font-size: .94rem; }

/* --------------------------------------------------------------- Area chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: .5em; padding: .5em 1em;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: .92rem; font-weight: 500; color: var(--ink-700); box-shadow: var(--shadow-sm);
}
.chip svg { color: var(--gold-500); }
.section--navy .chip { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: #dce8f4; }

/* ----------------------------------------------- Can / Cannot notarize */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .dual { grid-template-columns: 1fr; } }
.list-card { border-radius: var(--radius); padding: 26px 28px; border: 1px solid var(--line); background: #fff; }
.list-card.ok  { background: var(--ok-bg);  border-color: #cfe7d8; }
.list-card.no  { background: var(--warn-bg); border-color: #f3d6cb; }
.list-card h3 { display: flex; align-items: center; gap: .55em; }
.list-card.ok h3 { color: #176b41; }
.list-card.no h3 { color: #9b3a18; }
.doc-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.doc-list li { display: flex; gap: .7em; padding: .62em 0; border-top: 1px solid rgba(0,0,0,.06); align-items: flex-start; }
.doc-list li:first-child { border-top: 0; }
.doc-list .mk { flex: none; margin-top: .15em; font-weight: 800; }
.list-card.ok .mk { color: var(--ok-500); }
.list-card.no .mk { color: var(--warn-500); }
.doc-list strong { color: var(--ink-900); font-weight: 600; }
.doc-list small { display: block; color: var(--ink-500); font-size: .86rem; }

/* --------------------------------------------------------------- Steps */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step .num {
  counter-increment: step; flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-800); color: #fff; font-family: var(--font-head); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step .num::before { content: counter(step); }
.step h3 { margin: .15em 0 .25em; font-size: 1.12rem; }
.step p { margin: 0; color: var(--ink-500); font-size: .97rem; }

/* --------------------------------------------------------------- Pricing */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .price-cards { grid-template-columns: 1fr; } }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow-sm); }
.price-card.featured { border-color: var(--gold-400); box-shadow: var(--shadow); position: relative; }
.price-card.featured::after {
  content: attr(data-badge); position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold-500); color: var(--navy-900); font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .35em .9em; border-radius: 999px;
}
.price-card .big { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--navy-900); }
.price-card .big small { font-size: .9rem; font-weight: 600; color: var(--ink-500); font-family: var(--font-body); }
.price-card .desc { color: var(--ink-500); font-size: .95rem; min-height: 2.6em; }

/* --------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; color: var(--navy-900);
  display: flex; justify-content: space-between; align-items: center; gap: 1em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-600); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 18px; color: var(--ink-500); }

/* --------------------------------------------------------------- Forms */
.form-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
@media (max-width: 940px) { .form-wrap { grid-template-columns: 1fr; gap: 28px; } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink-700); margin-bottom: 6px; }
.field .req { color: var(--warn-500); }
.field input, .field select, .field textarea {
  width: 100%; padding: .72em .9em; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink-900); background: var(--paper-50); transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-500); background: #fff; box-shadow: 0 0 0 3px rgba(42,99,150,.14);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.help { font-size: .82rem; color: var(--ink-500); margin-top: 5px; }
.form-note { font-size: .86rem; color: var(--ink-500); background: var(--paper-50); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; }

.form-success {
  display: none; background: var(--ok-bg); border: 1px solid #cfe7d8; color: #176b41;
  border-radius: var(--radius); padding: 18px 20px; margin-top: 16px; font-weight: 500;
}
.form-success.show { display: block; }

/* --------------------------------------------------------------- Calendar */
.calendar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-head .cal-title { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); font-size: 1.12rem; }
.cal-nav { display: inline-flex; gap: 6px; }
.cal-nav button { width: 36px; height: 36px; border: 1px solid var(--line); background: #fff; border-radius: 9px; cursor: pointer; color: var(--navy-700); font-size: 1.1rem; }
.cal-nav button:hover { background: var(--paper-100); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-dow { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-300); text-transform: uppercase; padding: 6px 0; }
.cal-day {
  aspect-ratio: 1/1; border: 1px solid transparent; border-radius: 9px; background: var(--paper-50);
  display: flex; align-items: center; justify-content: center; font-size: .92rem; cursor: pointer; color: var(--ink-700);
  transition: .12s;
}
.cal-day:hover:not(.is-disabled) { background: var(--blue-50); border-color: var(--navy-200, #cdd9e6); }
.cal-day.is-muted { color: var(--ink-300); background: transparent; cursor: default; }
.cal-day.is-disabled { color: var(--ink-300); background: transparent; cursor: not-allowed; text-decoration: line-through; }
.cal-day.is-today { font-weight: 700; box-shadow: inset 0 0 0 1.5px var(--gold-400); }
.cal-day.is-selected { background: var(--navy-800); color: #fff; border-color: var(--navy-800); font-weight: 700; }
.time-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; margin-top: 16px; }
.slot { padding: .6em; text-align: center; border: 1.5px solid var(--line); border-radius: 9px; background: #fff; cursor: pointer; font-size: .9rem; font-weight: 500; transition: .12s; }
.slot:hover { border-color: var(--navy-500); }
.slot.is-selected { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); font-weight: 700; }
.slots-note { grid-column: 1 / -1; font-size: .9rem; color: var(--ink-700); background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--radius-sm); padding: 12px 14px; line-height: 1.5; }
.cal-selected-label { margin-top: 14px; font-size: .92rem; color: var(--navy-700); font-weight: 600; }

/* --------------------------------------------------------------- Callouts */
.callout {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border-radius: var(--radius);
  background: var(--blue-50); border: 1px solid var(--blue-100);
}
.callout .ic { flex: none; color: var(--navy-600); margin-top: 2px; }
.callout.warn { background: var(--warn-bg); border-color: #f3d6cb; }
.callout.warn .ic { color: var(--warn-500); }
.callout.gold { background: #fbf4e2; border-color: var(--gold-200); }
.callout.gold .ic { color: var(--gold-600); }
.callout h3 { font-size: 1.08rem; margin-bottom: .25em; }
.callout p { margin: 0; font-size: .95rem; color: var(--ink-600, #46505d); }

/* Legal disclaimer band (notario notice) */
.legal-notice {
  background: var(--navy-900); color: #c7d6e6; font-size: .9rem; border-top: 3px solid var(--gold-500);
}
.legal-notice .container { padding-top: 18px; padding-bottom: 18px; display: flex; gap: 14px; align-items: flex-start; }
.legal-notice strong { color: #fff; }
.legal-notice svg { flex: none; color: var(--gold-400); margin-top: 2px; }

/* --------------------------------------------------------------- CTA band */
.cta-band { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--navy-900); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px); text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { color: var(--navy-900); }
.cta-band p { color: #5b4a1e; max-width: 52ch; margin: 0 auto 1.6rem; }

/* --------------------------------------------------------------- Footer */
.site-footer { background: var(--navy-900); color: #9fb2c6; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #9fb2c6; display: inline-block; padding: .25em 0; }
.site-footer a:hover { color: var(--gold-400); }
.footer-brand { display: flex; align-items: center; gap: 11px; color: #fff; font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 1rem; }
.footer-brand .mark { width: 40px; height: 40px; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .6em; align-items: flex-start; margin-bottom: .6em; font-size: .94rem; }
.footer-contact svg { flex: none; color: var(--gold-400); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .85rem; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* --------------------------------------------------------------- Page hero (sub pages) */
.page-hero { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #dce8f4; padding: clamp(44px, 6vw, 72px) 0; position: relative; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 85% -20%, rgba(199,154,58,.22), transparent 60%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { color: #b8c8da; max-width: 60ch; margin: 0; font-size: 1.08rem; }
.breadcrumb { font-size: .85rem; color: #8fa6bd; margin-bottom: 1rem; }
.breadcrumb a { color: #b8c8da; }

/* --------------------------------------------------------------- Prose (legal pages) */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose h3 { font-size: 1.18rem; margin-top: 1.6rem; }
.prose p, .prose li { color: var(--ink-700); }
.prose .updated { color: var(--ink-500); font-size: .92rem; font-style: italic; }
.prose ul { margin-bottom: 1.2rem; }
.toc { background: var(--paper-50); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 2rem; }
.toc h4 { margin: 0 0 .6rem; font-family: var(--font-body); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); }
.toc ol { margin: 0; padding-left: 1.1rem; columns: 2; }
@media (max-width: 600px) { .toc ol { columns: 1; } }
.toc a { font-size: .94rem; }

/* --------------------------------------------------------------- Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.4rem; } .mt-3 { margin-top: 2rem; }
.muted { color: var(--ink-500); }
.lead { font-size: 1.12rem; }
.pill-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pill-list li { display: flex; gap: .7em; align-items: flex-start; }
.pill-list .ic { color: var(--ok-500); flex: none; margin-top: .2em; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 26px; } }

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

/* Language visibility helper (optional per-element) */
[data-only-en], [data-only-es] { display: none; }
html[lang="en"] [data-only-en] { display: revert; }
html[lang="es"] [data-only-es] { display: revert; }

/* Skip link (a11y) */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy-900); color: #fff; padding: .6em 1em; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; color: #fff; }
