/* ============================================================
   GCTTC Summer Camp shared styles
   Palette: Court Blue (#1d4ed8), Net Red (#dc2626), White
   ============================================================ */

:root {
  --blue: #1d4ed8;
  --blue-dark: #1e3a8a;
  --blue-light: #dbeafe;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --white: #ffffff;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-muted: #94a3b8;
  --paper: #f8fafc;
  --line: #e2e8f0;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.08);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color .15s; }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section-tight { padding: clamp(40px, 6vw, 70px) 0; }
.section-alt { background: var(--paper); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.lede { font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--ink-soft); max-width: 62ch; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; color: var(--ink); }
.brand img { height: 38px; width: auto; }
.brand-name { font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-tag { font-size: .68rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: .12em; display: block; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 9px 14px; border-radius: 8px;
  color: var(--ink); font-weight: 500; font-size: .94rem;
}
.nav-links a:hover:not(.btn-primary):not(.btn-secondary),
.nav-links a.active:not(.btn-primary):not(.btn-secondary) {
  background: var(--blue-light); color: var(--blue-dark);
}
.nav-links a.btn-primary { color: var(--white); }
.nav-links a.btn-primary:hover, .nav-links a.btn-primary.active { color: var(--white); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 8px;
  cursor: pointer; border-radius: 8px;
}
.nav-toggle:hover { background: var(--paper); }
.nav-toggle svg { width: 26px; height: 26px; color: var(--ink); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch;
    gap: 4px;
    background: var(--white);
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  .nav-links a { padding: 12px 14px; font-size: 1rem; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-cta { margin-left: 0; margin-top: 6px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  cursor: pointer; border: 0;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.28);
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); box-shadow: 0 6px 22px rgba(220, 38, 38, 0.35); }
.btn-secondary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.28);
}
.btn-secondary:hover { background: var(--blue-dark); color: var(--white); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(29, 78, 216, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(220, 38, 38, 0.08), transparent 60%),
    var(--white);
  padding: clamp(60px, 8vw, 110px) 0 clamp(50px, 7vw, 90px);
  overflow: hidden;
}
.hero-grid {
  display: grid; gap: clamp(32px, 5vw, 60px);
  grid-template-columns: 1.05fr 1fr; align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 .accent { color: var(--red); }
.hero h1 .underline {
  background: linear-gradient(transparent 68%, rgba(29, 78, 216, .2) 68%);
  padding: 0 4px;
}
.hero p { font-size: clamp(1.05rem, 1.3vw, 1.2rem); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-meta div { font-size: .9rem; color: var(--ink-soft); }
.hero-meta strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.15rem; font-weight: 700; }
.hero-media {
  position: relative; aspect-ratio: 5 / 6; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); transform: rotate(-1.5deg);
  background: var(--paper);
}
.hero-media-landscape { aspect-ratio: 16 / 11; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--blue); color: var(--white);
  padding: 14px 18px; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}
.hero-badge .big { font-size: 1.6rem; line-height: 1; display: block; }
.hero-badge .small { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cbd5e1; }
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; }

