/* ==========================================================================
   Safe Steps Firearms — Design Tokens & Base Styles
   Palette: Navy (trust/authority) + Brass (cartridge-brass accent) + Off-white
   Type: Fraunces (display serif, character) + Inter (body, clean/legible)
   Signature motif: concentric brass rings (cartridge rim), numbered step path
   ========================================================================== */

:root {
  --navy: #1E2761;
  --navy-dark: #141A47;
  --navy-tint: #EEF0F8;
  --brass: #B08D57;
  --brass-light: #D9C6A0;
  --brass-pale: #F3ECDE;
  --brass-text: #8C6D3F; /* darker brass for text-on-white — meets 4.5:1 contrast */
  --charcoal: #2B2B2B;
  --muted: #6B7280;
  --off-bg: #FAFAF9;
  --white: #FFFFFF;
  --line: #E6E4DE;
  --success: #2F6B4F;
  --danger: #A6402F;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(20, 26, 71, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 26, 71, 0.10);
  --max-w: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: var(--charcoal); }
a { color: var(--navy); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-text);
  margin-bottom: 0.9em;
}

.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brass);
  color: var(--navy-dark);
}
.btn-primary:hover { background: #c29d68; box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy-tint); }

.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
}
.brand .ring {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--brass);
  position: relative;
  flex: none;
}
.brand .ring::after {
  content: "";
  position: absolute; inset: 5px;
  border-radius: 50%;
  background: var(--navy);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.96rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 20px 24px; gap: 16px;
    box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero .rings { position: absolute; z-index: 0; }
.hero .rings.r1 { right: -140px; top: -160px; width: 460px; height: 460px; border: 1.5px solid var(--brass); border-radius: 50%; opacity: 0.55; }
.hero .rings.r2 { right: -60px; top: -80px; width: 320px; height: 320px; border: 1px solid var(--brass); border-radius: 50%; opacity: 0.55; }
.hero .rings.r3 { right: 10px; top: -10px; width: 200px; height: 200px; border: 1px solid var(--brass); border-radius: 50%; opacity: 0.55; }
.hero-inner { position: relative; z-index: 1; max-width: 680px; }
.hero h1 { color: var(--white); }
.hero .lede { font-size: 1.15rem; color: #C9CEDE; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--brass-light); }
.hero-stat .label { font-size: 0.85rem; color: #A9B0D6; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--off-bg); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Step path (numbered, real sequence) ---------- */
.step-path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--line);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 8px;
}
.step-card h3 { margin-bottom: 10px; }
.step-arrow {
  display: none;
}
@media (min-width: 860px) {
  .step-path { position: relative; }
}
@media (max-width: 860px) {
  .step-path { grid-template-columns: 1fr; }
}

/* ---------- Icon circle ---------- */
.icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--brass-pale);
  color: var(--navy);
  flex: none;
  font-size: 1.4rem;
}
.icon-circle.on-navy { background: rgba(255,255,255,0.12); color: var(--brass-light); }
.icon-circle.brass-fill { background: var(--brass); color: var(--navy-dark); }

/* ---------- Tier cards (pricing) ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tier-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.tier-card.featured {
  border-color: var(--brass);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--brass-pale) 0%, var(--white) 42%);
}
.tier-badge {
  align-self: flex-start;
  background: var(--brass);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.tier-card .step-num { font-size: 1.5rem; margin-bottom: 2px; }
.tier-card h3 { margin-bottom: 6px; }
.tier-format { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.tier-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--navy); margin: 6px 0 2px; }
.tier-price .per { font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.tier-list { list-style: none; margin: 18px 0 26px; padding: 0; flex: 1; }
.tier-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.92rem; margin-bottom: 11px; color: var(--charcoal);
}
.tier-list li::before {
  content: "✓";
  color: var(--brass);
  font-weight: 700;
  flex: none;
}

/* ---------- Add-on / service cards ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.addon-card {
  background: var(--off-bg);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
}
.addon-card .price-tag { font-family: var(--font-display); font-weight: 700; color: var(--brass); font-size: 1.25rem; margin-top: 14px; }

/* ---------- Cards / feature rows ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-item h4 { margin: 14px 0 6px; font-size: 1.05rem; color: var(--white); }
.feature-item p { font-size: 0.92rem; color: #C9CEDE; }

/* ---------- Bundle banner ---------- */
.bundle-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 44px;
  color: var(--white);
  gap: 32px;
  flex-wrap: wrap;
}
.bundle-banner .price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--brass-light); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; color: var(--navy);
}
.form-row .hint { font-size: 0.8rem; color: var(--muted); margin-top: 5px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--white);
  color: var(--charcoal);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
  border-color: var(--brass);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: auto; margin-top: 3px; }
