/* ===========================
   THE BRANFORD PING PONG CUP
   =========================== */

:root {
  --yale-blue: #00356B;
  --yale-blue-dark: #002449;
  --yale-blue-deep: #001a35;
  --gold: #D4B572;
  --gold-bright: #E6C989;
  --cream: #f5f0e4;
  --cream-warm: #ebe3d0;
  --parchment: #efe7d3;
  --ink: #1a1a1a;
  --ink-soft: #2b2b2b;
  --muted: #5a5a5a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'EB Garamond', 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--yale-blue-deep);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar-center { opacity: 0.85; }
@media (max-width: 720px) {
  .topbar-left, .topbar-right { display: none; }
  .topbar-inner { justify-content: center; }
}

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(ellipse at top, rgba(0, 53, 107, 0.03), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  min-height: calc(100vh - 42px);   /* full viewport minus topbar */
  min-height: calc(100dvh - 42px);  /* dynamic vh for mobile browsers */
  padding: 72px 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero::before { top: 28px; }
.hero::after { bottom: 28px; }

.hero-ornament {
  color: var(--gold);
  letter-spacing: 0.4em;
  font-size: 10px;
  margin: 10px 0 22px;
}
.hero-ornament:last-of-type { margin: 28px 0 10px; }

/* ---------- CREST / LOGO ---------- */
.crest {
  display: block;
  width: 180px;
  height: auto;
  margin: 8px auto 24px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 53, 107, 0.18));
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yale-blue);
  margin: 0 0 18px;
  font-weight: 600;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--yale-blue);
  margin: 0;
  line-height: 0.95;
  font-size: clamp(44px, 8vw, 104px);
}
.hero-title .word-the {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: 0.4em;
  letter-spacing: 0.1em;
  color: var(--yale-blue);
  opacity: 0.75;
  margin-bottom: 6px;
}
.hero-title .word-main {
  display: block;
  letter-spacing: -0.015em;
}

.hero-motto {
  font-style: italic;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 0.08em;
  margin: 18px 0 24px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
}

.hero-purse {
  margin: 0 auto 32px;
}
.purse-amount {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(48px, 10vw, 96px);
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(180, 151, 90, 0.25);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.22s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--yale-blue);
  color: var(--cream);
  border-color: var(--yale-blue);
  box-shadow: 0 4px 14px rgba(0, 53, 107, 0.25);
}
.btn-primary:hover {
  background: var(--yale-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 53, 107, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--yale-blue);
  border-color: var(--yale-blue);
}
.btn-ghost:hover {
  background: var(--yale-blue);
  color: var(--cream);
}
.btn-gold {
  background: var(--gold);
  color: var(--yale-blue-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(212, 181, 114, 0.4);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 181, 114, 0.55);
}

/* ---------- DIVIDER ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--cream);
}
.divider-line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: var(--yale-blue);
  opacity: 0.3;
}
.divider-mark {
  color: var(--yale-blue);
  font-size: 22px;
  opacity: 0.7;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 96px 32px;
}
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section-inner.center { text-align: center; }

.section-cream { background: var(--cream); }
.section-parchment {
  background: var(--parchment);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,53,107,0.025) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212,181,114,0.08) 0%, transparent 40%);
}
.section-navy {
  background: var(--yale-blue);
  background-image:
    radial-gradient(ellipse at top, rgba(212, 181, 114, 0.08), transparent 60%),
    linear-gradient(180deg, var(--yale-blue) 0%, var(--yale-blue-dark) 100%);
  color: var(--cream);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yale-blue);
  margin: 0 0 12px;
  font-weight: 600;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--yale-blue);
  margin: 0 0 48px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--cream); }

/* ---------- TWO-COL (CUP) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

.prose .lede {
  font-size: 22px;
  line-height: 1.5;
  color: var(--yale-blue);
  font-weight: 500;
  margin-top: 0;
  font-style: italic;
}
.prose p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.fact-card {
  background: var(--yale-blue);
  color: var(--cream);
  padding: 40px 36px;
  border: 1px solid var(--gold);
  position: relative;
}
.fact-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}
.fact-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
  font-weight: 600;
}
.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fact-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 181, 114, 0.3);
}
.fact-list li:last-child { border-bottom: none; }
.fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.fact-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}

/* ---------- PURSE ---------- */
.purse {
  margin: 16px auto 8px;
  padding: 28px 56px 32px;
  display: inline-block;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  position: relative;
}
.purse::before,
.purse::after {
  content: "\273A";
  color: var(--gold);
  position: absolute;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.purse::before { left: -24px; }
.purse::after { right: -24px; transform: translateY(-50%) scaleX(-1); }

.purse-amount {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  gap: 0.04em;
}
.purse-dollar {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1;
  margin-top: 0.35em;
}
.purse-number {
  font-size: clamp(96px, 15vw, 168px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.purse-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  margin: 14px 0 0;
}
.purse-flourish {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  opacity: 0.85;
  margin: 28px 0 0;
  font-size: 16px;
  letter-spacing: 0.04em;
}

/* ---------- PILLARS (ELIGIBILITY) ---------- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 820px) {
  .three-col { grid-template-columns: 1fr; gap: 40px; }
}
.pillar {
  text-align: center;
  padding: 0 8px;
}
.pillar-numeral {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 500;
}
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--yale-blue);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.pillar p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 18px;
}

/* ---------- FORMAT ---------- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--yale-blue);
  border: 1px solid var(--yale-blue);
}
@media (max-width: 720px) {
  .format-grid { grid-template-columns: 1fr; }
}
.format-item {
  background: var(--parchment);
  padding: 36px 32px;
  position: relative;
}
.format-roman {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 28px;
  opacity: 0.7;
}
.format-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--yale-blue);
  margin: 0 0 10px;
  padding-right: 60px;
}
.format-item p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 17px;
}

/* ---------- REGISTER ---------- */
.register-ornament {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}
.register-sub {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--cream);
  opacity: 0.9;
  font-size: 19px;
  line-height: 1.55;
}
.register-link-note {
  margin: 28px 0 0;
  color: var(--cream);
  opacity: 0.7;
  font-size: 15px;
  font-style: italic;
}
.plain-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-style: normal;
}
.plain-link:hover { color: var(--gold-bright); }

