:root {
  --forest-950: #031b13;
  --forest-900: #06271c;
  --forest-800: #0a3827;
  --forest-700: #124b35;
  --forest-100: #dfe9e2;
  --ivory: #fbf8ef;
  --cream: #f2ecd9;
  --white: #ffffff;
  --gold-500: #b99a50;
  --gold-300: #d8c27e;
  --ink: #17231d;
  --muted: #5c675f;
  --line: rgba(6, 39, 28, 0.14);
  --shadow-sm: 0 12px 32px rgba(3, 27, 19, 0.08);
  --shadow-lg: 0 26px 72px rgba(3, 27, 19, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --content: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-300); outline-offset: 4px; }
::selection { background: var(--gold-300); color: var(--forest-950); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: var(--white);
  color: var(--forest-950);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 14px; }

.container { width: min(calc(100% - 32px), var(--content)); margin-inline: auto; }
.narrow { width: min(100%, 800px); }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-cream { background: var(--cream); }
.section-dark { color: var(--white); background: var(--forest-950); }
.section-soft { background: #f7f2e4; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 27, 19, 0.97);
  border-bottom: 1px solid rgba(216, 194, 126, 0.28);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); min-width: 0; }
.brand-logo { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(216, 194, 126, 0.75); }
.brand-copy { display: grid; min-width: 0; }
.brand-copy strong { font-family: var(--serif); font-size: 1.16rem; letter-spacing: 0.01em; line-height: 1.1; }
.brand-copy small { color: rgba(255, 255, 255, 0.68); font-size: 0.77rem; margin-top: 3px; white-space: nowrap; }
.menu-toggle { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 10px 13px; border-radius: 999px; font-weight: 800; cursor: pointer; }
.menu-icon { display: grid; gap: 4px; }
.menu-icon i { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 999px; }
.site-nav { display: none; position: absolute; left: 16px; right: 16px; top: calc(100% + 10px); padding: 14px; background: var(--forest-900); border: 1px solid rgba(216, 194, 126, 0.28); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.site-nav.is-open { display: grid; gap: 7px; }
.site-nav a { color: rgba(255,255,255,0.86); padding: 12px 14px; border-radius: 12px; font-weight: 750; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,0.08); }
.site-nav .nav-register { color: var(--forest-950); background: var(--gold-300); text-align: center; }

.registration-return-wrap { padding: 20px 0 0; }
.registration-return { display: inline-flex; align-items: center; gap: 8px; color: var(--forest-800); font-weight: 850; font-size: 0.92rem; }
.registration-return::before { content: "←"; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
  padding: clamp(68px, 10vw, 132px) 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 80% 16%, rgba(185,154,80,0.20), transparent 32%),
    radial-gradient(circle at 8% 84%, rgba(18,75,53,0.85), transparent 34%),
    linear-gradient(135deg, var(--forest-950), var(--forest-800));
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: -220px;
  border: 1px solid rgba(216,194,126,0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(216,194,126,0.035), 0 0 0 128px rgba(216,194,126,0.025);
  z-index: -1;
}
.hero-grid { display: grid; gap: 38px; align-items: center; }
.hero-copy { max-width: 850px; }
.eyebrow { margin: 0 0 14px; color: var(--gold-300); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.76rem; font-weight: 900; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.05; letter-spacing: -0.035em; }
h1 { margin: 0; font-size: clamp(3rem, 11vw, 6.9rem); max-width: 980px; }
h2 { margin: 0; font-size: clamp(2.25rem, 7vw, 4.6rem); }
h3 { margin: 0; font-size: clamp(1.45rem, 4vw, 2rem); }
.hero-lede { max-width: 760px; margin: 24px 0 0; color: rgba(255,255,255,0.82); font-size: clamp(1.05rem, 2.6vw, 1.32rem); }
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin: 22px 0 0; color: rgba(255,255,255,0.64); font-size: 0.92rem; }
.hero-panel { border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-lg); padding: clamp(24px, 5vw, 40px); background: rgba(255,255,255,0.075); box-shadow: var(--shadow-lg); backdrop-filter: blur(8px); }
.hero-panel h2 { font-size: clamp(2rem, 6vw, 3.6rem); }
.hero-panel p { color: rgba(255,255,255,0.76); }
.hero-panel .philosophy-line { color: var(--gold-300); font-family: var(--serif); font-size: 1.3rem; }

