/* ============================================================
   AFTER THE AMEN — GLOBAL STYLESHEET
   ============================================================
   This file is organized in sections:
   1. Brand variables (TEMPORARY palette — replace with official hex codes)
   2. Reset & base
   3. Typography
   4. Layout utilities
   5. Buttons & links
   6. Navigation
   7. Circular motifs (decorative)
   8. Image placeholders
   9. Hero
   10. Editorial cards / sections
   11. Forms
   12. Stories / filters
   13. Footer
   14. Responsive (mobile-first — base styles ARE mobile;
       min-width queries layer on larger-screen refinements)
   ============================================================ */

/* ------------------------------------------------------------
   1. BRAND VARIABLES — TEMPORARY PALETTE
   Replace these hex values with your official After the Amen
   brand colors. Every color used anywhere on the site is
   defined here — nowhere else — so a swap here updates the
   whole site.
   ------------------------------------------------------------ */
:root {
  /* -- Core brand palette (TEMPORARY — swap for official hex codes) -- */
  --ata-black: #17130f;          /* primary black, warm undertone */
  --ata-black-soft: #241f1a;     /* lifted black, for cards on black */
  --ata-pink: #c98a94;           /* warm dusty pink — primary accent */
  --ata-pink-deep: #a35f6c;      /* deeper pink — hover / emphasis */
  --ata-pink-pale: #eddadd;      /* pale pink — subtle fills */
  --ata-gold: #b0873f;           /* warm gold — secondary accent */
  --ata-gold-soft: #d9c393;      /* soft gold — borders, dividers */
  --ata-cream: #f7f1e7;          /* warm neutral background */
  --ata-sand: #ece0cd;           /* deeper warm neutral */
  --ata-white: #fffdfa;          /* warm off-white */

  /* -- Semantic tokens (built from the palette above) -- */
  --color-bg: var(--ata-cream);
  --color-bg-alt: var(--ata-sand);
  --color-bg-inverse: var(--ata-black);
  --color-surface: var(--ata-white);
  --color-text: var(--ata-black);
  --color-text-muted: #5c5248; /* darkened slightly from original for reading contrast */
  --color-text-inverse: var(--ata-cream);
  --color-text-inverse-muted: #cabfae;
  --color-accent: var(--ata-pink);
  --color-accent-strong: var(--ata-pink-deep);
  --color-accent-soft: var(--ata-pink-pale);
  --color-gold: var(--ata-gold);
  --color-gold-soft: var(--ata-gold-soft);
  --color-border: #ddceb4;
  --color-border-inverse: rgba(247, 241, 231, 0.22);
  --color-focus: var(--ata-gold);

  /* -- Typography (system stacks — editorial serif + clean sans) -- */
  --font-heading: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* -- Spacing scale -- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;

  /* -- Shape -- */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-full: 999px;
  --container-max: 1120px;
  --container-narrow: 760px;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  /* Readability pass: 17px minimum on mobile, 18px on desktop.
     This is a base-size change only — headings and decorative
     UI (eyebrows, buttons, pills, nav) keep their own rem sizes
     below and are unaffected. */
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 640px) {
  body { font-size: 18px; }
}
img, svg { max-width: 100%; display: block; }
main { display: block; }
a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ata-black);
  color: var(--color-text-inverse);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; }

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin-bottom: var(--space-xs);
}
.eyebrow--inverse { color: var(--color-gold-soft); }
h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
p { margin: 0 0 var(--space-sm); color: var(--color-text); }
.lede {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 42ch;
}
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.section-intro { max-width: 60ch; }
.section-intro.text-center { margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--space-xl) 0; position: relative; }
.section--tight { padding: var(--space-lg) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--inverse { background: var(--color-bg-inverse); color: var(--color-text-inverse); }
.section--inverse h1, .section--inverse h2, .section--inverse h3 { color: var(--color-text-inverse); }
.section--inverse p { color: var(--color-text-inverse-muted); }
.stack { display: flex; flex-direction: column; gap: var(--space-sm); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }
.grid { display: grid; gap: var(--space-lg); }
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-lg) 0;
}
.section--inverse .divider { border-top-color: var(--color-border-inverse); }

