/* ═══════════════════════════════════════════════════════
   TGT Website v1.0 — Shared Stylesheet
   Sourced from index-v1-02.html plus nav/page-shell additions
═══════════════════════════════════════════════════════ */

:root {
  /* ── Brand dark backgrounds ── */
  --color-night:        #1e0a19;  /* Coffee Bean */
  --color-night-deep:   #140912;
  --color-night-mid:    #2d1245;
  /* ── Brand purples ── */
  --color-purple:       #5a1e8a;
  --color-purple-light: #7b3bb1;  /* logo lightning bolt */
  /* ── Warm accent (secondary) ── */
  --color-orange:       #e8621a;
  --color-orange-dark:  #c04e12;
  --color-red:          #9b2535;
  /* ── Lemon — primary highlight/CTA ── */
  --color-gold:         #f9f108;  /* Lemon */
  --color-gold-light:   #fbf855;
  --color-gold-readable:#7a7100;
  /* ── Cerulean — secondary accent & links ── */
  --color-blue:         #04b2ca;  /* Cerulean */
  --color-cerulean:     #04b2ca;
  --color-cerulean-dark:#0390a5;
  /* ── Pacifika olive ── */
  --color-pacifika:     #796f1e;
  /* ── Light backgrounds ── */
  --color-cream:        #faf6e8;
  --color-cream-dark:   #ede6cc;
  --color-tile-cream:   #fdf9ef;
  --nav-height:         64px;
}

* { box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--color-night);
  color: var(--color-cream);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.font-headline { font-family: 'Abril Fatface', serif; }
.font-slab     { font-family: 'Josefin Slab', serif; }
.font-body     { font-family: 'DM Sans', sans-serif; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Section divider motif ── */
.divider-motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.divider-motif::before,
.divider-motif::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,148,58,0.3);
  max-width: 80px;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION — sticky top + mobile drawer
═══════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-night-deep);
  border-bottom: 1px solid rgba(201,148,58,0.15);
}
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-cream);
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.nav-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-night);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Abril Fatface', serif;
  font-size: 16px;
}

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(250,246,232,0.88);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.nav-links a:hover { color: var(--color-gold); }
.nav-links a[aria-current="page"] {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* "The Ride" dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  background: none;
  border: none;
  color: rgba(250,246,232,0.88);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 150ms ease;
  border-bottom: 2px solid transparent;
}
.nav-dropdown-toggle:hover,
.nav-dropdown[data-open="true"] .nav-dropdown-toggle {
  color: var(--color-gold);
}
.nav-dropdown-toggle .caret {
  transition: transform 200ms ease;
}
.nav-dropdown[data-open="true"] .nav-dropdown-toggle .caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: var(--color-night);
  border: 1px solid rgba(201,148,58,0.25);
  border-radius: 8px;
  padding: 12px;
  list-style: none;
  margin: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.nav-dropdown[data-open="true"] .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li + li { margin-top: 2px; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  border-bottom: none;
  font-size: 13px;
}
.nav-dropdown-menu a:hover {
  background: rgba(201,148,58,0.10);
  color: var(--color-gold);
}
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(201,148,58,0.15);
  color: var(--color-gold);
  border-bottom: none;
}

/* Join CTA in nav */
.nav-cta {
  background: var(--color-gold);
  color: var(--color-night);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 9px 18px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: background 150ms ease;
  white-space: nowrap;
  line-height: 1.4;
}
.nav-cta:hover { background: var(--color-gold-light); }
.nav-links a.nav-cta,
.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:focus-visible {
  color: var(--color-night);
  border-bottom-color: transparent;
  padding: 9px 18px;
}
.nav-links a.nav-cta-donate,
.nav-links a.nav-cta-donate:hover,
.nav-links a.nav-cta-donate:focus-visible {
  padding: 9px 18px;
}

/* Mobile hamburger */
.nav-toggle {
  background: none;
  border: 1.5px solid rgba(245,237,214,0.4);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  transition: border-color 150ms ease;
}
.nav-toggle:hover { border-color: var(--color-gold); }
.nav-toggle .icon-close { display: none; }
[data-drawer-open="true"] .nav-toggle .icon-open { display: none; }
[data-drawer-open="true"] .nav-toggle .icon-close { display: inline; }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--color-night-deep);
  padding: 32px 24px 24px;
  z-index: 40;
  overflow-y: auto;
  display: none;
  flex-direction: column;
}
[data-drawer-open="true"] .nav-drawer { display: flex; }
[data-drawer-open="true"] body { overflow: hidden; }

