/* ==========================================================================
   Pasaporte 2026 — Sistema de diseño "Editorial Institucional"
   Serif elegante + azul marino + dorado · HTML5 + CSS puro · Sin JavaScript
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #fbfaf7;
  --bg-card: #ffffff;
  --ink: #16223a;
  --navy: #0a2540;
  --navy-soft: #16345a;
  --navy-deep: #081b30;
  --gold: #c2a14e;
  --gold-soft: #d8c489;
  --gold-tint: #f4ecd7;
  --line: #e6e1d6;
  --line-strong: #d3ccbb;
  --muted: #5f6b7e;
  --paper: #f3f0e8;
  --danger: #9e2b22;

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

  --container: 1180px;
  --pad-x: 24px;
  --radius: 3px;
}

@media (min-width: 1024px) { :root { --pad-x: 40px; } }

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; text-wrap: balance; color: var(--navy); line-height: 1.12; }
p { text-wrap: pretty; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 1px; }
strong { font-weight: 600; color: var(--ink); }

/* --- Layout --------------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 1024px) { .section { padding-top: 84px; padding-bottom: 84px; } }
.bg-secondary { background: var(--paper); }
.bg-navy { background: var(--navy); color: #fff; }
.text-muted { color: var(--muted); }
.text-gold { color: var(--gold); }

/* --- Trust bar (top) ------------------------------------------------------ */
.trust-bar { background: var(--navy-deep); color: rgba(255,255,255,.72); font-size: .78rem; letter-spacing: .02em; }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: 6px 26px; align-items: center; padding-top: 9px; padding-bottom: 9px; }
.trust-bar span { display: inline-flex; align-items: center; gap: 8px; }
.trust-bar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }

/* --- Rules ---------------------------------------------------------------- */
.rule-gold { height: 3px; border: 0; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 55%, transparent 100%); }
.rule-thin { height: 1px; border: 0; background: var(--line); }
.hero-divider { height: 3px; background: var(--gold); }

/* --- Heading accent ------------------------------------------------------- */
.heading-accent { border-left: 4px solid var(--gold); padding-left: 18px; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; text-decoration: none; padding: 14px 24px;
  border-radius: var(--radius); transition: all .2s ease; white-space: nowrap; font-size: .9375rem;
  border: 1px solid transparent;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-soft); color: #fff; }
