/* ==========================================================================
   Class with Ms. Nicole. Design system
   Sister-brand to NK&D mockup. Same type backbone, warmer palette.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Palette: bright + fun. Warm cream base, deep navy ink, vibrant coral primary, joyful accent set */
  --bone: #FFF8EA;
  --bone-deep: #FCEDD0;
  --ink: #1A2540;
  --ink-soft: #2F3B58;
  --stone: #6B7280;
  --rule: #F0E4C7;
  --rose: #FF6B5A;
  --rose-deep: #E04E3D;
  --blush: #FFE0D6;
  --butter: #FFCB47;
  --leaf: #68C77A;
  /* Fun accent set, sprinkled through age tags, mantra lines, seat status */
  --sunshine: #FFCB47;
  --sky: #4FB6E5;
  --mint: #68C77A;
  --grape: #B190FC;
  --bubblegum: #FF7BAA;

  /* Typography */
  --serif: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale (fluid) */
  --fs-display: clamp(3.25rem, 8.5vw, 8.5rem);
  --fs-h1: clamp(2.25rem, 5vw, 4.5rem);
  --fs-h2: clamp(1.75rem, 3.25vw, 2.75rem);
  --fs-h3: 1.5rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.75rem;

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 12rem;

  /* Layout */
  --container: 1320px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body { font-family: var(--sans); font-size: var(--fs-body); font-weight: 400; line-height: 1.55; color: var(--ink); background: var(--bone); overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s ease, color 0.2s ease; }
a:hover { opacity: 0.7; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }

/* Typography */
.display { font-family: var(--serif); font-weight: 400; font-size: var(--fs-display); line-height: 0.95; letter-spacing: -0.02em; }
h1, .h1 { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h1); line-height: 1.02; letter-spacing: -0.015em; }
h2, .h2 { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h2); line-height: 1.08; letter-spacing: -0.01em; }
h3, .h3 { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h3); line-height: 1.2; letter-spacing: -0.005em; }
.italic { font-style: italic; }
.eyebrow { font-family: var(--sans); font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
.lede { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.625rem); line-height: 1.4; color: var(--ink-soft); }
p { line-height: 1.65; }
.small { font-size: var(--fs-small); color: var(--stone); }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-6); }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-6); }
@media (max-width: 768px) { .container, .container-narrow { padding: 0 var(--s-5); } }

section { padding: var(--s-10) 0; }
@media (max-width: 768px) { section { padding: var(--s-8) 0; } }

/* Header / Nav */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: var(--s-5) 0; transition: background 0.3s ease, padding 0.3s ease; }
.site-header.scrolled { background: rgba(245, 239, 227, 0.92); backdrop-filter: blur(12px); padding: var(--s-4) 0; border-bottom: 1px solid var(--rule); }
.nav { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-family: var(--serif); font-size: 1.375rem; letter-spacing: -0.01em; }
.nav-brand span { color: var(--rose); font-style: italic; }
.nav-links { display: flex; gap: var(--s-7); align-items: center; }
.nav-links a { font-size: 0.9375rem; font-weight: 400; }
.nav-links a.cta { background: var(--ink); color: var(--bone); padding: var(--s-3) var(--s-5); border-radius: var(--radius-pill); font-size: 0.875rem; font-weight: 500; }
.nav-links a.cta:hover { background: var(--rose-deep); opacity: 1; color: var(--bone); }
.nav-toggle { display: none; }
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 100%; background: var(--bone); flex-direction: column; justify-content: center; align-items: center; gap: var(--s-6); z-index: 60; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.5rem; font-family: var(--serif); }
  .nav-toggle { display: block; z-index: 70; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; }
}

