/* ========================================================================
   Play for Autism Foundation — Design System v2 ("Michigan Field")
   Warm, family-focused, golf-charity palette.
   Fonts: Fraunces (display serif) + Inter (UI sans), via Google Fonts.
   ======================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Inter:wght@400;500;600;700;800&display=swap");

/* ---------- Tokens ---------- */

:root {
  /* Brand palette */
  --pfa-navy: #16324f;
  --pfa-navy-deep: #0f243b;
  --pfa-navy-soft: rgba(22, 50, 79, 0.08);
  --pfa-green: #3f7d44;
  --pfa-green-deep: #2d5a31;
  --pfa-gold: #d4a437;
  --pfa-gold-deep: #b88a26;
  --pfa-gold-soft: rgba(212, 164, 55, 0.14);
  --pfa-cream: #f6f1e6;
  --pfa-cream-deep: #ece5d4;
  --pfa-stone: #e8e2d4;
  --pfa-ink: #1a2a2e;
  --pfa-ink-soft: #4d5a5e;
  --pfa-ink-mute: #75828a;
  --pfa-white: #ffffff;
  --pfa-danger: #b04434;
  --pfa-success: #3f7d44;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Apple Garamond", "Hoefler Text", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Menlo", Monaco, "Courier New", monospace;

  /* Spacing & radii */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(22, 50, 79, 0.06);
  --shadow: 0 6px 20px -8px rgba(22, 50, 79, 0.18), 0 2px 6px -2px rgba(22, 50, 79, 0.08);
  --shadow-lg: 0 18px 40px -16px rgba(22, 50, 79, 0.28), 0 6px 14px -6px rgba(22, 50, 79, 0.12);
  --shadow-gold: 0 12px 28px -10px rgba(212, 164, 55, 0.5);

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --header-height: 80px;

  /* Legacy aliases (retained for compatibility with class names below) */
  --bg: var(--pfa-cream);
  --bg-alt: var(--pfa-white);
  --bg-card: var(--pfa-white);
  --surface: var(--pfa-white);
  --surface-soft: var(--pfa-cream-deep);
  --border-color: var(--pfa-stone);
  --border-strong: #cdc4af;
  --text: var(--pfa-ink);
  --text-muted: var(--pfa-ink-soft);
  --brand: var(--pfa-navy);
  --brand-dark: var(--pfa-navy-deep);
  --accent: var(--pfa-gold);
  --accent-cyan: var(--pfa-navy);
  --accent-green: var(--pfa-green);
  --accent-yellow: var(--pfa-gold);
  --status-active: var(--pfa-green);
  --status-danger: var(--pfa-danger);
}

/* ---------- Base ---------- */

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

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--pfa-ink);
  background: var(--pfa-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--pfa-navy); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 200ms ease; }
a:hover { color: var(--pfa-green); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pfa-navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); font-weight: 600; line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--pfa-navy); }

::selection { background: var(--pfa-gold-soft); color: var(--pfa-navy); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--pfa-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1.2rem;
  background: var(--pfa-navy);
  color: var(--pfa-cream);
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 150ms ease;
}
.skip-link:focus { top: 0; }

/* ---------- Layout primitives ---------- */

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-left: max(1.5rem, env(safe-area-inset-left, 1.5rem));
  padding-right: max(1.5rem, env(safe-area-inset-right, 1.5rem));
  box-sizing: border-box;
}
@media (min-width: 720px) {
  .container {
    padding-left: max(2rem, env(safe-area-inset-left, 2rem));
    padding-right: max(2rem, env(safe-area-inset-right, 2rem));
  }
}
.container--narrow { max-width: var(--container-narrow); }

section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
section + section { padding-top: 0; }

.page-main { padding-bottom: clamp(2rem, 4vw, 4rem); }

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

/* Cream / white alternating bands — implement with utility classes used below.
   By default sections sit on cream; .band-white inverts. */
.band-white { background: var(--pfa-white); }
.band-cream { background: var(--pfa-cream); }
.band-navy { background: var(--pfa-navy); color: var(--pfa-cream); }
.band-navy h1, .band-navy h2, .band-navy h3, .band-navy h4 { color: var(--pfa-white); }

/* ---------- Site header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: saturate(1.6) blur(12px);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--pfa-stone);
}
/* Disable the auto-hide-on-scroll behavior — the donate CTA must always be reachable. */
.site-header.is-hidden { transform: none; }

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--pfa-navy);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.brand:hover { color: var(--pfa-navy-deep); }
.brand:hover .brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -8px rgba(22, 50, 79, 0.35);
  border-color: rgba(22, 50, 79, 0.18);
}
.brand:focus-visible { outline: none; }
.brand:focus-visible .brand-mark {
  border-color: var(--pfa-gold);
  box-shadow: 0 0 0 3px rgba(212, 164, 55, 0.35);
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(22, 50, 79, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  overflow: hidden;
}
.brand-mark > svg,
.brand-mark > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--pfa-navy);
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pfa-green);
  line-height: 1;
}
@media (max-width: 480px) {
  .brand-mark { width: 44px; height: 44px; border-radius: 10px; }
  .brand-name { font-size: 1.02rem; }
  .brand-sub { display: none; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--pfa-ink-soft);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}
.site-nav a:hover { color: var(--pfa-navy); background: rgba(22, 50, 79, 0.06); }
.site-nav a.active { color: var(--pfa-navy); font-weight: 600; }
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--pfa-gold);
}

/* The Donate item is always rendered as a gold pill button — implemented purely via
   attribute selector so the existing HTML doesn't need to change. */