.btn-primary .arrow { color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-soft); color: var(--navy); }
.btn-outline { border-color: var(--line-strong); color: var(--navy); background: transparent; }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-ghost-light { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }
.btn-ghost-light:hover { border-color: var(--gold); color: #fff; }

/* --- Header / Nav --------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,250,247,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; height: 72px; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--navy); }
.brand:hover { color: var(--navy); }
.brand .brand-year { color: var(--gold); }
.brand-mark { width: 34px; height: 34px; background: var(--navy); color: #fff; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 800; font-size: 1rem; position: relative; }
.brand-mark::after { content: ""; position: absolute; inset: 3px; border: 1px solid var(--gold); border-radius: 1px; }
.brand-mark span { z-index: 1; color: #fff; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a { text-decoration: none; padding: 9px 14px; font-size: .8125rem; font-weight: 500; letter-spacing: .01em; color: var(--muted); border-radius: 2px; transition: color .2s; }
.nav-menu a:hover { color: var(--navy); }
.nav-menu a.active { color: var(--navy); font-weight: 600; }
.nav-menu a.active::after { content: ""; display: block; width: 16px; height: 2px; background: var(--gold); margin: 3px auto 0; }
.nav-toggle { display: none; }
.nav-toggle-label { display: none; padding: 8px; color: var(--navy); font-size: 1.4rem; line-height: 1; }
@media (max-width: 1023px) {
  .nav-toggle-label { display: flex; align-items: center; }
  .nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--bg); border-top: 1px solid var(--line); padding: 12px 20px; gap: 2px; box-shadow: 0 10px 28px rgba(10,37,64,.1); }
  .nav-menu a { padding: 14px; font-size: 1rem; }
  .nav-toggle:checked ~ .nav-menu { display: flex; }
  .nav-toggle:checked + .nav-toggle-label .icon-close { display: inline; }
  .nav-toggle:checked + .nav-toggle-label .icon-open { display: none; }
  .nav-toggle:not(:checked) + .nav-toggle-label .icon-close { display: none; }
}

/* --- Breadcrumbs --------------------------------------------------------- */
.breadcrumbs { padding-top: 30px; padding-bottom: 22px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; font-size: .8125rem; color: var(--muted); }
.breadcrumbs a { text-decoration: none; color: var(--muted); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs li:last-child { color: var(--navy); font-weight: 600; }
.breadcrumb-sep { color: var(--line-strong); }

/* --- Hero ----------------------------------------------------------------- */
.hero { background: var(--bg); border-bottom: 3px solid var(--gold); }
.hero-inner { display: grid; gap: 44px; align-items: center; padding-top: 56px; padding-bottom: 60px; }
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.15fr 1fr; padding-top: 72px; padding-bottom: 76px; } }
.hero-eyebrow { color: var(--navy); font-family: var(--sans); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 22px; }
.hero-left { position: relative; padding-left: 26px; }
.hero-left::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: var(--gold); }
.hero h1 { font-size: clamp(3rem, 8vw, 5rem); font-weight: 600; color: var(--navy); letter-spacing: -0.02em; }
.hero-lead { margin-top: 24px; font-size: 1.1875rem; color: var(--muted); max-width: 44ch; line-height: 1.6; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-figure { display: flex; justify-content: center; }
.hero-figure img { max-width: 340px; width: 100%; filter: drop-shadow(0 30px 50px rgba(10,37,64,.28)); border-radius: 6px; }

/* --- Ticker --------------------------------------------------------------- */
.ticker-wrap { background: var(--navy); overflow: hidden; }
.ticker { display: flex; white-space: nowrap; animation: ticker 42s linear infinite; padding: 12px 0; font-family: var(--sans); font-size: .8125rem; letter-spacing: .04em; color: rgba(255,255,255,.65); }
.ticker > span { display: inline-flex; }
.ticker-item { display: inline-flex; align-items: center; gap: 12px; margin: 0 30px; }
.ticker-item::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker { animation: none; } }

/* --- Section head --------------------------------------------------------- */
.section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.section-title { font-size: clamp(1.75rem, 3.4vw, 2.4rem); font-weight: 600; color: var(--navy); }
.section-title.heading-accent { padding-left: 18px; }
.section-num { font-family: var(--sans); font-weight: 800; color: var(--gold); font-size: 1.125rem; min-width: 30px; }
.lead { font-family: var(--sans); font-size: 1.0625rem; color: var(--muted); max-width: 64ch; line-height: 1.65; }
.mb-block { margin-bottom: 60px; }
section[id] { scroll-margin-top: 96px; }

/* --- Pillars grid --------------------------------------------------------- */
.pillars-grid { display: grid; gap: 22px; }
@media (min-width: 640px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar { position: relative; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; text-decoration: none; transition: box-shadow .25s, border-color .25s, transform .25s; display: block; }
.pillar:hover { box-shadow: 0 16px 40px rgba(10,37,64,.09); border-color: var(--line-strong); transform: translateY(-3px); color: var(--navy); }
.pillar-num { position: absolute; top: 26px; right: 28px; font-family: var(--serif); font-size: 1.25rem; color: var(--line-strong); font-weight: 600; }
.pillar-icon { width: 30px; height: 30px; color: var(--navy); margin-bottom: 22px; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; color: var(--navy); }
.pillar p { font-family: var(--sans); font-size: .9rem; color: var(--muted); line-height: 1.6; }
.pillar-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; color: var(--navy); font-family: var(--sans); font-size: .8125rem; font-weight: 600; }
.pillar-link .arrow { color: var(--gold); }

/* --- Stats --------------------------------------------------------------- */
.stats-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 560px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 28px 26px; border-left: 3px solid var(--gold); }
.stat-num { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 2.6vw, 2rem); color: var(--navy); }
.stat-label { margin-top: 8px; font-family: var(--sans); font-size: .8125rem; color: var(--muted); line-height: 1.5; }

