/* ============================================================
   Dance Athletics Studio — site styles
   2026 redesign · hand-authored, no framework
   ============================================================ */

/* ---------- Fonts ----------
   We host via Google Fonts CDN for Latin subset only.
   In production, switch to self-hosted woff2 in /assets/fonts/.
*/
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Fraunces:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }

/* Monochrome photography — match the studio's existing B&W identity */
img { filter: grayscale(1); transition: filter 400ms var(--ease, ease); }
.site-header__logo img,
.site-footer__brand img { filter: none; }
.card:hover .card__media img,
.poster-card:hover img { filter: grayscale(0.85); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }

/* ---------- Tokens ---------- */
:root {
  --ink: #0A0A0A;
  --paper: #FAFAF8;
  --surface: #FFFFFF;
  /* Monochrome palette only — accents resolve to ink/stone */
  --terracotta: var(--ink);
  --terracotta-dark: var(--ink);
  --navy: var(--ink);
  --stone: #6E6E6B;
  --bone: #E5E5E2;
  --shadow: 0 1px 2px rgba(10,10,10,0.06), 0 8px 24px rgba(10,10,10,0.06);
  --shadow-lift: 0 4px 8px rgba(10,10,10,0.10), 0 16px 40px rgba(10,10,10,0.12);

  --container: 1280px;
  --gutter: 24px;
  --section-y: clamp(72px, 9vw, 144px);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  :root { --gutter: 16px; }
}

/* ---------- Type ---------- */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.display, h1, h2, h3 {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--ink);
}
.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 8.4vw, 116px);
  letter-spacing: -0.04em;
  line-height: 0.94;
  max-width: 18ch;
}
h1 { font-size: clamp(40px, 6vw, 88px); letter-spacing: -0.04em; line-height: 0.96; }
h2 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.03em; line-height: 1.02; }
h3 { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.02em; line-height: 1.1; }
.lead { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; color: var(--ink); }
.editorial {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.muted { color: var(--stone); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-y) 0; }
.section-tight { padding: clamp(48px, 6vw, 88px) 0; }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }

.stack > * + * { margin-top: 24px; }
.stack-sm > * + * { margin-top: 12px; }
.stack-lg > * + * { margin-top: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease), border-color 200ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-light:hover {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn .arrow { transition: transform 200ms var(--ease); }
.btn:hover .arrow { transform: translate(2px, -2px); }
.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 1px;
  font-weight: 500;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
.link-inline:hover { color: var(--stone); border-color: var(--stone); }

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--bone); }
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-header__logo img {
  height: 28px;
  width: auto;
}
.site-header__nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
}
.site-header__nav a {
  position: relative;
  color: var(--ink);
  transition: color 180ms var(--ease);
}
.site-header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 240ms var(--ease);
}
.site-header__nav a:hover { color: var(--stone); }
.site-header__nav a[aria-current="page"]::after,
.site-header__nav a:hover::after { transform: scaleX(1); }
.site-header__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
}
.site-header__phone:hover { color: var(--ink); }
.site-header__cta .btn { padding: 10px 18px; font-size: 12px; }
.menu-toggle { display: none; }