.nav-drawer-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.nav-drawer-list > li { padding: 14px 0; border-bottom: 1px solid rgba(201,148,58,0.12); }
.nav-drawer-list a {
  color: var(--color-cream);
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: block;
}
.nav-drawer-list a[aria-current="page"] { color: var(--color-gold); }
.nav-drawer-group-label {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  padding: 14px 0 8px;
  border-bottom: 1px solid rgba(201,148,58,0.12);
}
.nav-drawer-sublist {
  list-style: none;
  margin: 0;
  padding: 8px 0 6px 14px;
  border-bottom: 1px solid rgba(201,148,58,0.12);
}
.nav-drawer-sublist li { padding: 10px 0; }
.nav-drawer-sublist a {
  color: rgba(250,246,232,0.86);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: block;
}
.nav-drawer-sublist a:hover,
.nav-drawer-sublist a:focus-visible,
.nav-drawer-sublist a[aria-current="page"] {
  color: var(--color-gold-light);
}
.nav-drawer-cta {
  display: block;
  background: var(--color-gold);
  color: var(--color-night);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-drawer { display: none !important; }
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO — compact header used on sub-pages
═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(180deg, var(--color-night) 0%, var(--color-night-mid) 100%);
  padding: clamp(64px, 9vw, 96px) 24px clamp(56px, 8vw, 80px);
  text-align: center;
  border-bottom: 1px solid rgba(201,148,58,0.15);
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-cream);
  line-height: 1.05;
  margin: 12px 0 16px;
}
.page-hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245,237,214,0.78);
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════
   CONTENT SHELL — generic body sections for sub-pages
═══════════════════════════════════════════════════════ */
.section-cream { background: var(--color-cream); color: var(--color-night); padding: clamp(56px, 8vw, 88px) 24px; }
.section-tile  { background: var(--color-tile-cream); color: var(--color-night); padding: clamp(56px, 8vw, 88px) 24px; }
.section-night { background: var(--color-night); color: var(--color-cream); padding: clamp(56px, 8vw, 88px) 24px; }
.section-purple { background: var(--color-purple); color: var(--color-cream); padding: clamp(56px, 8vw, 88px) 24px; }

.section-inner { max-width: 1100px; margin: 0 auto; }
.section-narrow { max-width: 760px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
  margin: 0 0 14px;
}
.section-night .section-eyebrow,
.section-purple .section-eyebrow { color: var(--color-gold); }

.section-h2 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 20px;
}
.section-night .section-h2,
.section-purple .section-h2 { color: var(--color-cream); }

.section-h3 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.15;
  margin: 32px 0 16px;
}

