/* ============================================================================
   LCBV · Design System v4 — Apple-style
   Used by all pages. Page-specific overrides go in each page's <style>.
   ============================================================================ */
:root {
  /* Surfaces */
  --paper:        #FFFFFF;
  --cream:        #FBF8F2;
  --cream-2:      #F5EFE2;
  --sand:         #F4ECDD;
  --sand-2:       #EFE3CC;
  --surface-2:    #F5F5F7;
  --surface-3:    #EAEAEC;
  --dark:         #1D1D1F;
  --dark-2:       #2A2A2D;
  --dark-3:       #424245;

  /* Ink */
  --ink:          #1D1D1F;
  --ink-2:        #424245;
  --ink-3:        #6E6E73;
  --ink-4:        #86868B;

  /* Accent */
  --accent:       #A23E28;
  --accent-2:     #8E331F;
  --accent-3:     #BF5944;
  --accent-soft:  #F5E5E0;
  --accent-glow:  rgba(162, 62, 40, 0.12);

  /* Card accent palettes */
  --jr-bg:        linear-gradient(155deg, #E3EEF7 0%, #FFFFFF 70%);
  --jr-dot:       #4A7FA3;
  --sr-bg:        linear-gradient(155deg, #F7E8D2 0%, #FFFFFF 70%);
  --sr-dot:       var(--accent);

  /* Status */
  --ok:           #2D7D32;
  --warn:         #B45309;

  /* Lines */
  --line:         rgba(0, 0, 0, 0.08);
  --line-2:       rgba(0, 0, 0, 0.04);
  --line-dark:    rgba(255, 255, 255, 0.1);

  /* Shadows */
  --sh-1:         0 1px 2px rgba(0, 0, 0, 0.04);
  --sh-2:         0 6px 20px rgba(0, 0, 0, 0.06);
  --sh-3:         0 18px 50px rgba(0, 0, 0, 0.10);
  --sh-warm:      0 16px 40px rgba(162, 62, 40, 0.08);

  /* Radii */
  --r-sm:         8px;
  --r-md:         12px;
  --r-lg:         16px;
  --r-card:       22px;
  --r-card-lg:    28px;
  --r-pill:       980px;

  /* Type */
  --f-sans:       -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", system-ui, sans-serif;

  /* Motion */
  --ease:         cubic-bezier(0.32, 0.72, 0, 1);
  --med:          280ms;
  --fast:         180ms;
}

/* ============================================================================
   Base
   ============================================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 390px) {
  .wrap, .wrap--narrow { padding: 0 18px; }
}

/* ============================================================================
   Type
   ============================================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--f-sans);
  color: var(--ink);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.022em;
}
.h-hero {
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 600;
}
.h-section {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  font-weight: 600;
}
.h-card {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-weight: 600;
}
.h-sub {
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 60ch;
  margin: 0;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.eyebrow.muted { color: var(--ink-3); }
p { margin: 0; color: var(--ink-2); }
.lead { font-size: 19px; line-height: 1.5; color: var(--ink-2); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 500;
  font-size: 15px;
  transition: gap var(--med) var(--ease);
}
.text-link:hover { gap: 10px; }

/* ============================================================================
   Buttons
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  border: 0;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--med) var(--ease), transform var(--med) var(--ease), color var(--med) var(--ease);
  white-space: nowrap;
}
.btn:hover { background: #000; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: rgba(0,0,0,0.04); }
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); }
.btn--accent { background: var(--accent); }
.btn--accent:hover { background: var(--accent-2); }
.btn--lg { font-size: 17px; padding: 15px 28px; }
.btn--xl { font-size: 18px; padding: 18px 32px; }
.btn--block { width: 100%; }
.btn .arrow { display: inline-block; transition: transform var(--med) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================================
   Navigation
   ============================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-2);
}
.nav .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.nav .brand svg { width: 26px; height: 26px; flex: 0 0 auto; }
.nav .brand .nm { display: flex; flex-direction: column; line-height: 1.1; }
.nav .brand .l2 { color: var(--ink-3); font-weight: 400; font-size: 13px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-2);
  transition: color var(--med) var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  margin-left: 6px;
  transition: background var(--med) var(--ease);
}
.nav-cta:hover { background: #000; }
.menu-btn {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  margin-left: auto;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-btn .bars,
.menu-btn .bars::before,
.menu-btn .bars::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
}
.menu-btn .bars { position: relative; }
.menu-btn .bars::before,
.menu-btn .bars::after { content: ""; position: absolute; left: 0; }
.menu-btn .bars::before { top: -6px; }
.menu-btn .bars::after { top: 6px; }

.drawer {
  position: fixed; inset: 0; background: var(--paper); z-index: 60;
  transform: translateX(100%); transition: transform var(--med) var(--ease); padding-top: 80px;
}
.drawer.open { transform: translateX(0); }
.drawer ul { list-style: none; margin: 0; padding: 0 24px; display: flex; flex-direction: column; gap: 4px; }
.drawer a {
  display: block; padding: 14px 0; font-size: 18px; color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}
.drawer .drawer-cta {
  margin-top: 16px; background: var(--ink); color: #fff;
  padding: 14px 18px; border-radius: var(--r-pill); text-align: center;
  border-bottom: 0; font-weight: 500;
}
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2); border: 0;
  display: grid; place-items: center; cursor: pointer;
  color: var(--ink); transition: background var(--fast) var(--ease);
}
.drawer-close:hover { background: var(--surface-3); }

@media (max-width: 800px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
}

/* ============================================================================
   Section bands
   ============================================================================ */
section { padding: clamp(72px, 8vw, 130px) 0; }
section.tight { padding: clamp(56px, 6vw, 90px) 0; }
section.sm { padding: clamp(40px, 5vw, 72px) 0; }
@media (max-width: 480px) {
  section { padding: 56px 0; }
  section.tight { padding: 44px 0; }
  section.sm { padding: 36px 0; }
}

.band-cream    { background: var(--cream); }
.band-paper    { background: var(--paper); }
.band-sand     {
  background:
    radial-gradient(ellipse at bottom left, rgba(162, 62, 40, 0.06) 0%, transparent 50%),
    var(--sand);
  position: relative;
}
.band-dark     { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.band-dark::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(162, 62, 40, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.band-dark .wrap, .band-dark .wrap--narrow { position: relative; }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4 { color: #fff; }
.band-dark p { color: rgba(255,255,255,0.78); }
.band-dark .eyebrow { color: var(--accent-3); }
.band-dark .text-link { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; }
.band-dark .text-link:hover { border-color: rgba(255,255,255,0.6); }

/* Page header (subpage hero) */
.page-header {
  padding: clamp(72px, 8vw, 110px) 24px clamp(40px, 5vw, 60px);
  background: radial-gradient(ellipse at top right, rgba(162, 62, 40, 0.08) 0%, transparent 50%), var(--cream);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: auto -100px -200px auto;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(243, 217, 195, 0.5) 0%, transparent 70%);
  pointer-events: none;
}
/* When .wrap is a direct child (programs, home style), cancel double h-padding */
.page-header > .wrap,
.page-header > .wrap--narrow { padding-left: 0; padding-right: 0; }
.page-header .wrap, .page-header .wrap--narrow { position: relative; }
.page-header h1 { margin-bottom: 18px; }
.page-header .h-sub { max-width: 60ch; }

/* Centered section head */
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { margin-bottom: 18px; }
.section-head .h-sub { margin: 0 auto; }

/* ============================================================================
   Cards
   ============================================================================ */
.card {
  background: var(--paper);
  border-radius: var(--r-card-lg);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--sh-2);
}
.card--soft {
  background: var(--surface-2);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 36px);
}

/* Camp / program cards (used on home + programs) */
.camp-card {
  border-radius: var(--r-card-lg);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--sh-2);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.camp-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.camp-card.junior { background: var(--jr-bg); }
.camp-card.senior { background: var(--sr-bg); }

/* Sold-out state (populated by program-availability fetch) */
.camp-card .sold-out-badge {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-1);
}
.camp-card.is-sold-out:hover { transform: none; box-shadow: var(--sh-2); }
.camp-card.is-sold-out .sold-out-badge { display: inline-block; }
.camp-card.is-sold-out .price-wrap,
.camp-card.is-sold-out > ul,
.camp-card.is-sold-out > .cta-row > .link { opacity: 0.45; }
.camp-card.is-sold-out .cta-row .btn {
  background: var(--ink-3) !important;
  color: rgba(255,255,255,0.9) !important;
  pointer-events: none;
  cursor: not-allowed;
}
.camp-card .tag {
  font-size: 13px; font-weight: 600; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.camp-card h3 { font-size: clamp(28px, 3vw, 40px); }
.camp-card .price-wrap {
  display: flex; align-items: baseline; gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.camp-card .price {
  font-size: 48px; font-weight: 600; letter-spacing: -0.028em;
  color: var(--ink); line-height: 1;
}
.camp-card .price-meta { font-size: 14px; color: var(--ink-3); line-height: 1.4; }
.camp-card .price-meta b { color: var(--ink-2); font-weight: 500; display: block; }
.camp-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.camp-card li {
  font-size: 15px; color: var(--ink-2); line-height: 1.45;
  padding-left: 22px; position: relative;
}
.camp-card li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  position: absolute; left: 4px; top: 8px;
}
.camp-card.junior li::before { background: var(--jr-dot); }
.camp-card.senior li::before { background: var(--sr-dot); }
.camp-card .cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.camp-card .cta-row a.link {
  color: var(--ink-2); font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}

.camps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 760px) { .camps-row { grid-template-columns: 1fr; } }

/* ============================================================================
   Forms
   ============================================================================ */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="date"], textarea, select {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  width: 100%;
  transition: border-color var(--med) var(--ease), background var(--med) var(--ease);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}