.page-hero { padding: clamp(54px, 8vw, 96px) 0; background: linear-gradient(145deg, var(--forest-950), var(--forest-800)); color: var(--white); }
.page-hero .container { display: grid; gap: 20px; }
.page-hero h1 { font-size: clamp(2.8rem, 9vw, 5.8rem); max-width: 1000px; }
.page-hero p { max-width: 780px; margin: 0; color: rgba(255,255,255,0.78); font-size: 1.1rem; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 21px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; line-height: 1.2; text-align: center; cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold-300); color: var(--forest-950); box-shadow: 0 12px 30px rgba(185,154,80,0.22); }
.button-primary:hover { background: #e5d18f; }
.button-secondary { background: var(--forest-800); color: var(--white); border-color: rgba(216,194,126,0.34); }
.button-secondary:hover { background: var(--forest-700); }
.button-light { background: var(--white); color: var(--forest-900); border-color: var(--line); }
.button-outline { background: transparent; color: inherit; border-color: currentColor; }

.section-heading { display: grid; gap: 14px; max-width: 820px; margin-bottom: 38px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: rgba(255,255,255,0.72); }

.grid { display: grid; gap: 18px; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(22px, 4vw, 32px); box-shadow: var(--shadow-sm); }
.card p { color: var(--muted); }
.card-dark { background: linear-gradient(145deg, var(--forest-900), var(--forest-800)); color: var(--white); border-color: rgba(216,194,126,0.22); }
.card-dark p { color: rgba(255,255,255,0.74); }
.card-accent { border-top: 4px solid var(--gold-500); }
.card .button { margin-top: 10px; }
.kicker { color: var(--gold-500); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; font-weight: 900; }

.media-frame { overflow: hidden; border-radius: var(--radius-lg); min-height: 280px; background: var(--forest-900); box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.split { display: grid; gap: 34px; align-items: center; }
.split-copy { display: grid; gap: 18px; }
.split-copy p { margin: 0; color: var(--muted); }
.section-dark .split-copy p { color: rgba(255,255,255,0.74); }

.philosophy-grid { display: grid; gap: 16px; }
.philosophy-item { padding: 24px; background: rgba(255,255,255,0.07); border: 1px solid rgba(216,194,126,0.18); border-radius: var(--radius-md); }
.philosophy-item strong { display: block; font-family: var(--serif); color: var(--gold-300); font-size: 2rem; }
.philosophy-item p { margin-bottom: 0; color: rgba(255,255,255,0.74); }

.trust-list, .check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.trust-list li, .check-list li { position: relative; padding-left: 27px; color: var(--muted); }
.trust-list li::before, .check-list li::before { content: ""; position: absolute; left: 2px; top: 0.66em; width: 10px; height: 6px; border-left: 2px solid var(--gold-500); border-bottom: 2px solid var(--gold-500); transform: rotate(-45deg); }
.section-dark .trust-list li, .card-dark .check-list li { color: rgba(255,255,255,0.76); }

.quote-panel { border-left: 4px solid var(--gold-500); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 24px 28px; background: rgba(185,154,80,0.10); font-family: var(--serif); font-size: clamp(1.35rem, 3vw, 2rem); color: var(--forest-900); }
.section-dark .quote-panel { color: var(--white); background: rgba(216,194,126,0.10); }

.program-section { scroll-margin-top: 96px; }
.program-detail { display: grid; gap: 22px; }
.program-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.meta-pill, .status-pill { display: inline-flex; align-items: center; width: fit-content; border-radius: 999px; padding: 7px 11px; background: rgba(185,154,80,0.15); border: 1px solid rgba(185,154,80,0.3); color: var(--forest-800); font-size: 0.78rem; font-weight: 850; }
.card-dark .meta-pill { color: var(--gold-300); background: rgba(216,194,126,0.08); }

.registration-grid { display: grid; gap: 20px; }
.registration-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(22px, 4vw, 30px); box-shadow: var(--shadow-sm); display: grid; align-content: start; }
.registration-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.program-category { color: var(--muted); font-size: 0.76rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.12em; }
.registration-card h2 { font-size: clamp(1.8rem, 4vw, 2.45rem); }
.registration-card > p { color: var(--muted); }
.program-facts { margin: 18px 0 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.program-facts div { display: grid; grid-template-columns: minmax(85px, 0.32fr) 1fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.program-facts dt { font-weight: 850; color: var(--forest-800); }
.program-facts dd { margin: 0; color: var(--muted); }
.program-facts.compact div { grid-template-columns: minmax(88px, 0.3fr) 1fr; }
.registration-card .card-actions { margin-top: 24px; }
.registration-card .button { flex: 1 1 145px; }

.form-layout { display: grid; gap: 24px; align-items: start; }
.form-panel, .summary-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(22px, 4vw, 34px); box-shadow: var(--shadow-sm); }
.summary-panel { background: var(--cream); }
.form-section { border: 0; padding: 0; margin: 0 0 30px; }
.form-section:last-of-type { margin-bottom: 0; }
.form-section legend { width: 100%; font-family: var(--serif); font-size: 1.65rem; font-weight: 700; color: var(--forest-900); padding: 0 0 12px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.field-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label, .field-label { font-weight: 850; color: var(--forest-900); }
.field small, .help-text { color: var(--muted); }
input, select, textarea { width: 100%; border: 1px solid rgba(6,39,28,0.24); border-radius: 12px; background: var(--white); color: var(--ink); padding: 13px 14px; }
textarea { min-height: 132px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(185,154,80,0.16); outline: none; }
.choice-grid { display: grid; gap: 10px; }
.choice { display: flex; gap: 10px; align-items: flex-start; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fffdf8; }
.choice input { width: auto; margin-top: 4px; flex: 0 0 auto; }
.choice span { color: var(--muted); }
.required { color: #7c2d12; }
.field-error { margin: 8px 0 0; color: #8b1e1e; font-weight: 800; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { padding: 14px 16px; border-radius: 12px; background: var(--cream); color: var(--muted); font-size: 0.92rem; }

.live-class-picker { display: grid; gap: 16px; }
.class-day-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}
.class-day-tab {
  min-width: 0;
  padding: 10px 4px;
  border: 1px solid rgba(6,39,28,0.18);
  border-radius: 12px;
  background: var(--cream);
  color: var(--forest-900);
  cursor: pointer;
  text-align: center;
}
.class-day-tab span { display: block; font-weight: 900; }
.class-day-tab small { display: block; margin-top: 2px; color: var(--muted); font-size: 0.68rem; line-height: 1.1; }
.class-day-tab.is-active {
  border-color: var(--forest-800);
  background: var(--forest-900);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(3,27,19,0.16);
}
.class-day-tab.is-active small { color: rgba(255,255,255,0.72); }
.class-day-tab:disabled { opacity: 0.42; cursor: not-allowed; }
.class-day-heading { margin: 0; color: var(--forest-900); font-weight: 900; }
.class-time-options { display: grid; gap: 10px; }
.class-time-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(6,39,28,0.18);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--forest-950);
  cursor: pointer;
  text-align: left;
}
.class-time-main { font-size: 1.08rem; font-weight: 900; line-height: 1.2; }
.class-time-meta { color: var(--muted); font-size: 0.9rem; }
.class-space-status {
  grid-row: 1 / span 2;
  grid-column: 2;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(185,154,80,0.14);
  color: var(--forest-900);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}
.class-time-card:hover { border-color: var(--gold-500); }
.class-time-card:focus-visible { outline: 3px solid rgba(185,154,80,0.28); outline-offset: 2px; }
.class-time-card.is-selected {
  border-color: var(--forest-800);
  background: rgba(18,75,53,0.08);
  box-shadow: inset 0 0 0 2px var(--forest-800);
}
.class-time-card.is-selected .class-space-status { background: var(--forest-900); color: var(--white); }
.class-time-card:disabled { opacity: 0.48; cursor: not-allowed; }


.faq-list { display: grid; gap: 12px; }
details.faq { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
details.faq summary { list-style: none; cursor: pointer; padding: 18px 52px 18px 20px; position: relative; font-weight: 900; color: var(--forest-900); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); }
details.faq[open] summary::after { content: "–"; }
details.faq .faq-body { padding: 0 20px 20px; color: var(--muted); }

.cta-band { background: var(--forest-900); color: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 6vw, 60px); display: grid; gap: 24px; align-items: center; box-shadow: var(--shadow-lg); }
.cta-band p { color: rgba(255,255,255,0.72); margin-bottom: 0; }

.site-footer { background: var(--forest-950); color: var(--white); padding: 58px 0 24px; }
.footer-grid { display: grid; gap: 38px; }
.footer-brand { display: flex; align-items: flex-start; gap: 18px; }
.footer-logo { width: 76px; height: 76px; border-radius: 50%; border: 1px solid rgba(216,194,126,0.6); }
.site-footer h2, .site-footer h3 { margin: 0 0 12px; }
.site-footer h2 { font-size: 2rem; }
.site-footer h3 { font-size: 1.25rem; color: var(--gold-300); }
.site-footer p { color: rgba(255,255,255,0.68); margin: 0; }
.footer-location { margin-top: 9px !important; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.78); }
.footer-links a:hover { color: var(--gold-300); }
.footer-bottom { display: flex; flex-direction: column; gap: 12px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.9rem; }
.footer-bottom nav { display: flex; gap: 16px; }

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.minor-fields { margin-top: 16px; }
.registration-return-light { color: var(--white); }