.prose p {
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.section-cream .prose p,
.section-tile .prose p { color: rgba(26,14,43,0.78); }
.section-night .prose p,
.section-purple .prose p { color: rgba(245,237,214,0.85); }

.prose a { color: var(--color-orange); text-decoration: underline; }
.section-night .prose a,
.section-purple .prose a { color: var(--color-gold-light); }

.prose ul {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 24px;
  padding-left: 22px;
}
.section-cream .prose ul,
.section-tile .prose ul { color: rgba(26,14,43,0.78); }
.section-night .prose ul,
.section-purple .prose ul { color: rgba(245,237,214,0.85); }

/* ═══════════════════════════════════════════════════════
   PACKING LIST — two-block / two-column layout
═══════════════════════════════════════════════════════ */
.packing-block {
  background: var(--color-tile-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 36px);
  margin: 0 0 32px;
  box-shadow: 0 4px 20px rgba(74,31,107,0.06);
}
.packing-block h2 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--color-night);
  margin: 0 0 20px;
}
.packing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.packing-col h3 {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1.5px dashed var(--color-cream-dark);
}
.packing-col-must h3 { color: var(--color-red); }
.packing-col-lux  h3 { color: var(--color-purple); }
.packing-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(26,14,43,0.55);
  margin: 0 0 10px;
  line-height: 1.5;
}
.packing-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.packing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(26,14,43,0.82);
  padding: 7px 0;
  line-height: 1.5;
}
.packing-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 4px;
  border: 1.5px solid var(--color-night);
  background: transparent;
}
.packing-col-lux .packing-list li::before {
  border-color: var(--color-purple);
  border-style: dashed;
}
@media (min-width: 720px) {
  .packing-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════════════════════
   GEAR — category cards
═══════════════════════════════════════════════════════ */
.gear-disclaimer {
  background: var(--color-tile-cream);
  border-left: 4px solid var(--color-gold);
  padding: 16px 20px;
  border-radius: 4px;
  font-style: italic;
  font-size: 15px;
  color: rgba(26,14,43,0.72);
  margin: 0 0 40px;
  line-height: 1.55;
}
.gear-category {
  margin: 0 0 56px;
}
.gear-category-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-cream-dark);
}
.gear-category-header h2 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-night);
  margin: 0;
}
.gear-picks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.gear-pick {
  background: var(--color-tile-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(74,31,107,0.06);
}
.gear-pick-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
}
.gear-pick-name {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-night);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gear-pick-price {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-orange);
  letter-spacing: 0.06em;
}
.gear-pick-blurb {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26,14,43,0.72);
  margin: 0 0 12px;
}
.gear-pick-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-purple);
  text-decoration: none;
  border-bottom: 1px solid var(--color-purple);
}
.gear-pick-link:hover { color: var(--color-orange); border-color: var(--color-orange); }
@media (min-width: 720px) {
  .gear-picks { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .gear-picks { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   FAQ — simple accordion (uses <details>)
═══════════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-tile-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: 10px;
  padding: 0;
  margin: 0 0 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--color-night);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Abril Fatface', serif;
  font-size: 22px;
  color: var(--color-orange);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 22px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(26,14,43,0.78);
}
.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin: 0; }

/* ═══════════════════════════════════════════════════════
   EVENT CARD — used on Home + Events page
═══════════════════════════════════════════════════════ */
.event-card {
  background: var(--color-cream);
  border-radius: 8px;
  padding: 36px 32px;
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: left;
  box-shadow: 0 8px 32px rgba(26,14,43,0.18);
}
.event-card-date {
  display: inline-block;
  background: var(--color-night);
  color: var(--color-gold);
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
}
.event-card-title {
  font-family: 'Abril Fatface', serif;
  font-size: 2rem;
  color: var(--color-night);
  margin: 16px 0 24px;
  line-height: 1.1;
}
.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
}
.event-card-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(26,14,43,0.78);
  line-height: 1.4;
}
.event-card-meta-row .icon { font-size: 20px; }
.event-card-divider { border-top: 1px solid var(--color-cream-dark); margin: 0 0 24px; }
.event-card p { font-family: 'DM Sans', sans-serif; font-size: 17px; color: rgba(26,14,43,0.72); line-height: 1.65; margin: 0 0 18px; }
.event-card .event-card-link { font-style: italic; font-size: 16px; color: var(--color-purple); text-decoration: none; }
.event-card .event-card-link:hover { text-decoration: underline; }
.event-card-cal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-cream-dark);
}
.cal-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
  border: 1.5px solid;
  background: transparent;
}
.cal-btn-google { border-color: var(--color-cerulean); color: var(--color-cerulean); }
.cal-btn-google:hover { background: var(--color-cerulean); color: #fff; }
.cal-btn-ics { border-color: var(--color-purple); color: var(--color-purple); }
.cal-btn-ics:hover { background: var(--color-purple); color: #fff; }
.add-all-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--color-night);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.add-all-label {
  font-family: 'Josefin Slab', serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin: 0 0 4px;
}
.add-all-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-cream);
  margin: 0;
  line-height: 1.4;
}
.add-all-btn {
  flex-shrink: 0;
  padding: 10px 22px;
  background: var(--color-gold);
  color: var(--color-night);
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease;
  white-space: nowrap;
}
.add-all-btn:hover { background: var(--color-gold-light); }
.add-all-wrap { position: relative; flex-shrink: 0; }
.add-all-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--color-cream-dark);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(26,14,43,0.14);
  min-width: 240px;
  z-index: 50;
  overflow: hidden;
}
.add-all-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  padding: 13px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 120ms ease;
}
.add-all-option:not(:last-child) { border-bottom: 1px solid var(--color-cream-dark); }
.add-all-option:hover { background: var(--color-cream); }
.add-all-option-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-night);
}
.add-all-option-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(26,14,43,0.50);
}
.add-all-google-note {
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--color-cream);
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 8px 12px;
  line-height: 1.5;
  max-width: 280px;
}