@media (max-width: 900px) {
  .site-header__inner { height: 56px; grid-template-columns: 1fr auto; }
  .site-header__nav,
  .site-header__cta { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--ink);
  }
  .menu-toggle svg { width: 22px; height: 22px; }
  body.menu-open { overflow: hidden; }
  .mobile-nav {
    position: fixed;
    inset: 56px 0 0 0;
    background: var(--paper);
    z-index: 40;
    padding: 24px 24px 32px;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
  }
  body.menu-open .mobile-nav { display: flex; }
  .mobile-nav a {
    font-family: 'Archivo Black', sans-serif;
    font-size: 36px;
    letter-spacing: -0.03em;
    padding: 14px 0;
    border-bottom: 1px solid var(--bone);
  }
  .mobile-nav .btn {
    margin-top: 24px;
    align-self: flex-start;
    font-size: 14px;
    padding: 14px 22px;
  }
}
@media (min-width: 901px) {
  .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 90vh, 880px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) contrast(1.05);
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.10) 0%, rgba(10,10,10,0.0) 30%, rgba(10,10,10,0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(48px, 6vw, 96px);
  width: 100%;
  color: var(--paper);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--paper);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0 rgba(10,10,10,0.6);
  animation: pulse 2s var(--ease) infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(10,10,10,0.45); }
  70% { box-shadow: 0 0 0 10px rgba(10,10,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(10,10,10,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow::before { animation: none; }
}
.hero__title {
  color: var(--paper);
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  max-width: 14ch;
}
.hero__sub {
  margin-top: 24px;
  max-width: 56ch;
  color: rgba(247,245,240,0.92);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}
.hero__ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (smaller, for inner pages) */
.page-hero {
  padding: clamp(96px, 14vw, 160px) 0 clamp(48px, 6vw, 80px);
  background: var(--paper);
}
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { margin-top: 28px; max-width: 60ch; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  gap: 64px;
}
.marquee__item {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--bone);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--ink);
}
.card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.card__age {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.card__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.card__desc { color: var(--stone); font-size: 15px; line-height: 1.5; flex: 1; }
.card__cta {
  margin-top: 8px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.card__cta .arrow { transition: transform 200ms var(--ease); }
.card:hover .card__cta .arrow { transform: translate(2px, -2px); }

/* Camp poster card variant */
.poster-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  border: 1px solid var(--bone);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.poster-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.poster-card__body {
  padding: 20px 22px;
  background: var(--surface);
  border-top: 1px solid var(--bone);
}
.poster-card__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.poster-card__meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--stone);
}

/* ---------- Pillar (3-up trust pillars) ---------- */
.pillar { padding-right: 16px; }
.pillar__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--stone); }

/* ---------- Editorial split ---------- */
.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { grid-template-columns: 7fr 5fr; }
.split img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
}
.split.tall img { aspect-ratio: 3 / 4; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Photo collage ---------- */
.collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
}
.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.collage__a { grid-column: span 4; grid-row: span 5; }
.collage__b { grid-column: span 2; grid-row: span 3; }
.collage__c { grid-column: span 2; grid-row: span 2; }
.collage__d { grid-column: span 3; grid-row: span 4; }
.collage__e { grid-column: span 3; grid-row: span 4; }
@media (max-width: 800px) {
  .collage { grid-template-columns: repeat(2, 1fr); }
  .collage__a, .collage__b, .collage__c, .collage__d, .collage__e {
    grid-column: span 1; grid-row: span 3;
  }
}

/* ---------- Press strip ---------- */
.press {
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  padding: 40px 0;
  background: var(--paper);
}
.press__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--stone);
}
.press__list strong {
  font-family: 'Archivo Black', sans-serif;
  font-style: normal;
  color: var(--ink);
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* ---------- Quote ---------- */
.quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 30ch;
}
.quote::before { content: '"'; color: var(--terracotta); margin-right: 4px; }
.quote::after { content: '"'; color: var(--terracotta); }
.quote-by {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 20px; }
.form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { position: relative; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  background: transparent;
  padding: 22px 0 12px;
  font-size: 16px;
  outline: none;
  border-radius: 0;
  font-family: inherit;
  appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field label {
  position: absolute;
  top: 22px;
  left: 0;
  pointer-events: none;
  color: var(--stone);
  font-size: 16px;
  transition: transform 200ms var(--ease), color 200ms var(--ease), font-size 200ms var(--ease);
  transform-origin: left top;
}
.field input:focus + label,
.field textarea:focus + label,
.field select:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field.has-value label {
  transform: translateY(-22px) scale(0.78);
  color: var(--ink);
  letter-spacing: 0.04em;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--terracotta); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 6vw, 96px) 0;
}
.cta-banner h2 { color: var(--paper); }
.cta-banner .lead { color: rgba(247,245,240,0.8); }
.cta-banner .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
@media (max-width: 800px) {
  .cta-banner .container { grid-template-columns: 1fr; align-items: start; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-footer .container { grid-template-columns: 1fr; }
}
.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.55);
  margin-bottom: 18px;
}
.site-footer__brand img { height: 36px; width: auto; filter: invert(0); }
.site-footer__brand p { margin-top: 16px; max-width: 36ch; color: rgba(247,245,240,0.7); font-size: 15px; }
.site-footer ul { display: grid; gap: 10px; font-size: 15px; }
.site-footer a { color: rgba(247,245,240,0.85); }
.site-footer a:hover { color: var(--paper); opacity: 0.6; }
.site-footer__legal {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(247,245,240,0.10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(247,245,240,0.5);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mw-prose { max-width: 64ch; }
.mw-narrow { max-width: 48ch; }
.divider { height: 1px; background: var(--bone); border: 0; margin: 0; }
.no-wrap { white-space: nowrap; }
.terracotta { color: var(--ink); font-style: italic; font-family: 'Fraunces', Georgia, serif; font-weight: 400; }
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

/* ---------- Sections specific ---------- */
.section-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.section-eyebrow::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--ink);
  display: block;
  flex-shrink: 0;
}