[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease, transform 500ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (min-width: 700px) {
  .container { width: min(calc(100% - 48px), var(--content)); }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .philosophy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .registration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: minmax(0, 1.65fr) 0.7fr 0.8fr; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 940px) {
  .menu-toggle { display: none; }
  .site-nav { display: flex; align-items: center; gap: 2px; position: static; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  .site-nav a { padding: 10px 11px; font-size: 0.9rem; }
  .site-nav .nav-register { margin-left: 6px; padding-inline: 16px; }
  .hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); }
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 58px; }
  .split.reverse .media-frame { order: 2; }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .registration-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .form-layout { grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr); }
  .summary-panel { position: sticky; top: 102px; }
}

@media (max-width: 420px) {
  .class-day-tabs { gap: 5px; }
  .class-day-tab { padding: 9px 2px; border-radius: 10px; }
  .class-day-tab small { font-size: 0.61rem; }
  .class-time-card { grid-template-columns: 1fr; gap: 5px; padding: 14px; }
  .class-space-status { grid-row: auto; grid-column: auto; justify-self: start; }
  .brand-copy small { display: none; }
  .brand-logo { width: 48px; height: 48px; }
  .button { width: 100%; }
  .hero-actions, .card-actions { display: grid; }
  .program-facts div { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Premium confirmation page */
.success-main { min-height: 70vh; background: var(--forest-950); }
.success-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(46px, 8vw, 96px) 0 clamp(58px, 9vw, 112px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(18, 75, 53, 0.92), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(185, 154, 80, 0.18), transparent 27%),
    linear-gradient(145deg, var(--forest-950), #082f22 58%, var(--forest-900));
}
.success-hero::before,
.success-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(216, 194, 126, 0.16);
}
.success-hero::before {
  width: 430px;
  height: 430px;
  left: -270px;
  bottom: -235px;
  box-shadow: 0 0 0 65px rgba(216,194,126,0.025), 0 0 0 130px rgba(216,194,126,0.018);
}
.success-hero::after {
  width: 300px;
  height: 300px;
  right: -165px;
  top: -155px;
  box-shadow: 0 0 0 48px rgba(216,194,126,0.022);
}
.success-container { width: min(calc(100% - 28px), 900px); }
.success-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid rgba(216,194,126,0.30);
  border-radius: clamp(24px, 4vw, 38px);
  background: rgba(251, 248, 239, 0.98);
  color: var(--ink);
  box-shadow: 0 34px 95px rgba(0,0,0,0.34);
  text-align: center;
}
.success-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-300), var(--gold-500), transparent);
}
.success-brand {
  display: flex;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-brand img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(185,154,80,0.48);
  box-shadow: 0 12px 30px rgba(3,27,19,0.14);
}
.success-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}
.success-mark svg { width: 100%; height: 100%; overflow: visible; }
.success-mark circle {
  fill: rgba(185,154,80,0.11);
  stroke: var(--gold-500);
  stroke-width: 2;
}
.success-mark path {
  fill: none;
  stroke: var(--forest-800);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-eyebrow { margin-bottom: 12px; }
.success-card h1 {
  max-width: 760px;
  margin-inline: auto;
  color: var(--forest-950);
  font-size: clamp(2.45rem, 8vw, 5.25rem);
  letter-spacing: -0.052em;
}
.success-lede {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
}
.success-divider {
  width: min(100%, 620px);
  height: 1px;
  margin: clamp(30px, 5vw, 46px) auto;
  background: linear-gradient(90deg, transparent, rgba(185,154,80,0.55), transparent);
}
.success-next {
  max-width: 680px;
  margin-inline: auto;
  text-align: left;
}
.success-kicker {
  margin: 0 0 8px;
  color: var(--gold-500);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.success-next h2 {
  color: var(--forest-900);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.035em;
}
.success-steps {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
}
.success-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf8;
}
.success-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--gold-300);
  font-family: var(--serif);
  font-weight: 800;
}
.success-steps p { margin: 3px 0 0; color: var(--muted); }
.success-actions {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 30px auto 0;
}
.button-quiet {
  background: transparent;
  color: var(--forest-900);
  border-color: rgba(6,39,28,0.24);
}
.button-quiet:hover { background: var(--cream); }
.success-note {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.success-note a {
  color: var(--forest-800);
  font-weight: 900;
  border-bottom: 1px solid var(--gold-500);
}
.success-philosophy {
  margin: 25px 0 0;
  text-align: center;
  color: rgba(255,255,255,0.70);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
}
@media (min-width: 640px) {
  .success-actions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .success-card { text-align: left; }
  .success-brand, .success-mark { margin-left: 0; }
  .success-card h1, .success-lede { margin-left: 0; }
  .success-steps li { grid-template-columns: 34px 1fr; padding: 14px; }
}

/* Registration legal and availability states */
.button-disabled,
.button:disabled {
  background: #d7d8d3;
  color: #666d68;
  border-color: rgba(6, 39, 28, 0.12);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}
.button:disabled:hover { transform: none; }

.policy-summary,
.risk-description {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fffdf8;
}
.risk-description { margin-top: 16px; }
.risk-description h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--forest-900);
}
.risk-description p { margin: 0; color: var(--muted); }
.compact-list { margin: 0; }

