/* Restore Britain – South Humber
   Civic navy / gold / red. Edit colours in :root only. */

:root {
  --navy: #001428;
  --navy-2: #002147;
  --navy-3: #0a3058;
  --ink: #f4f7fb;
  --muted: #b7c7d9;
  --red: #c8102e;
  --red-hover: #a50d25;
  --gold: #c5a572;
  --gold-soft: rgba(197, 165, 114, 0.22);
  --blue: #7eb6ff;
  --card: rgba(0, 20, 40, 0.72);
  --card-solid: #071e36;
  --border: rgba(197, 165, 114, 0.28);
  --header: rgba(0, 20, 40, 0.86);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  --radius: 16px;
  --max: 1120px;
  --font-serif: "Libre Baskerville", "Palatino Linotype", Palatino, serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="light"] {
  --navy: #f3efe6;
  --navy-2: #ffffff;
  --navy-3: #e8e2d4;
  --ink: #102033;
  --muted: #3d5368;
  --red: #b10e28;
  --red-hover: #8c0b1f;
  --gold: #8a6a32;
  --gold-soft: rgba(138, 106, 50, 0.16);
  --blue: #0b4f96;
  --card: rgba(255, 255, 255, 0.9);
  --card-solid: #ffffff;
  --border: rgba(16, 32, 51, 0.12);
  --header: rgba(243, 239, 230, 0.92);
  --shadow: 0 16px 36px rgba(16, 32, 51, 0.1);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100%;
  overflow-x: clip;
  overflow-y: auto;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: var(--gold); }
a:hover { color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--gold);
  color: #001428;
  padding: 8px 14px;
  z-index: 3000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

.flag-bar {
  height: 4px;
  background: linear-gradient(90deg, #012169 0 33%, #fff 33% 66%, #c8102e 66%);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-plate {
  background: #fff;
  border-radius: 8px;
  padding: 5px 8px;
  line-height: 0;
}
.brand img {
  height: 46px;
  width: auto;
}
.brand-text {
  display: none;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
  background: var(--gold-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: 999px;
  padding: 13px 26px;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.28);
}
.btn-red:hover { background: var(--red-hover); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: #001428;
}
.btn-gold:hover { background: #d4b888; color: #001428; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}
.btn-nav {
  background: var(--red);
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  margin-left: 6px;
}
.btn-nav:hover { background: var(--red-hover) !important; color: #fff !important; }

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.icon-btn:hover {
  background: var(--gold);
  color: #001428;
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  margin-left: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4f7fb;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 22%;
  transform: scale(1.06);
  animation: kenburns 28s var(--ease) forwards;
}
@keyframes kenburns {
  to { transform: scale(1); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 12, 28, 0.88) 0%, rgba(0, 12, 28, 0.55) 48%, rgba(0, 12, 28, 0.25) 100%),
    linear-gradient(180deg, rgba(0, 12, 28, 0.15) 0%, rgba(0, 12, 28, 0.78) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 20px 72px;
  width: 100%;
}
.hero-logo {
  display: inline-block;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px 12px;
  margin-bottom: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.hero-logo img {
  width: min(540px, 88vw);
  height: auto;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.12;
  font-weight: 700;
  max-width: 14ch;
  color: #fff;
}
.hero .lede {
  margin-top: 18px;
  max-width: 38rem;
  font-size: 1.18rem;
  color: #d7e3f0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-note {
  margin-top: 22px;
  font-size: 0.92rem;
  color: #c5d2e0;
}
.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #d7e3f0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

.page-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4f7fb;
}
.page-hero .hero-inner { padding: 110px 20px 48px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  max-width: 18ch;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 84px 0; }
.section-head {
  max-width: 40rem;
  margin-bottom: 36px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.25;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 2px;
}
.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.band { background: var(--navy-2); }
.band-gold {
  background: linear-gradient(135deg, #002147, #0a3058);
  color: #f4f7fb;
}
[data-theme="light"] .band-gold {
  background: linear-gradient(135deg, #102033, #1b3d63);
}

.prose p + p { margin-top: 14px; }
.prose h2, .prose h3 { font-family: var(--font-serif); margin: 28px 0 10px; }
.prose ul, .prose ol { margin: 12px 0 12px 1.2rem; color: var(--muted); }
.prose li + li { margin-top: 6px; }

/* ---------- Cards / grids ---------- */
.grid-3, .grid-2, .grid-4 {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
  scroll-margin-top: 88px;
}
.card p { color: var(--muted); font-size: 0.98rem; }
.card a.more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--gold);
}
.card a.more:hover { gap: 10px; }

.issue-card h3 { font-size: 1.12rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0 10px;
}
.stat {
  background: var(--gold-soft);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--gold);
  line-height: 1.15;
}
.stat span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.3;
}
.table-scroll {
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.data-table th {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.data-table td { color: var(--muted); }
.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table .area {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.footnote {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}
.footnote a { font-weight: 600; }

.footer-areas {
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-areas a { font-weight: 600; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--gold); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--ink);
}
.quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- Events ---------- */
.event {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.event + .event { margin-top: 14px; }
.event-date {
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 12px;
}
.event-date .month {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.event-date .day {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.1;
}
.event h3 { font-family: var(--font-serif); font-size: 1.15rem; }
.event p { color: var(--muted); font-size: 0.95rem; }
.pill {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 8px;
}
.pill-live { border-color: var(--red); color: var(--red); }

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--navy-2);
  color: var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.honey { position: absolute; left: -9999px; }
.form-note { font-size: 0.88rem; color: var(--muted); }
.alert {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  background: var(--gold-soft);
  margin-bottom: 16px;
}

/* ---------- News ---------- */
.news-card time {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.article {
  max-width: 720px;
}
.article h1,
.prose h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 8px 0 16px;
}
.article h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin: 8px 0 16px;
}
.article p { color: var(--muted); }
.article + .article {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

/* ---------- CTA / contact ---------- */
.soon-sign {
  display: inline-block;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.team-card {
  text-align: center;
  padding: 18px 18px 22px;
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: default;
}
button.team-card,
a.team-card {
  cursor: pointer;
  text-align: center;
  color: var(--ink);
  background: var(--card);
  text-decoration: none;
  display: block;
}
a.team-card:hover {
  color: var(--ink);
}
button.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.team-card .photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--navy-3);
  border: 1px solid var(--border);
}
.team-card .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card .photo .initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  pointer-events: none;
}
.team-card .photo.vacant .initials {
  display: grid;
  color: var(--muted);
  font-size: 1.2rem;
}
.team-card .role {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.team-card h3 {
  font-family: var(--font-serif);
  margin-bottom: 6px;
  color: var(--gold);
}
.team-card .hint {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

.profile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: 4000;
  background: rgba(0, 8, 20, 0.78);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  padding: 24px 16px 40px;
  box-sizing: border-box;
}
.profile-overlay.is-open { display: block; }
.profile-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  margin: 8vh auto 24px;
  padding: 28px 28px 32px;
  position: relative;
  box-shadow: var(--shadow);
}
.profile-modal .photo,
#profile-photo-wrap {
  width: 140px !important;
  height: 140px !important;
  max-width: 140px !important;
  max-height: 140px !important;
  border-radius: 12px;
  overflow: hidden;
  margin: 8px auto 18px;
  border: 1px solid var(--border);
  background: var(--navy-3);
}
.profile-modal .photo img,
#profile-photo {
  width: 140px !important;
  height: 140px !important;
  max-width: 140px !important;
  max-height: 140px !important;
  object-fit: cover;
  display: block;
}
.profile-modal h2,
#profile-name {
  font-family: var(--font-serif);
  text-align: center;
  font-size: 1.7rem;
  color: var(--gold);
}
.profile-modal .role {
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.profile-modal .bio {
  color: var(--muted);
  margin-top: 14px;
}
.profile-modal .bio p + p { margin-top: 12px; }
.profile-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: 0;
  color: var(--text-muted, var(--muted));
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
}
.profile-close:hover { color: var(--gold); }
.profile-modal .btn { position: relative; z-index: 2; touch-action: manipulation; }