/* Hero */
.hero { padding: 0; min-height: 100vh; display: flex; align-items: flex-end; position: relative; background: var(--ink); }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26, 37, 64, 0.55) 0%, rgba(26, 37, 64, 0.45) 50%, rgba(26, 37, 64, 0.78) 100%); }
.hero-overlay::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(26, 37, 64, 0.35) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; color: var(--bone); padding: 0 var(--s-6) var(--s-10); width: 100%; max-width: var(--container); margin: 0 auto; }
.hero-eyebrow { font-size: var(--fs-eyebrow); letter-spacing: 0.22em; text-transform: uppercase; color: var(--blush); margin-bottom: var(--s-5); display: inline-block; padding: var(--s-2) var(--s-4); border: 1px solid var(--blush); border-radius: var(--radius-pill); }
.hero-title { font-family: var(--serif); font-size: var(--fs-display); line-height: 0.95; letter-spacing: -0.02em; margin-bottom: var(--s-5); text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.35); }
.hero-title .accent { color: var(--blush); font-style: italic; }
.hero-sub { font-family: var(--serif); font-size: clamp(1.25rem, 2.25vw, 1.75rem); color: var(--bone); max-width: 32em; line-height: 1.35; margin-bottom: var(--s-7); text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3); }
.hero-eyebrow { backdrop-filter: blur(8px); background: rgba(0, 0, 0, 0.18); }
.hero-actions { display: flex; gap: var(--s-4); flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: var(--s-4) var(--s-6); font-family: var(--sans); font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.02em; border-radius: var(--radius-pill); transition: all 0.25s ease; cursor: pointer; }
.btn-primary { background: var(--rose); color: #FFFFFF; box-shadow: 0 4px 0 var(--rose-deep); }
.btn-primary:hover { background: var(--rose-deep); opacity: 1; color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 3px 0 var(--rose-deep); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--rose-deep); }
.btn-ghost { background: transparent; color: var(--bone); border: 1px solid var(--blush); }
.btn-ghost:hover { background: var(--blush); color: var(--ink); opacity: 1; }
.btn-ink { background: var(--ink); color: var(--bone); }
.btn-ink:hover { background: var(--rose-deep); opacity: 1; color: var(--bone); }
.btn-block { width: 100%; }

/* Eyebrow + section heading */
.section-head { margin-bottom: var(--s-8); display: flex; flex-direction: column; gap: var(--s-3); }
.section-head h2 { max-width: 18em; }
.section-head .lede { max-width: 36em; margin-top: var(--s-3); }

/* Openings strip */
.openings { background: linear-gradient(90deg, var(--ink) 0%, #2A3556 100%); color: var(--bone); padding: var(--s-6) 0; }
.openings-inner { display: flex; align-items: center; gap: var(--s-7); justify-content: space-between; flex-wrap: wrap; }
.openings-label { font-family: var(--serif); font-size: 1.5rem; font-style: italic; }
.openings-list { display: flex; gap: var(--s-7); flex-wrap: wrap; }
.opening-item { display: flex; align-items: baseline; gap: var(--s-3); font-family: var(--sans); }
.opening-item .when { font-size: 0.875rem; color: var(--blush); }
.opening-item .status-open { color: var(--mint); font-weight: 600; }
.opening-item .status-waitlist { color: var(--sunshine); font-weight: 600; }
.opening-item .status-full { color: var(--bubblegum); text-decoration: line-through; opacity: 0.7; }
.openings .btn { margin-left: auto; }

/* About teaser / split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-10); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--s-7); } }
.split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }

/* Class cards */
.class-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-6); margin-top: var(--s-7); }
.class-card { background: var(--bone-deep); border-radius: var(--radius); padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-4); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.class-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px -16px rgba(27, 24, 21, 0.2); }
.class-card .age { font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.75rem; padding: 4px 10px; border-radius: var(--radius-pill); display: inline-block; align-self: flex-start; }
.class-card:nth-child(4n+1) .age { color: #B65020; background: rgba(255, 107, 90, 0.16); }
.class-card:nth-child(4n+2) .age { color: #8B6A00; background: rgba(255, 203, 71, 0.22); }
.class-card:nth-child(4n+3) .age { color: #1E6B95; background: rgba(79, 182, 229, 0.18); }
.class-card:nth-child(4n+4) .age { color: #6A3DC9; background: rgba(177, 144, 252, 0.22); }
.class-card h3 { font-family: var(--serif); font-size: 1.625rem; line-height: 1.1; }
.class-card .when { color: var(--stone); font-size: 0.9375rem; }
.class-card .seats { display: flex; align-items: center; gap: var(--s-2); font-size: 0.875rem; margin-top: auto; padding-top: var(--s-4); border-top: 1px solid var(--rule); }
.class-card .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }
.class-card .dot.warn { background: var(--butter); }
.class-card .dot.full { background: var(--rose-deep); }

/* Floating testimonial bubbles */
.testimonial-float { padding: var(--s-9) 0; }
.bubble-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: var(--s-8); margin-top: var(--s-8); }
.bubble-card {
  --tilt: 0deg;
  background: var(--bone-deep);
  border-radius: 32px;
  padding: var(--s-7) var(--s-6);
  max-width: 380px;
  box-shadow: 0 16px 32px rgba(224, 78, 61, 0.14);
  animation: bubbleFloat 6s ease-in-out infinite;
}
.bubble-card.bubble-a { --tilt: -3deg; animation-delay: 0s; }
.bubble-card.bubble-b { --tilt: 3deg; animation-delay: 1.4s; }
.bubble-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.0625rem, 1.5vw, 1.25rem); line-height: 1.4; color: var(--ink-soft); }
.bubble-quote::before { content: '\201C'; color: var(--rose); font-size: 2em; line-height: 0; vertical-align: -0.2em; margin-right: 0.05em; }
.bubble-attr { display: block; margin-top: var(--s-4); font-family: var(--sans); font-size: 0.875rem; color: var(--rose-deep); font-weight: 500; }
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) rotate(var(--tilt)); }
  50% { transform: translateY(-16px) rotate(var(--tilt)); }
}
@media (prefers-reduced-motion: reduce) {
  .bubble-card { animation: none; transform: rotate(var(--tilt)); }
}