.statutory-warning {
  margin-top: 18px;
  border: 3px solid var(--forest-900);
  border-radius: 16px;
  padding: clamp(18px, 4vw, 28px);
  background: #fff9e8;
  color: #111813;
  text-transform: uppercase;
}
.statutory-warning > strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: calc(1rem + 5pt);
  line-height: 1.15;
  color: var(--forest-950);
}
.statutory-warning p {
  margin: 0;
  font-size: calc(1rem + 5pt);
  line-height: 1.48;
  font-weight: 850;
  letter-spacing: 0.01em;
}
.waiver-section .form-note { margin-bottom: 16px; }

@media (max-width: 620px) {
  .statutory-warning > strong,
  .statutory-warning p {
    font-size: calc(0.86rem + 5pt);
  }
}


/* Mobile-friendly Sunday division and camp-week selectors */
.preference-card-picker {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}
.preference-card-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.preference-option-card {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 102px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(213, 183, 112, 0.30);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,0.10), transparent 34%),
    linear-gradient(145deg, #174a39 0%, #0b3327 48%, #05251b 100%);
  color: #ffffff;
  box-shadow:
    0 12px 24px rgba(3, 27, 19, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.preference-option-title {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.16;
}
.preference-option-detail {
  color: rgba(255,255,255,0.76);
  font-size: 0.86rem;
  line-height: 1.34;
}
.preference-option-card:hover {
  border-color: rgba(226, 197, 126, 0.92);
  transform: translateY(-1px);
}
.preference-option-card:focus-visible {
  outline: 3px solid rgba(226, 197, 126, 0.52);
  outline-offset: 3px;
}
.preference-option-card.is-selected {
  border-color: #e0bd69;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,0.15), transparent 36%),
    linear-gradient(145deg, #236149 0%, #124331 48%, #082b20 100%);
  box-shadow:
    0 14px 30px rgba(3, 27, 19, 0.28),
    inset 0 0 0 3px #d8b45f,
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.preference-option-card.is-selected::after {
  content: "Selected";
  justify-self: start;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6ca84, #cda64e);
  color: #09291f;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}
.preference-selection-summary {
  margin: 0;
  padding: 10px 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(10, 53, 39, 0.10), rgba(200, 165, 82, 0.16));
  color: var(--forest-950);
  font-weight: 900;
}
.preference-card-picker.is-division-picker .preference-card-options {
  grid-template-columns: 1fr;
}
.preference-card-picker.is-division-picker .preference-option-card {
  min-height: 78px;
}
.preference-option-card.is-wide {
  grid-column: 1 / -1;
}
body[data-page="registration"] .section-cream {
  background:
    radial-gradient(circle at 85% 12%, rgba(18, 75, 53, 0.10), transparent 34%),
    linear-gradient(155deg, #eee3cc 0%, #f7f0df 44%, #dce7df 100%);
}
body[data-page="registration"] .form-panel,
body[data-page="registration"] .summary-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,244,234,0.98));
}
@media (max-width: 330px) {
  .preference-card-options {
    grid-template-columns: 1fr;
  }
  .preference-option-card.is-wide {
    grid-column: auto;
  }
}
