/* ============================================================
   Do It For 19 — Year VI
   Committed dark-navy + gold. Big Shoulders Display / Jost.
   ============================================================ */

:root {
  /* Brand */
  --navy:        oklch(17% 0.040 238);
  --navy-deep:   oklch(13% 0.038 238);
  --gold:        oklch(65% 0.105 74);
  --gold-light:  oklch(72% 0.115 74);
  --bone:        oklch(94% 0.010 85);

  /* Surfaces */
  --surface:     oklch(98% 0.005 238);
  --surface-mid: oklch(95% 0.008 238);

  /* Text */
  --ink:            oklch(22% 0.035 238);
  --ink-muted:      oklch(43% 0.025 238);
  --text-on-dark:   oklch(94% 0.010 85);
  --text-muted-dark:oklch(76% 0.018 85);
  --line-dark:      oklch(30% 0.030 238);
  --line-light:     oklch(86% 0.012 238);

  /* Type scale */
  --text-hero:  clamp(3.25rem, 8vw, 5.75rem);
  --text-xl:    clamp(2rem, 4.5vw, 3.5rem);
  --text-lg:    clamp(1.5rem, 3vw, 2rem);
  --text-md:    clamp(1.125rem, 2vw, 1.375rem);
  --text-base:  1.0625rem;
  --text-sm:    0.875rem;
  --text-xs:    0.75rem;

  /* Layout */
  --maxw: 1200px;
  --pad-inline: clamp(1.25rem, 5vw, 4rem);
  --pad-block: clamp(4rem, 10vw, 8rem);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Z */
  --z-sticky: 10;
  --z-modal: 100;

  /* Fonts */
  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Jost", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 0.98; letter-spacing: -0.01em; text-wrap: balance; }
p { text-wrap: pretty; }
.num { font-family: var(--display); font-style: normal; }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: var(--z-modal);
  background: var(--gold); color: var(--navy); padding: 0.6rem 1rem;
  border-radius: 4px; font-weight: 600; transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

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

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-inline); }

/* ---------- Sections ---------- */
.section { padding-block: var(--pad-block); position: relative; }
.section--dark { background: var(--navy); color: var(--text-on-dark); }
.section--light { background: var(--surface); color: var(--ink); }
.section--mid { background: var(--surface-mid); color: var(--ink); }

.section-title { font-size: var(--text-xl); }
.section-title--sm { font-size: var(--text-lg); }
.section--dark .section-title, .hero__title { color: var(--bone); }
.section-title--ink { color: var(--ink); }
.section-title--navy { color: var(--navy); }
.num, .section-title .num { color: var(--gold); }

.section-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head--sub { margin-top: clamp(4rem, 9vw, 7rem); }

.lead { font-size: var(--text-md); line-height: 1.55; color: var(--text-muted-dark); max-width: 62ch; }
.section--dark .lead { color: var(--text-muted-dark); }
.lead--ink { color: var(--ink-muted); }
.lead--navy { color: oklch(25% 0.04 238); font-weight: 500; }
.lead--center { margin-inline: auto; }

.section--dark p:not(.lead) { color: var(--text-on-dark); }
.section--light p, .section--mid p { color: var(--ink); }