/* ---------- FAQ ---------- */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid rgba(0, 53, 107, 0.2);
  padding: 20px 0;
}
.faq details:first-child { border-top: 1px solid rgba(0, 53, 107, 0.2); }
.faq summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--yale-blue);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  outline: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}
.faq details p {
  color: var(--ink-soft);
  margin: 14px 0 4px;
  line-height: 1.55;
  font-size: 18px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--yale-blue-deep);
  color: var(--cream);
  padding: 64px 32px 48px;
  text-align: center;
  border-top: 1px solid var(--gold);
}
.footer-inner { max-width: 720px; margin: 0 auto; }
.footer-crest {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 16px;
}
.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 8px;
}
.footer-motto {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
}
.footer-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  margin: 0 0 8px;
}
.footer-fine {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.6;
  margin: 16px 0 0;
}

/* ---------- THE PARLOR (home page teaser) ---------- */
.parlor-lede {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
}
.parlor-lede strong {
  font-style: normal;
  color: var(--yale-blue);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.parlor-fine {
  max-width: 620px;
  margin: 28px auto 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.parlor-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--yale-blue);
  border: 1px solid var(--yale-blue);
  margin: 32px 0 40px;
  text-align: left;
}
@media (max-width: 820px) {
  .parlor-features { grid-template-columns: 1fr; }
}
.parlor-feature {
  background: var(--cream);
  padding: 36px 32px;
  position: relative;
}
.parlor-roman {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 22px;
  right: 26px;
  opacity: 0.75;
  font-style: italic;
}
.parlor-feature h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--yale-blue);
  margin: 0 0 10px;
  padding-right: 52px;
  letter-spacing: -0.005em;
}
.parlor-feature p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.parlor-cta { margin-top: 8px; }
.parlor-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-style: italic;
}
.plain-link-dark {
  color: var(--yale-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-style: normal;
}
.plain-link-dark:hover { color: var(--yale-blue-dark); }

/* ===========================
   RESPONSIVE LAYER
   Ensures every section lays out cleanly from 320px upward.
   These rules target the shared primitives (.section, .btn,
   .two-col, .three-col, headings, .parlor-*, .format-*, etc.)
   so new sections added by other contributors inherit the
   breakpoints automatically — no per-section work required as
   long as they use the existing class conventions.
   =========================== */

/* prevent any child from causing horizontal overflow on phones */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; }
body { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .section { padding: 80px 28px; }
  .hero { padding: 40px 28px 52px; }
  .two-col { gap: 48px; }
  .three-col { gap: 36px; }
  .parlor-features { margin: 28px 0 36px; }
}