p.role {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}
.profile-layout {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.profile-layout .prose {
  text-align: left;
  margin-top: 28px;
}
.profile-layout .prose h2 {
  text-align: center;
}
.profile-photo-frame {
  width: 120px;
  height: 120px;
  max-width: 120px;
  max-height: 120px;
  margin: 0 auto 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy-3);
  position: relative;
}
.profile-photo-frame img {
  width: 120px;
  height: 120px;
  max-width: 120px;
  max-height: 120px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.profile-photo-frame .initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
}
.profile-layout h2 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  margin: 6px 0 0;
  color: var(--gold);
}
.profile-layout .hero-actions {
  justify-content: center;
}

.cta-box {
  text-align: center;
  padding: 56px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}
.cta-box h2 { font-family: var(--font-serif); font-size: 2rem; }
.cta-box p { color: var(--muted); max-width: 38rem; margin: 12px auto 24px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #001428;
  font-weight: 800;
  margin-bottom: 12px;
}
.step h3 { font-family: var(--font-serif); margin-bottom: 8px; }
.step p { color: var(--muted); }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
}

.link-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  font-weight: 600;
}
.link-list a i { color: var(--gold); width: 20px; text-align: center; }
.link-list a:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  filter: grayscale(0.2) contrast(1.05);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.site-footer h3 {
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; }
.site-footer li + li { margin-top: 6px; }
.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.socials { display: flex; gap: 8px; margin-top: 12px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s var(--ease) forwards;
}
.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.crumbs {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.crumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--gold);
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs [aria-current="page"] { color: var(--ink); }

.muted { color: var(--muted); }
.center { text-align: center; }
.mt-sm { margin-top: 10px; }
.mt { margin-top: 22px; }
.narrow { max-width: 720px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split, .footer-grid { grid-template-columns: 1fr; }
  .event { grid-template-columns: 90px 1fr; }
  .event .btn { grid-column: 1 / -1; }
}

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .btn-nav { margin: 8px 0 4px; text-align: center; }
}

@media (max-width: 820px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-inner { padding: 108px 20px 56px; }
  .section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; transform: none; }
  .reveal { animation: none; opacity: 1; transform: none; }
  .btn, .card, .link-list a { transition: none; }
}