.textlink {
  color: var(--gold); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid color-mix(in oklch, var(--gold) 40%, transparent);
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.section--light .textlink, .section--mid .textlink { color: oklch(50% 0.09 74); border-color: color-mix(in oklch, var(--gold) 50%, transparent); }
.textlink:hover { color: var(--gold-light); border-color: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--body); font-weight: 600; font-size: var(--text-sm);
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  padding: 0.95rem 2rem; border-radius: 4px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); }
.btn--bone { background: var(--bone); color: var(--navy); }
.btn--bone:hover { background: color-mix(in oklch, var(--bone) 86%, var(--navy)); }
.btn--ghost { background: transparent; color: var(--bone); border-color: color-mix(in oklch, var(--bone) 45%, transparent); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--navy { background: var(--navy); color: var(--bone); }
.btn--navy:hover { background: var(--navy-deep); }
.btn--navy-ghost { background: transparent; color: var(--navy); border-color: color-mix(in oklch, var(--navy) 35%, transparent); }
.btn--navy-ghost:hover { border-color: var(--navy); background: color-mix(in oklch, var(--navy) 8%, transparent); }

/* ============================================================
   NAV
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-sticky);
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: color-mix(in oklch, var(--navy) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 8px 30px -20px rgb(0 0 0 / 0.8);
}
.header__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 0.9rem var(--pad-inline);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--bone); }
.brand__mark { display: inline-block; width: 34px; height: 34px; vertical-align: middle; margin-left: 0.1em; }
.brand__word { font-family: var(--display); font-weight: 800; font-size: 1.4rem; letter-spacing: 0.01em; line-height: 1; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav-link {
  font-weight: 500; font-size: 0.95rem; text-decoration: none; color: var(--text-on-dark);
  position: relative; padding: 0.25rem 0; transition: color 0.2s var(--ease-out);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.25s var(--ease-out);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link--cta {
  background: var(--gold); color: var(--navy); padding: 0.55rem 1.2rem; border-radius: 4px;
  font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--gold-light); color: var(--navy); }
/* Scrollspy marks the in-view link .active (gold text). On the solid-gold CTA
   that would be gold-on-gold, hiding the label. Keep navy ink; deepen the fill. */
.nav-link--cta.active { color: var(--navy); background: var(--gold-light); }

/* Donate: a light pill that balances the gold Register CTA. Bone fill +
   navy ink (high contrast, ~14:1). Same pill geometry as --cta. */
.nav-link--donate {
  background: var(--bone); color: var(--navy); padding: 0.55rem 1.2rem; border-radius: 4px;
  font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em;
}
.nav-link--donate::after { display: none; }
.nav-link--donate:hover,
.nav-link--donate.active { background: color-mix(in oklch, var(--bone) 86%, var(--navy)); color: var(--navy); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px; z-index: var(--z-modal);
}
.nav-toggle span { width: 26px; height: 2px; background: var(--bone); border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem var(--pad-inline);
    background: var(--navy-deep); border-left: 1px solid var(--line-dark);
    transform: translateX(100%);
    /* visibility:hidden also takes the off-screen panel out of the tab order
       and the accessibility tree; it flips visible immediately on open and
       hidden only after the slide-out completes. */
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), visibility 0.35s var(--ease-out);
    box-shadow: -30px 0 60px -30px rgb(0 0 0 / 0.7);
  }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav-link { font-size: 1.25rem; }
  .nav-link--cta { font-size: 0.95rem; padding: 0.7rem 1.4rem; }
  body.nav-open { overflow: hidden; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  text-align: center; padding: 7rem var(--pad-inline) 3rem;
  background:
    radial-gradient(120% 90% at 50% -10%, oklch(24% 0.05 238) 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: var(--text-on-dark); overflow: hidden;
}
.hero__glow {
  position: absolute; left: 50%; top: 38%; transform: translate(-50%, -50%); z-index: 0;
  width: min(720px, 90vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--gold) 26%, transparent) 0%, transparent 62%);
  filter: blur(20px); pointer-events: none;
}
/* Bottom blend into the next section — must sit BEHIND the hero content. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent 72%, var(--navy) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; display: flex; flex-direction: column; align-items: center; }
.hero__shield {
  width: clamp(260px, 42vw, 480px); height: auto; margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  filter: drop-shadow(0 24px 50px rgb(0 0 0 / 0.55));
}
.hero__title { font-size: var(--text-hero); letter-spacing: -0.03em; margin-bottom: 1rem; }
.hero__sub { font-size: var(--text-md); color: var(--text-muted-dark); max-width: 40ch; margin: 0 auto 1.75rem; line-height: 1.5; }
.hero__sub strong { color: var(--bone); font-weight: 600; }

.hero__facts {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem 1.6rem; margin-bottom: 2rem; font-size: var(--text-sm);
  color: var(--text-on-dark);
}
.hero__facts li { display: inline-flex; align-items: baseline; gap: 0.5rem; }
.hero__facts-k { font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-size: var(--text-xs); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2.75rem; }

.countdown {
  display: inline-flex; align-items: stretch; gap: 0.4rem;
  padding: 0.85rem 1.4rem; border: 1px solid var(--line-dark); border-radius: 8px;
  background: color-mix(in oklch, var(--navy-deep) 70%, transparent);
  backdrop-filter: blur(6px);
}
.countdown-item { display: flex; flex-direction: column; align-items: center; min-width: 3.4rem; }
.countdown-num { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.3rem); color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.countdown-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted-dark); margin-top: 0.35rem; }
.countdown-sep { font-family: var(--display); font-weight: 700; font-size: 1.8rem; color: var(--line-dark); align-self: flex-start; line-height: 1.1; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid color-mix(in oklch, var(--bone) 40%, transparent);
  border-radius: 14px; display: grid; justify-items: center; padding-top: 7px;
}
.hero__scroll span { width: 4px; height: 8px; border-radius: 2px; background: var(--gold); animation: scrollDot 1.6s var(--ease-out) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(10px); } }

/* Narrow phones: trim the vertical rhythm of the hero stack. */
@media (max-width: 560px) {
  .hero { padding-top: 5.5rem; padding-bottom: 2.5rem; }
  .hero__sub { margin-bottom: 1.25rem; }
  .hero__facts { margin-bottom: 1.5rem; }
  .hero__cta { margin-bottom: 1.75rem; gap: 0.75rem; }
  .hero__cta .btn { width: 100%; }
}
/* Short viewports: compress the seven-element stack so the countdown and
   scroll cue never crowd the CTAs. Shrinks the shield first, drops the
   purely-decorative scroll cue when there's genuinely no room. */