.site-nav a[href="donate.html"] {
  margin-left: 0.4rem;
  padding: 0.55rem 1.15rem;
  background: var(--pfa-gold);
  color: var(--pfa-navy-deep);
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px -4px rgba(212, 164, 55, 0.5);
}
.site-nav a[href="donate.html"]:hover {
  background: var(--pfa-gold-deep);
  color: var(--pfa-navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.site-nav a[href="donate.html"].active {
  background: var(--pfa-gold-deep);
  color: var(--pfa-navy-deep);
}
.site-nav a[href="donate.html"].active::after { display: none; }

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.6rem;
  min-height: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  color: var(--pfa-navy-deep);
  background: var(--pfa-gold);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn:hover {
  background: var(--pfa-gold-deep);
  color: var(--pfa-navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn:active { transform: translateY(0); }

.btn.secondary {
  background: transparent;
  color: var(--pfa-navy);
  border-color: var(--pfa-navy);
}
.btn.secondary:hover {
  background: var(--pfa-navy);
  color: var(--pfa-cream);
  box-shadow: 0 8px 22px -10px rgba(22, 50, 79, 0.5);
}

.btn.accent {
  background: var(--pfa-green);
  color: var(--pfa-cream);
}
.btn.accent:hover {
  background: var(--pfa-green-deep);
  color: var(--pfa-cream);
  box-shadow: 0 10px 24px -8px rgba(63, 125, 68, 0.45);
}

.btn.ripple span {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(4.5); opacity: 0; } }

/* ---------- Hero (default — used by interior pages) ---------- */

.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--pfa-cream) 0%, var(--pfa-cream) 60%, var(--pfa-white) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto auto;
  width: 60%;
  height: 80%;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(212, 164, 55, 0.18), transparent 65%),
    radial-gradient(ellipse 50% 40% at 30% 70%, rgba(63, 125, 68, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  margin: 0 0 1.1rem;
  color: var(--pfa-navy);
  letter-spacing: -0.02em;
}

.hero h1 em,
.hero h1 i {
  font-style: italic;
  color: var(--pfa-green);
  font-weight: 500;
}

.hero p {
  margin: 0;
  max-width: 56ch;
  color: var(--pfa-ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.hero-actions--center { justify-content: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pfa-green);
  letter-spacing: 0.02em;
}
.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pfa-gold);
  display: inline-block;
}

/* ---------- Hero (photo variant — full-bleed homepage hero) ---------- */

.hero--photo {
  position: relative;
  padding: 0;
  background: var(--pfa-navy-deep);
  min-height: clamp(520px, 70vh, 720px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero--photo::before { content: none; }

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bias right so the GM Renaissance Center stays visible while open sky on the
     left lines up with the headline area. Vertical center keeps water + skyline
     balanced. */
  object-position: 72% center;
  z-index: 0;
  filter: saturate(1.06) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(95deg,
      rgba(15, 36, 59, 0.92) 0%,
      rgba(15, 36, 59, 0.82) 28%,
      rgba(15, 36, 59, 0.55) 50%,
      rgba(15, 36, 59, 0.15) 75%,
      rgba(15, 36, 59, 0) 100%),
    linear-gradient(180deg,
      rgba(15, 36, 59, 0) 60%,
      rgba(15, 36, 59, 0.55) 100%);
}

.hero--photo .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(5rem, 9vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-content {
  max-width: 640px;
  color: var(--pfa-cream);
}

.hero--photo .hero-eyebrow {
  background: rgba(246, 241, 230, 0.14);
  border-color: rgba(246, 241, 230, 0.28);
  color: var(--pfa-cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero--photo .hero-eyebrow::before { background: var(--pfa-gold); }

.hero--photo h1 {
  color: var(--pfa-cream);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: -0.025em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}
.hero--photo h1 em,
.hero--photo h1 i {
  font-style: italic;
  color: var(--pfa-gold);
  font-weight: 500;
}

.hero--photo p {
  color: rgba(246, 241, 230, 0.92);
  font-size: clamp(1.1rem, 1.5vw, 1.22rem);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  max-width: 54ch;
}

.hero--photo .btn.secondary {
  color: var(--pfa-cream);
  border-color: rgba(246, 241, 230, 0.7);
  background: rgba(246, 241, 230, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero--photo .btn.secondary:hover {
  background: var(--pfa-cream);
  color: var(--pfa-navy-deep);
  border-color: var(--pfa-cream);
}

@media (max-width: 720px) {
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(15, 36, 59, 0.55) 0%,
        rgba(15, 36, 59, 0.78) 60%,
        rgba(15, 36, 59, 0.92) 100%);
  }
  .hero--photo .container { padding-top: 4rem; padding-bottom: 3rem; }
  .hero-photo { object-position: 78% center; }
}

/* ---------- Section heads ---------- */

.section-head {
  margin-bottom: 2.4rem;
  max-width: 720px;
}
.section-head.text-center { margin-inline: auto; }

.section-head > h1,
.section-head > h2 {
  margin: 0 0 0.55rem;
  color: var(--pfa-navy);
}
.section-head > p {
  margin: 0;
  color: var(--pfa-ink-soft);
  font-size: 1.1rem;
  line-height: 1.65;
}

/* Eyebrow style for section heads when used with a small kicker */
.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pfa-green);
}

/* ---------- Cards ---------- */

.cards {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card {
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #d6cdb8;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pfa-navy);
  text-transform: none;
  letter-spacing: -0.01em;
}

.card .meta,
.card p {
  color: var(--pfa-ink-soft);
  margin: 0 0 0.85rem;
}

.cards .card .btn { margin-top: auto; align-self: flex-start; }

/* About-page split list */
.card ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--pfa-ink-soft);
}
.card ul li { margin-bottom: 0.35rem; }

/* ---------- Stats / impact rows ---------- */

.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat,
.impact-item {
  text-align: center;
  padding: 1.6rem 1rem;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.stat:hover,
.impact-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.stat strong,
.impact-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  color: var(--pfa-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat span,
.impact-item span {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pfa-ink-soft);
  line-height: 1.4;
}

/* Subtle gold accent under each stat number */
.stat strong::after,
.impact-item strong::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--pfa-gold);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

/* ---------- Split layout (used on about, store, etc.) ---------- */

.split { display: grid; gap: 1.5rem; align-items: start; }
.split > * { min-width: 0; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1.3fr 0.7fr; gap: 2rem; }
}

/* ---------- Sponsors ---------- */

.sponsors-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--pfa-cream);
  border-top: 1px solid var(--pfa-stone);
  border-bottom: 1px solid var(--pfa-stone);
}

.sponsor-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  align-items: stretch;
  padding: 0.5rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .sponsor-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .sponsor-strip {
    grid-template-columns: repeat(7, 1fr);
  }
}

.sponsor-strip img {
  width: 100%;
  height: 110px;
  max-width: none;
  object-fit: contain;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.sponsor-strip img:hover {
  transform: translateY(-3px);
  border-color: #d6cdb8;
  box-shadow: var(--shadow);
}

/* ============================================================================
   Store
   ----------------------------------------------------------------------------
   Image-led product cards, mission-tied hero, and a polished cart sidebar.
   The "Michigan Field" brand language (cream/navy/gold, Fraunces display,
   warm shadows) is honored throughout. Mobile-first: the grid collapses to
   one column under 720px and the cart sticky bar takes over on small screens.
   ============================================================================ */

/* ---- Store hero ---------------------------------------------------------- */

.store-hero {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.store-hero-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 860px) {
  .store-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.store-hero-copy h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.store-hero-copy h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--pfa-gold-deep);
}

.store-hero-copy > p {
  max-width: 46ch;
}

.store-hero-points {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pfa-ink-soft);
}
.store-hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.store-hero-points li span {
  color: var(--pfa-gold);
  font-size: 0.5rem;
  line-height: 1;
}

.store-hero-card {
  position: relative;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  box-shadow: var(--shadow);
  transform: rotate(-0.6deg);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 350ms ease;
}
.store-hero-card:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 24px 50px -22px rgba(22, 50, 79, 0.35);
}

.store-hero-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: var(--pfa-cream-deep);
}
.store-hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.store-hero-card-caption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 0.7rem 0.35rem;
}
.store-hero-card-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pfa-green);
}
.store-hero-card-caption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pfa-navy);
  letter-spacing: -0.01em;
}
.store-hero-card-meta {
  font-size: 0.85rem;
  color: var(--pfa-ink-soft);
}

/* ---- Trust strip --------------------------------------------------------- */

.store-trust-section {
  padding-top: 0;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.store-trust-row {
  list-style: none;
  margin: 0;
  padding: 1rem 1.15rem;
  display: grid;
  gap: 0.95rem 1.4rem;
  grid-template-columns: 1fr;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) {
  .store-trust-row {
    grid-template-columns: repeat(3, 1fr);
    padding: 1.1rem 1.6rem;
  }
}

.store-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--pfa-ink);
  line-height: 1.35;
}
.store-trust-pill strong {
  font-weight: 700;
  color: var(--pfa-navy);
}
.store-trust-sub {
  font-size: 0.78rem;
  color: var(--pfa-ink-soft);
}
.store-trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pfa-gold-soft);
  color: var(--pfa-navy);
}
.store-trust-icon svg { width: 18px; height: 18px; }

/* ---- Shop section / layout ---------------------------------------------- */

.store-shop-section { padding-top: 0; }

.store-layout .store-main { min-width: 0; }
.store-main .section-head { margin-bottom: 1.4rem; }

.store-fineprint {
  margin: 1.4rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--pfa-ink-soft);
}
.store-fineprint span[aria-hidden] { color: var(--pfa-gold); font-size: 0.5rem; }
.store-fineprint a {
  color: var(--pfa-navy);
  font-weight: 600;
}

/* ---- Product grid + image-led card -------------------------------------- */

.store-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}
@media (min-width: 560px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .store-grid { grid-template-columns: repeat(3, 1fr); }
}

.grid-fade-in { animation: gridFadeIn 280ms ease; }
@keyframes gridFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .grid-fade-in { animation: none; }
  .store-hero-card { transition: none; }
}

.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: #d6cdb8;
  box-shadow: var(--shadow);
}
.product-card:hover .product-card-media img {
  transform: scale(1.035);
}

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--pfa-cream-deep);
  overflow: hidden;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.05rem 1.1rem 1.15rem;
  flex: 1;
}

.product-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.85rem;
}

.product-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--pfa-navy);
  line-height: 1.2;
}

.product-card-tagline {
  margin: 0;
  font-size: 0.88rem;
  color: var(--pfa-ink-soft);
  line-height: 1.45;
  flex: 1;
}

.product-card-cta {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 1.1rem;
  min-height: 44px;
  font-size: 0.92rem;
}
/* The global ripple rule (.btn.ripple span, ~line 386) absolutely positions
   and hides ALL spans inside ripple buttons — that selector also grabs static
   label spans we put inside our product CTAs. Bump specificity to (0,3,0) so
   our static label stays in normal flow. */
.btn.ripple span.cta-label,
.btn.product-card-cta span.cta-label {
  position: static;
  transform: none;
  background: transparent;
  border-radius: 0;
  animation: none;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  left: auto;
  top: auto;
}
.product-card-cta .cta-icon {
  transition: transform 200ms ease;
}
.product-card-cta:hover .cta-icon {
  transform: translateX(2px);
}
.product-card-cta.is-added {
  background: var(--pfa-green);
  color: var(--pfa-cream);
  border-color: var(--pfa-green);
}
.product-card-cta.is-added:hover {
  background: var(--pfa-green-deep);
}

