/* =========================================================
   Golden Years Seniors Association — Design System & Styles
   Palette derived from GYSA logo: forest green, gold, crimson
   ========================================================= */

:root {
  /* Brand colors (from GYSA logo & event materials) */
  --color-forest-900: #163529;
  --color-forest-800: #1c4436;
  --color-forest-700: #235444;
  --color-forest-600: #2c6a56;
  --color-gold-700: #a9791c;
  --color-gold-600: #c79a2e;
  --color-gold-500: #d9ac3d;
  --color-gold-400: #e6c56a;
  --color-gold-100: #faf1dd;
  --color-crimson-700: #7e2420;
  --color-crimson-600: #9c2f28;
  --color-crimson-500: #b23c33;

  /* Neutrals */
  --color-cream: #fbf6ec;
  --color-cream-dark: #f3ead7;
  --color-ink: #26291f;
  --color-ink-soft: #4a4d3f;
  --color-white: #ffffff;
  --color-line: #e4d9bf;

  /* Semantic tokens */
  --color-bg: var(--color-cream);
  --color-surface: var(--color-white);
  --color-text: var(--color-ink);
  --color-text-muted: var(--color-ink-soft);
  --color-primary: var(--color-forest-800);
  --color-primary-strong: var(--color-forest-900);
  --color-accent: var(--color-gold-600);
  --color-accent-strong: var(--color-gold-700);
  --color-cta: var(--color-crimson-600);
  --color-cta-strong: var(--color-crimson-700);
  --focus-ring: 3px solid #2f6fed;

  /* Typography */
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", "Segoe UI", Arial, sans-serif;
  --fs-base: 18px;

  /* Spacing scale (senior-friendly: generous) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(22, 53, 41, 0.08);
  --shadow-md: 0 12px 32px rgba(22, 53, 41, 0.14);
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration-thickness: 2px; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary-strong);
  line-height: 1.2;
  margin: 0 0 var(--space-2);
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 var(--space-2); }
ul, ol { padding-left: 1.3em; }
button { font-family: inherit; }

/* Visible focus states everywhere — accessibility priority */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary-strong);
  color: #fff;
  padding: 0.8em 1.4em;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.section { padding: var(--space-6) 0; }
.section-tight { padding: var(--space-5) 0; }
.section-alt { background: var(--color-white); }
.section-forest {
  background: var(--color-primary-strong);
  color: var(--color-gold-100);
}
.section-forest h1, .section-forest h2, .section-forest h3 {
  color: #fff;
}
.grid { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-cta);
  margin-bottom: var(--space-1);
}
.section-head { max-width: 720px; margin: 0 auto var(--space-5); text-align: center; }
.section-head p { color: var(--color-text-muted); font-size: 1.15rem; }
.lede { font-size: 1.2rem; color: var(--color-text-muted); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 0.8em 1.6em;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-cta); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--color-cta-strong); }
.btn-gold { background: var(--color-accent); color: var(--color-primary-strong); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--color-gold-500); }
.btn-outline { background: transparent; border-color: currentColor; color: inherit; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline-dark:hover { background: var(--color-primary); color: #fff; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* ---------- Header ---------- */
.topbar {
  background: var(--color-primary-strong);
  color: var(--color-gold-100);
  font-size: 0.92rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4em 1.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.topbar a { color: var(--color-gold-100); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-links { display: flex; gap: 1.4em; flex-wrap: wrap; }
.topbar-social { display: flex; gap: 0.8em; align-items: center; }
.topbar-social a {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.topbar-social svg { width: 16px; height: 16px; fill: currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: 0.7em;
  padding-bottom: 0.7em;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7em;
  text-decoration: none;
  color: var(--color-primary-strong);
}
.brand svg, .brand img { width: 52px; height: 52px; flex-shrink: 0; }
.brand-text { line-height: 1.15; }
.brand-text .brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary-strong);
}
.brand-text .brand-sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--color-cta);
}

.main-nav { display: flex; align-items: center; gap: var(--space-3); }
.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 1.3em;
  margin: 0;
  padding: 0;
}
.nav-list a {
  display: inline-block;
  padding: 0.6em 0.2em;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 3px solid transparent;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--color-cta);
  border-bottom-color: var(--color-cta);
}
.nav-actions { display: flex; align-items: center; gap: var(--space-2); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 800;
  color: var(--color-primary-strong);
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone svg { width: 20px; height: 20px; fill: var(--color-cta); }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border-radius: 10px;
  border: 2px solid var(--color-primary);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 88vw);
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-4) var(--space-3);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list a { display: block; padding: 0.9em 0.2em; border-bottom: 1px solid var(--color-line); font-size: 1.1rem; }
  .nav-actions { flex-direction: column; align-items: stretch; margin-top: var(--space-3); }
  .nav-toggle { display: inline-flex; }
  .nav-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(22,53,41,0.45);
    z-index: 90;
  }
  .nav-backdrop.is-open { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--color-primary-strong);
  color: #fff;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-5);
  align-items: center;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(217,172,61,0.16);
  color: var(--color-gold-400);
  border: 1px solid rgba(217,172,61,0.4);
  border-radius: var(--radius-pill);
  padding: 0.4em 1em;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.hero h1 { color: #fff; }
.hero .lede { color: var(--color-gold-100); }
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid rgba(255,255,255,0.08);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.5;
}
.hero-blob-gold { width: 340px; height: 340px; background: var(--color-gold-600); top: -140px; right: -100px; opacity: 0.18; }
.hero-blob-crimson { width: 260px; height: 260px; background: var(--color-crimson-600); bottom: -120px; left: -80px; opacity: 0.22; }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* Page header (non-home) */
.page-hero {
  background: var(--color-primary-strong);
  color: #fff;
  padding: var(--space-5) 0;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; margin-bottom: var(--space-1); }