.event-coming-soon {
  background: var(--color-tile-cream);
  border: 1.5px dashed var(--color-cream-dark);
  border-radius: 10px;
  padding: 28px 24px;
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  color: rgba(26,14,43,0.65);
}
.event-coming-soon h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.5rem;
  color: var(--color-night);
  margin: 0 0 10px;
}

/* ═══════════════════════════════════════════════════════
   MEMBERS — big tiles
═══════════════════════════════════════════════════════ */
.member-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.member-tile {
  background: var(--color-tile-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: 14px;
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 16px rgba(74,31,107,0.06);
}
.member-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74,31,107,0.16);
}
.member-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-purple);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-tile-icon-strava { background: var(--color-orange); }
.member-tile h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.5rem;
  color: var(--color-night);
  margin: 0;
}
.member-tile p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(26,14,43,0.65);
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 720px) {
  .member-tiles { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   HERO — overlay desktop / stacked mobile (HOME ONLY)
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--color-night);
  overflow: hidden;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}
.hero-scrim { display: none; }
.hero-overlay-text { display: none; }
.hero-stacked-text {
  background: var(--color-night);
  padding: 40px 24px 56px;
  text-align: left;
}
.hero-stacked-text .hero-headline {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2.5rem, 9vw, 3.5rem);
  color: var(--color-cream);
  line-height: 1.05;
  margin: 0 0 14px;
}
.hero-stacked-text .hero-subhead {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .hero-photo-wrap {
    aspect-ratio: auto;
    height: 78svh;
    min-height: 560px;
  }
  .hero-scrim {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(26,14,43,0) 0%,
      rgba(26,14,43,0.45) 50%,
      rgba(26,14,43,0.92) 100%
    );
    z-index: 2;
  }
  .hero-overlay-text {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 56px 56px;
    max-width: 960px;
    z-index: 3;
    text-align: left;
  }
  .hero-overlay-text .hero-headline {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    color: var(--color-cream);
    line-height: 1;
    margin: 0 0 16px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  }
  .hero-overlay-text .hero-subhead {
    font-family: 'Josefin Slab', serif;
    font-weight: 700;
    font-size: 1.375rem;
    color: var(--color-gold);
    letter-spacing: 0.02em;
    margin: 0 0 32px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }
  .hero-stacked-text { display: none; }
  .hero-overlay-text .hero-cta-row {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn-primary {
  background: var(--color-gold);
  color: var(--color-night);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 150ms ease, box-shadow 150ms ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover {
  background: var(--color-gold-light);
  box-shadow: 0 4px 16px rgba(249,241,8,0.35);
}
a.btn-primary,
a.btn-primary:visited,
button.btn-primary,
.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--color-night);
}

.btn-ghost-cream {
  background: transparent;
  color: var(--color-cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14.5px 32px;
  border-radius: 4px;
  border: 1.5px solid var(--color-cream);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-ghost-cream:hover {
  background: var(--color-cream);
  color: var(--color-night);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--color-gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1.5px solid var(--color-gold);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost-gold:hover {
  background: var(--color-gold);
  color: var(--color-night);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--color-night);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--color-night);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost-dark:hover {
  background: var(--color-night);
  color: var(--color-cream);
}

/* ═══════════════════════════════════════════════════════
   STUFF WE'RE PROUD OF — light tiles
═══════════════════════════════════════════════════════ */
.totals-strip {
  background: var(--color-tile-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 960px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(74,31,107,0.06);
}
.totals-stat-value {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--color-night);
  line-height: 1;
}
.totals-stat-label {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-red);
  margin-top: 6px;
}

/* ── Season Timeline ── */
.seasons-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  /* vertical spine */
  padding-left: 56px;
}
.seasons-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-cream-dark), rgba(237,230,204,0.3));
  z-index: 0;
}
.timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.tl-marker {
  position: absolute;
  left: -56px;
  top: 8px;
  width: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 1;
}
.tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-tile-cream);
  border: 3px solid var(--tl-color, var(--color-red));
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--color-cream);
}
.tl-year {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tl-color, var(--color-red));
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin: 0;
  line-height: 1;
}
/* Horizontal desktop timeline */
@media (min-width: 900px) {
  .seasons-timeline {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding-left: 0;
    padding-top: 72px;
  }
  .seasons-timeline::before {
    left: 10px;
    right: 10px;
    top: 33px;
    bottom: auto;
    height: 2px;
    width: auto;
    background: linear-gradient(to right, var(--color-cream-dark), rgba(237,230,204,0.3));
  }
  .timeline-item {
    flex: 1;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }
  .tl-marker {
    position: absolute;
    top: -72px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    flex-direction: column-reverse;
    align-items: center;
    gap: 6px;
  }
  .tl-year {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 20px;
    font-family: 'Abril Fatface', serif;
    color: var(--color-night);
    letter-spacing: 0;
  }
  .tl-year-sub {
    font-family: 'Josefin Slab', serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tl-color, var(--color-orange));
    display: block;
    text-align: center;
    margin-top: 2px;
  }
}