.icon-circle {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-light); color: var(--blue);
  margin-bottom: 16px;
}
.icon-circle.red { background: #fee2e2; color: var(--red); }

/* ---------- Section header ---------- */
.section-header { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; }

/* ---------- Pricing block ---------- */
.pricing {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 60px);
  align-items: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px);
  position: relative; overflow: hidden;
}
.pricing::before {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(220, 38, 38, 0.2); filter: blur(30px);
}
.pricing > * { position: relative; z-index: 1; }
.pricing h2 { color: var(--white); }
.pricing p { color: rgba(255, 255, 255, 0.85); }
.price-tag {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.15); font-family: var(--font-display);
  font-weight: 600; font-size: .9rem; margin-bottom: 14px;
}
.price-amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1; }
.price-amount sub { font-size: .35em; font-weight: 600; color: rgba(255,255,255,.8); margin-left: 6px; vertical-align: baseline; }
.price-features { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; }
.price-features li::before { content: "✓"; font-weight: 800; color: #93c5fd; flex: 0 0 auto; }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; text-align: left; } }

/* ---------- Schedule (day timeline) ---------- */
.schedule {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  position: relative;
}
.schedule-row {
  display: contents;
}
.schedule-time {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-dark);
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.schedule-block {
  padding: 18px 0 18px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.schedule-block::before {
  content: "";
  position: absolute; left: 0; top: 24px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--blue);
}
.schedule-block.break::before { border-color: var(--red); }
.schedule-block h4 { margin: 0 0 4px; font-size: 1.05rem; }
.schedule-block p { margin: 0; font-size: .95rem; }
.schedule-row:last-child .schedule-time,
.schedule-row:last-child .schedule-block { border-bottom: 0; }
@media (max-width: 640px) {
  .schedule { grid-template-columns: 100px 1fr; }
  .schedule-time { padding-right: 8px; font-size: .85rem; }
  .schedule-block { padding-left: 20px; }
}

/* ---------- Weeks chips ---------- */
.weeks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.week-chip {
  display: flex; flex-direction: column;
  padding: 16px 18px; border-radius: var(--radius);
  background: var(--white); border: 1.5px solid var(--line);
  transition: all .15s;
}
.week-chip strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.week-chip span { font-size: .9rem; color: var(--ink-soft); margin-top: 2px; }
.week-chip:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }

/* ---------- Coaches ---------- */
.coach-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 32px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.coach-card img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.coach-card-body { padding: 30px 30px 30px 0; }
.coach-card-body h3 { margin-bottom: 4px; }
.coach-title { color: var(--red); font-weight: 600; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.coach-creds { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.coach-creds li {
  display: inline-block; padding: 5px 12px;
  background: var(--blue-light); color: var(--blue-dark);
  border-radius: 999px; font-size: .82rem; font-weight: 600;
}
.coach-placeholder {
  background: linear-gradient(135deg, var(--blue-light) 0%, #fee2e2 100%);
  display: grid; place-items: center;
  min-height: 260px; color: var(--blue-dark);
  font-family: var(--font-display); font-weight: 800; font-size: 4rem;
}
@media (max-width: 720px) {
  .coach-card { grid-template-columns: 1fr; }
  .coach-card-body { padding: 24px 26px 28px; }
  .coach-card img, .coach-placeholder { min-height: 280px; max-height: 360px; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--blue);
  transition: transform .2s;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { background: var(--paper); color: var(--blue-dark); }
.faq-body { padding: 0 26px 22px; color: var(--ink-soft); }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.form-section { margin-bottom: 32px; }
.form-section:last-child { margin-bottom: 0; }
.form-section h3 { font-size: 1.15rem; margin-bottom: 6px; }
.form-section .form-section-sub { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; }

.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.form-field .required { color: var(--red); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 8px;
  background: var(--white); color: var(--ink);
  transition: border-color .12s, box-shadow .12s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.18);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-help { font-size: .82rem; color: var(--ink-muted); margin-top: 6px; }
.form-error { color: var(--red); font-size: .85rem; margin-top: 6px; display: none; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: var(--red); }
.form-field.has-error .form-error { display: block; }

/* Week multi-select pills */
.weeks-pick { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.week-pick {
  position: relative; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--white);
  transition: all .12s;
  display: flex; flex-direction: column; gap: 2px;
}
.week-pick input { position: absolute; opacity: 0; pointer-events: none; }
.week-pick:hover { border-color: var(--blue); }
.week-pick .wk-num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); }
.week-pick .wk-dates { font-size: .85rem; color: var(--ink-soft); }
.week-pick input:checked ~ .wk-num { color: var(--blue-dark); }
.week-pick:has(input:checked) {
  background: var(--blue-light); border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}
.week-pick:has(input:checked)::after {
  content: "✓"; position: absolute; top: 10px; right: 12px;
  font-weight: 800; color: var(--blue);
}

.form-summary {
  margin-top: 20px; padding: 18px 22px;
  background: var(--blue-light); border-radius: var(--radius);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.form-summary .summary-text strong { display: block; color: var(--blue-dark); font-family: var(--font-display); font-size: 1.1rem; }
.form-summary .summary-text span { color: var(--ink-soft); font-size: .92rem; }
.form-summary .summary-total { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--blue-dark); }

.form-actions { margin-top: 28px; display: flex; justify-content: flex-end; gap: 12px; }
@media (max-width: 560px) { .form-actions { flex-direction: column-reverse; } .form-actions .btn { width: 100%; } }

.form-banner {
  margin-bottom: 20px; padding: 14px 18px; border-radius: var(--radius);
  border-left: 4px solid var(--blue);
  background: var(--blue-light); color: var(--blue-dark);
  font-size: .94rem;
}
.form-banner.error { border-color: var(--red); background: #fee2e2; color: var(--red-dark); }
.form-banner.success { border-color: #16a34a; background: #dcfce7; color: #14532d; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 4vw, 50px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 18px; }
.contact-info-item h4 { margin: 0 0 4px; font-size: 1rem; }
.contact-info-item p, .contact-info-item a { margin: 0; color: var(--ink-soft); }
.contact-info-item a:hover { color: var(--blue); }
.map-embed {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Payment hint ---------- */
.payment-logos { display: flex; gap: 14px; align-items: center; margin-top: 16px; flex-wrap: wrap; }
.payment-logos img { height: 36px; width: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 28px;
  margin-top: 80px;
}
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: rgba(255, 255, 255, 0.7); }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { color: rgba(255, 255, 255, 0.55); margin-top: 14px; font-size: .92rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: .92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px; font-size: .85rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Admin ---------- */
.admin-shell { max-width: 1300px; margin: 0 auto; padding: 30px var(--gutter); }
.admin-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.admin-header h1 { margin: 0; font-size: 1.6rem; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px;
}
.stat-label { font-size: .82rem; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .06em; }
.stat-value { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--ink); margin-top: 4px; }
.stat.highlight { background: var(--blue); color: var(--white); border-color: var(--blue); }
.stat.highlight .stat-label { color: rgba(255, 255, 255, 0.7); }
.stat.highlight .stat-value { color: var(--white); }
.stat.red { background: var(--red); color: var(--white); border-color: var(--red); }
.stat.red .stat-label { color: rgba(255, 255, 255, 0.8); }
.stat.red .stat-value { color: var(--white); }

.admin-toolbar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.admin-toolbar input[type=search], .admin-toolbar select {
  padding: 9px 12px; border: 1.5px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); font-size: .92rem;
}
.admin-toolbar input[type=search] { min-width: 240px; }

.table-wrap {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow-x: auto;
}
.table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 880px; }
.table thead th {
  text-align: left; padding: 13px 14px;
  background: var(--paper); color: var(--ink-soft);
  font-weight: 600; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.table tbody td { padding: 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: var(--paper); }

.tag {
  display: inline-block; padding: 3px 9px; border-radius: 999px;
  font-size: .76rem; font-weight: 600;
}
.tag.paid { background: #dcfce7; color: #14532d; }
.tag.pending { background: #fef3c7; color: #78350f; }

/* Rosters by week */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.roster-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px;
}
.roster-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.roster-card h4 { margin: 0; font-family: var(--font-display); font-size: 1.05rem; }
.roster-dates { font-size: .85rem; color: var(--ink-soft); margin-top: 2px; }
.roster-count {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--blue);
  line-height: 1;
}
.roster-card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.roster-camper-list {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  display: none;
}
.roster-card.expanded .roster-camper-list { display: block; }
.roster-camper-list ul { list-style: none; margin: 0; padding: 0; }
.roster-camper-list li { padding: 8px 0; font-size: .92rem; border-bottom: 1px solid var(--paper); }
.roster-camper-list li:last-child { border-bottom: 0; }

.btn-sm { padding: 7px 14px; font-size: .85rem; }

/* Walk-in expand */
.walkin-shell summary { list-style: none; }
.walkin-shell summary::-webkit-details-marker { display: none; }
.walkin-shell[open] summary { background: var(--blue-dark); }

.admin-login {
  max-width: 420px; margin: 110px auto 60px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md);
}
.admin-login h1 { font-size: 1.5rem; margin-bottom: 6px; }
.admin-login p { font-size: .92rem; margin-bottom: 26px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
.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; }