.page-hero p { color: var(--color-gold-100); max-width: 640px; font-size: 1.1rem; margin: 0; }
.breadcrumb { font-size: 0.9rem; color: var(--color-gold-400); margin-bottom: var(--space-2); }
.breadcrumb a { color: var(--color-gold-400); }

/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.icon-card { text-align: left; }
.icon-badge {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--color-gold-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.icon-badge svg { width: 28px; height: 28px; stroke: var(--color-primary-strong); fill: none; }
.pillar-card { text-align: center; }
.pillar-card .icon-badge { margin-left: auto; margin-right: auto; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
  margin-top: calc(var(--space-6) * -1);
  position: relative;
  z-index: 5;
}
.stat-strip div { text-align: center; }
.stat-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--color-cta);
}
@media (max-width: 700px) {
  .stat-strip { grid-template-columns: 1fr; margin-top: var(--space-3); }
}

/* Photo/text split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
.split img, .split .media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.split .media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}
.split.reverse .media-frame { order: -1; }
@media (min-width: 861px) {
  .split.reverse .media-frame { order: 2; }
}

/* Team / volunteer photo grid */
.team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/4;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Program / service card */
.program-card { display: flex; flex-direction: column; height: 100%; }
.program-card h3 { margin-bottom: 0.4em; }
.program-card p { color: var(--color-text-muted); flex-grow: 1; }