.price {
  color: var(--pfa-navy);
  font-weight: 700;
  font-size: 1.18rem;
  font-family: var(--font-display);
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.stock-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.62rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  width: fit-content;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.stock-available, .stock-in {
  background: rgba(63, 125, 68, 0.92);
  color: var(--pfa-cream);
  border-color: rgba(63, 125, 68, 0.5);
}
.stock-low {
  background: rgba(212, 164, 55, 0.92);
  color: var(--pfa-navy-deep);
  border-color: rgba(212, 164, 55, 0.7);
}
.stock-out {
  background: rgba(176, 68, 52, 0.92);
  color: var(--pfa-cream);
  border-color: rgba(176, 68, 52, 0.7);
}

.product-out-of-stock { opacity: 0.78; }

.btn-preorder {
  background: transparent;
  border: 1.5px solid var(--pfa-navy);
  color: var(--pfa-navy);
}
.btn-preorder:hover {
  background: var(--pfa-navy);
  color: var(--pfa-cream);
}

/* ---- Size / variant chips ----------------------------------------------- */

.variant-selector {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.variant-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--pfa-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.variant-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }

.variant-chip {
  min-width: 34px;
  padding: 0.4rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border: 1.5px solid var(--pfa-stone);
  border-radius: 7px;
  background: var(--pfa-white);
  color: var(--pfa-ink-soft);
  cursor: pointer;
  transition: border-color 150ms, color 150ms, background 150ms, box-shadow 150ms;
  line-height: 1.1;
}
.variant-chip:hover { border-color: var(--pfa-navy); color: var(--pfa-navy); }
.variant-chip:focus-visible {
  outline: none;
  border-color: var(--pfa-navy);
  box-shadow: 0 0 0 3px var(--pfa-gold-soft);
}
.variant-chip.active {
  border-color: var(--pfa-navy);
  background: var(--pfa-navy);
  color: var(--pfa-cream);
}
.variant-chip-out { opacity: 0.4; text-decoration: line-through; }
.variant-chip-out.active { opacity: 0.7; }

/* ---- Cart sidebar -------------------------------------------------------- */

.cart-shell {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.cart-header {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--pfa-cream-deep);
}
.cart-header h2 {
  margin: 0;
  font-size: 1.2rem;
}
.cart-header-sub {
  font-size: 0.75rem;
  color: var(--pfa-ink-soft);
  letter-spacing: 0;
}

.cart-list {
  margin: 0 0 0.4rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.cart-list:empty { margin: 0; }

.cart-list li.cart-line {
  display: block;
  padding: 0.85rem 0.95rem;
  background: var(--pfa-cream);
  border: 1px solid var(--pfa-cream-deep);
  border-radius: var(--radius);
  transition: border-color 150ms ease, background 150ms ease;
}
.cart-list li.cart-line:hover {
  background: var(--pfa-white);
  border-color: var(--pfa-stone);
}

.cart-line-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.cart-line-name {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pfa-navy);
  flex: 1;
  min-width: 0;
}
.cart-line-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--pfa-navy);
  white-space: nowrap;
  font-feature-settings: "tnum" 1;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-pill);
  background: var(--pfa-white);
  overflow: hidden;
}
.cart-qty-btn {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--pfa-navy);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}
.cart-qty-btn:hover { background: rgba(22, 50, 79, 0.08); }
.cart-qty-btn:focus-visible {
  outline: 2px solid var(--pfa-gold);
  outline-offset: -2px;
}
.cart-qty-display {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 30px;
  padding: 0 0.35rem;
  border-left: 1px solid var(--pfa-stone);
  border-right: 1px solid var(--pfa-stone);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pfa-navy);
  font-feature-settings: "tnum" 1;
}

.cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--pfa-stone);
  border-radius: 50%;
  background: var(--pfa-white);
  color: var(--pfa-ink-soft);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.cart-remove:hover {
  background: rgba(176, 68, 52, 0.1);
  border-color: rgba(176, 68, 52, 0.4);
  color: var(--pfa-danger);
}

/* Empty cart state */
.cart-empty {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
  color: var(--pfa-ink-soft);
}
.cart-shell.cart-shell-empty .cart-empty { display: block; }
.cart-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: var(--pfa-gold-soft);
  color: var(--pfa-navy);
}
.cart-empty-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pfa-navy);
}
.cart-empty-sub {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 32ch;
  margin-inline: auto;
}

.cart-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--pfa-cream-deep);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pfa-navy);
  font-feature-settings: "tnum" 1;
}

.cart-checkout {
  margin-top: 0.9rem;
  width: 100%;
  font-size: 0.95rem;
}
.cart-checkout[disabled],
.cart-checkout:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.cart-checkout[disabled]:hover,
.cart-checkout:disabled:hover {
  background: var(--pfa-gold);
  transform: none;
  box-shadow: none;
}

.cart-secure-note {
  margin: 0.7rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--pfa-ink-soft);
}
.cart-secure-note svg { color: var(--pfa-green); flex-shrink: 0; }

.cart-notice {
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
  color: var(--pfa-ink-soft);
  min-height: 1.1em;
  text-align: center;
}

/* ---- "Where your purchase goes" section --------------------------------- */

.store-impact-section {
  margin-top: clamp(2.5rem, 6vw, 5rem);
}

.store-impact-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 860px) {
  .store-impact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.store-impact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}
.store-impact-copy p {
  color: var(--pfa-ink-soft);
  max-width: 52ch;
}

.store-impact-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.store-impact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.store-impact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.3rem;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.store-impact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #d6cdb8;
}

.store-impact-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-feature-settings: "tnum" 1;
  color: var(--pfa-gold-deep);
  line-height: 1;
  padding-top: 0.18rem;
  letter-spacing: -0.02em;
}

.store-impact-item strong {
  display: block;
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pfa-navy);
}
.store-impact-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--pfa-ink-soft);
  line-height: 1.55;
}

/* Mobile cart bar */
.mobile-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--pfa-stone);
  box-shadow: 0 -6px 24px -8px rgba(22, 50, 79, 0.15);
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-cart-bar.visible { transform: translateY(0); }

.mcb-summary { display: flex; flex-direction: column; gap: 0.1rem; }
.mcb-count {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--pfa-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mcb-total {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--pfa-navy);
}

.mcb-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border: none;
  border-radius: var(--radius-pill);
  background: var(--pfa-gold);
  color: var(--pfa-navy-deep);
  cursor: pointer;
  transition: background 200ms ease;
  white-space: nowrap;
}
.mcb-btn:hover { background: var(--pfa-gold-deep); }

@media (min-width: 860px) { .mobile-cart-bar { display: none !important; } }

/* ---------- Donate page ---------- */

.donate-hero {
  background: linear-gradient(180deg, var(--pfa-cream) 0%, var(--pfa-cream) 70%, var(--pfa-white) 100%);
}
.donate-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 18ch;
}

.donate-section {
  padding-top: 0;
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  background: var(--pfa-white);
}

.donate-flow {
  max-width: 760px;
  margin: 0 auto;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}

.donate-flow h2 {
  text-align: center;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  margin-bottom: 1.6rem;
  color: var(--pfa-navy);
}

.donation-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .donation-grid { grid-template-columns: repeat(5, 1fr); }
}

.donation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.15rem 0.85rem;
  min-height: 48px;
  background: var(--pfa-white);
  border: 1.5px solid var(--pfa-stone);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  font-family: var(--font-sans);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease, background 200ms ease;
}
.donation-card:hover {
  border-color: var(--pfa-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.donation-card.active {
  border-color: var(--pfa-navy);
  background: var(--pfa-navy-soft);
  box-shadow: 0 0 0 3px var(--pfa-navy-soft), var(--shadow);
}

.donation-amount {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--pfa-navy);
  letter-spacing: -0.02em;
}
.donation-card.active .donation-amount { color: var(--pfa-navy-deep); }

.donation-impact {
  font-size: 0.82rem;
  color: var(--pfa-ink-soft);
  line-height: 1.4;
}

.custom-amount-row { margin-bottom: 1.5rem; }
.custom-amount-row label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: var(--pfa-navy);
}

.custom-amount-input {
  display: flex;
  align-items: center;
  background: var(--pfa-white);
  border: 1.5px solid var(--pfa-stone);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.custom-amount-input:focus-within {
  border-color: var(--pfa-navy);
  box-shadow: 0 0 0 3px var(--pfa-navy-soft);
}

.currency-prefix {
  padding: 0.85rem 0.25rem 0.85rem 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--pfa-navy);
}

.custom-amount-input input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.85rem 1rem 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--pfa-navy);
  outline: none;
  -moz-appearance: textfield;
}
.custom-amount-input input::-webkit-outer-spin-button,
.custom-amount-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.donate-note-row { margin-bottom: 1.5rem; }
.donate-note-row label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: var(--pfa-navy);
}
.label-optional {
  color: var(--pfa-ink-mute);
  font-weight: 400;
  font-size: 0.88rem;
}
.donate-note-row input {
  background: var(--pfa-white);
  border: 1.5px solid var(--pfa-stone);
}