.season-card {
  position: relative;
  background: var(--color-tile-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(74,31,107,0.08);
  transition: box-shadow 200ms ease, transform 200ms ease;
  overflow: visible;
}
.season-card:hover {
  box-shadow: 0 10px 32px rgba(74,31,107,0.14);
  transform: translateY(-2px);
}
.season-card-accent {
  height: 5px;
  width: 100%;
  border-radius: 14px 14px 0 0;
}
.season-card-body { padding: 24px 26px 26px; }

.season-eyebrow {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}

.award-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.award-badge-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 96px;
}
.award-badge {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  border: 2px solid var(--color-tile-cream);
  box-shadow: 0 6px 14px rgba(74,31,107,0.18), inset 0 -2px 0 rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
}
.award-badge-gold {
  background: linear-gradient(180deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  color: var(--color-night);
}
.award-badge-purple {
  background: linear-gradient(180deg, var(--color-purple-light) 0%, var(--color-purple) 100%);
}
.award-caption {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-night);
  text-align: center;
  line-height: 1.2;
}
.award-placeholder {
  border: 1.5px dashed var(--color-cream-dark);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 13.5px;
  color: rgba(26,14,43,0.50);
  margin-bottom: 22px;
}

.stat-amount {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  color: var(--color-night);
  line-height: 1;
}
.stat-amount-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(26,14,43,0.55);
  margin-left: 6px;
}
.stat-amount-empty {
  color: rgba(26,14,43,0.25);
}

.lp-track {
  width: 100%;
  height: 8px;
  background: var(--color-cream-dark);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 18px;
}
.lp-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 1s ease;
}
@keyframes pulse-bar {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 1; }
}
.lp-pulse { animation: pulse-bar 1.4s ease-in-out infinite; }

.goal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}
.goal-row .goal-label { color: rgba(26,14,43,0.55); }
.pct-label {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
}

.rider-line {
  margin-top: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  color: rgba(26,14,43,0.72);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rider-line .ride-emoji { font-size: 17px; }

.join-cta-inline {
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 14px;
  color: var(--color-red);
  text-decoration: none;
  display: inline-block;
}
.join-cta-inline:hover { text-decoration: underline; }

.sticker {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  transform: rotate(-12deg);
  background: var(--color-orange);
  color: var(--color-cream);
  box-shadow: 0 6px 14px rgba(74,31,107,0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  padding: 4px;
  border: 3px solid var(--color-tile-cream);
}
.sticker-purple {
  background: var(--color-purple);
}
.sticker svg { margin-bottom: 4px; }

.in-progress-ring {
  box-shadow:
    0 4px 20px rgba(74,31,107,0.08),
    0 0 0 1px rgba(212,95,26,0.35) inset;
}

/* ═══════════════════════════════════════════════════════
   JOIN — cream form fields on dark bg
═══════════════════════════════════════════════════════ */
.form-input {
  width: 100%;
  background: var(--color-cream);
  border: 1.5px solid var(--color-cream);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--color-night);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  outline: none;
}
.form-input::placeholder { color: rgba(26,14,43,0.40); }
.form-input:focus {
  border-color: var(--color-cerulean);
  box-shadow: 0 0 0 3px rgba(4,178,202,0.25);
}

.form-label {
  display: block;
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 6px;
}

#confirm-message { display: none; }
#confirm-message.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   SOCIALS — icon row
═══════════════════════════════════════════════════════ */
.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.social-disc {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  box-shadow: 0 6px 14px rgba(74,31,107,0.18);
  transition: transform 200ms ease, filter 200ms ease;
}
.social-link:hover .social-disc {
  transform: scale(1.10) rotate(-6deg);
  filter: brightness(1.08);
}
.social-disc-instagram {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 50%, var(--color-purple) 100%);
}
.social-disc-facebook { background: var(--color-blue); }
.social-disc-strava   { background: var(--color-orange); }
.social-caption {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-night);
  transition: color 200ms ease;
}
.social-link:hover .social-caption { color: var(--color-orange); }