@media (max-height: 720px) {
  .hero__shield { width: clamp(150px, 30vw, 240px); margin-bottom: 1rem; }
  .hero__title { margin-bottom: 0.75rem; }
  .hero__sub { margin-bottom: 1rem; }
  .hero__facts { margin-bottom: 1.15rem; }
  .hero__cta { margin-bottom: 1.5rem; }
  .countdown { padding: 0.6rem 1.1rem; }
}
@media (max-height: 640px) {
  .hero__scroll { display: none; }
}

/* ============================================================
   MARK
   ============================================================ */
.mark__grid {
  display: grid; grid-template-columns: 1.4fr 0.9fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.mark__body p + p { margin-top: 1.1rem; }
.mark__body .lead { margin-bottom: 0.4rem; }
.mark__body strong { color: var(--gold); font-weight: 600; }
.mark__portrait { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.mark__portrait-frame {
  width: clamp(240px, 34vw, 350px); aspect-ratio: 4 / 5;
  border-radius: 14px; overflow: hidden; border: 4px solid var(--gold);
  background: linear-gradient(165deg, oklch(23% 0.045 238), var(--navy-deep));
  box-shadow: 0 30px 64px -24px rgb(0 0 0 / 0.7);
}
.mark__portrait-img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.mark__portrait-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.7rem; text-align: center; padding: 1.5rem;
}
.mark__portrait-ph img { width: clamp(72px, 20%, 112px); height: auto; opacity: 0.45; }
.mark__portrait-ph span { font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--bone); }
.mark__portrait-ph small { font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted-dark); }
.mark__portrait figcaption { font-size: var(--text-sm); color: var(--text-muted-dark); text-align: center; }
.mark__portrait figcaption .num { color: var(--gold); }