.donate-cta {
  width: 100%;
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--pfa-navy-deep);
  background: var(--pfa-gold);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.donate-cta:hover {
  background: var(--pfa-gold-deep);
  color: var(--pfa-navy-deep);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.donate-trust {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--pfa-stone);
  text-align: center;
}
.donate-trust p {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  color: var(--pfa-ink-soft);
}

.donate-closing {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: var(--pfa-cream);
}
.donate-closing h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--pfa-navy);
}

.impact-row {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

/* ---------- Forms ---------- */

form {
  display: grid;
  gap: 0.95rem;
}

label {
  display: grid;
  gap: 0.32rem;
  font-weight: 600;
  color: var(--pfa-navy);
  font-size: 0.95rem;
}

input, textarea, select {
  width: 100%;
  border-radius: var(--radius);
  border: 1.5px solid var(--pfa-stone);
  background: var(--pfa-white);
  color: var(--pfa-ink);
  padding: 0.78rem 0.95rem;
  font: inherit;
  font-size: 1rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
input::placeholder, textarea::placeholder { color: var(--pfa-ink-mute); }

input:focus, textarea:focus, select:focus {
  border-color: var(--pfa-navy);
  box-shadow: 0 0 0 3px var(--pfa-navy-soft);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.notice {
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--pfa-stone);
  border-left: 4px solid var(--pfa-gold);
  background: var(--pfa-cream);
  color: var(--pfa-ink);
  font-size: 0.95rem;
}
.notice.success { border-left-color: var(--pfa-green); }
.notice.error { border-left-color: var(--pfa-danger); }

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.stats .stat:nth-child(2) { --reveal-delay: 80ms; }
.stats .stat:nth-child(3) { --reveal-delay: 160ms; }
.stats .stat:nth-child(4) { --reveal-delay: 240ms; }

.cards .card:nth-child(2) { --reveal-delay: 100ms; }
.cards .card:nth-child(3) { --reveal-delay: 200ms; }

/* ---------- Events page ---------- */

.event-recap {
  display: grid;
  gap: 2rem;
  align-items: start;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.event-recap-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.event-recap-details h3 {
  margin: 0 0 0.6rem;
  font-size: 1.45rem;
  color: var(--pfa-navy);
}

.event-recap-details h4 {
  margin: 1.4rem 0 0.5rem;
  color: var(--pfa-green);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
}

.event-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--pfa-ink);
}

.event-recap-details ul:not(.event-details-list) {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--pfa-ink);
}
.event-recap-details ul:not(.event-details-list) li { margin-bottom: 0.3rem; }

.sponsor-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tier-badge {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--pfa-gold-soft);
  border: 1px solid rgba(212, 164, 55, 0.45);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--pfa-navy);
}

.coming-soon-section { padding: clamp(3rem, 5vw, 4rem) 0; background: var(--pfa-cream); }

.coming-soon-card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--pfa-stone);
  background: var(--pfa-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}
.coming-soon-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--pfa-navy);
  margin-bottom: 0.6rem;
}
.coming-soon-card p {
  font-size: 1.05rem;
  color: var(--pfa-ink-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 860px) {
  .event-recap { grid-template-columns: 0.45fr 0.55fr; }
}

/* ---------- Events page: Upcoming event hero ---------- */

.upcoming-event-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

/* "Save the date" placeholder card (used while next year's flyer is pending) */
.save-the-date {
  position: relative;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212, 164, 55, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(58, 124, 80, 0.12) 0%, transparent 55%),
    var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}

.save-the-date::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pfa-gold) 0%, var(--pfa-gold-deep) 100%);
}

.save-the-date-info .event-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pfa-green);
  background: rgba(58, 124, 80, 0.08);
  border: 1px solid rgba(58, 124, 80, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.save-the-date h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: var(--pfa-navy);
  line-height: 1.15;
}

.save-the-date .event-tagline {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--pfa-ink-soft);
}

.save-the-date-blurb {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--pfa-ink);
  line-height: 1.65;
  max-width: 60ch;
}

.upcoming-event {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: center;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.upcoming-event::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pfa-gold) 0%, var(--pfa-gold-deep) 100%);
}

.upcoming-event-flyer {
  display: flex;
  justify-content: center;
}

.upcoming-event-flyer img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.upcoming-event-info .event-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pfa-green);
  background: rgba(58, 124, 80, 0.08);
  border: 1px solid rgba(58, 124, 80, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.upcoming-event-info h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: var(--pfa-navy);
  line-height: 1.15;
}

.upcoming-event-info .event-tagline {
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--pfa-ink-soft);
}

.upcoming-event-info .event-details-list {
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 860px) {
  .upcoming-event {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 2.5rem;
    padding: 2.25rem;
  }
  .upcoming-event-flyer img { max-width: 100%; }
}

/* ---------- Pebble Beach winner highlight ---------- */

.winner-highlight {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.winner-card {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
  background: linear-gradient(135deg, var(--pfa-gold-soft) 0%, var(--pfa-cream) 70%);
  border: 1px solid rgba(212, 164, 55, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.winner-card-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pfa-navy);
  color: var(--pfa-gold);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.winner-card-mark svg {
  width: 28px;
  height: 28px;
}

.winner-card-content {
  min-width: 0;
}

.winner-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pfa-navy);
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

.winner-title {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
  color: var(--pfa-navy);
}

.winner-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--pfa-navy);
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.winner-blurb {
  margin: 0;
  font-size: 0.95rem;
  color: var(--pfa-ink);
  line-height: 1.55;
}

@media (max-width: 559px) {
  .winner-card { grid-template-columns: 1fr; text-align: left; }
  .winner-card-mark { width: 48px; height: 48px; }
}

/* ---------- Tickets section ---------- */

.tickets-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--pfa-cream);
  border-top: 1px solid var(--pfa-stone);
  border-bottom: 1px solid var(--pfa-stone);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.tickets-split { gap: 1.75rem; }

/* "Tickets coming soon" placeholder shown while ticketsLive is false. */
.tickets-pending {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tickets-pending::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pfa-gold) 0%, var(--pfa-gold-deep) 100%);
}

.tickets-pending .event-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pfa-green);
  background: rgba(58, 124, 80, 0.08);
  border: 1px solid rgba(58, 124, 80, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.tickets-pending h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--pfa-navy);
  line-height: 1.2;
}

.tickets-pending p {
  margin: 0 auto 1.5rem;
  max-width: 56ch;
  color: var(--pfa-ink);
  line-height: 1.65;
  font-size: 1rem;
}

.tickets-pending .event-actions { justify-content: center; }
[hidden] { display: none !important; }

.ticket-grid { display: grid; gap: 0.5rem; }

.ticket-category-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pfa-navy);
  margin: 1.5rem 0 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--pfa-stone);
}
.ticket-category-heading:first-child { margin-top: 0; }

.ticket-cart {
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
}

.ticket-cart-notice {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  min-height: 1.1em;
}
.ticket-cart-notice[data-tone="warn"] { color: var(--pfa-danger); }
.ticket-cart-notice[data-tone="ok"]   { color: var(--pfa-green); }
.ticket-cart-notice[data-tone="info"] { color: var(--pfa-ink-soft); }

/* ---------- Cart line items with quantity + attendee names (events page) ----
   Scoped under `.ticket-cart` so the events page keeps its lightweight,
   density-first line layout — the store page deliberately uses a richer
   card-style line treatment defined in the Store section above. ---------- */

.ticket-cart .cart-list li.cart-line {
  display: block;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  padding: 0 0 0.85rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--pfa-cream-deep);
  border-radius: 0;
}
.ticket-cart .cart-list li.cart-line:last-child { border-bottom: 0; }
.ticket-cart .cart-list li.cart-line:hover {
  background: transparent;
  border-color: var(--pfa-cream-deep);
}
.ticket-cart .cart-line-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.ticket-cart .cart-line-name { font-weight: 600; color: var(--pfa-ink); flex: 1; min-width: 0; word-break: break-word; font-family: var(--font-sans); font-size: 1rem; }
.ticket-cart .cart-line-price {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--pfa-ink);
}

.ticket-cart .cart-qty {
  display: inline-flex;
  align-items: center;
  margin-top: 0.55rem;
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-pill);
  background: var(--pfa-cream);
  overflow: hidden;
  width: fit-content;
}

.ticket-cart .cart-qty-btn {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--pfa-navy);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}
.ticket-cart .cart-qty-btn:hover { background: rgba(22, 50, 79, 0.08); }
.ticket-cart .cart-qty-btn:focus-visible { outline: 2px solid var(--pfa-gold); outline-offset: -2px; }