@media (min-width: 640px) {
  .social-row { grid-template-columns: repeat(3, max-content); justify-content: center; gap: 48px; }
  .social-disc { width: 84px; height: 84px; }
}

/* ═══════════════════════════════════════════════════════
   INSTAGRAM PLACEHOLDER GRID
═══════════════════════════════════════════════════════ */
.ig-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 900px;
  margin: 0 auto;
}
.ig-tile {
  aspect-ratio: 1;
  background: rgba(74,31,107,0.5);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 200ms ease;
}
.ig-tile:hover { transform: scale(1.02); }
@media (max-width: 640px) {
  .ig-placeholder { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   FOOTER — three columns
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-night-deep);
  padding: 56px 24px 40px;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(74,31,107,0.4);
  padding-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer-col h4 {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { margin: 0 0 10px; }
.footer-col a {
  color: rgba(245,237,214,0.65);
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  text-decoration: none;
  transition: color 150ms ease;
}
.footer-col a:hover { color: var(--color-gold); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.footer-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-night);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Abril Fatface', serif;
  font-size: 18px;
}
.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(245,237,214,0.45);
  margin: 0 0 16px;
  max-width: 280px;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(74,31,107,0.3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(245,237,214,0.35);
  margin: 0;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE GRIDS — original
═══════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .totals-strip { grid-template-columns: repeat(3, 1fr); }
  .totals-stat + .totals-stat { border-left: 1px solid var(--color-cream-dark); padding-left: 24px; }
}
@media (min-width: 768px) {
  .cards-grid   { grid-template-columns: repeat(2, 1fr); }
  #mission-grid { grid-template-columns: 3fr 2fr !important; align-items: center; }
}
@media (max-width: 480px) {
  #name-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════
   NAV — logo image + new link styles
═══════════════════════════════════════════════════════ */
.nav-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.footer-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-merch-link {
  color: var(--color-cream);
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 150ms ease;
}
.nav-merch-link:hover { color: var(--color-gold); }
.nav-cta-donate {
  background: transparent;
  color: var(--color-cerulean);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 9px 18px;
  border-radius: 4px;
  border: 1.5px solid var(--color-cerulean);
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
  display: inline-block;
  white-space: nowrap;
  line-height: 1.4;
}
.nav-cta-donate:hover {
  background: var(--color-cerulean);
  color: #fff;
}
.nav-links a.nav-cta-donate {
  color: var(--color-cerulean);
  border-bottom: 1.5px solid var(--color-cerulean);
}
.nav-links a.nav-cta-donate:hover,
.nav-links a.nav-cta-donate:focus-visible {
  background: var(--color-cerulean);
  color: #fff;
  border-bottom: 1.5px solid var(--color-cerulean);
}
.nav-drawer-cta-donate {
  background: var(--color-cerulean);
  color: #fff;
  border-top: 12px solid transparent;
}

/* ═══════════════════════════════════════════════════════
   WISH KIDS — section on home page
═══════════════════════════════════════════════════════ */
.wish-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  .wish-cards-row { grid-template-columns: repeat(3, 1fr); }
}
.wish-card {
  background: rgba(245,237,214,0.08);
  border: 1px solid rgba(201,148,58,0.30);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
}
.wish-card-icon { font-size: 36px; margin: 0 0 14px; line-height: 1; }
.wish-card h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.375rem;
  color: var(--color-cream);
  margin: 0 0 10px;
  line-height: 1.2;
}
.wish-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(245,237,214,0.72);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   MERCH CALLOUT — home page section
═══════════════════════════════════════════════════════ */
.merch-callout-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ═══════════════════════════════════════════════════════
   SPONSORS STRIP — home page