.stats {
  margin-top: clamp(3rem, 8vw, 5rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: 12px; overflow: hidden;
}
.stat { background: var(--navy); padding: clamp(1.5rem, 3vw, 2.25rem) 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; order: -1; }
.stat__label { font-size: var(--text-sm); color: var(--text-muted-dark); margin-top: 0.5rem; letter-spacing: 0.02em; }

@media (max-width: 820px) {
  .mark__grid { grid-template-columns: 1fr; }
  .mark__portrait { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   WEEKEND
   ============================================================ */
.weekend__list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.weekend__item {
  position: relative; padding: 2rem 1.75rem; background: var(--surface-mid);
  border: 1px solid var(--line-light); border-radius: 12px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.weekend__item:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -34px oklch(22% 0.04 238 / 0.6); }
.weekend__day {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--navy); background: var(--gold); padding: 0.3rem 0.85rem; border-radius: 4px; margin-bottom: 1rem;
}
.weekend__h { font-size: var(--text-lg); color: var(--ink); margin-bottom: 0.6rem; }
.weekend__item p { color: var(--ink-muted); margin-bottom: 1rem; }

/* ============================================================
   SATURDAY
   ============================================================ */
.block-h { font-size: var(--text-lg); color: var(--bone); margin-bottom: 1.25rem; }

.schedule {
  background: var(--navy-deep); border: 1px solid var(--line-dark); border-radius: 14px;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.schedule--center { max-width: 640px; margin-inline: auto; }
.timeline { list-style: none; padding: 0; }
/* Uniform horizontal inset on every row so the time column aligns; the
   highlighted row only adds a background, never shifts the grid. */
.timeline li {
  display: grid; grid-template-columns: 5.25rem 1fr; align-items: baseline; gap: 1rem;
  padding: 0.95rem 0.85rem; margin-inline: -0.85rem;
  border-bottom: 1px solid var(--line-dark);
}
.timeline li:last-child { border-bottom: 0; }
.timeline__time { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.timeline__time small { font-size: 0.7rem; margin-left: 1px; color: var(--text-muted-dark); }
.timeline__what { color: var(--text-on-dark); font-weight: 500; }
.timeline__hl { background: color-mix(in oklch, var(--gold) 12%, transparent); border-radius: 8px; border-bottom-color: transparent; }
.timeline__hl .timeline__what { color: var(--bone); font-weight: 600; }
.schedule__note { font-size: var(--text-sm); color: var(--text-muted-dark) !important; margin-top: 1.25rem; }

.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.25rem, 3vw, 1.75rem); margin-top: clamp(2rem, 5vw, 3rem); }
.addon { background: var(--navy-deep); border: 1px solid var(--line-dark); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.addon:hover { transform: translateY(-4px); border-color: color-mix(in oklch, var(--gold) 45%, var(--line-dark)); }
.addon__media { display: block; aspect-ratio: 1; overflow: hidden; background: var(--navy); }
.addon__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.addon__media:hover img { transform: scale(1.04); }
.addon__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.addon__body em { color: var(--gold-light); font-style: italic; }
.addon__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.addon__name { font-size: 1.4rem; color: var(--bone); }
.addon__price { font-family: var(--display); font-weight: 800; font-size: 1.75rem; color: var(--gold); white-space: nowrap; }
.addon__price small { font-family: var(--body); font-weight: 500; font-size: 0.8rem; color: var(--text-muted-dark); }
.addon__body p { color: var(--text-muted-dark); font-size: 0.95rem; }
.addon__tag { font-weight: 600; color: var(--gold-light) !important; font-size: 0.9rem !important; margin-top: auto; }

/* ============================================================
   REGISTER  (gold-accent section)
   ============================================================ */
.register {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
}
.register__inner { display: grid; grid-template-columns: 1.3fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* ---- Registration form (lives on the gold section) ---- */
.reg-hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.reg-form { margin-top: 1.75rem; display: grid; gap: 1.4rem; }
.reg-form fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.reg-form legend { padding: 0; }

/* Segmented "who's signing up?" */
.reg-seg__legend { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.55rem; }
.reg-seg__options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.reg-seg__opt { position: relative; cursor: pointer; }
.reg-seg__opt input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.reg-seg__face {
  display: grid; gap: 0.1rem; padding: 0.85rem 1rem; border-radius: 10px; height: 100%;
  background: color-mix(in oklch, white 86%, var(--gold));
  border: 1.5px solid color-mix(in oklch, var(--navy) 22%, transparent);
  transition: background 0.18s var(--ease-out), border-color 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
.reg-seg__face strong { font-weight: 600; font-size: 1.05rem; color: var(--navy); }
.reg-seg__face small { font-size: 0.8rem; color: color-mix(in oklch, var(--navy) 82%, transparent); }
.reg-seg__opt input:checked + .reg-seg__face { background: var(--navy); border-color: var(--navy); }
.reg-seg__opt input:checked + .reg-seg__face strong { color: var(--bone); }
.reg-seg__opt input:checked + .reg-seg__face small { color: var(--gold-light); }
.reg-seg__opt input:focus-visible + .reg-seg__face { outline: 3px solid var(--navy); outline-offset: 2px; }

/* Inputs */
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.reg-field { display: grid; gap: 0.4rem; min-width: 0; }
.reg-field label { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.03em; color: var(--navy); }
.reg-field__opt { font-weight: 400; letter-spacing: 0; color: color-mix(in oklch, var(--navy) 60%, transparent); }
.reg-form input, .reg-form textarea {
  font-family: var(--body); font-size: 1rem; color: var(--navy); width: 100%;
  background: oklch(99% 0.004 238);
  border: 1.5px solid color-mix(in oklch, var(--navy) 20%, transparent);
  border-radius: 8px; padding: 0.7rem 0.85rem;
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.reg-form textarea { resize: vertical; }
.reg-form input::placeholder, .reg-form textarea::placeholder { color: color-mix(in oklch, var(--navy) 62%, transparent); }
.reg-form input:focus-visible, .reg-form textarea:focus-visible {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--navy) 22%, transparent);
}
.reg-field--error input { border-color: oklch(52% 0.18 25); box-shadow: 0 0 0 3px oklch(52% 0.18 25 / 0.2); }
.reg-field__err { display: block; font-size: 0.82rem; font-weight: 600; color: oklch(42% 0.17 25); margin-top: 0.25rem; }

/* Phase break between personal info and add-ons */
.reg-phase-break {
  display: flex; align-items: center; gap: 0.6rem;
  color: color-mix(in oklch, var(--navy) 50%, transparent);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.reg-phase-break::before, .reg-phase-break::after {
  content: ""; flex: 1; height: 1px;
  background: color-mix(in oklch, var(--navy) 18%, transparent);
}

/* Add-ons */
.reg-addons legend { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.6rem; }
.reg-addons legend span { font-weight: 400; text-transform: none; letter-spacing: 0; color: color-mix(in oklch, var(--navy) 62%, transparent); }
.reg-addon {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.85rem;
  padding: 0.7rem 0.9rem; margin-bottom: 0.6rem; border-radius: 10px; cursor: pointer;
  background: color-mix(in oklch, white 84%, var(--gold));
  border: 1.5px solid color-mix(in oklch, var(--navy) 16%, transparent);
  transition: background 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}
.reg-addon:last-child { margin-bottom: 0; }
.reg-addon input { width: 1.2rem; height: 1.2rem; accent-color: var(--navy); cursor: pointer; }
.reg-addon__body { display: grid; gap: 0.1rem; min-width: 0; }
.reg-addon__name { font-weight: 600; color: var(--navy); }
.reg-addon__desc { font-size: 0.82rem; color: color-mix(in oklch, var(--navy) 82%, transparent); }
.reg-addon__price { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--navy); }
.reg-addon:has(input:checked) { border-color: var(--navy); background: color-mix(in oklch, white 68%, var(--gold)); }
.reg-addon:has(input:focus-visible) { outline: 3px solid var(--navy); outline-offset: 2px; }
.reg-addon--qty { grid-template-columns: 1fr auto; cursor: default; }
.reg-addon--qty.is-active { border-color: var(--navy); background: color-mix(in oklch, white 68%, var(--gold)); }
.reg-kicks { display: inline-flex; align-items: center; gap: 0.45rem; }
.reg-kicks__btn {
  width: 2.75rem; height: 2.75rem; flex: none; border-radius: 8px; cursor: pointer;
  font-family: var(--display); font-size: 1.4rem; line-height: 1; font-weight: 800;
  color: var(--navy); background: white;
  border: 1.5px solid color-mix(in oklch, var(--navy) 32%, transparent);
  transition: background 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}
.reg-kicks__btn:hover { border-color: var(--navy); background: color-mix(in oklch, white 80%, var(--gold)); }
.reg-kicks__btn:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }
.reg-kicks__count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 2.75rem; flex: none;
  font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--navy);
  border-radius: 8px; border: 2px solid color-mix(in oklch, var(--navy) 30%, transparent);
  background: white; line-height: 1; user-select: none;
}

/* Sponsorship interest */
.reg-check { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; cursor: pointer; font-size: 0.95rem; color: var(--navy); }
.reg-check input { width: 1.2rem; height: 1.2rem; margin-top: 0.15rem; accent-color: var(--navy); cursor: pointer; }
.reg-sponsor-note { margin-top: -0.5rem; }

/* Order summary */
.reg-summary { display: grid; gap: 0.45rem; padding: 1rem 1.15rem; border-radius: 12px; background: var(--navy); color: var(--text-on-dark); }
.reg-summary__row { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.95rem; color: var(--text-muted-dark); }
.reg-summary__total { padding-top: 0.55rem; margin-top: 0.1rem; border-top: 1px solid var(--line-dark); }
.reg-summary__total span:first-child { color: var(--bone); font-weight: 600; }
.reg-summary__total span:last-child { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--gold); line-height: 1; }