.cart-qty-input {
  width: 36px;
  height: 30px;
  border: 0;
  border-left: 1px solid var(--pfa-stone);
  border-right: 1px solid var(--pfa-stone);
  background: var(--pfa-white);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pfa-ink);
  -moz-appearance: textfield;
  appearance: textfield;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ---------- Attendee names (per-package) ---------- */

.attendee-block {
  margin-top: 0.65rem;
  border: 1px dashed rgba(22, 50, 79, 0.25);
  border-radius: var(--radius);
  padding: 0.55rem 0.75rem;
  background: rgba(212, 164, 55, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.attendee-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pfa-navy);
  cursor: pointer;
  list-style: none;
  padding: 0.15rem 0;
}
.attendee-summary::-webkit-details-marker { display: none; }
.attendee-summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 0.4rem;
  transition: transform 200ms ease;
  color: var(--pfa-gold-deep);
}
details[open] > .attendee-summary::before { transform: rotate(90deg); }

.attendee-count {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--pfa-ink-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.attendee-fields {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.attendee-field { display: grid; gap: 0.2rem; }

.attendee-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pfa-ink-soft);
  letter-spacing: 0.04em;
}

.attendee-input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--pfa-ink);
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-sm, 8px);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.attendee-input:focus {
  outline: none;
  border-color: var(--pfa-gold);
  box-shadow: 0 0 0 3px rgba(212, 164, 55, 0.25);
}
.attendee-input:placeholder-shown { color: var(--pfa-ink); }

/* ---------- Sponsorship tiers ---------- */

.sponsorship-section {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: var(--pfa-white);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.sponsor-tier-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.sponsor-tier-card {
  display: flex;
  flex-direction: column;
  background: var(--pfa-cream);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  position: relative;
}

.sponsor-tier-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 164, 55, 0.6);
}

.sponsor-tier--top {
  background: linear-gradient(155deg, var(--pfa-gold-soft) 0%, var(--pfa-cream) 60%);
  border-color: rgba(212, 164, 55, 0.55);
}

.sponsor-tier--top::after {
  content: "Most visibility";
  position: absolute;
  top: -10px;
  right: 1.2rem;
  background: var(--pfa-navy);
  color: var(--pfa-gold);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.sponsor-tier--inkind {
  background: var(--pfa-cream);
  border-style: dashed;
}

.sponsor-tier-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pfa-green);
  background: rgba(58, 124, 80, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.sponsor-tier--top .sponsor-tier-badge {
  color: var(--pfa-navy);
  background: rgba(22, 50, 79, 0.12);
}

.sponsor-tier-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.5vw, 1.95rem);
  color: var(--pfa-navy);
  margin: 0.7rem 0 0.1rem;
  line-height: 1.05;
}

.sponsor-tier-meta {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--pfa-ink-soft);
}

.sponsor-tier-perks {
  margin: 0.7rem 0 1.2rem;
  padding-left: 1.15rem;
  color: var(--pfa-ink);
  font-size: 0.92rem;
  line-height: 1.55;
}
.sponsor-tier-perks li { margin-bottom: 0.3rem; }

.sponsor-tier-card .btn { margin-top: auto; align-self: flex-start; }

.sponsor-tier-footnote {
  margin: 1.75rem auto 0;
  max-width: 680px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--pfa-ink-soft);
}
.sponsor-tier-footnote a { font-weight: 600; }

/* ---------- Past event recap ---------- */

.past-event-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--pfa-cream);
}

/* Most recent past event (last year): full emphasis. */
.past-event-section--recent .section-head h2 {
  color: var(--pfa-navy);
}

.past-event-section--recent .event-recap {
  background: var(--pfa-white);
}

/* The recent-recap winner card sits below the recap; keep spacing tight. */
.past-event-section--recent .winner-highlight { margin-top: 1.5rem; }

/* Older past events (more than one year ago): muted, smaller header. */
.past-event-section--older {
  padding-top: clamp(1.75rem, 3vw, 2.75rem);
  background: transparent;
  border-top: 1px solid var(--pfa-stone);
}

.past-event-section--older .section-head h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--pfa-ink-soft);
}

.past-event-section--older .event-recap {
  background: var(--pfa-white);
  opacity: 0.96;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--pfa-navy);
  color: rgba(246, 241, 230, 0.8);
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.75rem;
  font-size: 0.95rem;
  border-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2.25rem;
}

.footer-col h3 {
  color: var(--pfa-cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  text-transform: none;
  letter-spacing: -0.01em;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--pfa-cream);
}

.footer-brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--pfa-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer-brand-mark > svg,
.footer-brand-mark > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.footer-col p {
  margin: 0 0 0.45rem;
  line-height: 1.65;
  color: rgba(246, 241, 230, 0.78);
}

/* ---------- Social icon row (footer + contact page) ---------- */

.footer-social {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(246, 241, 230, 0.08);
  border: 1px solid rgba(246, 241, 230, 0.18);
  color: var(--pfa-cream);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.footer-social-link svg { width: 18px; height: 18px; display: block; }
.footer-social-link:hover {
  background: var(--pfa-gold);
  border-color: var(--pfa-gold);
  color: var(--pfa-navy-deep);
  transform: translateY(-1px);
}
.footer-social-link:focus-visible {
  outline: 2px solid var(--pfa-gold);
  outline-offset: 2px;
}

/* Contact-page variant: larger pills with platform name. */
.contact-socials {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--pfa-stone);
}
.contact-socials-label {
  margin: 0 0 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pfa-green);
}
.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--pfa-stone);
  background: var(--pfa-white);
  color: var(--pfa-navy);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.social-link svg { width: 20px; height: 20px; flex: 0 0 auto; }
.social-link:hover {
  border-color: var(--pfa-navy);
  background: var(--pfa-navy);
  color: var(--pfa-cream);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(22, 50, 79, 0.4);
}
.social-link:focus-visible {
  outline: 2px solid var(--pfa-gold);
  outline-offset: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(246, 241, 230, 0.78);
  text-decoration: none;
  transition: color 200ms ease;
  font-weight: 500;
}
.footer-links a:hover { color: var(--pfa-gold); }

.footer-location { margin-top: 0.55rem !important; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 241, 230, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(246, 241, 230, 0.55);
}

.footer-credit { font-size: 0.78rem; }
.footer-credit a {
  color: rgba(246, 241, 230, 0.65);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-credit a:hover { color: var(--pfa-gold); }

.site-footer a {
  color: var(--pfa-gold);
  text-decoration: none;
}
.site-footer a:hover { color: var(--pfa-cream); }

/* ---------- Back-to-top ---------- */

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 1px solid var(--pfa-stone);
  border-radius: 50%;
  background: var(--pfa-white);
  color: var(--pfa-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 250ms, transform 250ms, background 200ms, color 200ms;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--pfa-navy);
  color: var(--pfa-cream);
}

/* ---------- Mobile nav toggle ---------- */

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pfa-navy);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(246, 241, 230, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 0.75rem 1rem 1.25rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--pfa-stone);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    font-size: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .site-nav a[href="donate.html"] {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }
}

/* ---------- Misc utility ---------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================================================
   Breadcrumbs (sitewide pattern; pairs with BreadcrumbList JSON-LD)
   ======================================================================== */

.breadcrumbs {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--pfa-ink-soft);
  padding: 0.85rem 0 0;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  align-items: center;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.55rem; }
.breadcrumbs li + li::before {
  content: "/";
  color: var(--pfa-ink-mute);
  font-weight: 400;
}
.breadcrumbs a {
  color: var(--pfa-ink-soft);
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: color 180ms ease, border-color 180ms ease;
}
.breadcrumbs a:hover { color: var(--pfa-navy); border-bottom-color: var(--pfa-gold); }
.breadcrumbs [aria-current="page"] { color: var(--pfa-navy); font-weight: 600; }

/* ========================================================================
   About page — "Michigan Field" identity, mission-led
   ======================================================================== */

/* Legacy cream about-hero kept for backwards-compat where it's still used. */
.about-hero {
  background: linear-gradient(180deg, var(--pfa-cream) 0%, var(--pfa-cream) 60%, var(--pfa-white) 100%);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.about-hero h1 {
  max-width: 22ch;
  font-size: clamp(2.4rem, 5.4vw, 3.8rem);
  letter-spacing: -0.02em;
}
.about-hero h1 em { font-style: italic; color: var(--pfa-green); font-weight: 500; }
.about-hero .lede {
  max-width: 60ch;
  margin-top: 0.4rem;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--pfa-ink-soft);
  line-height: 1.65;
}