.checkbox-row label { font-weight: 500; font-size: 0.88rem; color: var(--charcoal); }

.tier-summary {
  background: var(--off-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.tier-summary .row { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 6px; }
.tier-summary .row.total { font-weight: 700; color: var(--navy); border-top: 1px dashed var(--line); padding-top: 10px; margin-top: 10px; }

.form-msg { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 20px; display: none; }
.form-msg.error { background: #FBEAE6; color: var(--danger); display: block; }
.form-msg.success { background: #E7F2EC; color: var(--success); display: block; }
.form-msg.info { background: var(--brass-pale); color: var(--brass-text); display: block; }

/* ---------- Calendar Widget (booking date/time picker) ---------- */
.calendar-widget {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}
.calendar-placeholder {
  margin: 0;
  padding: 22px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.cal-loading {
  margin: 0;
  padding: 22px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.cal-status-note {
  margin: 0;
  padding: 12px 16px;
  text-align: center;
  color: var(--brass-text);
  font-size: 0.85rem;
  background: var(--brass-pale);
  border-top: 1px solid var(--line);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--navy);
}
.cal-header .cal-month-label {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.cal-nav-btn {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cal-nav-btn:hover:not(:disabled) { background: rgba(255,255,255,0.28); }
.cal-nav-btn:disabled { opacity: 0.3; cursor: default; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 10px 4px;
  gap: 3px;
}
.cal-dow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  padding-bottom: 6px;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--line);
  position: relative;
}
.cal-day.cal-empty { visibility: hidden; }
.cal-day.cal-unavailable { color: #D7D5CE; }
.cal-day.cal-available {
  color: var(--navy);
  font-weight: 700;
  background: var(--brass-pale);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s;
}
.cal-day.cal-available:hover { background: var(--brass-light); }
.cal-day.cal-available.cal-selected {
  background: var(--brass);
  color: #fff;
  border-color: var(--navy);
}
.cal-day.cal-available::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass-text);
}
.cal-day.cal-available.cal-selected::after { background: #fff; }

.cal-times {
  border-top: 1px solid var(--line);
  padding: 12px 14px 14px;
  background: var(--off-bg);
}
.cal-times-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cal-time-options { display: flex; flex-wrap: wrap; gap: 8px; }
.cal-time-chip {
  border: 1.5px solid var(--brass);
  background: var(--white);
  color: var(--navy);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.cal-time-chip:hover { background: var(--brass-pale); }
.cal-time-chip.cal-time-selected { background: var(--navy); border-color: var(--navy); color: #fff; }
.cal-time-chip small { font-weight: 400; opacity: 0.8; }

.cal-selection-confirm {
  padding: 10px 14px;
  background: var(--navy-tint);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Custom date request ---------- */
.link-btn {
  background: none;
  border: none;
  padding: 8px 0 0;
  color: var(--navy);
  text-decoration: underline;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.link-btn:hover { color: var(--brass-text); }

.custom-date-panel {
  background: var(--off-bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.custom-date-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.custom-date-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brass-pale);
  color: var(--brass-text);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.custom-date-row input[type="date"],
.custom-date-row input[type="time"] {
  padding: 8px 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: inherit;
}
.custom-date-req {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex: none;
  margin-left: auto;
}


/* ---------- Testimonial ---------- */
.quote-card {
  background: var(--off-bg);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--line);
}
.quote-card p.quote { font-style: italic; font-size: 1.02rem; color: var(--charcoal); }
.quote-card .who { font-weight: 700; color: var(--navy); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #C9CEDE;
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; min-width: 0; }
.footer-grid > div { min-width: 0; }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: #C9CEDE; text-decoration: none; font-size: 0.92rem; overflow-wrap: break-word; word-break: break-word; }
.footer-grid a:hover { color: var(--brass-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem; color: #8E97C2;
}

/* ---------- Comparison table (Them vs Us) ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.92rem;
  vertical-align: top;
}
.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.compare-table thead th.us-col {
  background: var(--brass);
  color: var(--navy-dark);
}
.compare-table tbody th {
  background: var(--off-bg);
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.compare-table tbody td.us-col {
  background: var(--brass-pale);
  color: var(--navy-dark);
  font-weight: 600;
}
.compare-table tbody tr:nth-child(even) td:not(.us-col) { background: var(--off-bg); }
.compare-table tbody tr:nth-child(even) th { background: var(--white); }

/* ---------- Mobile comparison cards (Option A / Option B trial) ---------- */
/* Table hidden on mobile; these cards (Option B — the finalized design) show
   in its place instead. */
.compare-mobile-option { display: none; }

.optB-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-bottom: 10px; }
.optB-head { background: var(--navy); color: #fff; font-weight: 700; font-size: 0.92rem; padding: 10px 16px; }
.optB-row { padding: 9px 16px; font-size: 0.85rem; line-height: 1.4; }
.optB-row-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 2px; }
.optB-them { background: var(--white); border-bottom: 1px solid var(--line); }
.optB-them .optB-row-label { color: var(--muted); }
.optB-them .optB-row-text { color: var(--muted); }
.optB-us { background: var(--brass-pale); }
.optB-us .optB-row-label { color: var(--brass-text); }
.optB-us .optB-row-text { color: var(--charcoal); font-weight: 600; }

@media (max-width: 700px) {
  .compare-table { font-size: 0.85rem; }
  .compare-table th, .compare-table td { padding: 12px; }
  .compare-table { display: none; }
  .compare-mobile-option { display: block; }
  /* Booking page: drop the sidebar (Booking Summary + What Happens Next)
     entirely on phones rather than just stacking it below the form — it's
     supporting content, and the form itself is long enough on mobile
     without it. The waiver notice lives in the main form column now
     (moved there in the HTML), so nothing functionally important is lost. */
  aside { display: none; }
  .custom-date-row { flex-wrap: wrap; }
  .custom-date-row input[type="date"],
  .custom-date-row input[type="time"] { flex: 1 1 auto; min-width: 0; }
  .custom-date-req { margin-left: 32px; flex-basis: 100%; }
}

/* ---------- Price option cards (Tier 1 individual/partner/family) ---------- */
.price-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 8px;
}
.price-option {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
  background: var(--off-bg);
}
.price-option.highlight {
  border-color: var(--brass);
  background: var(--brass-pale);
}
.price-option .amt { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy); }
.price-option .label { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 700px) {
  .price-option-grid { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
/* !important is required here: many sections set their own column ratio
   (e.g. style="grid-template-columns: 1.3fr 1fr") directly on the element
   for desktop layout. Inline styles otherwise beat stylesheet rules even
   inside a media query, which silently prevents these sections from ever
   collapsing to one column on phones. */
@media (max-width: 980px) {
  .tier-grid, .addon-grid, .feature-grid, .price-option-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .bundle-banner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Misc ---------- */
.divider-note {
  font-size: 0.85rem; color: var(--muted); text-align: center; margin-top: 18px;
}
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.badge {
  font-size: 0.78rem; color: var(--muted); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 999px; background: var(--white);
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--white);
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 10px; top: 10px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