/* ------------------------------------------------------------
   5. BUTTONS & LINKS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  min-height: 44px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ata-black); color: var(--color-text-inverse); }
.btn-primary:hover { background: var(--color-accent-strong); }
.btn-secondary { background: transparent; color: var(--ata-black); border-color: var(--ata-black); }
.btn-secondary:hover { background: var(--ata-black); color: var(--color-text-inverse); }
.section--inverse .btn-secondary { color: var(--color-text-inverse); border-color: var(--color-border-inverse); }
.section--inverse .btn-secondary:hover { background: var(--color-text-inverse); color: var(--ata-black); }
.btn-gold { background: var(--color-gold); color: var(--ata-black); }
.btn-gold:hover { background: var(--color-gold-soft); }
.link-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--color-accent);
}

/* ------------------------------------------------------------
   6. NAVIGATION
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 231, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ata-black);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ata-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  color: var(--ata-gold);
  flex-shrink: 0;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ata-black);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after { content: ""; position: absolute; }
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { transform: translateY(-6px) rotate(-45deg); }

.nav-menu {
  list-style: none;
  margin: 0;
  padding: var(--space-sm) 0 var(--space-md);
  display: none;
  flex-direction: column;
  gap: var(--space-xs);
}
.nav-menu.is-open { display: flex; }
.nav-menu a {
  display: block;
  padding: 0.75rem 0.25rem;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ata-black);
  border-bottom: 1px solid var(--color-border);
}
.nav-menu a[aria-current="page"] { color: var(--color-accent-strong); }

@media (min-width: 780px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    padding: 0;
    gap: var(--space-lg);
  }
  .nav-menu a { border-bottom: none; padding: 0.25rem 0; }
  .nav-menu a[aria-current="page"] { border-bottom: 2px solid var(--color-accent); }
}

/* ------------------------------------------------------------
   7. CIRCULAR MOTIFS (decorative, subtle — pure CSS, no images)
   ------------------------------------------------------------ */
.motif {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--color-gold-soft);
  pointer-events: none;
  z-index: 0;
}
.motif--outline-lg { width: 420px; height: 420px; opacity: 0.35; }
.motif--outline-sm { width: 180px; height: 180px; opacity: 0.4; border-color: var(--color-accent); }
.motif--fill {
  border: none;
  background: radial-gradient(circle at 30% 30%, var(--color-accent-soft), transparent 70%);
  opacity: 0.6;
}
.hero .motif--outline-lg { top: -120px; right: -140px; }
.hero .motif--outline-sm { bottom: 10%; left: -60px; }
.section > .container { position: relative; z-index: 1; }

/* ------------------------------------------------------------
   8. IMAGE PLACEHOLDERS
   (Intentional placeholders for Electa's own photography —
   no stock or AI-generated imagery.)
   ------------------------------------------------------------ */
.photo-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-gold-soft);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--space-md);
  overflow: hidden;
}
.photo-placeholder--wide { aspect-ratio: 16 / 10; }
.photo-placeholder--square { aspect-ratio: 1 / 1; }
.photo-placeholder--circle {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  max-width: 260px;
  margin: 0 auto;
}
.photo-placeholder > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.photo-placeholder svg { width: 34px; height: 34px; opacity: 0.6; }
.photo-placeholder__label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  max-width: 24ch;
}
.photo-placeholder__tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ------------------------------------------------------------
   9. HERO
   ------------------------------------------------------------ */
.hero {
  position: relative; /* fix: makes .hero the containing block for its
    absolutely-positioned circular motifs, so overflow:hidden actually
    clips them instead of letting them extend past the viewport */
  overflow: hidden;
  padding: var(--space-2xl) 0 var(--space-xl);
}
.hero-content { max-width: 640px; }
.hero h1 { margin-bottom: var(--space-md); }
.hero .lede { max-width: 46ch; margin-bottom: var(--space-lg); font-size: 1.15rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* -- Travel page hero: ~60/40 desktop split with the Korea feature
   pulled up so it's visible without scrolling; on mobile the Korea
   card sits right after the title, ahead of the supporting copy. -- */
.hero-travel {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "title" "korea" "body";
  gap: var(--space-lg);
  align-items: start;
}
.hero-travel__title { grid-area: title; }
.hero-travel__title h1 { max-width: 20ch; }
.hero-travel__korea { grid-area: korea; }
.hero-travel__body { grid-area: body; max-width: 46ch; }
.hero-travel__body p { color: var(--color-text-muted); }
@media (min-width: 860px) {
  .hero-travel {
    grid-template-columns: 3fr 2fr;
    grid-template-areas: "title korea" "body korea";
    gap: var(--space-2xl);
  }
}
.hero-korea-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-gold-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  box-shadow: 0 18px 40px rgba(23, 19, 15, 0.08);
}
.hero-korea-card h2 { font-size: clamp(1.5rem, 3.5vw, 1.9rem); margin-bottom: 0.35rem; }
.hero-korea-card__edition {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold-soft);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.8rem;
  margin-bottom: var(--space-sm);
}
.hero-korea-card .btn { margin-top: 0.25rem; width: 100%; }
.hero-korea-card__note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   10. EDITORIAL CARDS / SECTIONS
   ------------------------------------------------------------ */
.editorial-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .editorial-grid { grid-template-columns: repeat(3, 1fr); }
}
.editorial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.editorial-card .eyebrow { color: var(--color-gold); }
.editorial-card h3 { margin-bottom: 0.25rem; }

.two-col {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .two-col--reverse .two-col-media { order: 2; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-accent-soft);
  color: var(--color-accent-strong);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}