/* Mantra moment. Kinetic text */
.mantra { background: linear-gradient(135deg, var(--blush) 0%, #FFEED1 100%); padding: var(--s-11) 0; position: relative; overflow: hidden; }
.mantra-stack { display: flex; flex-direction: column; gap: var(--s-4); }
.mantra-line { font-family: var(--serif); font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.05; letter-spacing: -0.015em; font-style: italic; }
.mantra-line:nth-child(odd) { padding-left: 0; }
.mantra-line:nth-child(even) { padding-left: clamp(var(--s-6), 8vw, var(--s-11)); }
.mantra-line:nth-child(9n+1) { color: var(--ink); font-style: normal; }
.mantra-line:nth-child(9n+2) { color: var(--rose-deep); }
.mantra-line:nth-child(9n+3) { color: #1E6B95; }
.mantra-line:nth-child(9n+4) { color: #B65020; font-style: normal; }
.mantra-line:nth-child(9n+5) { color: #2F8F45; }
.mantra-line:nth-child(9n+6) { color: #6A3DC9; }
.mantra-line:nth-child(9n+7) { color: #C73874; }
.mantra-line:nth-child(9n+8) { color: var(--rose-deep); font-style: normal; }
.mantra-line:nth-child(9n+9) { color: var(--ink-soft); }
.mantra-eyebrow { color: var(--rose-deep); margin-bottom: var(--s-7); }

/* Testimonials */
.testimonial { padding: var(--s-7) 0; border-top: 1px solid var(--rule); display: grid; grid-template-columns: 1fr 2fr; gap: var(--s-7); align-items: start; }
.testimonial:last-child { border-bottom: 1px solid var(--rule); }
@media (max-width: 768px) { .testimonial { grid-template-columns: 1fr; gap: var(--s-4); } }
.testimonial-attr { font-family: var(--sans); font-size: 0.875rem; line-height: 1.5; }
.testimonial-attr .name { display: block; font-weight: 500; color: var(--ink); }
.testimonial-attr .where { color: var(--stone); }
.testimonial blockquote { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.625rem); line-height: 1.35; color: var(--ink-soft); font-style: italic; }
.testimonial blockquote::before { content: '\201C'; color: var(--rose); font-size: 2em; line-height: 0; vertical-align: -0.2em; margin-right: 0.05em; }

/* Pricing table */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s-5); margin-top: var(--s-7); }
.price-card { background: var(--bone-deep); padding: var(--s-7) var(--s-6); border-radius: var(--radius); display: flex; flex-direction: column; gap: var(--s-3); }
.price-card.featured { background: var(--ink); color: var(--bone); }
.price-card.featured .label { color: var(--blush); }
.price-card .label { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose-deep); font-weight: 500; }
.price-card .amount { font-family: var(--serif); font-size: 3rem; line-height: 1; }
.price-card .amount sup { font-size: 0.4em; vertical-align: super; }
.price-card .unit { color: var(--stone); font-size: 0.9375rem; }
.price-card.featured .unit { color: var(--blush); }
.price-card p { font-size: 0.9375rem; margin-top: var(--s-3); }
.price-card.featured p { color: var(--bone-deep); }

/* Pricing redesign — age tiers + pay options (2026-06-22) */
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); margin-top: var(--s-7); }
@media (max-width: 768px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card { background: var(--bone-deep); border-radius: var(--radius); padding: var(--s-7) var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); }
.tier-eyebrow { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose-deep); font-weight: 600; }
.tier-card h3 { font-family: var(--serif); font-size: 1.5rem; line-height: 1.15; }
.tier-list { display: flex; flex-direction: column; gap: var(--s-2); margin-top: var(--s-2); }
.tier-list li { font-size: 0.9375rem; color: var(--ink-soft); }
.tier-list li span { font-weight: 600; color: var(--ink); }
.tier-rate { margin-top: auto; padding-top: var(--s-5); border-top: 1px solid var(--rule); display: flex; align-items: baseline; gap: var(--s-3); flex-wrap: wrap; }
.tier-rate strong { font-family: var(--serif); font-size: 2.75rem; line-height: 1; color: var(--ink); }
.tier-rate span { font-size: 0.875rem; color: var(--stone); }