/* Actions + status */
/* Push pre-pay by card: Card is the full-width primary; Venmo/Zelle is a
   smaller, de-emphasized box (same font-size — only its box shrinks). */
.reg-actions { display: flex; flex-direction: column; align-items: stretch; gap: 0.8rem; }
.reg-btn { flex: 0 0 auto; }
#rf-pay-card { width: 100%; }
#rf-pay-offline { align-self: flex-start; width: auto; min-width: 0; padding: 0.55rem 1.1rem; }
.reg-btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }
.reg-status { font-weight: 600; font-size: 0.95rem; padding: 0.75rem 0.95rem; border-radius: 8px; }
.reg-status--error { background: oklch(94% 0.04 25); color: oklch(42% 0.17 25); }
.reg-status--ok { background: oklch(93% 0.06 150); color: oklch(36% 0.11 150); }
.reg-status--info { background: color-mix(in oklch, white 78%, var(--gold)); color: var(--navy); }
.reg-edit { justify-self: start; }

.register__pay { font-weight: 600; color: var(--navy); }
.register__pay strong { font-family: var(--display); }

@media (max-width: 540px) {
  .reg-grid { grid-template-columns: 1fr; }
  .reg-seg__options { grid-template-columns: 1fr; }
}

.register__card { background: var(--navy); color: var(--text-on-dark); border-radius: 14px; padding: clamp(1.5rem, 3vw, 2rem); box-shadow: 0 30px 60px -34px oklch(17% 0.04 238 / 0.8); }
.register__card h3 { font-size: var(--text-lg); color: var(--bone); margin-bottom: 1.1rem; }
.kv { list-style: none; padding: 0; display: grid; gap: 0; }
.kv li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line-dark); }
.kv li:last-child { border-bottom: 0; }
.kv span { color: var(--text-muted-dark); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.08em; }
.kv strong { color: var(--bone); font-weight: 600; text-align: right; }