.pill--gold { background: var(--color-gold-soft); color: #5c451c; }

.callout {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.callout--disclaimer {
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-gold);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* -- Featured trip card (Travel page): gives the Seoul / Beauty
   Max Edition block a distinct, "first experience" frame without
   turning it into a loud travel-ad tile. -- */
.feature-trip {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-gold-soft);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: 0 18px 40px rgba(23, 19, 15, 0.06);
  margin-bottom: var(--space-lg);
}
.feature-trip .motif--outline-sm {
  width: 90px;
  height: 90px;
  top: -30px;
  right: -20px;
  opacity: 0.5;
}
.feature-trip__title {
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  margin-bottom: 0.35rem;
}
.feature-trip__edition {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold-soft);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.9rem;
  margin-bottom: var(--space-md);
}

/* -- Conversion cue (Travel page): a restrained nudge toward the
   Come With Me form for a high-intent visitor, placed above the
   deep Beauty Max explanation. -- */
.conversion-cue {
  text-align: center;
  max-width: 440px;
  margin: var(--space-lg) auto;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-gold-soft);
  border-bottom: 1px solid var(--color-gold-soft);
}
.conversion-cue__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}
.conversion-cue__question {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}
.conversion-cue__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  border-bottom: 1.5px solid var(--color-accent);
  padding-bottom: 0.2rem;
}
.conversion-cue__link:hover { color: var(--ata-black); border-color: var(--ata-black); }

/* ------------------------------------------------------------
   11. FORMS
   ------------------------------------------------------------ */
/* Offsets the jump target so the sticky header doesn't cover
   the top of the form when a CTA scrolls to it. */
#come-with-me-form { scroll-margin-top: 96px; }
.form-section { max-width: 640px; }

/* -- Form chunking: groups the long form into a few readable
   "conversations" (About You / Your Korea Trip / Beauty +
   Wellness / Stay in the Loop) without changing any questions. -- */
.form-group {
  border: none;
  padding: var(--space-lg) 0 0;
  margin: 0 0 var(--space-lg);
  border-top: 1px solid var(--color-border);
}
.form-group:first-of-type {
  padding-top: 0;
  border-top: none;
}
.form-group__legend {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding: 0;
}
.form-group__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
fieldset {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-md);
}
legend, .field-label {
  display: block;
  font-weight: 600;
  font-size: 1.0625rem; /* ~17px — these are form questions, treated as reading text */
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
  color: var(--color-text);
  padding: 0;
}
.field { margin-bottom: var(--space-md); }
.field-hint { font-size: 0.9rem; color: var(--color-text-muted); margin-top: 0.4rem; line-height: 1.5; }
.two-up {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .two-up { grid-template-columns: 1fr 1fr; }
}
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  min-height: 44px;
}
textarea { min-height: 120px; resize: vertical; }
.option-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.option-list label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1.0625rem; /* ~17px, matches form-question readability */
  line-height: 1.5;
  cursor: pointer;
}
.option-list input[type="radio"],
.option-list input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent-strong);
  flex-shrink: 0;
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
}
.consent-field input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--color-accent-strong); }
.form-disclaimer {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: var(--space-sm) 0;
}
.form-confirmation {
  display: none;
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}
.form-confirmation.is-visible { display: block; }
.form-confirmation h3 { margin-bottom: 0.5rem; }
.is-hidden { display: none; }
.form-error {
  color: var(--color-accent-strong);
  font-size: 0.85rem;
  margin-top: var(--space-sm);
  display: none;
}
.form-error.is-visible { display: block; }
noscript .callout { display: block; }

/* ------------------------------------------------------------
   12. STORIES / FILTERS
   ------------------------------------------------------------ */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}
.filter-btn {
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  min-height: 40px;
}
.filter-btn[aria-pressed="true"] {
  background: var(--ata-black);
  color: var(--color-text-inverse);
  border-color: var(--ata-black);
}
.story-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .story-grid { grid-template-columns: repeat(3, 1fr); }
}
.story-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.story-card .pill { align-self: flex-start; }
.story-card--placeholder h3 { color: var(--color-text-muted); }

/* ------------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--ata-black);
  color: var(--color-text-inverse);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-lg);
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.footer-brand {
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.footer-heading {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: var(--space-sm);
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { text-decoration: none; color: var(--color-text-inverse-muted); }
.footer-links a:hover { color: var(--color-text-inverse); }
.footer-social { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-social a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--color-text-inverse-muted);
  border: 1px solid var(--color-border-inverse);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
}
.footer-social a:hover { color: var(--ata-black); background: var(--color-gold-soft); border-color: var(--color-gold-soft); }
.footer-bottom {
  border-top: 1px solid var(--color-border-inverse);
  padding-top: var(--space-md);
  font-size: 0.78rem;
  color: var(--color-text-inverse-muted);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
}

/* ------------------------------------------------------------
   14. MISC RESPONSIVE HELPERS
   ------------------------------------------------------------ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .nav-toggle-icon, .nav-toggle-icon::before, .nav-toggle-icon::after { transition: none; }
}