/* ---------- PHONE (≤ 640px) ---------- */
@media (max-width: 640px) {
  body { font-size: 18px; }

  .topbar { font-size: 10px; letter-spacing: 0.18em; }
  .topbar-inner { padding: 9px 20px; }

  .section { padding: 64px 22px; }
  .section-title { margin: 0 0 32px; }

  .hero { padding: 24px 20px 32px; }
  .hero::before { top: 16px; }
  .hero::after { bottom: 16px; }
  .hero-ornament { letter-spacing: 0.28em; margin: 6px 0 12px; font-size: 9px; }
  .hero-ornament:last-of-type { margin: 16px 0 6px; }
  .eyebrow { letter-spacing: 0.28em; font-size: 10px; margin-bottom: 12px; }
  .section-eyebrow { letter-spacing: 0.32em; }
  .hero-title { font-size: clamp(36px, 10vw, 64px); }
  .hero-sub { font-size: 16px; margin-bottom: 18px; line-height: 1.45; max-width: 90%; }
  .hero-motto { font-size: 14px; margin: 10px 0 14px; }
  .hero-purse { margin: 0 auto 20px; }
  .purse-amount { font-size: clamp(36px, 10vw, 64px); }

  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; padding: 0 16px; }
  .hero-cta .btn { width: 100%; text-align: center; padding: 14px 20px; }

  .btn { padding: 14px 22px; font-size: 12px; letter-spacing: 0.14em; }

  .divider { padding: 36px 22px; gap: 14px; }
  .divider-line { max-width: 90px; }
  .divider-mark { font-size: 20px; }

  .two-col { gap: 36px; }
  .prose .lede { font-size: 20px; }
  .prose p { font-size: 17px; }

  .fact-card { padding: 30px 24px; }
  .fact-card-label { letter-spacing: 0.3em; margin-bottom: 18px; }
  .fact-num { font-size: 28px; }
  .fact-lbl { font-size: 10px; letter-spacing: 0.18em; }
  .fact-list li { padding: 12px 0; gap: 16px; }

  .purse { padding: 22px 36px 26px; }
  .purse::before { left: -16px; }
  .purse::after { right: -16px; }
  .purse-caption { font-size: 18px; }
  .purse-flourish { font-size: 14px; margin-top: 22px; letter-spacing: 0.02em; }

  .pillar-numeral { font-size: 42px; margin-bottom: 12px; }
  .pillar h3 { font-size: 24px; }
  .pillar p { font-size: 17px; }

  .format-item { padding: 30px 22px 28px; }
  .format-roman { font-size: 44px; top: 20px; right: 22px; }
  .format-item h4 { font-size: 22px; padding-right: 52px; }
  .format-item p { font-size: 16px; }

  .register-sub { font-size: 17px; margin-bottom: 32px; }
  .register-link-note { font-size: 13px; }
  .register-link-note .plain-link { display: inline-block; word-break: break-all; }

  .parlor-lede { font-size: 18px; margin: 0 auto 24px; }
  .parlor-feature { padding: 28px 24px; }
  .parlor-roman { font-size: 40px; top: 18px; right: 20px; }
  .parlor-feature h4 { font-size: 22px; padding-right: 48px; }
  .parlor-feature p { font-size: 16px; }
  .parlor-note { font-size: 14px; }
  .parlor-fine { font-size: 12px; margin-top: 22px; }

  .faq summary { font-size: 20px; padding-right: 32px; }
  .faq summary::after { font-size: 22px; }
  .faq details { padding: 18px 0; }
  .faq details p { font-size: 17px; }

  .footer { padding: 48px 22px 40px; }
  .footer-title { font-size: 24px; }
  .footer-motto { font-size: 14px; }
  .footer-meta { letter-spacing: 0.24em; font-size: 10px; }
}

/* ---------- SMALL PHONE (≤ 400px) ---------- */
@media (max-width: 400px) {
  .section { padding: 52px 18px; }
  .hero { padding: 18px 16px 24px; }
  .topbar-inner { padding: 8px 16px; letter-spacing: 0.14em; }
  .hero-ornament { margin: 4px 0 8px; font-size: 8px; }
  .hero-ornament:last-of-type { margin: 10px 0 4px; }
  .eyebrow { font-size: 9px; margin-bottom: 8px; letter-spacing: 0.24em; }
  .hero-title { font-size: clamp(32px, 10vw, 52px); }
  .hero-title .word-the { margin-bottom: 2px; }
  .hero-motto { font-size: 13px; margin: 8px 0 10px; }
  .hero-sub { font-size: 15px; margin-bottom: 14px; max-width: 95%; }
  .hero-purse { margin: 0 auto 16px; }
  .purse-amount { font-size: clamp(32px, 9vw, 52px); }
  .hero-cta { gap: 8px; padding: 0 12px; }
  .hero-cta .btn { padding: 12px 16px; font-size: 11px; }

  .fact-list li { flex-wrap: wrap; gap: 6px; }

  .purse { padding: 18px 22px 22px; }
  .purse::before, .purse::after { display: none; }
  .purse-caption { font-size: 16px; }

  .format-roman { font-size: 36px; top: 16px; right: 18px; }
  .format-item h4 { padding-right: 44px; font-size: 20px; }

  .parlor-roman { font-size: 34px; }
  .parlor-feature h4 { font-size: 20px; padding-right: 40px; }

  .faq summary { font-size: 18px; padding-right: 28px; }

  .footer { padding: 40px 18px 32px; }
  .footer-title { font-size: 22px; }
}

/* ---------- LANDSCAPE PHONES (short height) ---------- */
@media (max-height: 520px) and (max-width: 900px) and (orientation: landscape) {
  .hero { padding: 16px 28px 24px; }
  .hero-ornament { margin: 4px 0 8px; }
  .hero-ornament:last-of-type { margin: 8px 0 4px; }
  .hero-sub { font-size: 15px; margin-bottom: 12px; }
  .hero-motto { font-size: 13px; margin: 6px 0 10px; }
  .purse-amount { font-size: 36px; }
  .hero-purse { margin: 0 auto 12px; }
  .section { padding: 56px 28px; }
}

/* ---------- REDUCE MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