/* Photo hero variant for /about — shows the Future Hopes sports-complex render. */
.about-hero-photo .hero-photo {
  object-position: center 58%;
}
.about-hero-photo .hero-content { max-width: 680px; }
.about-hero-photo h1 {
  max-width: 24ch;
}
.about-hero-photo h1 em {
  color: var(--pfa-gold);
  font-style: italic;
  font-weight: 500;
}

/* Desktop: caption sits absolute over the image, bottom-right. */
.hero-photo-credit {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(0.85rem, 2vw, 1.4rem);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem 0.35rem 0.55rem;
  background: rgba(15, 36, 59, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(246, 241, 230, 0.18);
  border-radius: 999px;
  color: rgba(246, 241, 230, 0.92);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.hero-photo-credit-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pfa-gold);
  box-shadow: 0 0 0 3px rgba(212, 164, 55, 0.18);
  flex: 0 0 auto;
}

/* MOBILE: stop using the photo as a full-bleed background.
   Stack content top-to-bottom, frame the image as a contained figure,
   move the credit caption to flow naturally below the image. */
@media (max-width: 720px) {
  .about-hero-photo {
    /* override .hero--photo defaults */
    display: flex;
    flex-direction: column;
    min-height: 0;
    align-items: stretch;
    overflow: visible;
    background: var(--pfa-navy-deep);
    padding: clamp(2rem, 7vw, 2.75rem) 0 clamp(1.75rem, 5vw, 2.25rem);
  }
  .about-hero-photo .container {
    order: 1;
    /* container side padding inherits from base .container rule */
    padding-top: 0;
    padding-bottom: 0;
    position: static;
  }
  .about-hero-photo .hero-overlay {
    display: none;
  }
  .about-hero-photo .hero-content { max-width: 100%; }
  .about-hero-photo h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    text-shadow: none;
  }
  .about-hero-photo p {
    text-shadow: none;
  }
  .about-hero-photo .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }
  .about-hero-photo .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .about-hero-photo .hero-photo {
    order: 2;
    position: static;
    inset: auto;
    width: calc(100% - 2 * max(1.5rem, env(safe-area-inset-left, 1.5rem)));
    height: auto;
    max-height: 240px;
    margin: 1.4rem auto 0;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(246, 241, 230, 0.18);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  }
  .about-hero-photo .hero-photo-credit {
    order: 3;
    position: static;
    align-self: center;
    margin: 0.7rem auto 0;
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    color: rgba(246, 241, 230, 0.65);
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.35;
  }
  .about-hero-photo .hero-photo-credit-mark { display: none; }
}

/* Section: Our Story — split layout with founder photo placeholder */
.story-grid {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: center;
}
@media (min-width: 860px) {
  .story-grid { grid-template-columns: 0.55fr 0.45fr; }
}
.story-prose p { font-size: 1.06rem; line-height: 1.75; max-width: 60ch; }
.story-prose .meta { font-size: 0.95rem; }

/* Photo placeholder — used when imagery is pending */
.photo-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(22,50,79,0.04) 14px 28px),
    var(--pfa-cream-deep);
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2rem);
  color: var(--pfa-ink-soft);
  min-height: 280px;
  font-family: var(--font-sans);
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--pfa-gold-deep);
  border-left: 2px solid var(--pfa-gold-deep);
  border-top-left-radius: 4px;
}
.photo-placeholder::after {
  content: "";
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid var(--pfa-gold-deep);
  border-right: 2px solid var(--pfa-gold-deep);
  border-bottom-right-radius: 4px;
}
.photo-placeholder .ph-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pfa-gold-deep);
  display: block;
  margin-bottom: 0.5rem;
}
.photo-placeholder .ph-text {
  font-size: 0.96rem;
  color: var(--pfa-ink-soft);
  line-height: 1.5;
  max-width: 28ch;
}
.photo-placeholder.ph-tall { min-height: 360px; }

/* Three pillar cards */
.pillars {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.pillar {
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #d6cdb8;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--pfa-gold-soft);
  border: 1px solid rgba(212, 164, 55, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  color: var(--pfa-navy);
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--pfa-navy);
}
.pillar p {
  margin: 0;
  color: var(--pfa-ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Who We Serve — narrow editorial block */
.serve-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.serve-block p { font-size: 1.08rem; line-height: 1.72; color: var(--pfa-ink-soft); }
.serve-block .lang-note {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 1.1rem;
  background: var(--pfa-cream);
  border: 1px solid var(--pfa-stone);
  border-left: 3px solid var(--pfa-green);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--pfa-ink-soft);
  text-align: left;
  line-height: 1.55;
}

/* Impact stats — about page variant on cream band */
.impact-tiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.impact-tile {
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 2rem) 1.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.impact-tile::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--pfa-gold);
}
.impact-tile strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pfa-navy);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.impact-tile span {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
  color: var(--pfa-ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Trust strip */
.trust-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.trust-item {
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.trust-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pfa-gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pfa-navy);
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-item h4 {
  margin: 0 0 0.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pfa-green);
}
.trust-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--pfa-ink);
  line-height: 1.5;
}
.trust-item p .pending {
  color: var(--pfa-ink-mute);
  font-style: italic;
}

/* People grid */
.people-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.person-card {
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.person-photo {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(22,50,79,0.04) 14px 28px),
    var(--pfa-cream-deep);
  border-bottom: 1px solid var(--pfa-stone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pfa-gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}
.person-body { padding: 1.1rem 1.2rem 1.3rem; }
.person-body h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--pfa-navy);
}
.person-role {
  margin: 0 0 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pfa-green);
}
.person-bio {
  margin: 0;
  font-size: 0.94rem;
  color: var(--pfa-ink-soft);
  line-height: 1.55;
}

/* CTA stack — multi-CTA close */
.cta-stack {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.cta-card {
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #d6cdb8;
}
.cta-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--pfa-navy);
}
.cta-card p { margin: 0 0 1rem; color: var(--pfa-ink-soft); font-size: 0.95rem; line-height: 1.55; }
.cta-card .btn { margin-top: auto; align-self: flex-start; }

/* ========================================================================
   Contact page — router cards, smarter form, FAQ deflector
   ======================================================================== */

.contact-hero {
  background: linear-gradient(180deg, var(--pfa-cream) 0%, var(--pfa-cream) 60%, var(--pfa-white) 100%);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.contact-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}
.contact-hero .lede {
  max-width: 56ch;
  margin-top: 0.4rem;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--pfa-ink-soft);
  line-height: 1.65;
}
.response-promise {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  padding: 0.45rem 0.95rem;
  background: rgba(63, 125, 68, 0.08);
  border: 1px solid rgba(63, 125, 68, 0.28);
  border-radius: var(--radius-pill);
  color: var(--pfa-green-deep);
  font-size: 0.88rem;
  font-weight: 600;
}
.response-promise svg { width: 16px; height: 16px; }

/* Routing cards: 6-card "I want to..." grid */
.router-cards {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
@media (min-width: 1000px) {
  .router-cards { grid-template-columns: repeat(3, 1fr); }
}
.router-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
  background: var(--pfa-white);
  border: 1.5px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.55rem;
  text-decoration: none;
  color: var(--pfa-ink);
  min-height: 168px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  cursor: pointer;
}
.router-card:hover,
.router-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--pfa-navy);
  box-shadow: var(--shadow);
  background: var(--pfa-white);
  outline: none;
}
.router-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(212, 164, 55, 0.45), var(--shadow);
}
.router-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pfa-gold-soft);
  border: 1px solid rgba(212, 164, 55, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pfa-navy);
}
.router-card-icon svg { width: 20px; height: 20px; }
.router-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--pfa-navy);
}
.router-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--pfa-ink-soft);
  line-height: 1.5;
}
.router-card .router-card-cta {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pfa-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.router-card .router-card-cta::after {
  content: "→";
  transition: transform 200ms ease;
}
.router-card:hover .router-card-cta::after { transform: translateX(3px); }
.router-card.is-urgent {
  border-color: rgba(176, 68, 52, 0.35);
  background: rgba(176, 68, 52, 0.04);
}
.router-card.is-urgent .router-card-icon {
  background: rgba(176, 68, 52, 0.1);
  border-color: rgba(176, 68, 52, 0.3);
  color: var(--pfa-danger);
}

/* Contact-method strip (above the form) */
.contact-methods {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 0 0 1.5rem;
}
.contact-method {
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
}
.contact-method > div {
  flex: 1 1 auto;
  min-width: 0;
}
.contact-method-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pfa-gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pfa-navy);
}
.contact-method-icon svg { width: 18px; height: 18px; }
.contact-method h4 {
  margin: 0 0 0.15rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pfa-green);
}
.contact-method p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--pfa-ink);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-method a {
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* The form */
.contact-form-wrapper {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 980px) {
  .contact-form-wrapper { grid-template-columns: 0.62fr 0.38fr; }
}

.contact-form {
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.contact-form h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.4rem, 2.6vw, 1.7rem);
}
.contact-form .form-intro {
  margin: 0 0 1.4rem;
  color: var(--pfa-ink-soft);
  font-size: 0.98rem;
}
.contact-form .form-row {
  display: grid;
  gap: 0.32rem;
}
.contact-form label {
  display: block;
}
.contact-form label .label-required {
  color: var(--pfa-danger);
  margin-left: 0.2rem;
  font-weight: 700;
  display: inline;
}
.contact-form label .field-help {
  display: inline;
}
.contact-form .field-help {
  font-size: 0.85rem;
  color: var(--pfa-ink-mute);
  font-weight: 400;
  line-height: 1.4;
}
.contact-form .field-row--conditional[hidden] { display: none; }
.contact-form .submit-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.4rem;
}
.contact-form .submit-promise {
  font-size: 0.9rem;
  color: var(--pfa-ink-soft);
  margin: 0;
}
.contact-form .submit-promise strong { color: var(--pfa-navy); }
.contact-form button[type="submit"] {
  align-self: flex-start;
  min-width: 200px;
}
.contact-form .privacy-note {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--pfa-stone);
  font-size: 0.85rem;
  color: var(--pfa-ink-soft);
  line-height: 1.55;
}

