/* ==========================================================================
   NomadSecure — Design System
   Palette: deep navy / pale aqua / warm off-white / restrained gold accent
   Type: Fraunces (display, editorial serif) + Inter (body/UI) + IBM Plex Mono (data)
   ========================================================================== */

:root {
  /* Color tokens */
  --navy-900: #0f2438;
  --navy-800: #16324a;
  --navy-700: #24455f;
  --ink-600: #3c5468;
  --ink-500: #56707f;
  --aqua-100: #eaf6f6;
  --aqua-200: #d8eeee;
  --aqua-300: #bfe2e2;
  --aqua-line: #9fd2d2;
  --teal-600: #1c7a82;
  --off-white: #faf7f0;
  --paper: #fffdf9;
  --gold-500: #d99f34;
  --gold-600: #bd8526;
  --gold-100: #fbeed3;
  --line: #dfe6e2;
  --line-strong: #c7d2ce;
  --white: #ffffff;
  --danger: #b3492f;
  --good: #1c7a52;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 36, 56, 0.06), 0 1px 1px rgba(15,36,56,0.04);
  --shadow-md: 0 8px 24px rgba(15, 36, 56, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--navy-800);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy-900); color: #fff;
  padding: 10px 16px; z-index: 200; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

a { color: var(--teal-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold-500); outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.4em; }
h3 { font-size: 1.25rem; margin-top: 1.6em; }
p { margin: 0 0 1.1em; color: var(--ink-600); }
strong { color: var(--navy-800); }

.page-deck { font-size: 1.15rem; color: var(--ink-600); max-width: 62ch; }

main { display: block; max-width: var(--maxw); margin: 0 auto; padding: 0 24px 48px; }
.page-head { padding-top: 8px; margin-bottom: 8px; max-width: 78ch; }
article, .content { max-width: 74ch; }
.content-wide { max-width: var(--maxw); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.wordmark { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.wordmark__node {
  width: 11px; height: 11px; border-radius: 50%; background: var(--gold-500);
  box-shadow: 0 0 0 3px var(--aqua-200);
  flex: none;
}
.wordmark__text {
  font-family: var(--font-display); font-weight: 600; font-size: 1.55rem;
  color: var(--navy-900); letter-spacing: -0.01em;
}
.wordmark__accent { color: var(--teal-600); font-weight: 500; }
.wordmark--footer .wordmark__text { color: var(--off-white); }
.wordmark--footer .wordmark__accent { color: var(--aqua-300); }

.site-nav { display: flex; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--navy-800); text-decoration: none; font-weight: 500; font-size: 0.95rem;
  padding: 10px 12px; border-radius: var(--radius-sm);
}
.nav-link:hover, .nav-link--active { color: var(--teal-600); background: var(--aqua-100); }
.nav-caret { font-size: 0.6rem; opacity: 0.6; }
.nav-drop {
  display: none; position: absolute; top: 100%; left: 0; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  min-width: 260px; padding: 8px; flex-direction: column; gap: 2px;
}
.nav-item--has-drop:hover .nav-drop, .nav-item--has-drop:focus-within .nav-drop { display: flex; }
.nav-drop__link { padding: 9px 12px; border-radius: var(--radius-sm); color: var(--navy-800); text-decoration: none; font-size: 0.92rem; }
.nav-drop__link:hover { background: var(--aqua-100); color: var(--teal-600); }

.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy-900); display: block; }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--paper); }
.mobile-nav__group { border-bottom: 1px solid var(--line); }
.mobile-nav__top { display: block; padding: 14px 24px; font-weight: 600; color: var(--navy-900); text-decoration: none; }
.mobile-nav__sub { display: block; padding: 8px 24px 8px 40px; color: var(--ink-600); text-decoration: none; font-size: 0.94rem; }

@media (max-width: 880px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.is-open { display: block; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 14px 0 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; padding: 0; margin: 0; font-size: 0.85rem; color: var(--ink-500); }
.breadcrumbs a { color: var(--ink-500); text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal-600); }
.crumb-sep { margin: 0 8px; opacity: 0.5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.96rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn--gold { background: var(--gold-500); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-600); box-shadow: var(--shadow-sm); }
.btn--outline { background: transparent; border-color: var(--navy-800); color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-900); color: #fff; }
.btn--ghost { background: var(--aqua-100); color: var(--navy-800); }
.btn--ghost:hover { background: var(--aqua-200); }
.btn--sm { padding: 9px 16px; font-size: 0.88rem; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--aqua-100) 0%, var(--off-white) 100%);
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 56px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-600);
  background: var(--white); border: 1px solid var(--aqua-line); padding: 6px 12px; border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 20px; }
.hero p.lede { font-size: 1.2rem; max-width: 52ch; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.hero__snapshot {
  background: var(--navy-900); color: var(--off-white); border-radius: var(--radius-md);
  padding: 28px; box-shadow: var(--shadow-md);
}
.hero__snapshot h2 { color: #fff; font-size: 1.05rem; margin: 0 0 4px; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.snapshot-path { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.snapshot-path:last-of-type { border-bottom: none; }
.snapshot-path__label { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: #fff; margin: 0 0 4px; }
.snapshot-path__desc { font-size: 0.88rem; color: var(--aqua-300); margin: 0 0 10px; }
.snapshot-path__link { font-family: var(--font-mono); font-size: 0.85rem; color: var(--gold-500); text-decoration: none; font-weight: 600; }
.snapshot-path__link:hover { text-decoration: underline; }
.snapshot-compare-link { display: block; text-align: center; margin-top: 14px; font-size: 0.85rem; color: rgba(250,247,240,0.6); text-decoration: none; }
.snapshot-compare-link:hover { color: #fff; }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 40px; }
}

/* ---------- Section helpers ---------- */
.section { padding: 56px 0; }
.section--tinted { background: var(--aqua-100); border-top: 1px solid var(--aqua-line); border-bottom: 1px solid var(--aqua-line); }
.section--navy { background: var(--navy-900); border-top: 1px solid var(--navy-800); border-bottom: 1px solid var(--navy-800); }
.section--navy h2, .section--navy .eyebrow { color: #fff; }
.section--navy .eyebrow { color: var(--aqua-300); }
.section--navy p { color: rgba(250,247,240,0.82); }
.btn--navy-outline { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn--navy-outline:hover { background: rgba(255,255,255,0.14); }
.section__head { max-width: 66ch; margin-bottom: 32px; }
.section__head h2 { margin-top: 0; }
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Cards / grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0; font-size: 1.1rem; }
.card p:last-child { margin-bottom: 0; }
.card-cta-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
@media (max-width: 880px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- CTA boxes ---------- */
.cta-box {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--navy-900); color: var(--off-white); border-radius: var(--radius-md);
  padding: 28px 32px; margin: 32px 0 6px;
}
.cta-box__eyebrow { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--aqua-300); margin: 0 0 6px; }
.cta-box h3 { color: #fff; margin: 0 0 6px; font-size: 1.2rem; }
.cta-box p { color: rgba(250,247,240,0.82); margin: 0; max-width: 46ch; }
.cta-box--compare { background: var(--aqua-100); color: var(--navy-800); }
.cta-box--compare h3 { color: var(--navy-900); }
.cta-box--compare p { color: var(--ink-600); }
.cta-box--compare .cta-box__eyebrow { color: var(--teal-600); }
.disclosure-micro { font-size: 0.78rem; color: var(--ink-500); margin: -2px 0 28px; }
.disclosure-inline { font-size: 0.86rem; color: var(--ink-500); background: var(--aqua-100); border-left: 3px solid var(--aqua-line); padding: 10px 14px; border-radius: 0 6px 6px 0; }
@media (max-width: 640px) { .cta-box { flex-direction: column; align-items: flex-start; } .cta-box a.btn { width: 100%; } }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--line); border-radius: var(--radius-md); }
table.compare-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; background: var(--paper); }
.compare-table caption { text-align: left; padding: 12px 16px; font-weight: 600; color: var(--navy-900); background: var(--aqua-100); }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table thead th { background: var(--navy-900); color: #fff; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; }
.compare-table tbody tr:nth-child(even) { background: var(--aqua-100); }
.compare-table td:first-child, .compare-table th:first-child { font-weight: 600; color: var(--navy-800); }
.compare-table td.mono, table.compare-table .num { font-family: var(--font-mono); }

@media (max-width: 640px) {
  table.compare-table thead { display: none; }
  table.compare-table, table.compare-table tbody, table.compare-table tr, table.compare-table td { display: block; width: 100%; }
  table.compare-table tr { border-bottom: 2px solid var(--line-strong); padding: 8px 0; }
  table.compare-table td { border: none; padding: 6px 16px; display: flex; justify-content: space-between; gap: 12px; }
  table.compare-table td::before { content: attr(data-label); font-weight: 600; color: var(--navy-900); }
}

/* ---------- Widget block ---------- */
.widget-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px; margin: 40px 0; }
.widget-block__intro h2 { margin-top: 0; }
.widget-block__frame { min-height: 260px; margin-top: 20px; border-radius: var(--radius-sm); }
.widget-block__frame > * { width: 100%; }
.widget-noscript { padding: 24px; text-align: center; }

/* ---------- Callouts ---------- */
.callout { border-left: 4px solid var(--teal-600); background: var(--aqua-100); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 18px 20px; margin: 24px 0; }
.callout__title { font-weight: 700; color: var(--navy-900); margin: 0 0 6px; font-size: 0.95rem; }
.callout__body p:last-child { margin-bottom: 0; }
.callout--warn { border-color: var(--gold-600); background: var(--gold-100); }
.callout--good { border-color: var(--good); }

/* ---------- FAQ ---------- */
.faq-section { margin: 48px 0 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 4px; font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--navy-900);
}
.faq-icon { font-family: var(--font-mono); color: var(--teal-600); font-size: 1.2rem; flex: none; }
.faq-a { display: none; padding: 0 4px 18px; max-width: 68ch; }
.faq-item.is-open .faq-a { display: block; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

/* ---------- Decision flow (signature element) ---------- */
.decision-flow { margin: 40px 0; text-align: center; }
.decision-flow__node {
  display: inline-block; background: var(--paper); border: 1px solid var(--navy-800); border-radius: 999px;
  padding: 10px 18px; font-size: 0.92rem; font-weight: 600; color: var(--navy-900);
}
.decision-flow__node--start { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.decision-flow__node--end { background: var(--gold-100); border-color: var(--gold-600); color: var(--navy-900); }
.decision-flow__line { width: 2px; height: 28px; background-image: linear-gradient(var(--aqua-line) 60%, transparent 0%); background-size: 2px 8px; margin: 0 auto; }
.decision-flow__line--short { height: 20px; }
.decision-flow__branches { display: flex; gap: 32px; justify-content: center; margin-top: 4px; }
.decision-flow__branch { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; flex: 1; max-width: 320px; }
@media (max-width: 640px) { .decision-flow__branches { flex-direction: column; align-items: center; } }

/* ---------- Roadmap (homepage decision section) ---------- */
.roadmap { margin: 32px 0 8px; }
.roadmap__intro { text-align: center; margin-bottom: 4px; }
.roadmap__question {
  display: inline-block; background: var(--navy-900); color: #fff; border-radius: 999px;
  padding: 10px 20px; font-size: 0.92rem; font-weight: 600;
}
.roadmap__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 4px; align-items: start; }
.roadmap__column { display: flex; flex-direction: column; align-items: center; text-align: center; }
.roadmap__line { width: 2px; height: 24px; background-image: linear-gradient(var(--aqua-line) 60%, transparent 0%); background-size: 2px 8px; }
.roadmap__line--short { height: 18px; }
.roadmap__node { border: 1px solid var(--navy-800); border-radius: 999px; padding: 10px 18px; font-size: 0.9rem; font-weight: 600; color: var(--navy-900); background: var(--paper); }
.roadmap__node--situation span { display: block; font-weight: 500; font-size: 0.8rem; color: var(--ink-500); margin-top: 2px; }
.roadmap__node--fit { background: var(--gold-100); border-color: var(--gold-600); }
.roadmap__card {
  width: 100%; max-width: 420px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 24px; text-align: left; box-shadow: var(--shadow-sm);
  margin-top: 4px;
}
.roadmap__card h3 { margin-top: 0; font-size: 1.1rem; }
.roadmap__card p:last-of-type { margin-bottom: 0; }
.roadmap__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 18px; }
.roadmap__secondary-link { font-size: 0.88rem; color: var(--teal-600); text-decoration: none; }
.roadmap__secondary-link:hover { text-decoration: underline; }
@media (max-width: 880px) {
  .roadmap__columns { grid-template-columns: 1fr; gap: 44px; }
  .roadmap__card { max-width: 100%; }
}

/* ---------- Route divider (signature motif) ---------- */
.route-divider { display: flex; align-items: center; gap: 10px; margin: 56px 0; color: var(--aqua-line); }
.route-divider::before, .route-divider::after { content: ""; flex: 1; height: 1px; background-image: linear-gradient(90deg, var(--aqua-line) 50%, transparent 0%); background-size: 10px 1px; }
.route-divider__node { width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--gold-500); flex: none; }

/* ---------- Related guides ---------- */
.related-section { margin: 56px 0 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: flex; flex-direction: column; gap: 6px; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px;
}
.related-card:hover { border-color: var(--teal-600); }
.related-card__title { font-weight: 600; color: var(--navy-900); font-family: var(--font-display); font-size: 1.02rem; }
.related-card__blurb { color: var(--ink-500); font-size: 0.88rem; }
@media (max-width: 880px) { .related-grid { grid-template-columns: 1fr; } }

/* ---------- Editorial list (homepage Popular Guides) ---------- */
.editorial-list { border-top: 1px solid var(--line-strong); margin-top: 8px; }
.editorial-item { display: block; padding: 22px 4px; border-bottom: 1px solid var(--line-strong); text-decoration: none; }
.editorial-item__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.editorial-item__eyebrow { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-600); }
.editorial-item__arrow { color: var(--teal-600); font-size: 1.1rem; opacity: 0; transform: translateX(-4px); transition: opacity 0.15s ease, transform 0.15s ease; }
.editorial-item:hover .editorial-item__arrow, .editorial-item:focus-visible .editorial-item__arrow { opacity: 1; transform: translateX(0); }
.editorial-item__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--navy-900); margin: 0 0 4px; }
.editorial-item:hover .editorial-item__title { color: var(--teal-600); }
.editorial-item__blurb { color: var(--ink-500); font-size: 0.94rem; margin: 0; }

/* ---------- Misc ---------- */
.last-updated { font-size: 0.85rem; color: var(--ink-500); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 40px; }
.eyebrow { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal-600); }
ul.tick-list, ol.step-list { padding-left: 0; list-style: none; }
ul.tick-list li { padding-left: 28px; position: relative; margin-bottom: 10px; }
ul.tick-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--teal-600); font-weight: 700; }
ul.cross-list { padding-left: 0; list-style: none; }
ul.cross-list li { padding-left: 28px; position: relative; margin-bottom: 10px; color: var(--ink-500); }
ul.cross-list li::before { content: "\2715"; position: absolute; left: 0; color: var(--danger); font-weight: 700; }
ol.step-list { counter-reset: step; }
ol.step-list li { counter-increment: step; padding-left: 40px; position: relative; margin-bottom: 16px; }
ol.step-list li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--navy-900); color: #fff; font-family: var(--font-mono); font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }

.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 24px; }
.pill { font-family: var(--font-mono); font-size: 0.78rem; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--aqua-line); background: var(--aqua-100); color: var(--navy-800); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px 20px; }
.stat__value { font-family: var(--font-mono); font-size: 1.5rem; color: var(--navy-900); font-weight: 600; }
.stat__label { font-size: 0.84rem; color: var(--ink-500); }
@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr; } }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 96px 24px; }
.error-page h1 { font-size: 5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(250,247,240,0.72); margin-top: 48px; }
.site-footer__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 32px;
  display: grid; grid-template-columns: 1.6fr repeat(5, 1fr); gap: 32px;
}
.footer-brand p { color: rgba(250,247,240,0.65); font-size: 0.9rem; }
.footer-brand { max-width: 320px; }
.footer-disclaimer { font-size: 0.78rem; color: rgba(250,247,240,0.5); }
.footer-col h3 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; font-family: var(--font-body); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(250,247,240,0.72); text-decoration: none; font-size: 0.88rem; }
.footer-col a:hover { color: var(--gold-500); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem;
}
.footer-legal-links a { color: rgba(250,247,240,0.72); text-decoration: none; margin-left: 16px; }
.footer-legal-links a:hover { color: var(--gold-500); }
@media (max-width: 980px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