@media (max-width: 820px) { .register__inner { grid-template-columns: 1fr; } }

/* ============================================================
   DONATE  (navy section — light chips/text)
   ============================================================ */
.donate__form { max-width: 30rem; margin-inline: auto; display: grid; gap: 1.4rem; }
.donate__amounts { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.donate__chip {
  flex: 1 1 auto; min-width: 5rem; min-height: 44px;
  font-family: var(--body); font-weight: 600; font-size: var(--text-base);
  color: var(--bone); background: transparent; cursor: pointer;
  border: 1.5px solid color-mix(in oklch, var(--bone) 40%, transparent); border-radius: 8px;
  padding: 0.7rem 1rem;
  transition: background 0.18s var(--ease-out), border-color 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
.donate__chip:hover { border-color: var(--gold); color: var(--gold-light); }
.donate__chip.is-active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.donate__chip:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 2px; }

/* Custom amount field — reuse the .reg-field grid, recolor for the navy bg. */
.donate__custom label { color: var(--text-on-dark); }
.donate__custom input {
  font-family: var(--body); font-size: 1rem; color: var(--navy); width: 100%;
  background: oklch(99% 0.004 238);
  border: 1.5px solid color-mix(in oklch, var(--bone) 30%, transparent);
  border-radius: 8px; padding: 0.7rem 0.85rem;
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.donate__custom input:focus-visible {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--gold) 35%, transparent);
}
.donate__custom.reg-field--error input { border-color: oklch(62% 0.18 25); box-shadow: 0 0 0 3px oklch(62% 0.18 25 / 0.25); }
.donate__custom .reg-field__err { color: oklch(80% 0.12 25); }

.donate__submit { width: 100%; }

.donate__status { font-weight: 600; font-size: 0.95rem; padding: 0.75rem 0.95rem; border-radius: 8px; }
.donate__status--error { background: oklch(30% 0.08 25); color: oklch(88% 0.07 25); }
.donate__status--info { background: color-mix(in oklch, var(--bone) 14%, transparent); color: var(--bone); }

/* ============================================================
   CAUSE
   ============================================================ */
.cause__grid { display: grid; grid-template-columns: 1.3fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cause__body p + p { margin-top: 1rem; }
.cause__ink { color: var(--ink) !important; }
.cause__body strong { color: oklch(45% 0.09 74); font-weight: 600; }
.cause__pillars { list-style: none; padding: 0; display: grid; gap: 1rem; }
.cause__pillars li {
  background: var(--navy); color: var(--text-on-dark); border-radius: 12px; padding: 1.5rem 1.75rem;
  display: grid; gap: 0.4rem; font-size: 0.95rem; line-height: 1.4;
}
.cause__pillars span { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--gold); line-height: 1; }
@media (max-width: 820px) { .cause__grid { grid-template-columns: 1fr; } }

/* ============================================================
   SPONSOR
   ============================================================ */