.pay-bridge { margin-top: var(--s-8); margin-bottom: var(--s-2); font-family: var(--serif); font-size: 1.25rem; color: var(--ink-soft); }
.pay-rows { display: flex; flex-direction: column; gap: var(--s-3); }
.pay-row { display: flex; flex-direction: column; gap: 2px; padding: var(--s-4) var(--s-5); background: rgba(255, 248, 234, 0.6); border-radius: var(--radius); }
.price-card.featured .pay-row { background: rgba(255, 255, 255, 0.08); }
.pay-when { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.price-card.featured .pay-when { color: var(--blush); }
.pay-when em { font-style: normal; color: var(--rose-deep); margin-left: var(--s-2); }
.price-card.featured .pay-when em { color: var(--butter); }
.pay-figs { font-size: 1rem; color: var(--ink-soft); }
.price-card.featured .pay-figs { color: var(--bone); }
.pay-figs strong { font-family: var(--serif); font-size: 1.625rem; color: var(--ink); }
.price-card.featured .pay-figs strong { color: var(--bone); }
.pay-row.best { outline: 2px solid var(--butter); outline-offset: -2px; }

.dropin-note { margin-top: var(--s-6); background: var(--blush); border-radius: var(--radius); padding: var(--s-6) var(--s-7); display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); flex-wrap: wrap; }
.dropin-note h3 { font-family: var(--serif); font-size: 1.5rem; margin-top: var(--s-1); }
.dropin-note p { font-size: 0.9375rem; color: var(--ink-soft); margin-top: var(--s-2); max-width: 48ch; }

/* Register page — class selector (2026-06-22) */
.reg-tier-head { font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; color: var(--rose-deep); margin: var(--s-8) 0 var(--s-1); }
.reg-price { font-size: 0.9375rem; color: var(--ink-soft); padding-top: var(--s-3); }
.reg-price strong { font-family: var(--serif); font-size: 1.375rem; color: var(--ink); }
.reg-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: auto; padding-top: var(--s-4); }
.reg-actions .btn { flex: 1 1 140px; padding-top: var(--s-3); padding-bottom: var(--s-3); font-size: 0.875rem; }
.reg-link-pending { opacity: 0.92; }

/* FAQ */
.faq-list { margin-top: var(--s-7); }
.faq-item { border-top: 1px solid var(--rule); padding: var(--s-5) 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-family: var(--serif); font-size: 1.25rem; line-height: 1.3; gap: var(--s-5); }
.faq-q::after { content: '+'; font-family: var(--sans); font-size: 1.5rem; color: var(--rose-deep); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item[open] .faq-q::after { content: '\2212'; }
.faq-a { color: var(--ink-soft); line-height: 1.65; max-width: 56ch; margin-top: var(--s-4); }

/* Form */
.form { display: flex; flex-direction: column; gap: var(--s-5); margin-top: var(--s-7); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field label { font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; color: var(--stone); }
.field label .req { color: var(--rose); }
.field input, .field textarea, .field select { font: inherit; padding: var(--s-4); border: 1px solid var(--rule); border-radius: var(--radius); background: var(--bone); color: var(--ink); transition: border-color 0.2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--rose); }
.field textarea { min-height: 120px; resize: vertical; }
.radio-stack { display: flex; flex-direction: column; gap: var(--s-3); }
.radio-option { display: flex; align-items: flex-start; gap: var(--s-3); padding: var(--s-4); border: 1px solid var(--rule); border-radius: var(--radius); cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease; }
.radio-option:has(input:checked) { border-color: var(--rose); background: var(--blush); }
.radio-option input { margin-top: 4px; accent-color: var(--rose); }
.radio-option .rb-label { font-weight: 500; }
.radio-option .rb-meta { font-size: 0.875rem; color: var(--stone); display: block; margin-top: 2px; }
.waiver-box { background: var(--bone-deep); padding: var(--s-6); border-radius: var(--radius); font-size: 0.9375rem; line-height: 1.6; color: var(--ink-soft); }
.checkbox-row { display: flex; align-items: flex-start; gap: var(--s-3); cursor: pointer; }
.checkbox-row input { margin-top: 4px; accent-color: var(--rose); }

/* Footer */
.site-footer { background: var(--ink); color: var(--bone); padding: var(--s-10) 0 var(--s-7); margin-top: var(--s-10); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-7); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--serif); font-size: 1.75rem; line-height: 1.1; }
.footer-brand span { color: var(--rose); font-style: italic; }
.footer-tagline { color: var(--blush); margin-top: var(--s-3); font-size: 0.9375rem; max-width: 28ch; }
.footer-col h4 { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blush); margin-bottom: var(--s-4); font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-col a { font-size: 0.9375rem; color: var(--bone-deep); }
.site-footer .legal { margin-top: var(--s-9); padding-top: var(--s-5); border-top: 1px solid rgba(216, 207, 190, 0.15); display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); flex-wrap: wrap; font-size: 0.8125rem; color: var(--stone); }