/* --- Split ---------------------------------------------------------------- */
.split-12 { display: grid; gap: 44px; align-items: start; }
@media (min-width: 960px) { .split-12 { grid-template-columns: 5fr 7fr; } }
.split-12-rev { display: grid; gap: 44px; align-items: start; }
@media (min-width: 960px) { .split-12-rev { grid-template-columns: 7fr 5fr; } }

/* --- Tables --------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; text-align: left; border-collapse: collapse; }
caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
th, td { padding: 15px 22px; font-size: .9375rem; }
thead th { background: var(--navy); color: #fff; font-family: var(--sans); font-weight: 600; font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; }
tbody tr { border-top: 1px solid var(--line); }
tbody tr:nth-child(even) { background: var(--paper); }
tbody td strong { color: var(--navy); }
td .disc { color: var(--gold); font-weight: 700; }

/* --- Cards --------------------------------------------------------------- */
.card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: box-shadow .25s, transform .25s; }
.card.card-flat:hover { box-shadow: none; transform: none; }
.card:hover { box-shadow: 0 12px 32px rgba(10,37,64,.07); }
.card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.2rem; font-weight: 600; }
.card p { font-family: var(--sans); font-size: .9375rem; color: var(--muted); line-height: 1.65; }

.step-card { background: var(--bg-card); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--radius); padding: 26px; }
.step-card .step-n { font-family: var(--serif); font-size: 1.75rem; color: var(--gold); font-weight: 600; line-height: 1; margin-bottom: 12px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-card p { font-family: var(--sans); font-size: .9rem; color: var(--muted); }

/* --- Alerts -------------------------------------------------------------- */
.alert { padding: 20px 24px; border-radius: var(--radius); font-family: var(--sans); font-size: .9375rem; border: 1px solid var(--line); line-height: 1.6; }
.alert p { font-family: var(--sans); }
.alert-info { background: var(--bg-card); border-left: 4px solid var(--navy); }
.alert-warn { background: var(--gold-tint); border-left: 4px solid var(--gold); }
.alert-danger { background: rgba(158,43,34,.05); border-left: 4px solid var(--danger); }

/* --- Lists --------------------------------------------------------------- */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-family: var(--sans); font-size: .9375rem; }
.checklist li::before { content: "✓"; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.steps { display: flex; flex-direction: column; gap: 24px; max-width: 62ch; counter-reset: step; }
.steps > li { position: relative; padding-left: 54px; counter-increment: step; }
.steps > li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 0; font-family: var(--serif); font-weight: 600; color: var(--gold); font-size: 1.6rem; line-height: 1; }
.steps h3 { font-size: 1.2rem; margin-bottom: 8px; }
.steps p { font-family: var(--sans); color: var(--muted); font-size: .9375rem; }

.grid-2 { display: grid; gap: 22px; }
.grid-3 { display: grid; gap: 22px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* --- FAQ ----------------------------------------------------------------- */
.faq-section { margin-bottom: 60px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 78ch; }
details.faq { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); overflow: hidden; transition: border-color .2s; }
details.faq[open] { border-color: var(--line-strong); }
details.faq summary { list-style: none; cursor: pointer; padding: 19px 24px; font-family: var(--serif); font-weight: 600; font-size: 1.0625rem; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-family: var(--sans); font-size: 1.5rem; color: var(--gold); font-weight: 400; flex-shrink: 0; line-height: 1; transition: transform .2s; }
details.faq[open] summary::after { content: "–"; }
details.faq[open] summary { background: var(--paper); }
details.faq .faq-a { padding: 4px 24px 22px; font-family: var(--sans); color: var(--muted); font-size: .9375rem; line-height: 1.7; }