textarea { resize: vertical; min-height: 120px; }

.signup-form { display: flex; flex-direction: column; gap: 12px; }
.signup-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.signup-form .honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.signup-form .form-msg { font-size: 14px; min-height: 1.4em; color: var(--ink-3); }
.signup-form .form-msg.ok { color: var(--ok); font-weight: 500; }
.signup-form .form-msg.err { color: var(--accent); font-weight: 500; }
.signup-form button[type="submit"] { width: 100%; }
.signup-form[data-state="ok"] .form-fields { display: none; }
.signup-form[data-state="ok"] .form-success { display: block; }
.signup-form .form-success { display: none; padding: 20px; background: var(--cream); border-radius: var(--r-md); }
.signup-form .form-success h4 { font-size: 17px; color: var(--ink); margin: 0 0 6px; }
.signup-form .form-success p { font-size: 14px; color: var(--ink-2); margin: 0; }
@media (max-width: 480px) {
  .signup-form .row { grid-template-columns: 1fr; }
}

/* ============================================================================
   Footer (dark)
   ============================================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.site-footer .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.site-footer h4 {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer li { font-size: 14px; }
.site-footer a { color: rgba(255,255,255,0.7); transition: color var(--med) var(--ease); }
.site-footer a:hover { color: #fff; }
.site-footer .ftbrand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; margin-bottom: 16px; color: #fff;
}
.site-footer .ftbrand svg { width: 24px; height: 24px; }
.site-footer .blurb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-width: 36ch;
}
.site-footer .footer-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--line-dark);
}
.site-footer .footer-map iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.4);
}
.site-footer .meta {
  max-width: 1180px;
  margin: 60px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}
.site-footer .social-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.site-footer .social-row li { font-size: 0; line-height: 0; }
.site-footer .social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--med) var(--ease), color var(--med) var(--ease), transform var(--med) var(--ease);
}
.site-footer .social-row a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.site-footer .social-row svg {
  width: 13px;
  height: 13px;
  display: block;
}

@media (max-width: 800px) {
  .site-footer .inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .meta { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .site-footer .inner { grid-template-columns: 1fr; }
}

/* ============================================================================
   Reveal-on-scroll
   ============================================================================ */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================================
   Closer (closing card pattern)
   ============================================================================ */