/* Family-support callout (only shown when Family Support inquiry chosen) */
.crisis-callout {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(176, 68, 52, 0.06);
  border: 1px solid rgba(176, 68, 52, 0.28);
  border-left: 3px solid var(--pfa-danger);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--pfa-ink);
  line-height: 1.55;
}
.crisis-callout[hidden] { display: none; }
.crisis-callout strong { color: var(--pfa-danger); }
.crisis-callout a { font-weight: 700; }

/* Side-rail (alternate contact + social) */
.contact-rail {
  background: var(--pfa-cream);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.contact-rail h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--pfa-navy);
}
.contact-rail address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--pfa-ink);
  line-height: 1.5;
}
.contact-rail .rail-block { padding-bottom: 1.1rem; border-bottom: 1px solid var(--pfa-stone); }
.contact-rail .rail-block:last-child { padding-bottom: 0; border-bottom: none; }
.contact-rail .label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pfa-green);
  margin-bottom: 0.3rem;
}

/* FAQ deflector */
.faq-list {
  display: grid;
  gap: 0.55rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--pfa-navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pfa-gold-soft);
  color: var(--pfa-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}
.faq-item[open] summary::after { content: "−"; background: var(--pfa-gold); }
.faq-item summary:hover { background: rgba(22, 50, 79, 0.03); }
.faq-item .faq-answer {
  padding: 0 1.15rem 1.1rem;
  color: var(--pfa-ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq-item .faq-answer p { margin: 0 0 0.7rem; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }
.faq-item .faq-answer a { font-weight: 600; }

/* Social row (contact page footer) */
.contact-social-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.contact-social-row .social-list {
  display: inline-flex;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-social-row .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--pfa-white);
  border: 1px solid var(--pfa-stone);
  border-radius: var(--radius-pill);
  color: var(--pfa-navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.contact-social-row .social-link:hover {
  background: var(--pfa-cream);
  border-color: var(--pfa-navy);
  transform: translateY(-1px);
}
.contact-social-row .social-link svg { width: 18px; height: 18px; }
.contact-social-row .social-link span { font-family: var(--font-sans); }
@media (max-width: 480px) {
  .contact-social-row .social-list { flex-wrap: wrap; justify-content: center; }
}

/* ========================================================================
   Mobile convergence pass — Michigan Field on the phone
   ------------------------------------------------------------------------
   Goal: ship a beautiful, accessible, fast mobile experience without
   touching the brand language. Everything below is additive layered on
   top of the rest of the stylesheet so existing components keep working.
   Targets:
   - 44×44 minimum tap targets (Apple HIG / Material 48dp / WCAG 2.5.8)
   - 16px+ form font-size to prevent iOS zoom on focus
   - Safe-area insets honored for fixed bars + drawer (iOS notch/home bar)
   - dvh fallback for the 100vh mobile-chrome bug
   - prefers-reduced-motion honored everywhere
   - Reveal-on-scroll falls back gracefully when JS is disabled
   - Mobile nav drawer opaque, scroll-locking, with backdrop
   ======================================================================== */

/* ---- Defensive overflow + word-wrap on the mobile container -------------- */
@media (max-width: 720px) {
  body { overflow-x: hidden; }
  /* Long URLs / emails / unhyphenated words shouldn't push the page wider. */
  p, li, dd, td, address, .meta, .card, .card *,
  .footer-col p, .footer-col a,
  .breadcrumbs li, .breadcrumbs a,
  .contact-method, .contact-method *,
  .faq-item .faq-answer,
  .ticket-cart .cart-line-name,
  .donation-impact {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* ---- Reveal-on-scroll fallback (no JS / scripting disabled) -------------- */
@media (scripting: none) {
  .reveal { opacity: 1 !important; transform: none !important; }
}
/* Belt-and-braces: if main.js fails to attach the IntersectionObserver
   for any reason, this animation flips reveals visible after a short
   delay so nothing stays stuck off-screen on slow / flaky mobile networks. */
.reveal { animation: pfaRevealFallback 0s 4s forwards; }
.reveal.visible { animation: none; }
@keyframes pfaRevealFallback { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---- Hero photo: use small/large viewport units to avoid the 100vh bug --- */
.hero--photo {
  /* Progressive enhancement: vh first (universal), then svh fallback for
     mobile browsers that resize their chrome. svh is the smallest/quietest
     value, so the hero never gets clipped by the address bar on Mobile
     Safari / Chrome Android during scroll. */
  min-height: clamp(480px, 70vh, 720px);
  min-height: clamp(480px, 70svh, 720px);
}
@media (max-width: 720px) {
  .hero--photo {
    /* Slightly shorter hero on phones so the headline + CTAs fit
       above the fold without the user having to scroll. */
    min-height: clamp(440px, 78svh, 620px);
  }
}

/* ---- Site header: respect the iOS notch (`viewport-fit=cover`) ----------- */
.site-header {
  padding-top: env(safe-area-inset-top, 0);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  height: calc(var(--header-height) + env(safe-area-inset-top, 0));
}
.site-header .nav-shell { height: var(--header-height); }

/* ---- Site footer: respect the iOS home indicator on tall phones ---------- */
.site-footer {
  padding-bottom: calc(1.75rem + env(safe-area-inset-bottom, 0));
}

/* ---- Mobile nav drawer: opaque, scroll-locking, with backdrop ------------ */
@media (max-width: 820px) {
  /* Hamburger button stays a comfortable 44x44 tap target. */
  .nav-toggle { min-height: 44px; min-width: 44px; }

  /* Lock the body when the drawer is open (toggled by JS). The class is
     applied to <html> to avoid affecting position: fixed children. */
  html.nav-open,
  html.nav-open body {
  overflow: hidden;
    /* Preserve scroll position via JS-set `--scroll-y`. */
    position: relative;
  }

  /* Solid drawer background — no see-through over hero imagery. */
  .site-nav {
    background: var(--pfa-cream);
    box-shadow: 0 12px 32px -16px rgba(15, 36, 59, 0.35);
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
    /* Anchor below the header (which now includes safe-area-inset-top). */
    top: calc(var(--header-height) + env(safe-area-inset-top, 0));
  }
  /* Larger, more thumb-friendly nav rows in the drawer. */
  .site-nav a {
    min-height: 48px;
    padding: 0.95rem 1rem;
    font-size: 1.02rem;
    font-weight: 500;
  }
  .site-nav a.active { background: rgba(22, 50, 79, 0.06); }
  /* Existing rule already styles the gold Donate pill in the drawer. Bump
     it slightly larger for thumb-zone reachability. */
  .site-nav a[href="donate.html"] {
    min-height: 52px;
    font-size: 1.05rem;
    margin-top: 0.6rem;
  }

  /* Backdrop scrim that dims the page behind the drawer. The pseudo-element
     lives inside the header's stacking context (which sits at z-index: 50
     above all page content), and is pinned at z-index: -1 so it renders
     UNDER the drawer (.site-nav) but still ABOVE anything outside the
     header — which is exactly what we want for a scrim. */
  .site-header::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(15, 36, 59, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }
  .site-header.nav-open-active::after {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---- Skip link: respect safe-area + bigger tap target on mobile ---------- */
.skip-link {
  left: calc(1rem + env(safe-area-inset-left, 0));
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ---- Buttons: ensure no button collapses below the 44px target ----------- */
button, .btn { min-height: 44px; }

/* ---- Form inputs: prevent iOS auto-zoom + give comfortable mobile size --- */
@media (max-width: 720px) {
  /* iOS Safari zooms the viewport whenever an input < 16px font-size gets
     focused. Lock all inputs to >=16px on small screens. */
  input, textarea, select,
  .attendee-input,
  .cart-qty-input,
  .donate-note-row input,
  .custom-amount-input input {
    font-size: 16px;
  }
  /* Make every form control comfortably tappable on phones. The
     .cart-qty-input is a tiny stepper widget intentionally kept compact
     so it lines up with its 30px +/- buttons; exempt it from the global
     48px minimum to preserve that layout. */
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not(.cart-qty-input):not(.honeypot-field),
  textarea, select, .attendee-input {
    min-height: 48px;
    padding: 0.85rem 1rem;
  }
  textarea { min-height: 140px; }

  /* Donate page: the contact form submit button gets full-width treatment
     so it's a clear, no-ambiguity primary action on phones. */
  .contact-form button[type="submit"],
  .contact-form .btn,
  .donate-cta {
    align-self: stretch;
    width: 100%;
    min-width: 0;
  }
  .contact-form .submit-row { gap: 0.7rem; }
}

/* ---- Donate page: tile grid + custom amount + dedication on mobile ------- */
@media (max-width: 599px) {
  .donation-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .donation-card { min-height: 84px; padding: 1rem 0.7rem; }
  .donation-amount { font-size: 1.4rem; }
  .donation-impact { font-size: 0.78rem; line-height: 1.35; }
  /* The "Other" tile rounds out a 2-col grid; let it span both columns
     so it reads as a clearly distinct option, not a lonely orphan. */
  .donation-grid .donation-card[data-donation-amount="custom"] {
    grid-column: 1 / -1;
    min-height: 64px;
    flex-direction: row;
    justify-content: center;
    gap: 0.7rem;
  }
  .donation-grid .donation-card[data-donation-amount="custom"] .donation-amount {
    font-size: 1.1rem;
  }
  .custom-amount-input input,
  .currency-prefix { font-size: 1.25rem; padding-top: 0.95rem; padding-bottom: 0.95rem; }
}

/* ---- Sponsor strip: turn a 7-up grid into a swipe-snap strip on phones --- */
@media (max-width: 559px) {
  .sponsor-strip {
    grid-template-columns: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    /* Small bleed on the right edge so the user sees there's more to swipe. */
    padding: 0.25rem calc(1rem - 4px) 0.5rem 1rem;
    margin: 0 -1rem;
    gap: 0.75rem;
    /* Hide the scrollbar on iOS WebKit but keep it native on Android Firefox. */
    scrollbar-width: thin;
  }
  .sponsor-strip::-webkit-scrollbar { height: 0; }
  .sponsor-strip img {
    flex: 0 0 56vw;
    max-width: 220px;
    height: 96px;
    scroll-snap-align: start;
  }
}

/* ---- Footer: thumb-friendly tap targets + tighter mobile rhythm ---------- */
@media (max-width: 720px) {
  /* Social icons must hit the 44x44 target. */
  .footer-social-link { width: 44px; height: 44px; }
  .footer-social-link svg { width: 20px; height: 20px; }

  /* Footer link rows: each link gets a comfortable 44px hit target with
     8px of breathing room between adjacent items. */
  .footer-links { gap: 0.15rem; }
  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.35rem 0;
  }
  .footer-grid { gap: 1.85rem; }
  .footer-bottom { font-size: 0.85rem; line-height: 1.5; }
  .footer-credit { font-size: 0.78rem; }
}

/* ---- Breadcrumbs: easier to tap, no overflow on long page titles --------- */
@media (max-width: 720px) {
  .breadcrumbs { font-size: 0.88rem; padding-top: 0.65rem; }
  .breadcrumbs a, .breadcrumbs [aria-current="page"] {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.15rem 0;
  }
}

/* ---- Contact-method strip + router cards: bigger touch targets ----------- */
@media (max-width: 720px) {
  .contact-methods { gap: 0.7rem; }
  .contact-method { padding: 0.95rem 1rem; }
  .contact-method a { min-height: 32px; padding: 0.15rem 0; display: inline-flex; align-items: center; }

  .router-card { min-height: 96px; padding: 1.2rem 1.2rem 1.35rem; }
  .router-card h3 { font-size: 1.1rem; }
  .router-card p { font-size: 0.92rem; }
}

/* ---- FAQ accordion: comfortable row height on phones --------------------- */
@media (max-width: 720px) {
  .faq-item summary {
    min-height: 56px;
    padding: 0.95rem 1.1rem;
    font-size: 1rem;
  }
}

/* ---- Sponsorship tiers: clean 1-col on phones with prominent pricing ----- */
@media (max-width: 599px) {
  .sponsor-tier-grid { grid-template-columns: 1fr; gap: 1rem; }
  .sponsor-tier-card { padding: 1.4rem 1.25rem 1.55rem; }
  .sponsor-tier-price { font-size: 1.7rem; margin-top: 0.6rem; }
  .sponsor-tier-perks { font-size: 0.92rem; }
  .sponsor-tier-card .btn { width: 100%; }
}

/* ---- Past-event recap: stack flyer + details cleanly on mobile ----------- */
@media (max-width: 720px) {
  .event-recap { padding: 1.1rem 1.05rem 1.25rem; gap: 1.1rem; }
  .event-recap-media img { max-width: 320px; margin: 0 auto; }
  .past-event-section--older .section-head h2 { font-size: 1.2rem; }
}

/* ---- Cart line items (events) + cart shell on phones --------------------- */
@media (max-width: 859px) {
  /* Cart shell un-stickies on small screens — sticky carts overlap the
     mobile cart bar and waste vertical space on phones. */
  .cart-shell { position: static; }
  .cart-shell.ticket-cart { padding: 1.1rem 1.15rem; }
}

/* ---- Mobile cart bar: respect home indicator + hit-target buttons -------- */
.mobile-cart-bar {
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0));
  padding-left: calc(1rem + env(safe-area-inset-left, 0));
  padding-right: calc(1rem + env(safe-area-inset-right, 0));
}
.mcb-btn { min-height: 44px; }

/* Events tickets uses .mcb-info wrapper instead of .mcb-summary — cover
   both names so the ribbon styling is consistent on either page. */
.mobile-cart-bar .mcb-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.mobile-cart-bar .mcb-info span:first-child {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--pfa-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-cart-bar .mcb-info strong {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--pfa-navy);
}

/* ---- Back-to-top: respect the home indicator + iPhone right-safe-area ---- */
.back-to-top {
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
  right: calc(1.25rem + env(safe-area-inset-right, 0));
  width: 48px;
  height: 48px;
}
/* When the mobile cart bar is visible, push back-to-top above it so they
   don't stack on the same row. The store/events JS toggles `.visible` on
   the bar; key off that. */
.mobile-cart-bar.visible ~ .back-to-top,
body:has(.mobile-cart-bar.visible) .back-to-top {
  bottom: calc(5.25rem + env(safe-area-inset-bottom, 0));
}

/* ---- Privacy / 404 / static pages: comfortable text width on phones ----- */
@media (max-width: 720px) {
  .container--narrow .card { padding: 1.4rem 1.25rem; }
  .card h2 { font-size: 1.25rem; }
  .card h3 { font-size: 1.05rem; }
  .card ul { padding-left: 1rem; }
  .card ul li { margin-bottom: 0.45rem; line-height: 1.55; }
}

/* ---- iPhone SE (375x667) & narrow viewports: tighten section rhythm ----- */
@media (max-width: 380px) {
  /* Reduce hero side padding so the headline doesn't get pinched. */
  .hero--photo .container { padding-top: 3rem; padding-bottom: 2.25rem; }
  /* Tighter section padding on the smallest phones. */
  section { padding: clamp(2.5rem, 7vw, 4.5rem) 0; }
  /* Ensure event-actions buttons don't compress to a single line at the
     edge of the viewport. */
  .event-actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* ---- Landscape phone: keep the photo hero usable -------------------------- */
@media (max-height: 480px) and (orientation: landscape) {
  .hero--photo {
    min-height: 100svh;
  }
  .hero--photo .container { padding-top: 1rem; padding-bottom: 1rem; }
  .hero h1 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
  .hero p { font-size: 1rem; }
  .hero-actions { margin-top: 0.85rem; }
}

/* Container horizontal padding (1.5–2rem + safe-area) is defined with the
   base .container rule near the top of this file. */