.tiers { display: grid; gap: clamp(2rem, 4.5vw, 3.25rem); }
.tier { background: var(--surface); border: 1px solid var(--line-light); border-radius: 12px; padding: clamp(1.4rem, 3vw, 1.9rem); display: flex; flex-direction: column; transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.tier:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -34px oklch(22% 0.04 238 / 0.5); border-color: color-mix(in oklch, var(--gold) 40%, var(--line-light)); }
.tier__name { font-size: 1.4rem; color: var(--ink); }
.tier__price { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.6rem); color: oklch(43% 0.10 74); line-height: 1; margin: 0.4rem 0 0.25rem; }
.tier__rank { font-family: var(--body); font-weight: 600; font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.5rem; }
.tier__tag { font-size: var(--text-sm); color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.tier__perks { list-style: none; padding: 0; margin: 1.1rem 0 1.5rem; display: grid; gap: 0.6rem; }
.tier__perks li { position: relative; padding-left: 1.6rem; font-size: 0.95rem; color: var(--ink); line-height: 1.4; }
.tier__perks li::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 0.75rem; height: 0.4rem; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.tier__btn { margin-top: auto; }
.tier__link { margin-top: auto; align-self: flex-start; }

/* Price bands — group the mid tiers by what they cost */
.tier-band { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.tier-band__head { display: flex; align-items: center; gap: clamp(0.85rem, 2vw, 1.25rem); }
.tier-band__label { font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.tier-band__rule { flex: 1; height: 2px; border-radius: 2px; background: linear-gradient(90deg, color-mix(in oklch, var(--gold) 55%, transparent), color-mix(in oklch, var(--gold) 10%, transparent)); }
.tier-band__price { font-family: var(--display); font-weight: 800; font-size: 1.45rem; color: oklch(43% 0.10 74); white-space: nowrap; }
.tier-row { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.tier-row--2 { grid-template-columns: repeat(2, 1fr); }
.tier-row--3 { grid-template-columns: repeat(3, 1fr); }

/* Premium pair — gold top accent, gently lifted off the page */
.tier--premium { border-top: 3px solid var(--gold); box-shadow: 0 18px 40px -34px oklch(22% 0.04 238 / 0.45); }

/* Headline feature banner */
.tier--feature {
  background: var(--navy); color: var(--text-on-dark);
  border-color: var(--gold); position: relative; overflow: hidden;
}
.tier--feature::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 60% at 100% 0%, color-mix(in oklch, var(--gold) 18%, transparent), transparent 60%);
}
.tier--feature .tier__rank { color: var(--gold-light); }
.tier--feature .tier__name { color: var(--bone); font-size: 1.7rem; }
.tier--feature .tier__price { color: var(--gold); }
.tier--feature .tier__tag { color: var(--gold-light); }
.tier--feature .tier__perks li { color: var(--text-on-dark); }
.tier--feature .tier__head { position: relative; }
.tier--feature .tier__btn { position: relative; }

/* On-ramp banner — the friendly gold entry that bookends the headline */
.tier--onramp {
  background: color-mix(in oklch, var(--gold) 14%, var(--surface));
  border-color: color-mix(in oklch, var(--gold) 55%, var(--line-light));
}
.tier--onramp .tier__rank--gold { color: oklch(43% 0.10 74); }
.tier--onramp .tier__name { color: var(--navy); }
.tier--onramp .tier__price { color: oklch(43% 0.10 74); }
.tier--onramp .tier__perks li { color: var(--ink); }

/* Banner layouts: feature + on-ramp go horizontal on wide screens */
@media (min-width: 761px) {
  .tier--feature, .tier--onramp { display: grid; grid-template-columns: minmax(220px, 0.85fr) 1.5fr auto; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
  .tier--feature .tier__perks, .tier--onramp .tier__perks { margin: 0; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.75rem; }
  .tier--feature .tier__btn, .tier--onramp .tier__btn { margin-top: 0; white-space: nowrap; }
}

.sponsor__note { margin-top: 1.25rem; font-size: var(--text-sm); color: var(--ink-muted); max-width: 56ch; margin-inline: auto; }
.sponsor__note strong { color: var(--ink); font-weight: 600; }

.sponsor__more { margin-top: clamp(2.5rem, 6vw, 4rem); text-align: center; max-width: 720px; margin-inline: auto; }
.sponsor__more p { color: var(--ink); margin-bottom: 1.5rem; }
.sponsor__more strong { color: var(--ink); font-weight: 600; }
.sponsor__contact { font-size: var(--text-sm); color: var(--ink-muted); margin-top: 1.25rem; }

@media (max-width: 900px) { .tier-row--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tier-row--2, .tier-row--3 { grid-template-columns: 1fr; } }

/* ============================================================
   STAY
   ============================================================ */
.stay__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 1.75rem); }
@media (max-width: 760px) { .stay__grid { grid-template-columns: 1fr; } }
.stay__card { background: var(--surface-mid); border: 1px solid var(--line-light); border-radius: 12px; padding: 1.75rem; transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }
.stay__card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -34px oklch(22% 0.04 238 / 0.5); }
.stay__tag { display: inline-block; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(50% 0.09 74); margin-bottom: 0.75rem; }
.stay__card h3 { font-size: var(--text-lg); color: var(--ink); margin-bottom: 0.6rem; }
.stay__card p { color: var(--ink-muted); font-size: 0.96rem; }
.stay__addr {
  display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.95rem;
  font-weight: 600; font-size: 0.9rem; color: oklch(45% 0.09 74); text-decoration: none;
  border-bottom: 1px solid color-mix(in oklch, var(--gold) 45%, transparent);
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.stay__addr svg { width: 1rem; height: 1rem; flex: none; }
.stay__addr:hover { color: oklch(38% 0.09 74); border-color: currentColor; }
.stay__card--note { background: var(--navy); }
.stay__card--note .stay__tag { color: var(--gold-light); }
.stay__card--note h3 { color: var(--bone); }
.stay__card--note p { color: var(--text-on-dark); }

/* Lodging note: a deliberate full-width banner under the three venue cards,
   echoing the sponsor + register banner rhythm instead of orphaning a 4th card. */
.stay__lodging { margin-top: clamp(1.25rem, 3vw, 1.75rem); }
.stay__lodging-head .stay__tag { margin-bottom: 0.5rem; }
.stay__lodging p { max-width: 60ch; }
@media (min-width: 761px) {
  .stay__lodging {
    display: grid; grid-template-columns: minmax(220px, 0.8fr) 1.6fr;
    align-items: center; gap: clamp(1.75rem, 5vw, 4rem);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
  }
  .stay__lodging-head .stay__tag { margin-bottom: 0.75rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); color: var(--text-on-dark); padding-top: clamp(3.5rem, 8vw, 5.5rem); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 0.8fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3rem; }
.footer__brand img { width: 56px; height: 56px; margin-bottom: 1.25rem; }
.footer__mission { color: var(--text-muted-dark); max-width: 42ch; }
.footer__mission strong { color: var(--bone); }
.footer__nav { display: grid; gap: 0.7rem; align-content: start; }
.footer__nav a { color: var(--text-on-dark); text-decoration: none; font-weight: 500; transition: color 0.2s var(--ease-out); }
.footer__nav a:hover { color: var(--gold-light); }
.footer__contact h3 { font-size: var(--text-md); color: var(--bone); margin-bottom: 1rem; }
.footer__contact p { color: var(--text-muted-dark); margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer__contact a { color: var(--text-on-dark); text-decoration: none; border-bottom: 1px solid var(--line-dark); }
.footer__contact a:hover { color: var(--gold-light); }
.footer__contact strong { font-family: var(--display); color: var(--gold); }
.footer__bar { border-top: 1px solid var(--line-dark); padding: 1.5rem var(--pad-inline); text-align: center; }
.footer__bar { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: center; }
.footer__bar p { color: var(--text-muted-dark); font-size: var(--text-sm); }
.footer__bar p:first-child { color: var(--gold); font-weight: 500; letter-spacing: 0.02em; }

@media (max-width: 820px) { .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ============================================================
   REVEAL MOTION
   Visible by default. Animation is opt-in via .js-anim (added by
   script.js only when JS runs and motion is allowed), so no-JS,
   reduced-motion, and headless renders never hide content.
   ============================================================ */
.js-anim .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.js-anim .reveal.in { opacity: 1; transform: none; }
.js-anim .reveal:nth-child(2) { transition-delay: 0.07s; }
.js-anim .reveal:nth-child(3) { transition-delay: 0.14s; }
.js-anim .reveal:nth-child(4) { transition-delay: 0.21s; }

@media (prefers-reduced-motion: reduce) {
  .btn:hover, .weekend__item:hover, .addon:hover, .tier:hover, .stay__card:hover { transform: none; }
  .hero__scroll span { animation: none; }
  .addon__media:hover img { transform: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   THANKS / CONFIRMATION PAGE (thanks.html)
   Kept here rather than inline so the strict CSP (no 'unsafe-inline'
   style-src) doesn't strip the post-payment page's styling.
   ============================================================ */
.thanks { min-height: 100svh; display: grid; place-items: center; padding: var(--pad-inline); background: var(--navy); color: var(--text-on-dark); text-align: center; }
.thanks__inner { max-width: 36rem; display: grid; gap: 1.25rem; justify-items: center; }
.thanks__badge { width: 84px; height: 84px; }
.thanks__title { font-size: var(--text-xl); color: var(--bone); }
.thanks__title .num { color: var(--gold); }
.thanks__lead { font-size: var(--text-md); color: var(--text-on-dark); line-height: 1.55; max-width: 30ch; }
.thanks__note { font-size: 0.95rem; color: var(--text-muted-dark); }
.thanks__note strong { color: var(--bone); font-family: var(--display); }
.thanks__cta { margin-top: 0.5rem; }