.intro-block { max-width: 64ch; }
.intro-block .editorial { margin-bottom: 24px; }
.intro-block .signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--stone);
  font-family: 'Inter', sans-serif;
  font-style: normal;
}
.intro-block .signature strong { color: var(--ink); font-weight: 600; }

/* Studio sessions / camp hero variant */
.gradient-hero {
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  color: var(--paper);
}
.gradient-hero h1, .gradient-hero p { color: var(--paper); }

/* Class style chips */
.style-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.style-chip {
  padding: 10px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Schedule table */
.schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.schedule th, .schedule td {
  text-align: left;
  padding: 16px 8px;
  border-bottom: 1px solid var(--bone);
}
.schedule th {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--stone);
}
.schedule tr:last-child td { border-bottom: 0; }
@media (max-width: 600px) {
  .schedule, .schedule tbody, .schedule tr, .schedule td { display: block; }
  .schedule thead { display: none; }
  .schedule tr { border-bottom: 1px solid var(--bone); padding: 16px 0; }
  .schedule td { padding: 4px 0; border: 0; }
  .schedule td::before {
    content: attr(data-label) ': ';
    font-weight: 600;
    color: var(--stone);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.10em;
    margin-right: 6px;
  }
}

/* Programs detail */
.style-card {
  padding: 28px;
  border: 1px solid var(--bone);
  border-radius: 16px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.style-card h3 { font-size: 22px; }
.style-card p { color: var(--stone); }

/* Founder bio */
.founder {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--bone);
}
.founder:last-child { border-bottom: 0; }
.founder img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 16px; }
.founder h3 { margin-bottom: 4px; }
.founder .role { color: var(--terracotta); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.founder ul {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  font-size: 16px;
}
.founder ul li {
  padding-left: 22px;
  position: relative;
  color: var(--ink);
}
.founder ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1.5px;
  background: var(--terracotta);
}
@media (max-width: 800px) {
  .founder { grid-template-columns: 1fr; gap: 24px; }
}

/* FAQ accordion */
.faq details {
  border-bottom: 1px solid var(--bone);
  padding: 24px 0;
}
.faq details:first-child { border-top: 1px solid var(--bone); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--terracotta);
  transition: transform 240ms var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 16px 0 4px; color: var(--stone); max-width: 70ch; }

/* Hours block */
.hours { display: grid; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; padding: 6px 0; border-bottom: 1px solid var(--bone); }
.hours-row:last-child { border-bottom: 0; }
.hours-row strong { font-weight: 600; }
.hours-row span { color: var(--stone); }

/* Contact card */
.contact-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--bone);
  border-radius: 20px;
  height: 100%;
}
.contact-card h3 { margin-bottom: 16px; font-size: 22px; }
.contact-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); border-bottom: 1.5px solid transparent; }
.contact-card a:hover { border-bottom-color: var(--ink); color: var(--stone); }
.contact-card p { margin: 8px 0; color: var(--stone); font-size: 15px; }
.contact-card svg { width: 18px; height: 18px; }