/* Utility */
.text-center { text-align: center; }
.flex-grow { flex-grow: 1; }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }

/* Minimal home hero */
.hero-minimal { align-items: flex-start; justify-content: center; }
.hero-content-centered { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 5rem var(--s-6) var(--s-6); width: 100%; }
.hero-content-centered .hero-eyebrow { margin-bottom: var(--s-4); }
.hero-content-centered .hero-title { margin-bottom: var(--s-4); font-size: clamp(2.25rem, 6vw, 5.5rem); }
.hero-content-centered .hero-sub { margin: 0 auto var(--s-5); }

/* Dropdown CTA */
.dropdown-cta { position: relative; display: inline-block; max-width: 520px; width: 100%; }
.dropdown-trigger { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); width: 100%; padding: var(--s-5) var(--s-6); background: var(--rose); color: #FFFFFF; border-radius: var(--radius-pill); font-family: var(--sans); font-size: 1.0625rem; font-weight: 600; letter-spacing: 0.01em; box-shadow: 0 6px 0 var(--rose-deep), 0 12px 32px -12px rgba(224, 78, 61, 0.55); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.dropdown-trigger:hover { transform: translateY(-1px); box-shadow: 0 7px 0 var(--rose-deep), 0 16px 36px -12px rgba(224, 78, 61, 0.65); }
.dropdown-trigger svg { transition: transform 0.25s ease; }
.dropdown-cta.open .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown-cta.open .dropdown-trigger { box-shadow: 0 4px 0 var(--rose-deep), 0 10px 28px -10px rgba(224, 78, 61, 0.6); }

.dropdown-menu { position: absolute; top: calc(100% + var(--s-4)); left: 0; right: 0; background: var(--bone); border-radius: 14px; padding: var(--s-3); box-shadow: 0 24px 70px -16px rgba(26, 37, 64, 0.5), 0 6px 20px -6px rgba(26, 37, 64, 0.25); opacity: 0; visibility: hidden; transform: translateY(-16px) scale(0.96); transform-origin: top center; transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s; z-index: 30; }
.dropdown-cta.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown-menu li { opacity: 0; transform: translateY(-8px); transition: opacity 0.3s ease-out, transform 0.3s ease-out; }
.dropdown-cta.open .dropdown-menu li { opacity: 1; transform: translateY(0); }
.dropdown-cta.open .dropdown-menu li:nth-child(1) { transition-delay: 0.08s; }
.dropdown-cta.open .dropdown-menu li:nth-child(2) { transition-delay: 0.14s; }
.dropdown-cta.open .dropdown-menu li:nth-child(3) { transition-delay: 0.20s; }
.dropdown-cta.open .dropdown-menu li:nth-child(4) { transition-delay: 0.26s; }
.dropdown-cta.open .dropdown-menu li:nth-child(5) { transition-delay: 0.32s; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: var(--s-4); row-gap: 2px; align-items: center; padding: var(--s-4) var(--s-5); border-radius: 10px; text-align: left; color: var(--ink); transition: background 0.15s ease; }
.dropdown-menu a:hover { background: var(--bone-deep); opacity: 1; }
.dropdown-menu .dot-pill { grid-row: 1 / 3; width: 12px; height: 12px; border-radius: 50%; align-self: center; }
.dropdown-menu .dropdown-label { font-weight: 600; font-size: 1rem; grid-column: 2; }
.dropdown-menu .dropdown-meta { font-size: 0.8125rem; color: var(--stone); grid-column: 2; }