/* --- CTA banner ---------------------------------------------------------- */
.cta-banner { display: flex; flex-direction: column; gap: 20px; background: var(--navy); color: #fff; padding: 44px; border-radius: var(--radius); position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.cta-banner h2 { color: #fff; }
.cta-banner .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (min-width: 640px) { .cta-banner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* --- Quick paths (used on some pages) ------------------------------------ */
.quick-path-list { display: flex; flex-direction: column; gap: 12px; }
.quick-path { display: flex; align-items: center; gap: 18px; text-decoration: none; border: 1px solid var(--line); background: var(--bg-card); padding: 18px 20px; border-radius: var(--radius); color: var(--navy); transition: all .25s; }
.quick-path:hover { border-color: var(--gold); color: var(--navy); }
.quick-path .qp-title { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.quick-path .qp-desc { font-family: var(--sans); font-size: .8125rem; color: var(--muted); }
.quick-path .qp-arrow { color: var(--gold); margin-left: auto; }

/* --- Content layout with TOC -------------------------------------------- */
.content-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .content-grid { grid-template-columns: 1fr 240px; } .toc-aside { position: sticky; top: 100px; align-self: start; } }
.toc { border-left: 1px solid var(--line); padding-left: 20px; }
.toc h2 { font-family: var(--sans); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 16px; }
.toc ol { display: flex; flex-direction: column; gap: 11px; }
.toc a { text-decoration: none; font-family: var(--sans); font-size: .875rem; color: var(--muted); display: block; transition: color .2s; }
.toc a:hover { color: var(--navy); }
.sidebar-more { margin-top: 28px; margin-left: 20px; border-top: 1px solid var(--line); padding-top: 24px; display: grid; gap: 10px; }
.sidebar-more h2 { font-family: var(--sans); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 4px; }
.sidebar-more .quick-path { padding: 14px 16px; gap: 12px; }
.sidebar-more .qp-title { font-size: .95rem; }
@media (min-width: 640px) and (max-width: 1023px) { .sidebar-more { grid-template-columns: 1fr 1fr; align-items: start; } .sidebar-more h2 { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .sidebar-more { margin-left: 0; } }

/* --- Page header --------------------------------------------------------- */
.page-header { margin-bottom: 44px; }
.page-eyebrow { color: var(--navy); font-family: var(--sans); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.page-title { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 600; margin-bottom: 20px; color: var(--navy); }
.page-lead { font-family: var(--sans); font-size: 1.1875rem; color: var(--muted); max-width: 62ch; line-height: 1.65; }

/* --- Comparador (requisitos) -------------------------------------------- */
.comparador-toggle { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.comparador-label { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: var(--radius); font-family: var(--sans); font-size: .875rem; font-weight: 600; margin-bottom: 20px; user-select: none; transition: all .2s; }
.comparador-label::before { content: ""; width: 16px; height: 16px; flex-shrink: 0; border: 1px solid var(--line-strong); border-radius: 2px; display: inline-block; }
.comparador-label:hover { border-color: var(--navy); }
#solo-diferencias:checked + .comparador-label { background: var(--navy); color: #fff; border-color: var(--navy); }
#solo-diferencias:checked + .comparador-label::before { background: var(--gold); border-color: var(--gold); box-shadow: inset 0 0 0 3px var(--navy); }
.comparador { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.comparador table { width: 100%; border-collapse: collapse; min-width: 640px; }
.comparador caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.comparador thead th { background: var(--navy); color: #fff; font-family: var(--sans); font-weight: 600; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; text-align: left; padding: 16px 20px; }
.comparador thead th.col-pv { border-bottom: 3px solid var(--gold); }
.comparador thead th.col-rn { border-bottom: 3px solid rgba(255,255,255,.4); }
.comparador tbody tr { border-top: 1px solid var(--line); }
.comparador tbody tr.diff { background: var(--gold-tint); }
.comparador tbody th { text-align: left; padding: 14px 20px; font-family: var(--sans); font-weight: 700; font-size: .9375rem; background: var(--paper); white-space: nowrap; color: var(--navy); }
.comparador tbody td { padding: 14px 20px; font-family: var(--sans); font-size: .9375rem; vertical-align: top; line-height: 1.55; }
.comparador .yes { color: var(--navy); font-weight: 700; }
.comparador .no { color: var(--muted); }
.comparador .maybe { color: var(--gold); font-weight: 700; }
.comparador .tag { display: inline-block; font-size: .625rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 2px 8px; border-radius: 2px; margin-left: 8px; vertical-align: middle; background: var(--navy); color: #fff; }
#solo-diferencias:checked ~ .comparador tr.same { display: none; }

/* --- Country list -------------------------------------------------------- */
.country-list { display: grid; gap: 10px 32px; }
@media (min-width: 640px) { .country-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .country-list { grid-template-columns: repeat(3, 1fr); } }
.country-list li { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: .9375rem; }
.country-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #fff; margin-top: 80px; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; gap: 48px; padding: 60px 0 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-brand { text-decoration: none; display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; color: #fff; font-family: var(--serif); }
.footer-brand:hover { color: #fff; }
.footer-brand .brand-mark { background: var(--gold); color: var(--navy); }
.footer-brand .brand-mark::after { border-color: var(--navy); }
.footer-brand .brand-mark span { color: var(--navy); }
.footer-desc { font-family: var(--sans); font-size: .875rem; color: rgba(255,255,255,.68); line-height: 1.7; max-width: 46ch; }
.site-footer h2 { font-family: var(--sans); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 18px; }
.site-footer ul { display: flex; flex-direction: column; gap: 12px; }
.site-footer a { text-decoration: none; font-family: var(--sans); font-size: .875rem; color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-family: var(--sans); font-size: .75rem; color: rgba(255,255,255,.5); }

/* --- Blog index ---------------------------------------------------------- */
.blog-grid { display: grid; gap: 26px; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; transition: box-shadow .25s, border-color .25s, transform .25s; }
.blog-card:hover { box-shadow: 0 16px 40px rgba(10,37,64,.09); border-color: var(--line-strong); transform: translateY(-3px); color: var(--navy); }
.blog-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat { font-family: var(--sans); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 12px; }
.blog-card h3 { font-size: 1.3rem; font-weight: 600; line-height: 1.2; margin-bottom: 12px; color: var(--navy); }
.blog-card p { font-family: var(--sans); font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.blog-card-meta { margin-top: auto; display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: .75rem; color: var(--muted); }
.blog-card-meta .arrow { color: var(--gold); margin-left: auto; font-weight: 600; }

/* --- Article (blog post) ------------------------------------------------- */
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; font-family: var(--sans); font-size: .8125rem; color: var(--muted); margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.post-meta .post-meta-item { display: inline-flex; align-items: center; gap: 7px; }
.post-meta .post-meta-item::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.post-body { max-width: 68ch; }
.post-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; margin: 48px 0 18px; color: var(--navy); border-left: 4px solid var(--gold); padding-left: 18px; }
.post-body h3 { font-size: 1.3rem; font-weight: 600; margin: 32px 0 12px; color: var(--navy); }
.post-body p { font-family: var(--sans); font-size: 1.0625rem; color: var(--ink); line-height: 1.75; margin-bottom: 18px; }
.post-body p.lead { color: var(--muted); font-size: 1.1875rem; }
.post-body ul.post-list { display: flex; flex-direction: column; gap: 12px; margin: 0 0 22px; }
.post-body ul.post-list li { position: relative; padding-left: 26px; font-family: var(--sans); font-size: 1.0625rem; color: var(--ink); line-height: 1.7; }
.post-body ul.post-list li::before { content: ""; position: absolute; left: 6px; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.post-body a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold-soft); text-underline-offset: 3px; }
.post-body a:hover { color: var(--gold); }
.post-body blockquote { margin: 28px 0; padding: 20px 26px; background: var(--paper); border-left: 4px solid var(--gold); border-radius: var(--radius); font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--navy); line-height: 1.5; }
.key-takeaway { background: var(--gold-tint); border: 1px solid var(--gold-soft); border-radius: var(--radius); padding: 24px 28px; margin: 0 0 44px; }
.key-takeaway h2 { font-size: 1.05rem; margin: 0 0 12px; border: 0; padding: 0; font-family: var(--sans); text-transform: uppercase; letter-spacing: .1em; color: var(--navy); }
.key-takeaway p { font-family: var(--sans); font-size: 1rem; color: var(--ink); margin: 0; }

/* --- Utility ------------------------------------------------------------- */
.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; }
.muted { color: var(--muted); font-family: var(--sans); }
.fine { font-family: var(--sans); font-size: .75rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }