/* ============================================================================
   AGENCY KIT — COMPONENT STYLESHEET
   ----------------------------------------------------------------------------
   🔴 WHY THIS FILE EXISTS (added 2026-08-28, found on processserverfortworth):
   The kit shipped Tabs/Accordion/ReadMore/Disclosure/ReviewWall COMPONENTS but
   NO CSS for the classes they emit. A site using <Tabs> therefore rendered as
   bare radio inputs with every panel stacked and visible - a vertical list plus
   stray radio buttons, not a tab widget. Nothing errored. The build gate passed
   100%. It surfaced ONLY on a screenshot.

   This is the "measured value discarded at draw" trap: correct markup, correct
   classes, clean build, wrong pixels. Every site built before this date that
   uses these components needs its rendering checked.

   CONTRACT: every class any component in src/components/ emits gets a rule here.
   If you add a component, add its classes here IN THE SAME COMMIT.

   DESIGN DOCTRINE (owner, non-negotiable):
     - hard 90-degree edges; border-radius 2px MAX, never rounded
     - offset ZERO-BLUR shadows (4px 4px 0 0 buttons / 7px 7px 0 0 cards)
     - 5px solid accent left edge on cards
     - >=24px padding to INK, and line-height NEVER below 1 (it leaks)
   Link this AFTER site.css so a site can override any single rule.
   ========================================================================== */

/* ---- TABS (radio hack, zero JS) -----------------------------------------
   All panels ship in the initial HTML; CSS reveals the checked one. The
   :has() selector needs no JS and no sibling-order gymnastics. */
.tabs { margin: 2rem 0; }
.tab-radio { position: absolute; opacity: 0; pointer-events: none; }
.tab-label {
  display: inline-block; padding: 12px 20px; margin: 0 6px 0 0;
  border: 2px solid var(--rule, #d8d2c4); border-bottom: none;
  background: var(--bg, #f2efe6); color: var(--fg, #14161a);
  font-weight: 600; cursor: pointer; border-radius: 2px 2px 0 0;
  line-height: 1.2;
}
.tab-label:hover { background: #fff; }
/* keyboard focus must be visible: the radio is off-screen, so ring the label */
.tab-radio:focus-visible + .tab-label { outline: 3px solid var(--accent, #c8a02a); outline-offset: 2px; }
.tab-radio:checked + .tab-label {
  background: #fff; border-bottom: 2px solid #fff; margin-bottom: -2px;
  box-shadow: 0 -4px 0 0 var(--accent, #c8a02a) inset;
}
.tab-panel { display: none; border: 2px solid var(--rule, #d8d2c4); background: #fff; padding: 26px; }
.tab-panel > :first-child { margin-top: 0; }
.tab-panel > :last-child  { margin-bottom: 0; }
/* Nth panel shown when the Nth radio is checked. 8 tabs supported; add more if needed. */
.tabs:has(.tab-radio:nth-of-type(1):checked) .tab-panel:nth-of-type(1),
.tabs:has(.tab-radio:nth-of-type(2):checked) .tab-panel:nth-of-type(2),
.tabs:has(.tab-radio:nth-of-type(3):checked) .tab-panel:nth-of-type(3),
.tabs:has(.tab-radio:nth-of-type(4):checked) .tab-panel:nth-of-type(4),
.tabs:has(.tab-radio:nth-of-type(5):checked) .tab-panel:nth-of-type(5),
.tabs:has(.tab-radio:nth-of-type(6):checked) .tab-panel:nth-of-type(6),
.tabs:has(.tab-radio:nth-of-type(7):checked) .tab-panel:nth-of-type(7),
.tabs:has(.tab-radio:nth-of-type(8):checked) .tab-panel:nth-of-type(8) { display: block; }
/* 🔴 NO-:has() FALLBACK. Without this, a browser lacking :has() shows NOTHING,
   which is strictly worse than the unstyled stack. Show every panel instead. */
@supports not selector(:has(*)) {
  .tab-panel { display: block; border-top-width: 2px; margin-top: 12px; }
  .tab-label { border-bottom: 2px solid var(--rule, #d8d2c4); }
}

/* ---- ACCORDION (native <details>, zero JS) ------------------------------- */
.accordion { margin: 2rem 0; }
.accordion details {
  border: 2px solid var(--rule, #d8d2c4); border-left: 5px solid var(--accent, #c8a02a);
  background: #fff; margin: 0 0 12px; border-radius: 2px;
}
.accordion summary {
  padding: 20px 26px; cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 12px;   /* marker INLINE with the heading */
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "\25B8"; margin-left: auto; font-size: 1.1em;   /* triangle on the RIGHT */
  color: var(--accent, #c8a02a); transition: transform .15s;
}
.accordion details[open] summary::after { transform: rotate(90deg); }
.accordion summary:focus-visible { outline: 3px solid var(--accent, #c8a02a); outline-offset: -3px; }
/* the heading inside <summary> must not add block margins or it breaks the flex row */
.accordion summary > :is(h2,h3,h4,h5,h6) { margin: 0; font-size: 1.05rem; line-height: 1.3; }
.acc-body { padding: 0 26px 24px; }
.acc-body > :first-child { margin-top: 0; }
.acc-body > :last-child  { margin-bottom: 0; }

/* ---- DISCLOSURE / READ-MORE (both native <details>) ---------------------- */
.disclosure, .read-more { margin: 1.5rem 0; }
.disclosure summary, .read-more summary {
  cursor: pointer; font-weight: 600; color: var(--link, #1a4fa0);
  padding: 10px 0; list-style: none;
}
.disclosure summary::-webkit-details-marker,
.read-more summary::-webkit-details-marker { display: none; }
.disclosure summary::before, .read-more summary::before { content: "\25B8 "; color: var(--accent, #c8a02a); }
.disclosure[open] summary::before, .read-more[open] summary::before { content: "\25BE "; }
.disc-body, .rm-body { padding: 4px 0 8px 20px; border-left: 2px solid var(--rule, #d8d2c4); }

/* ---- CARDS -------------------------------------------------------------- */
.cards { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin: 2rem 0; }
.card {
  border: 2px solid var(--rule, #d8d2c4); border-left: 5px solid var(--accent, #c8a02a);
  background: #fff; padding: 26px; border-radius: 2px;
  box-shadow: 7px 7px 0 0 var(--rule, #d8d2c4);     /* offset, ZERO blur */
}
.card > :first-child { margin-top: 0; }
.card > :last-child  { margin-bottom: 0; }

/* ---- BUTTONS ------------------------------------------------------------ */
.btn {
  display: inline-block; padding: 14px 28px; border: 2px solid var(--fg, #14161a);
  background: var(--accent, #c8a02a); color: var(--fg, #14161a);
  font-weight: 700; text-decoration: none; border-radius: 2px;
  box-shadow: 4px 4px 0 0 var(--fg, #14161a);       /* offset, ZERO blur */
  line-height: 1.2;
}
.btn:hover  { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--fg, #14161a); }
.btn:active { transform: translate(4px, 4px); box-shadow: none; }

/* ---- FORM --------------------------------------------------------------- */
.form { display: grid; gap: 18px; max-width: 40rem; margin: 2rem 0; }
.form label { display: block; font-weight: 600; margin-bottom: 6px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 12px 14px; border: 2px solid var(--rule, #d8d2c4);
  background: #fff; color: var(--fg, #14161a); font: inherit; border-radius: 2px;
}
.form input:focus-visible, .form textarea:focus-visible, .form select:focus-visible {
  outline: 3px solid var(--accent, #c8a02a); outline-offset: 1px; border-color: var(--fg, #14161a);
}
.form textarea { min-height: 8rem; resize: vertical; }
.form-note { font-size: .9rem; color: var(--muted, #5a5850); }

/* ---- REVIEW WALL -------------------------------------------------------- */
.reviewwall { margin: 2rem 0; }
.revcols { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.revcard {
  border: 2px solid var(--rule, #d8d2c4); border-left: 5px solid var(--accent, #c8a02a);
  background: #fff; padding: 26px; border-radius: 2px;
}
.revbox { margin: 0 0 16px; }
.rc-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.rc-name { font-weight: 700; }
.rc-stars { color: var(--accent, #c8a02a); letter-spacing: 2px; }
.rc-meta { font-size: .85rem; color: var(--muted, #5a5850); }
.rc-mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .85rem; }
.rc-text { margin: 0; }

/* ---- MISC --------------------------------------------------------------- */
.empty-state {
  border: 2px dashed var(--rule, #d8d2c4); padding: 26px;
  color: var(--muted, #5a5850); text-align: center; border-radius: 2px;
}
.sitemap-list { list-style: none; padding-left: 0; }
.sitemap-list li { padding: 8px 0; border-bottom: 1px solid var(--rule, #d8d2c4); }
.sm-desc { display: block; color: var(--muted, #5a5850); font-size: .9rem; }

/* ---- SITE HEADER / NAV --------------------------------------------------
   🔴 Emitted by Layout.astro, not by a component - so gate 7c's component-class
   list did NOT cover these, and the raw checkbox rendered visibly as "■ Menu"
   on every page. Same root cause as 7c (markup shipped, CSS never written),
   different origin file. Added 2026-08-28 along with the nav classes in the
   7c contract list. */
.site-header { border-bottom: 6px solid var(--accent, #c8a02a); background: var(--fg, #14161a); }
.nav-bar { display: flex; align-items: center; gap: 20px; padding: 14px 26px; flex-wrap: wrap; }
.nav-check { position: absolute; opacity: 0; pointer-events: none; }  /* NEVER visible */
.nav-list { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-list a { color: #fff; text-decoration: none; font-weight: 600; padding: 6px 0; }
.nav-list a:hover { text-decoration: underline; }
.nav-list .is-active > a { color: var(--accent, #c8a02a); }
/* The hamburger is a MOBILE affordance. On desktop the list is always shown, so the
   toggle is hidden - never merely transparent, or it still takes a tab stop. */
.nav-toggle { display: none; }
@media (max-width: 640px) {
  .nav-toggle {
    display: flex; align-items: center; gap: 10px; cursor: pointer;
    color: #fff; font-weight: 700; padding: 6px 0;
  }
  .nav-toggle-bars {
    display: block; width: 22px; height: 2px; background: #fff;
    box-shadow: 0 6px 0 0 #fff, 0 -6px 0 0 #fff;   /* 3 bars, zero blur */
  }
  .nav-check:focus-visible + .nav-toggle { outline: 3px solid var(--accent, #c8a02a); outline-offset: 3px; }
  .nav-list { display: none; width: 100%; flex-direction: column; gap: 0; }
  .nav-check:checked ~ .nav-list { display: flex; }
  .nav-list li { border-top: 1px solid rgba(255,255,255,.2); }
  .nav-list a { display: block; padding: 12px 0; }
}

/* ---- LAYOUT SHELL ------------------------------------------------------
   🔴 Same defect as rule 7c, third occurrence: Layout.astro emitted .hero,
   .hero-inner, .footer-inner, .footer-col, .crumbs, .skip-link, .nav-cta and
   .footer-legal with NO CSS anywhere. Result: full-bleed text, an empty-looking
   footer, and an H1 with no visual entry point - the owner's verdict was
   "skyscraper article, no styling, no header or footer".
   Values MEASURED from counselfirmnearme.com + stumpservicesnearme.com, the
   owner's named reference builds. Accent-swapped per site via the tokens.
   Added 2026-08-28. */

/* accessibility: visible only on keyboard focus */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; }
.skip-link:focus {
  left: 0; background: var(--accent, #c9a227); color: var(--ink, #15181c);
  padding: 12px 20px; font-weight: 700; text-decoration: none;
}

/* HERO — dark full-bleed band, 2-col when a portrait is present.
   ref: .hero{background:var(--char);padding:54px 0 60px;border-bottom:6px solid accent} */
.hero {
  background: var(--dark, #141a22); color: var(--on-dark, #f2efe9);
  border-bottom: 6px solid var(--accent, #c9a227); padding: 54px 0 60px;
}
.hero-inner {
  max-width: var(--wrap, 1120px); margin: 0 auto; padding: 0 var(--wrap-pad, 22px);
}
.hero h1 { color: #fff; margin: 0 0 14px; max-width: 20ch; }
.hero .lede { color: var(--on-dark-muted, #c3c8cf); font-size: 1.12rem; max-width: 58ch; margin: 0; }
/* portrait variant: .hero.has-img with an <img class="hero-portrait"> */
@media (min-width: 900px) {
  .hero.has-img .hero-inner {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center;
  }
}
.hero-portrait {
  display: block; width: 100%; max-width: 380px; height: auto;
  border: 3px solid var(--accent, #c9a227); border-radius: 2px;
  box-shadow: 9px 9px 0 0 rgba(0, 0, 0, .35);   /* offset, ZERO blur */
  margin: 28px auto 0;
}
@media (min-width: 900px) { .hero-portrait { margin: 0 0 0 auto; } }

/* TRUSTBAR — ref: .trustbar{background:var(--bark);border-bottom:3px solid accent} */
.trustbar { background: #1d2531; border-bottom: 3px solid var(--accent, #c9a227); }
.trustbar-inner {
  max-width: var(--wrap, 1120px); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  justify-content: center; align-items: center; padding: 18px var(--wrap-pad, 22px);
}
.trustbar span { color: #e7e2d6; font-weight: 700; font-size: .93rem; }
.trustbar span::before { content: "\2713"; color: var(--accent, #c9a227); font-weight: 900; margin-right: 8px; }

/* EYEBROW — a LABEL, never a heading (heading counts are gate-asserted) */
.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; font-weight: 800;
  color: var(--accent-shadow, #8f7318); margin: 0 0 6px;
}
.hero .eyebrow { color: var(--accent, #c9a227); }

/* BREADCRUMBS */
.crumbs { max-width: var(--wrap, 1120px); margin: 0 auto; padding: 14px var(--wrap-pad, 22px) 0; font-size: .88rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.crumbs li + li::before { content: "\203A"; margin-right: 8px; color: var(--muted, #4a4f57); }
.crumbs [aria-current] { color: var(--muted, #4a4f57); }

/* CTA BAND — ref: .cta-band{background:var(--char);text-align:center;padding:40px 0} */
.cta-band { background: var(--dark, #141a22); color: var(--on-dark, #f2efe9); padding: 48px 0; margin-top: 64px; }
.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band .wrap { text-align: center; }
.cta-band .form { margin-left: auto; margin-right: auto; text-align: left; }
.cta-band label { color: var(--on-dark, #f2efe9); }

/* NAV CTA — the button in the nav list must not inherit the link rules */
.nav-cta { margin-left: auto; }
.nav-cta .btn { padding: 10px 18px; font-size: .85rem; }
.nav-toggle-text { font-weight: 700; }

/* FOOTER */
.site-footer { background: var(--dark, #141a22); color: var(--on-dark-muted, #c3c8cf);
  border-top: 6px solid var(--accent, #c9a227); padding: 44px 0 28px; margin-top: 0; }
.footer-inner {
  max-width: var(--wrap, 1120px); margin: 0 auto; padding: 0 var(--wrap-pad, 22px);
  display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.footer-col p { margin: 0; font-size: .92rem; line-height: 1.6; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { padding: 5px 0; }
.footer-h { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em;
  margin: 0 0 12px; font-weight: 800; }
.site-footer a { color: var(--on-dark, #f2efe9); }
.footer-legal {
  max-width: var(--wrap, 1120px); margin: 32px auto 0; padding: 18px var(--wrap-pad, 22px) 0;
  border-top: 1px solid rgba(255,255,255,.16); font-size: .84rem;
}

/* ---- BRAND (header wordmark) — added 2026-08-28 -------------------------
   ref: stumpservicesnearme .brand{display:flex;font-weight:900;text-transform:
   uppercase;letter-spacing:.05em} with a small accent kicker beneath. */
.brand { display: block; text-decoration: none; margin-right: auto; line-height: 1.1; }
.brand-name {
  display: block; color: #fff; font-weight: 900; text-transform: uppercase;
  letter-spacing: .05em; font-size: 1.02rem;
}
.brand-kicker {
  display: block; color: var(--accent, #c9a227); font-size: .54rem;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 800; margin-top: 3px;
}
.nav-bar { padding-top: 16px; padding-bottom: 16px; }
/* the nav list follows the brand; the CTA still pins right */
.nav-list { margin-left: 0; }
.nav-cta { margin-left: 12px; }

/* 🔴 The hero is a FULL-BLEED band and must not inherit <main>'s wrap padding,
   which rendered as a stray cream stripe between the header and the hero. */
main > .hero:first-child, main > .hero { margin-top: 0; }
main { padding-top: 0; }

/* Trustbar: keep items on ONE row where they fit, and left-align at the wrap
   edge rather than centring, so it lines up with the hero copy above it. */
@media (min-width: 900px) {
  .trustbar-inner { justify-content: space-between; gap: 10px 20px; }
  .trustbar span { font-size: .88rem; }
}

/* Header must share the SAME wrap gutter as the hero and body, or the brand
   sits at the viewport edge while the H1 starts 100px in. Measured 2026-08-28. */
.nav-bar { max-width: var(--wrap, 1120px); margin: 0 auto; padding-left: var(--wrap-pad, 22px); padding-right: var(--wrap-pad, 22px); }
/* Hero copy is vertically centred against the portrait; without this the copy
   pins to the top and leaves a large dead area beneath it. */
@media (min-width: 900px) { .hero.has-img .hero-copy { align-self: center; } }
.hero-portrait { max-height: 520px; width: auto; object-fit: cover; }

/* ---- SECTION BANDING (added 2026-08-28) -------------------------------
   The owner's verdict on a 9,245px unbanded page: "skyscraper article".
   Measured: 8 of 9 sections shared ONE continuous ground; the Courts section
   ran 1,566px (1.7 screens) with no visual break.

   🔴 <main> keeps its .wrap because the other pages depend on it. A .sec must
   therefore BREAK OUT of that wrap to paint full-bleed, then re-constrain its
   own content. The negative margin is exactly the wrap gutter + the centring
   margin, expressed with 50vw so it is viewport-true at any width. */
.sec {
  padding: var(--sec-y, 56px) 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.sec > .wrap { max-width: var(--wrap, 1120px); margin: 0 auto; padding: 0 var(--wrap-pad, 22px); }
.sec > .wrap > :first-child { margin-top: 0; }
.sec > .wrap > :last-child { margin-bottom: 0; }
.sec-alt { background: var(--card-bg, #fff); border-top: 1px solid var(--line, #d6d1c7); border-bottom: 1px solid var(--line, #d6d1c7); }
/* a banded section's cards need contrast against the white ground */
.sec-alt .accordion details, .sec-alt .tab-panel, .sec-alt .card { border-color: #cfc9bb; }

/* Mid-page CTA — measured problem: a reader convinced at ~2,000px had to scroll
   7,000px to act. Full-bleed like .sec, so it breaks out of main's .wrap. */
.cta-mid { margin: 0 calc(50% - 50vw); padding: 40px 0; }
.cta-kicker { color: var(--accent, #c9a227); text-transform: uppercase; letter-spacing: .18em;
  font-size: .74rem; font-weight: 800; margin: 0 0 8px; }
.cta-line { font-size: 1.15rem; margin: 0 0 20px; color: #fff; max-width: 44ch; }
.cta-band .btn.ghost { background: transparent; color: #fff; border: 2px solid var(--accent, #c9a227); box-shadow: none; }
.cta-band .btn.ghost:hover { transform: none; background: rgba(255,255,255,.06); }
.cta-mid .wrap { max-width: var(--wrap, 1120px); margin: 0 auto; padding: 0 var(--wrap-pad, 22px); text-align: left; }

/* ---- PAYPAL BUTTON ------------------------------------------------------ */
.paypal-box { margin: 24px 0; }
.paypal-form { display: inline-block; margin: 0; }
.paypal-note { font-size: .9rem; color: var(--muted, #4a4f57); margin: 10px 0 0; max-width: 52ch; }
.cta-band .paypal-note, .sec-alt .paypal-note { color: inherit; opacity: .85; }

/* ═══ SHELL, RESTYLED TO karenhsmith.com (2026-08-28, owner direction) ═══
   Her header is CREAM with a NAVY SERIF brand and a gold hairline - light and
   restrained. The previous dark navy header with a heavy gold button was the
   counselfirmnearme system, not hers, and read far too loud. Topbar utilities
   are TEXT LINKS with · dividers, never buttons.
   Values measured from her inline CSS. */

/* TOPBAR — ref: .topbar-right{display:flex;gap:1rem;flex-wrap:wrap;align-items:center} */
.topbar { background: var(--navy-deep, #06182b); color: var(--on-dark-muted, #cfc6b4); font-size: .8rem; }
.topbar-inner {
  max-width: var(--wrap, 1120px); margin: 0 auto; padding: 8px var(--wrap-pad, 22px);
  display: flex; justify-content: space-between; align-items: center; gap: 12px 20px; flex-wrap: wrap;
}
.topbar-right { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.topbar .divider { opacity: .4; }
.topbar-link, .topbar .phone {
  color: var(--accent-bright, #c9a961); text-decoration: none; white-space: nowrap;
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
}
.topbar-link:hover, .topbar .phone:hover { text-decoration: underline; }
.topbar-paypal { display: inline; margin: 0; }

/* HEADER — cream ground, gold hairline. Overrides the dark treatment above. */
.site-header { background: var(--paper, #faf7f0); border-bottom: 2px solid var(--accent, #b08d57); }
.nav-bar { padding-top: 20px; padding-bottom: 20px; }
.brand-name {
  font-family: var(--display, Georgia, serif); font-weight: 700; font-size: 1.5rem;
  color: var(--navy, #0a2540); text-transform: none; letter-spacing: 0;
}
.brand-kicker {
  font-family: var(--sans); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent, #b08d57); margin-top: 2px; font-weight: 600;
}
.nav-list a { color: var(--navy, #0a2540); font-weight: 500; font-size: .95rem; }
.nav-list .is-active > a { color: var(--accent, #b08d57); }
.nav-toggle { color: var(--navy, #0a2540); }
.nav-toggle-bars, .nav-toggle-bars::before { background: var(--navy, #0a2540); }
@media (max-width: 640px) {
  .nav-toggle-bars { background: var(--navy, #0a2540); box-shadow: 0 6px 0 0 var(--navy,#0a2540), 0 -6px 0 0 var(--navy,#0a2540); }
  .nav-list li { border-top: 1px solid var(--line, #d9d0b8); }
}
/* the nav CTA stays a solid block - it is the ONE loud element in the header */
.nav-cta .btn { background: var(--accent, #b08d57); color: var(--navy, #0a2540); box-shadow: none;
  letter-spacing: 1px; font-weight: 700; }
.nav-cta .btn:hover { background: var(--accent-bright, #c9a961); transform: none; }

/* FOOTER — ref: .legal-footer{background:var(--legal-navy-deep);padding:3rem 0 2rem}
   .legal-footer h6{color:gold-bright;letter-spacing:2px;text-transform:uppercase;font-size:.9rem} */
.site-footer { background: var(--navy-deep, #06182b); border-top: 0; padding: 3rem 0 2rem; }
.footer-h { color: var(--accent-bright, #c9a961); font-size: .9rem; letter-spacing: 2px; }
.site-footer a { color: var(--paper, #faf7f0); opacity: .85; text-decoration: none; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }
.footer-col li { padding: 3px 0; }
