:root {
  --navy: #27116D;
  --navy-deep: #1a0b49;
  --blue: #1F6E9C;        /* text-safe: >=4.5:1 on cream and white */
  --blue-bright: #35A3DC; /* brand sky blue - decorative only (borders, tints) */
  --blue-light: #57A2D8;
  --gold: #C7AD63;
  --gold-light: #E4D4A6;
  --cream: #FDF9F0;
  --ink: #1C1730;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(26, 11, 73, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-narrow { max-width: 760px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }

a { color: var(--blue); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Focus visibility ----------
   Every interactive element gets an explicit, high-contrast focus ring rather
   than relying on the browser default, which is easy to lose against the dark
   sections. Gold on light grounds, cream on dark, navy on the gold buttons. */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.hero :focus-visible,
.countdown :focus-visible,
.cta-band :focus-visible,
.follow-band :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--gold-light);
}
.btn-primary:focus-visible,
.social-go:focus-visible {
  outline-color: var(--navy-deep);
}

/* ---------- Target size (WCAG 2.5.8) ----------
   Standalone links outside running text need a 24px minimum hit area.
   Links inline in a sentence are exempt and are left alone. */
.event-dl dd a,
.contact-grid a,
.footer-links a,
.social-links a {
  display: inline-block;
  min-height: 24px;
  padding-block: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 8px 20px rgba(199, 173, 99, 0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-nav {
  padding: 10px 20px;
  background: var(--navy);
  color: var(--white) !important;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 1.5em 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 249, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(39, 17, 109, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-logo { height: 34px; width: auto; }
.brand-mark { height: 34px; width: 34px; flex-shrink: 0; }
/* Real Shine Tucson wordmark. It already contains "Shine Tucson INC.", so no
   adjacent text lockup is needed. */
.brand-logo-full {
  height: clamp(38px, 6vw, 52px);
  width: auto;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
}
.brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6b6480;
  text-transform: uppercase;
}
.brand-city {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav a:not(.btn) {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a:not(.btn):hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  transform: scale(1.02);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  /* Opacity floor of 0.78 is deliberate: the hero photo contains near-white
     cloud pixels, and at 0.78 even the lightest text (gold #E4D4A6, 13px)
     clears 4.5:1 over a pure-white pixel. Do not lighten below 0.72. */
  background: linear-gradient(180deg, rgba(26,11,73,0.78) 0%, rgba(26,11,73,0.86) 55%, rgba(26,11,73,0.94) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 16ch;
}

.hero-sub {
  font-size: 1.2rem;
  max-width: 56ch;
  color: rgba(255,255,255,0.92);
}

.hero-date {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 1.5em 0;
  line-height: 1.5;
}
.hero-date a { color: var(--white); text-decoration: underline; }
.hero-date-note {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.86);
  margin-top: 0.3em;
}

/* ---------- Countdown ---------- */
.countdown {
  background: var(--navy-deep);
  color: var(--white);
  padding: 64px 0 68px;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}
.cd-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 32px;
}
.cd-clock {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, 2vw, 22px);
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(74px, 18vw, 150px);
}
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.cd-lab {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.75rem, 1.6vw, 1rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-top: 14px;
}
.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  line-height: 1;
  color: rgba(228, 212, 166, 0.4);
}
.cd-foot {
  margin: 36px 0 0;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.cd-foot span {
  display: block;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
}
/* celebratory states */
.countdown.is-today .cd-num,
.countdown.is-past .cd-num { color: var(--gold-light); }
.cd-message {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  margin: 0;
  line-height: 1.15;
}
/* screen-reader-only summary */
.cd-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 560px) {
  .cd-unit { min-width: 68px; }
  .cd-clock { gap: 4px; }
  .cd-sep { font-size: 2rem; }
  .cd-lab { font-size: 0.68rem; letter-spacing: 0.1em; margin-top: 10px; }
}

/* Below ~430px four units in a row cannot fit -- the days value can be three
   digits. Reflow to a 2x2 grid and drop the separators so nothing is cut off
   and the page never scrolls sideways (WCAG 1.4.10 Reflow). */
@media (max-width: 430px) {
  .cd-clock { flex-wrap: wrap; gap: 18px 4px; }
  .cd-sep { display: none; }
  .cd-unit { min-width: 0; flex: 0 0 48%; }
  .cd-num { font-size: clamp(2.5rem, 15vw, 3.4rem); }
}

/* ---------- Sections ---------- */
.section {
  padding: 88px 0;
}
.section-alt {
  background: linear-gradient(180deg, #F4EEDD 0%, var(--cream) 100%);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6em;
}

.section-lead {
  font-size: 1.1rem;
  color: #4a4460;
}

.text-link {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.5em;
}

.fine-print {
  font-size: 0.9rem;
  color: #6b6480;
}

/* ---------- Church grid ---------- */
.church-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin: 2em 0;
}
.church-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.church-card h3 { margin-bottom: 0.4em; }
.church-card h3:only-child { margin-bottom: 0; }
.church-card p { color: #5a5470; font-size: 0.95rem; margin-bottom: 0.6em; }
.church-card p:last-child { margin-bottom: 0; }
.church-card a { font-weight: 700; text-decoration: none; font-size: 0.92rem; }

.subhead {
  font-size: 1.4rem;
  margin-top: 1.8em;
  margin-bottom: 0.4em;
}

.notice-box {
  background: #FFF6E0;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 2em 0;
  font-size: 0.95rem;
  color: #5a4a1e;
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 0.5em;
}
.social-links a { font-weight: 700; text-decoration: none; }

/* ---------- Social cards ---------- */
.social-icon { display: inline-flex; flex-shrink: 0; }
.social-icon svg { width: 100%; height: 100%; display: block; }

.social-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  margin: 1.4em 0 2em;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid rgba(39, 17, 109, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.social-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(26, 11, 73, 0.18);
}
.social-card .social-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 10px;
}
.social-card-ig .social-icon {
  background: linear-gradient(45deg, #F9A03F 0%, #E4405F 45%, #A32DA0 75%, #5B51D8 100%);
}
.social-card-fb .social-icon { background: #1877F2; }

.social-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.social-net {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}
.social-handle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  word-break: break-word;
}
.social-desc { font-size: 0.88rem; color: #5a5470; margin-top: 3px; }
.social-go {
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--gold-light);
  padding: 9px 18px;
  border-radius: 999px;
}

/* ---------- Follow band ---------- */
.follow-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 66px 0;
}
.follow-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 46px;
  align-items: center;
}
.follow-kicker { color: var(--gold-light); }
.follow-band h2 { color: var(--white); }
.follow-band p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 0; }
.follow-actions { display: flex; flex-direction: column; gap: 14px; }
.follow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.follow-btn .social-icon { width: 24px; height: 24px; }
.follow-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.34); }
.follow-btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.follow-ig { background: linear-gradient(45deg, #C7401F 0%, #C1274A 45%, #8A2489 75%, #4740B8 100%); }
.follow-fb { background: #1359BC; }

@media (max-width: 860px) {
  .follow-inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Check list ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
}
.check-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 0.75em;
  color: #3a3450;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
  background: rgba(53,163,220,0.15);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ---------- Volunteer role chips ---------- */
.role-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.2em 0 1.5em;
}
.role-chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(39, 17, 109, 0.18);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.split-art {
  min-height: 320px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

/* ---------- Timeline ---------- */
.timeline {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
  border-left: 3px solid var(--gold);
}
.timeline li {
  display: flex;
  gap: 18px;
  padding: 10px 0 10px 24px;
  position: relative;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
}
.timeline .time {
  font-weight: 800;
  color: var(--navy);
  min-width: 110px;
  flex-shrink: 0;
}
.timeline .event { color: #4a4460; }

.dance-photo {
  height: 260px;
  background-size: cover;
  background-position: center 30%;
  margin-top: 60px;
}

/* ---------- Accordion ---------- */
.accordion { margin-top: 1.5em; }
.accordion-item {
  border-bottom: 1px solid rgba(39,17,109,0.15);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.accordion-trigger:focus-visible { outline: 3px solid var(--gold); }
.accordion-icon {
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.accordion-panel p {
  padding: 0 4px 20px;
  color: #4a4460;
  margin: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 1.5em;
}
.contact-grid h3 { margin-bottom: 0.3em; font-size: 1.1rem; }
.contact-grid p { color: #5a5470; font-size: 0.95rem; }

/* ---------- Closing CTA band ---------- */
.cta-band {
  position: relative;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-band-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,11,73,0.90) 0%, rgba(39,17,109,0.88) 100%);
}
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); }
.cta-band p {
  max-width: 52ch;
  margin: 0 auto 1.5em;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}
.cta-row-center { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { height: 28px; margin-bottom: 16px; }
.footer-logo-full { height: 62px; width: auto; margin-bottom: 6px; }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.65); }

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
.footer-mark { height: 32px; width: 32px; flex-shrink: 0; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}

/* Tim Tebow Foundation partner attribution — visually subordinate to our own mark */
.footer-partner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 1.6em;
  padding-top: 1.2em;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-partner-logo {
  height: 30px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.9;
}
.footer-partner span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}
.footer-links h3 {
  color: var(--gold-light);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 1em;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin-bottom: 0.8em;
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-fine {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ---------- Sponsor page: hero ---------- */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 74px;
  max-width: 800px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 18ch;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.4em;
}
.breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { margin: 0 6px; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.8em;
}

/* ---------- Stat band ---------- */
.stat-band {
  background: var(--navy);
  color: var(--white);
  padding: 34px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}
.stat-sup { font-size: 0.55em; vertical-align: super; }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ---------- Stat row (light background variant) ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
  margin: 1.4em 0 1.8em;
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.stat-row .stat-num {
  font-size: 1.7rem;
  color: var(--navy);
}
.stat-row .stat-label {
  font-size: 0.9rem;
  color: #5a5470;
}

/* ---------- Event detail card ---------- */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
}
.event-card h3 { margin-bottom: 0.8em; }
.event-dl { margin: 0; }
.event-dl dt {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 1.1em;
}
.event-dl dt:first-child { margin-top: 0; }
.event-dl dd {
  margin: 0.25em 0 0;
  color: #3a3450;
  font-size: 0.97rem;
  line-height: 1.5;
}
.event-card-note {
  margin: 1.6em 0 0;
  padding-top: 1.1em;
  border-top: 1px solid rgba(39,17,109,0.12);
  font-size: 0.85rem;
  color: #6b6480;
}

/* ---------- Sponsorship tiers ---------- */
.tier {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue-bright);
}
.tier-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0.5em;
}
.tier-name { margin: 0; font-size: 1.3rem; }
.tier-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
.tier-flag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 0.4em;
}
.tier-benefits {
  list-style: none;
  padding: 0;
  margin: 1.2em 0 0;
}
.tier-benefits li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 0.7em;
  color: #3a3450;
  font-size: 0.97rem;
}
.tier-benefits li:last-child { margin-bottom: 0; }
.tier-benefits li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.9rem;
}
.tier-note { color: #6b6480; }

.tier-featured {
  border-top-width: 6px;
  border-top-color: var(--gold);
  background: linear-gradient(180deg, #FFFDF6 0%, var(--white) 100%);
  margin: 2em 0 20px;
  padding: 32px;
}
.tier-featured .tier-flag { color: #9c7f2e; }
.tier-featured .tier-name { font-size: 1.6rem; }
.tier-featured .tier-price { font-size: 2.4rem; color: #9c7f2e; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
/* Narrow cards stack name over price so all three read identically
   regardless of how long the tier name is. */
.tier-grid .tier-head {
  display: block;
  padding-bottom: 0.7em;
  border-bottom: 1px solid rgba(39,17,109,0.12);
  margin-bottom: 0;
}
.tier-grid .tier-name { font-size: 1.15rem; margin-bottom: 0.1em; }
.tier-grid .tier-price { font-size: 1.8rem; }
.tier-royal { border-top-color: var(--navy); }
.tier-knight { border-top-color: var(--blue-bright); }
.tier-lady { border-top-color: var(--blue-light); }

/* ---------- Honored Partner spotlight ---------- */
.spotlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin: 20px 0 0;
  box-shadow: var(--shadow);
}
.spotlight-mark {
  font-size: 2.4rem;
  line-height: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spotlight .tier-flag { color: var(--gold-light); }
.spotlight .tier-name { color: var(--white); font-size: 1.5rem; margin-bottom: 0.5em; }
.spotlight-price { color: var(--gold-light); }
.spotlight p { color: rgba(255,255,255,0.85); }
.spotlight p:last-child { margin-bottom: 0; }
.spotlight .fine-print { color: rgba(255,255,255,0.6); }

.levels-any { margin-top: 2em; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 2em 0;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 62px;
  margin-bottom: 1.8em;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps h3 { margin-bottom: 0.3em; font-size: 1.1rem; }
.steps p { margin: 0; color: #4a4460; }

/* ---------- Commitment form ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(39,17,109,0.15);
  box-shadow: var(--shadow);
  padding: 32px;
  margin: 1.5em 0;
}
.form-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 24px;
}
.form-logo { height: 42px; width: auto; flex-shrink: 0; }
.form-card-head h3 { margin: 0; font-size: 1.2rem; }
.form-card-sub {
  margin: 0.2em 0 0;
  font-size: 0.85rem;
  color: #6b6480;
}

.form-block { border: none; padding: 0; margin: 0 0 28px; }
.form-block legend {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 0;
  margin-bottom: 0.9em;
}

.level-picker { list-style: none; padding: 0; margin: 0; }
.level-picker li { margin-bottom: 8px; }
.level-picker input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.level-picker label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 2px solid rgba(39,17,109,0.15);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}
/* Drawn indicator, so the sheet is also tickable by hand when printed blank. */
.level-picker label::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--navy);
  border-radius: 50%;
}
.level-picker input:checked + label::before {
  background: var(--navy);
  box-shadow: inset 0 0 0 4px var(--white);
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}
.level-picker label:hover { border-color: var(--blue); }
.level-picker input:checked + label {
  border-color: var(--gold);
  background: #FFFAEC;
}
.level-picker input:focus-visible + label { outline: 3px solid var(--gold); outline-offset: 2px; }
.lvl-name { flex: 1; }
.lvl-amt { font-family: var(--font-display); font-size: 1.05rem; white-space: nowrap; }
.inline-amt {
  width: 90px;
  border: none;
  border-bottom: 1px solid var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 2px 4px;
  background: transparent;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.field { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.field-wide { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #6b6480;
}
.field input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid rgba(39,17,109,0.25);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--navy);
}

.remit {
  background: #FFF6E0;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.remit h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5em;
}
.remit p { margin: 0 0 0.6em; font-size: 0.95rem; color: #5a4a1e; }
.remit-address {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 0.9em;
}
.remit .fine-print { margin: 0; color: #6b5a2e; }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .no-print, .page-hero, .stat-band, .cta-band { display: none !important; }
  body { background: var(--white); }
  .section, .section-alt { padding: 0; background: var(--white); }
  .form-card { box-shadow: none; border: 1px solid #999; page-break-inside: avoid; }
  .level-picker label { border-color: #999; }
  .level-picker input:checked + label { border-color: #000; background: #f0f0f0; }
  .field input { border-color: #999; background: var(--white); }
}

/* Body class set by the print button so only the form sheet prints */
body.printing-form main > section:not(#commit) { display: none !important; }
body.printing-form #commit .kicker,
body.printing-form #commit h2,
body.printing-form #commit > .wrap > p { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; }
  .form-card { padding: 22px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    display: none;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .btn-nav { align-self: flex-start; }
  .section { padding: 60px 0; }
  .hero { min-height: 80vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .accordion-icon, .accordion-panel { transition: none; }
}