═══════════════════════════════════════════════════════ */
.sponsors-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto 36px;
}
.sponsor-pill {
  background: rgba(201,148,58,0.10);
  border: 1px solid rgba(201,148,58,0.28);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(245,237,214,0.75);
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  display: inline-block;
}
.sponsor-pill:hover {
  background: rgba(201,148,58,0.22);
  color: var(--color-gold);
  border-color: rgba(201,148,58,0.55);
}

/* ═══════════════════════════════════════════════════════
   SPONSORS PAGE — full grid
═══════════════════════════════════════════════════════ */
.sponsors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
}
.sponsor-card {
  background: var(--color-tile-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 3px 14px rgba(74,31,107,0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.sponsor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(74,31,107,0.13);
}
.sponsor-card-tier {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-readable);
}
.sponsor-card-name {
  font-family: 'Abril Fatface', serif;
  font-size: 1.25rem;
  color: var(--color-night);
  line-height: 1.15;
  margin: 0;
}
.sponsor-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(26,14,43,0.65);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.sponsor-card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-purple);
  text-decoration: none;
  border-bottom: 1px solid rgba(74,31,107,0.35);
  display: inline;
  transition: color 150ms ease, border-color 150ms ease;
}
.sponsor-card-link:hover { color: var(--color-orange); border-color: var(--color-orange); }

/* ═══════════════════════════════════════════════════════
   ACTIVITY TICKER
═══════════════════════════════════════════════════════ */
#tgt-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-night-deep);
  border-top: 1px solid rgba(249,241,8,0.22);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.35);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#tgt-ticker.tgt-ticker-out {
  opacity: 0;
  transform: translateY(8px);
}
.tgt-ticker-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.tgt-ticker-icon {
  font-size: 17px;
  flex-shrink: 0;
  line-height: 1;
}
.tgt-ticker-label {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 3px;
  flex-shrink: 0;
  white-space: nowrap;
}
.tgt-ticker-label-donation {
  background: rgba(249,241,8,0.15);
  color: var(--color-gold);
}
.tgt-ticker-label-rider {
  background: rgba(4,178,202,0.15);
  color: var(--color-cerulean);
}
.tgt-ticker-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(250,246,232,0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.tgt-ticker-time {
  font-family: 'Josefin Slab', serif;
  font-size: 11px;
  color: rgba(245,237,214,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  white-space: nowrap;
}
.tgt-ticker-cta {
  background: var(--color-gold);
  color: var(--color-night);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 13px;
  border-radius: 3px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 150ms ease;
}
.tgt-ticker-cta:hover { background: var(--color-gold-light); color: var(--color-night); }
.tgt-ticker-close {
  background: none;
  border: none;
  color: rgba(245,237,214,0.35);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 0 6px 6px;
  flex-shrink: 0;
  transition: color 150ms ease;
}
.tgt-ticker-close:hover { color: var(--color-cream); }
@media (max-width: 560px) {
  .tgt-ticker-time { display: none; }
  .tgt-ticker-cta  { display: none; }
  .tgt-ticker-text { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════
   RIDERS GRID
═══════════════════════════════════════════════════════ */
.riders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .riders-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .riders-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1100px) {
  .riders-grid { grid-template-columns: repeat(5, 1fr); }
}
.rider-card {
  background: var(--color-tile-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: 8px;
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
  color: inherit;
}
.rider-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  margin-bottom: 6px;
  display: block;
  flex-shrink: 0;
}
.rider-hidden { display: none !important; }
.riders-show-more {
  display: block;
  margin: 20px auto 0;
  padding: 11px 28px;
  background: transparent;
  border: 1.5px solid var(--color-night);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-night);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.riders-show-more:hover {
  background: var(--color-night);
  color: var(--color-gold);
}
.rider-card-avatar-placeholder {
  background: var(--color-night);
  color: var(--color-gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rider-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,31,107,0.12);
}
.rider-card-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-night);
  margin: 0;
  line-height: 1.3;
}
.rider-card-amount {
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--color-purple);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rider-card-cta {
  font-size: 11px;
  color: var(--color-cerulean);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.rider-card:hover .rider-card-cta { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   RIDERS CAROUSEL (home page)
════════════════════════════════════════════════════════ */
.riders-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.riders-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  flex: 1;
}
.riders-carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.carousel-card .rider-card-avatar {
  width: 80px;
  height: 80px;
  font-size: 24px;
  margin-bottom: 0;
}
.carousel-card-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-night);
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
}
.carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-night);
  background: transparent;
  color: var(--color-night);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--color-night);
  color: var(--color-gold);
}
@media (max-width: 560px) {
  .carousel-btn { display: none; }
  .riders-carousel { gap: 0; }
}