.closer {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.closer h2 { margin-bottom: 24px; }
.closer p { font-size: 18px; color: var(--ink-2); line-height: 1.55; }
.closer p + p { margin-top: 18px; }
.closer a.phone {
  color: var(--ink); font-weight: 600;
  border-bottom: 2px solid var(--accent); padding-bottom: 1px;
}

/* ============================================================================
   Utility
   ============================================================================ */
.center-text { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================================
   Inner-page compat (tournaments, about, coaches, contact, gallery, register)
   ============================================================================ */

/* Section spacing alias */
section.section-sm { padding: clamp(40px, 5vw, 72px) 0; }

/* Page-header 2-col grid (used when section has class="page-header wrap") */
.page-header .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 760px) { .page-header .grid { grid-template-columns: 1fr; } }

/* Soft note chip (coaches page) */
.soft-note {
  background: var(--surface-2);
  border-radius: var(--r-card);
  padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: var(--ink-2); line-height: 1.55;
  border: 1px solid var(--line-2);
}
.soft-note .iconwrap { flex: 0 0 auto; color: var(--accent); margin-top: 2px; }

/* Facts / credentials band card */
.facts-card {
  background: var(--cream-2);
  border-radius: var(--r-card-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--sh-2);
}

/* Contact page */
.contact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .contact-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .contact-row { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--paper);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--sh-2);
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--line-2);
}
.contact-card .iconwrap {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; flex: 0 0 auto;
}
.contact-card .k { font-size: 13px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.contact-card .v { font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.map-card {
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  aspect-ratio: 21 / 7;
  background: var(--surface-2);
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; filter: invert(0.92) hue-rotate(180deg) saturate(0.4); }

/* Register form classes */
.fieldset { display: flex; flex-direction: column; gap: 18px; }
.fieldset h3 {
  font-size: 20px; font-weight: 600; color: var(--ink); margin: 0;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
}
.fieldset h3 .h-sub {
  font-size: 14px; color: var(--ink-3); font-weight: 400; letter-spacing: 0;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 15px; font-weight: 500; color: var(--ink-2); }
.field .req { color: var(--accent); margin-left: 2px; }
.field .hint { font-size: 13px; color: var(--ink-3); }
.field .err { font-size: 13px; color: var(--accent); min-height: 1.2em; }
.field.invalid > input,
.field.invalid > select,
.field.invalid > textarea { border-color: var(--accent); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.row.one { grid-template-columns: 1fr; }
@media (max-width: 640px) { .row { grid-template-columns: 1fr; } }
.pick-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pick-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pick-row.five { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
@media (max-width: 640px) { .pick-row.five { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 400px) { .pick-row.five { grid-template-columns: repeat(2, 1fr); } }
.pick-row input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.pick-row label { cursor: pointer; display: block; }
.pick-card {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  transition: border-color var(--med) var(--ease), background var(--med) var(--ease);
  background: var(--paper);
  height: 100%;
}
.pick-card .t { font-size: 15px; font-weight: 600; color: var(--ink); }
.pick-card .s { font-size: 13px; color: var(--ink-3); margin-top: 3px; }
.pick-card .n { font-size: 22px; font-weight: 700; color: var(--ink-3); }
.pick-card .l { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.pick-row input[type="radio"]:checked + .pick-card {
  border-color: var(--ink);
  background: var(--cream);
}
.pick-row label:hover .pick-card { border-color: var(--ink-3); }
.gender-row { display: flex; flex-wrap: wrap; gap: 8px; }
.gender-row input[type="radio"] { display: none; }
.gender-row label { cursor: pointer; }
.gp {
  display: block; padding: 10px 18px;
  border: 1.5px solid var(--line); border-radius: var(--r-pill);
  font-size: 14px; color: var(--ink-2); background: var(--paper);
  transition: border-color var(--med) var(--ease), background var(--med) var(--ease), color var(--med) var(--ease);
}
.gender-row input[type="radio"]:checked + .gp {
  border-color: var(--ink); background: var(--ink); color: #fff; font-weight: 500;
}
.waiver-frame {
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: 20px 24px;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}
.waiver-frame h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; color: var(--ink); }
.waiver-frame .sub { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; display: block; }
.waiver-frame p { margin: 0 0 12px; }
.waiver-frame p:last-child { margin: 0; }
.check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.check input[type="checkbox"] { display: none; }
.check .box {
  width: 20px; height: 20px; border-radius: 5px; flex: 0 0 auto;
  border: 2px solid var(--line); background: var(--paper); margin-top: 2px;
  display: grid; place-items: center;
  transition: border-color var(--med) var(--ease), background var(--med) var(--ease);
}
.check input[type="checkbox"]:checked + .box { border-color: var(--ink); background: var(--ink); }
.check input[type="checkbox"]:checked + .box::after {
  content: ""; display: block; width: 11px; height: 6px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: translateY(-2px) rotate(-45deg);
}
.check .txt { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