@media (max-width: 600px) {
  .dropdown-trigger { font-size: 1rem; padding: var(--s-4) var(--s-5); }
  .dropdown-menu a { padding: var(--s-3) var(--s-4); }
  .dropdown-menu .dropdown-label { font-size: 0.9375rem; }
}

/* Drop-in calendar */
.cal-controls { display: flex; justify-content: center; align-items: center; gap: var(--s-6); margin-bottom: var(--s-7); }
.cal-nav { width: 44px; height: 44px; border-radius: 50%; background: var(--bone-deep); color: var(--ink); font-size: 1.25rem; display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s ease, transform 0.2s ease; }
.cal-nav:hover { background: var(--blush); transform: scale(1.05); }
.cal-range { font-family: var(--serif); font-size: 1.375rem; color: var(--ink); }

.cal-weeks { display: flex; flex-direction: column; gap: var(--s-8); }
.cal-week { display: flex; flex-direction: column; gap: var(--s-5); }
.cal-week-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4); padding-bottom: var(--s-4); border-bottom: 1px solid var(--rule); }
.cal-week-head h2 { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.cal-week-dates { color: var(--stone); font-size: 0.9375rem; font-family: var(--sans); }

.cal-day { display: grid; grid-template-columns: 120px 1fr; gap: var(--s-6); align-items: start; padding: var(--s-5) 0; border-bottom: 1px solid var(--rule); }
.cal-day:last-child { border-bottom: 0; }
.cal-day-label { display: flex; flex-direction: column; gap: var(--s-1); }
.cal-day-name { font-family: var(--sans); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.cal-day-num { font-family: var(--serif); font-size: 2.25rem; line-height: 1; color: var(--ink); }

.cal-slots { display: flex; flex-direction: column; gap: var(--s-3); }
.cal-slot { display: grid; grid-template-columns: 2fr auto auto; gap: var(--s-5); align-items: center; padding: var(--s-4) var(--s-5); background: var(--bone-deep); border-radius: 12px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.cal-slot.is-open:hover, .cal-slot.is-limited:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(26, 37, 64, 0.25); }
.cal-slot.is-full { opacity: 0.85; }
.cal-slot-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cal-slot-time { font-family: var(--serif); font-size: 1.5rem; line-height: 1; color: var(--ink); }
.cal-slot-class { font-family: var(--sans); font-weight: 500; font-size: 0.9375rem; color: var(--ink-soft); }
.cal-slot-age { font-family: var(--sans); font-size: 0.8125rem; color: var(--stone); }
.cal-slot-status { display: inline-flex; align-items: center; gap: var(--s-2); font-size: 0.875rem; color: var(--ink-soft); font-weight: 500; white-space: nowrap; }
.cal-slot-cta { padding: var(--s-3) var(--s-5); font-size: 0.875rem; white-space: nowrap; }

.btn-ghost-ink { background: transparent; color: var(--ink); border: 1px solid var(--ink); border-radius: var(--radius-pill); padding: var(--s-3) var(--s-5); font-family: var(--sans); font-size: 0.875rem; font-weight: 500; transition: all 0.2s ease; }
.btn-ghost-ink:hover { background: var(--ink); color: var(--bone); opacity: 1; }

@media (max-width: 720px) {
  .cal-day { grid-template-columns: 1fr; gap: var(--s-3); }
  .cal-day-label { flex-direction: row; align-items: baseline; gap: var(--s-3); }
  .cal-day-num { font-size: 1.5rem; }
  .cal-slot { grid-template-columns: 1fr; gap: var(--s-3); }
  .cal-slot-cta { width: 100%; }
}

/* Page header (non-home pages) */
.page-header { padding-top: 9rem; padding-bottom: var(--s-8); border-bottom: 1px solid var(--rule); }
.page-header .eyebrow { display: block; margin-bottom: var(--s-3); color: var(--rose-deep); }
.page-header h1 { max-width: 14em; }
.page-header .lede { max-width: 38em; margin-top: var(--s-5); }