/* ═══════════════════════════════════════════════════════
   DONATE PAGE — CTA cards
═══════════════════════════════════════════════════════ */
.donate-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 48px;
}
@media (min-width: 600px) {
  .donate-cta-grid { grid-template-columns: 1fr 1fr; }
}
.donate-cta-card {
  background: var(--color-tile-cream);
  border: 1px solid var(--color-cream-dark);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(74,31,107,0.08);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.donate-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74,31,107,0.14);
}
.donate-cta-card h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.75rem;
  color: var(--color-night);
  margin: 0;
  line-height: 1.1;
}
.donate-cta-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(26,14,43,0.68);
  line-height: 1.6;
  margin: 0;
}
.donate-impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .donate-impact-grid { grid-template-columns: repeat(3, 1fr); }
}
.donate-impact-card {
  background: rgba(245,237,214,0.08);
  border: 1px solid rgba(201,148,58,0.25);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.donate-impact-amount {
  font-family: 'Abril Fatface', serif;
  font-size: 2.25rem;
  color: var(--color-gold);
  line-height: 1;
  margin: 0 0 10px;
}
.donate-impact-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(245,237,214,0.78);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   WAM EVENT PAGE — REVISIONS 2026-05-09
═══════════════════════════════════════════════════════ */

/* R1: Hero numerals — stacked, each number above its label, centered */
.hero-numerals {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3.5vw, 40px);
  text-align: center;
  margin: 16px auto 24px;
  font-family: 'Abril Fatface', serif;
  color: var(--color-cream);
  line-height: 1;
}
.hero-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.hero-numerals .hero-num {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(3.5rem, 11vw, 7rem);
  color: var(--color-cream);
  font-weight: 400;
  line-height: 1;
}
.hero-numerals .hero-label {
  font-family: 'Josefin Slab', serif;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  color: rgba(245,237,214,0.78);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: clamp(4px, 0.8vw, 10px);
}

/* R3: Calendar icon (and any future eyebrow icon) inline with eyebrow text */
.section-eyebrow .eyebrow-icon {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 6px;
}

/* "Add to calendar" buttons (Google / Apple / Outlook) */
.calendar-add {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.calendar-add-label {
  font-family: 'Josefin Slab', serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
  margin: 0 4px 0 0;
}
.calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--color-red);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-red);
  text-decoration: none;
  background: transparent;
  transition: background 200ms ease, color 200ms ease;
}
.calendar-btn:hover,
.calendar-btn:focus-visible {
  background: var(--color-red);
  color: var(--color-cream);
  outline: none;
}

/* R4: Stylized Strava-style route graphic */
.route-graphic {
  margin: 32px 0 8px;
  padding: 0;
  text-align: center;
}
.route-graphic svg {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.route-graphic figcaption {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(26,14,43,0.55);
  margin-top: 12px;
  text-align: center;
}

/* R5: Photo gallery placeholder */
.gallery-intro {
  font-family: 'Josefin Slab', serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
  margin: 40px 0 16px;
  text-align: center;
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.photo-tile {
  aspect-ratio: 4 / 3;
  background: rgba(74,31,107,0.06);
  border-radius: 6px;
  overflow: hidden;
  margin: 0;
  position: relative;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.photo-tile:hover img,
.photo-tile:focus-within img {
  transform: scale(1.03);
}
/* Placeholder fallback (only used if a tile has no image yet) */
.photo-tile:not(:has(img)) {
  border: 1px solid rgba(74,31,107,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(74,31,107,0.55);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.photo-tile svg {
  stroke: rgba(74,31,107,0.35);
}
@media (max-width: 768px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .photo-gallery { grid-template-columns: 1fr; }
}

/* R6: What to Expect — scroll-revealed feature cards */
.wam-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 640px) {
  .wam-features { grid-template-columns: 1fr; }
}
.wam-feature {
  background: var(--color-cream);
  border-radius: 8px;
  padding: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.wam-feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.wam-feature-emoji {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.wam-feature-title {
  font-family: 'Josefin Slab', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-night);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.wam-feature-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(30,10,25,0.78);
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .wam-feature {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