/* Values / pillar band */
.pillar-band { background: var(--color-forest-700); color: #fff; }
.pillar-band h2, .pillar-band h3 { color: #fff; }
.pillar-band .icon-badge { background: rgba(255,255,255,0.14); }
.pillar-band .icon-badge svg { stroke: #fff; }
.pillar-band p { color: var(--color-gold-100); }

/* Quote block */
.quote-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-primary-strong);
  margin: 0 0 var(--space-2);
}

/* ---------- Events ---------- */
.event-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.event-feature img { width: 100%; height: 100%; object-fit: cover; }
.event-feature img.flyer-img { object-fit: contain; background: var(--color-forest-900); padding: var(--space-2); }
.event-feature-body { padding: var(--space-4); }
.event-feature-body ul { list-style: none; padding: 0; margin: var(--space-2) 0; }
.event-feature-body li {
  display: flex; gap: 0.7em; align-items: flex-start;
  padding: 0.5em 0;
  border-bottom: 1px dashed var(--color-line);
}
.event-feature-body li svg { width: 22px; height: 22px; fill: var(--color-cta); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 860px) {
  .event-feature { grid-template-columns: 1fr; }
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.schedule-table caption { text-align: left; padding: var(--space-2); font-weight: 700; }
.schedule-table th, .schedule-table td {
  text-align: left;
  padding: 1em 1.1em;
  border-bottom: 1px solid var(--color-line);
  font-size: 1rem;
}
.schedule-table th {
  background: var(--color-forest-800);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}
.schedule-table tbody tr:hover { background: var(--color-cream); }
.schedule-note {
  background: var(--color-gold-100);
  border: 1px dashed var(--color-gold-600);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  margin-top: var(--space-3);
  font-size: 0.98rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-2);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: none;
  display: block;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(22,53,41,0.85), transparent);
  color: #fff;
  padding: 1.6em 1em 0.7em;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
}
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,26,20,0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: var(--space-3);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(90vw, 900px); max-height: 82vh; border-radius: var(--radius-md); }
.lightbox-caption { color: #fff; text-align: center; margin-top: var(--space-2); font-size: 1.05rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-close { top: var(--space-3); right: var(--space-3); }
.lightbox-prev { left: var(--space-2); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: var(--space-2); top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 24px; height: 24px; fill: #fff; }

.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  background: #000;
}
.video-frame video { width: 100%; height: 100%; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: var(--space-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; font-weight: 700; margin-bottom: 0.35em; }
.required { color: var(--color-cta); }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
select, textarea {
  width: 100%;
  font: inherit;
  padding: 0.85em 1em;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
}
textarea { min-height: 130px; resize: vertical; }
fieldset { border: 2px solid var(--color-line); border-radius: var(--radius-md); padding: var(--space-2) var(--space-3); }
legend { font-weight: 800; padding: 0 0.5em; font-family: var(--font-display); }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 0.6em 1.2em; margin-top: 0.5em; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.6em; font-weight: 500; }
.checkbox-row input { width: 22px; height: 22px; margin-top: 2px; flex-shrink: 0; }
.form-hint { font-size: 0.92rem; color: var(--color-text-muted); margin-top: 0.3em; }
.form-status {
  border-radius: var(--radius-sm);
  padding: 1em 1.2em;
  font-weight: 700;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: #e6f3e9; color: #1c4436; border: 1px solid #9fcbab; }
.form-status.error { background: #fbe9e7; color: #7a231c; border: 1px solid #e3a49c; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--color-gold-100);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3);
  align-items: center;
}
.newsletter form { display: flex; gap: 0.6em; flex-wrap: wrap; }
.newsletter input[type="email"] { flex: 1 1 220px; }
@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; text-align: center; } .newsletter form { justify-content: center; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-forest-900), var(--color-forest-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--color-gold-100); max-width: 620px; margin-left: auto; margin-right: auto; }

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (max-width: 760px) { .cta-split { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 1em; align-items: flex-start; padding: 1em 0; border-bottom: 1px solid var(--color-line); }
.contact-item .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.contact-item a { color: var(--color-primary-strong); font-weight: 700; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 0; width: 100%; height: 360px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-strong);
  color: var(--color-gold-100);
  padding: var(--space-6) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.7em; margin-bottom: var(--space-2); text-decoration: none; }
.footer-brand svg, .footer-brand img { width: 46px; height: 46px; }
.footer-brand span { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--space-2); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.6em; }
.site-footer a { color: var(--color-gold-100); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 0.7em; margin-top: var(--space-2); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6em;
  padding-top: var(--space-3);
  font-size: 0.9rem;
  color: var(--color-gold-100);
  opacity: 0.85;
}

/* ---------- Misc ---------- */
.tag {
  display: inline-block;
  background: var(--color-gold-100);
  color: var(--color-accent-strong);
  border-radius: var(--radius-pill);
  padding: 0.3em 0.9em;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6em;
}
.divider { height: 1px; background: var(--color-line); border: 0; margin: var(--space-5) 0; }
.center { text-align: center; }
.note-banner {
  background: var(--color-gold-100);
  border: 1px dashed var(--color-gold-600);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  font-size: 0.95rem;
}

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