/* ============ Dance Freedom — styles (light / Fraunces direction) ============ */
:root {
  --page: #F4F0F7;
  --soft: #FBF9FC;
  --ink: #211826;
  --muted: #6E6377;
  --purple: #6A2E9C;
  --purple-deep: #46206B;
  --purple-soft: #ECDDF5;
  --purple-light: #C9A9E0;
  --line: #E7DEEE;
  --white: #fff;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--page);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; margin: 0; }
em { font-style: italic; color: var(--purple); }
a { color: inherit; }

.wrap { max-width: 1280px; margin: 0 auto; }

.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
  margin: 0 0 1.4rem;
}
.eyebrow.light { color: var(--purple-light); }

/* ---------- Buttons ---------- */
.btn-primary, .btn-outline {
  font-family: inherit;
  cursor: pointer;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.6rem;
  box-shadow: 0 10px 26px -14px rgba(106, 46, 156, 0.85);
}
.btn-primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(106, 46, 156, 0.9); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary.lg, .btn-outline.lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 0.8rem 1.6rem;
}
.btn-outline:hover { border-color: var(--purple-light); }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.2rem, 5vw, 4rem);
  max-width: 1280px;
  margin: 0 auto;
}
.brand { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; letter-spacing: 0.01em; text-decoration: none; color: var(--ink); }
.brand span { font-style: italic; color: var(--purple); }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-link { text-decoration: none; color: var(--ink); font-size: 0.95rem; font-weight: 500; }
.nav-link:hover { color: var(--purple); }

/* ---------- Hero ---------- */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.2rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { line-height: 1.02; font-size: clamp(2.8rem, 6vw, 4.6rem); margin: 0 0 1.4rem; }
.hero .lead { font-size: 1.18rem; line-height: 1.55; color: var(--muted); max-width: 30rem; margin: 0 0 2.2rem; text-wrap: pretty; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 2.8rem; flex-wrap: wrap; }
.hero-stats strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--ink); display: block; }
.hero-stats span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

.hero-art { position: relative; display: grid; place-items: center; min-height: 440px; }
.hero-glow {
  position: absolute;
  top: 48%; left: 52%;
  width: 118%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 74, 237, 0.42), rgba(201, 169, 224, 0.22) 42%, transparent 70%);
  filter: blur(40px);
  transform: translate(-50%, -50%);
  animation: df-pulse 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes df-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .hero-glow { animation: none; } }
.hero-slot { position: relative; width: 100%; max-width: 420px; height: 520px; z-index: 1; border-radius: 22px; }

/* ---------- Real photos filling the former slots ---------- */
img.hero-slot, img.about-slot, img.inst-photo {
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--purple-soft); /* tint shown while the image loads */
}
img.hero-slot, img.about-slot { box-shadow: 0 30px 70px -40px rgba(70, 32, 107, 0.55); }
img.inst-photo { border: 1px solid var(--line); }

/* ---------- Image slots (photo placeholders) ---------- */
.image-slot {
  background:
    radial-gradient(120% 80% at 30% 10%, rgba(177, 74, 237, 0.18), transparent 60%),
    var(--purple-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.slot-label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--purple);
  font-weight: 600;
  opacity: 0.7;
}

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}
.section-head .eyebrow { margin-bottom: 0.8rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head.center { flex-direction: column; align-items: center; text-align: center; margin-bottom: 2.8rem; }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 24rem; margin: 0; text-wrap: pretty; }

/* ---------- Schedule / calendar ---------- */
.classes { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.classes .wrap { padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4rem); }

.cal-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem;
}
.cal-views { display: inline-flex; background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 0.25rem; }
.cal-view-btn {
  font-family: inherit; cursor: pointer; border: none; background: transparent;
  color: var(--muted); font-weight: 600; font-size: 0.9rem;
  padding: 0.5rem 1.2rem; border-radius: 100px; transition: all 0.18s;
}
.cal-view-btn.active { background: var(--purple); color: var(--white); }
.cal-nav { display: flex; align-items: center; gap: 0.6rem; }
.cal-arrow {
  font-family: inherit; cursor: pointer; width: 38px; height: 38px;
  border-radius: 50%; border: 1px solid var(--line); background: var(--white);
  color: var(--ink); font-size: 1.2rem; line-height: 1; display: grid; place-items: center;
  transition: all 0.18s;
}
.cal-arrow:hover { border-color: var(--purple-light); color: var(--purple); }
.cal-label { font-family: var(--serif); font-size: 1.2rem; min-width: 11rem; text-align: center; }
.cal-today {
  font-family: inherit; cursor: pointer; background: transparent; border: 1px solid var(--line);
  color: var(--ink); font-weight: 600; font-size: 0.85rem; border-radius: 100px; padding: 0.5rem 1.1rem;
  transition: all 0.18s;
}
.cal-today:hover { border-color: var(--purple-light); color: var(--purple); }

.timetable { display: flex; flex-direction: column; gap: 0.9rem; }
.tt-row.past { opacity: 0.55; }
.tt-row.past:hover { transform: none; border-color: var(--line); }
.tt-past-label { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* month grid */
.m-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.5rem; }
.m-head { text-align: center; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; padding: 0.4rem 0; }
.m-cell {
  min-height: 96px; background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.5rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.m-cell.out { background: transparent; border-color: transparent; }
.m-cell.out .m-daynum { color: #C9BFD2; }
.m-cell.today { border-color: var(--purple); box-shadow: 0 0 0 2px rgba(106, 46, 156, 0.14); }
.m-daynum { font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.m-cell.today .m-daynum { color: var(--purple); }
.m-chip {
  font-family: inherit; text-align: left; cursor: pointer;
  background: var(--purple-soft); color: var(--purple-deep); border: none; border-radius: 8px;
  padding: 0.4rem 0.5rem; font-size: 0.74rem; font-weight: 600; line-height: 1.2;
  display: flex; flex-direction: column; gap: 0.1rem; transition: background 0.18s;
}
.m-chip small { font-weight: 500; opacity: 0.75; font-size: 0.68rem; }
.m-chip:hover { background: #E0CBF0; }
.m-chip.past { background: #F0EAF5; color: #A992C0; cursor: default; }
.tt-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  transition: border-color 0.2s, transform 0.2s;
}
.tt-row:hover { border-color: var(--purple-light); transform: translateX(3px); }
.tt-date { text-align: center; background: var(--purple-soft); border-radius: 14px; padding: 0.7rem 0.3rem; }
.tt-date .d { font-family: var(--serif); font-size: 1.15rem; color: var(--purple-deep); line-height: 1; }
.tt-date .t { font-size: 0.74rem; color: var(--purple); font-weight: 600; margin-top: 0.25rem; }
.tt-main .tt-title { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.tt-main h3 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; }
.tt-tag {
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  color: var(--purple); background: var(--page); border: 1px solid var(--line);
  border-radius: 100px; padding: 0.25rem 0.65rem;
}
.tt-blurb { margin: 0.4rem 0 0; color: var(--muted); font-size: 0.95rem; }
.tt-meta { margin: 0.45rem 0 0; color: var(--ink); font-size: 0.85rem; font-weight: 500; }
.tt-book { background: var(--ink); color: var(--white); border: none; border-radius: 100px; padding: 0.85rem 1.7rem; font-size: 0.92rem; font-weight: 600; white-space: nowrap; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.tt-book:hover { background: var(--purple); }

/* ---------- Instructors ---------- */
.instructors { max-width: 1280px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4rem); }
.instructor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.inst-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 1.1rem 1.1rem 1.6rem; }
.inst-photo { width: 100%; height: 300px; border-radius: 14px; margin-bottom: 1.2rem; }
.inst-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; }
.inst-role { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple); font-weight: 600; margin: 0.4rem 0 0.9rem; }
.inst-bio { color: var(--muted); font-size: 0.98rem; line-height: 1.55; margin: 0; text-wrap: pretty; }

/* ---------- Booking ---------- */
.booking { background: var(--purple-deep); color: var(--white); }
.booking-inner { max-width: 1080px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4rem); }
.section-head.on-dark h2 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3rem); }

.stepper { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 0.55rem; font-weight: 600; font-size: 0.92rem; color: var(--white); }
.step-line { width: clamp(1.4rem, 4vw, 3rem); height: 2px; background: #8E6FB0; border-radius: 2px; opacity: 0.6; }
.dot {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 0.82rem; flex: none;
  background: transparent; color: var(--purple-light); border: 1.5px solid #8E6FB0;
  transition: all 0.2s;
}
.dot.active, .dot.done { background: var(--white); color: var(--purple-deep); border-color: var(--white); }

.booking-card { background: var(--soft); color: var(--ink); border-radius: 24px; padding: clamp(1.4rem, 3vw, 2.4rem); }
.bk-step > h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin: 0 0 1.3rem; }

/* step 1 */
.class-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.class-card {
  font-family: inherit; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.1rem 1.2rem; border-radius: 16px; background: var(--white);
  border: 1.5px solid var(--line); box-shadow: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.class-card:hover { border-color: var(--purple-light); }
.class-card.selected { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(106, 46, 156, 0.12); }
.cc-top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.cc-name { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; }
.cc-when { font-size: 0.78rem; color: var(--purple); font-weight: 600; }
.cc-sub { font-size: 0.88rem; color: var(--muted); }

.bk-actions { display: flex; margin-top: 1.6rem; gap: 1rem; flex-wrap: wrap; }
.bk-actions.end { justify-content: flex-end; }
.bk-actions.between { justify-content: space-between; }

/* step 2 */
.bk-step2-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.bk-step2-head h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; }
.pill { background: var(--purple-soft); color: var(--purple-deep); font-weight: 600; font-size: 0.85rem; border-radius: 100px; padding: 0.5rem 1rem; }
.field-label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 0 0 0.8rem; }
.field-hint { font-size: 0.85rem; color: var(--muted); margin: -0.4rem 0 1rem; }
.date-chips { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.chip {
  font-family: inherit; cursor: pointer; font-weight: 600; font-size: 0.92rem;
  border-radius: 100px; padding: 0.7rem 1.2rem;
  background: var(--white); color: var(--ink); border: 1.5px solid var(--line);
  transition: all 0.18s;
}
.chip:hover { border-color: var(--purple-light); }
.chip.selected { background: var(--purple); color: var(--white); border-color: var(--purple); }

.pole-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.7rem; max-width: 520px; margin-bottom: 1.8rem; }
.pole {
  font-family: inherit;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  aspect-ratio: 1; border-radius: 14px;
  background: var(--white); color: var(--purple-deep); border: 1.5px solid var(--line);
  cursor: pointer; transition: all 0.18s;
}
.pole .ico { font-size: 1.4rem; line-height: 1; }
.pole .lbl { font-size: 0.72rem; font-weight: 600; }
.pole:hover:not(.taken) { border-color: var(--purple-light); }
.pole.selected { background: var(--purple); color: var(--white); border-color: var(--purple); }
.pole.taken { background: var(--purple-soft); color: #A992C0; border-color: var(--line); cursor: not-allowed; }

/* step 3 */
.bk-step.confirm { text-align: center; padding: 0.6rem 0; }
.confirm-tick { width: 64px; height: 64px; border-radius: 50%; background: var(--purple); color: var(--white); display: grid; place-items: center; margin: 0 auto 1.2rem; font-size: 1.8rem; }
.bk-step.confirm h3 { font-family: var(--serif); font-weight: 500; font-size: 1.9rem; margin: 0 0 0.5rem; }
.confirm-sub { color: var(--muted); margin: 0 0 1.8rem; }
.confirm-summary {
  text-align: left; max-width: 420px; margin: 0 auto 1.8rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.9rem;
}
.cs-row { display: flex; justify-content: space-between; gap: 1rem; }
.cs-row + .cs-row { border-top: 1px solid var(--line); padding-top: 0.9rem; }
.cs-row .k { color: var(--muted); }
.cs-row .v { font-weight: 600; }

.cal-prompt { font-size: 0.9rem; color: var(--muted); margin: 0 0 0.9rem; }
.cal-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin: 0 auto 1.8rem; }
.cal-btn {
  font-family: inherit; cursor: pointer; font-size: 0.9rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none;
  border-radius: 100px; padding: 0.75rem 1.3rem; border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink); transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.cal-btn:hover { border-color: var(--purple-light); transform: translateY(-2px); }
.cal-btn .cal-g {
  width: 20px; height: 20px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--purple-soft); color: var(--purple-deep); font-family: var(--serif); font-size: 0.8rem; font-weight: 600;
}
.bk-cal {
  font-size: 0.82rem; font-weight: 600; text-decoration: none; color: var(--purple);
  border: 1.5px solid var(--line); border-radius: 100px; padding: 0.55rem 1rem; transition: border-color 0.18s;
  white-space: nowrap;
}
.bk-cal:hover { border-color: var(--purple-light); }

.policy-note { font-size: 0.82rem; color: var(--muted); max-width: 30rem; margin: 0 auto 1.4rem; }

/* ---------- My bookings ---------- */
.mybookings { max-width: 1280px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4rem); }
.booking-list { display: flex; flex-direction: column; gap: 0.9rem; }
.bk-item {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 1.2rem 1.4rem;
}
.bk-item-main h3 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; }
.bk-item-meta { margin: 0.35rem 0 0; color: var(--ink); font-size: 0.9rem; font-weight: 500; }
.bk-item-instructor { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.88rem; }
.bk-item-side { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.refund-tag { font-size: 0.72rem; letter-spacing: 0.04em; font-weight: 600; border-radius: 100px; padding: 0.35rem 0.8rem; }
.refund-tag.ok { background: #E7F4EC; color: #2E7D52; }
.refund-tag.no { background: #FBE9EC; color: #C2415C; }
.bk-cancel {
  font-family: inherit; cursor: pointer; background: transparent; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 100px; padding: 0.6rem 1.3rem; font-size: 0.88rem; font-weight: 600;
  transition: all 0.18s;
}
.bk-cancel:hover { border-color: #C2415C; color: #C2415C; }
.bookings-empty { text-align: center; padding: 2.5rem 1rem; color: var(--muted); }
.bookings-empty span { font-size: 2.2rem; display: block; margin-bottom: 0.8rem; }
.bookings-empty p { margin: 0; font-size: 0.98rem; }

/* ---------- Flash toast ---------- */
.df-flash {
  position: fixed; left: 50%; bottom: 1.6rem; transform: translate(-50%, 1.5rem);
  background: var(--ink); color: var(--white); font-size: 0.92rem; font-weight: 500;
  padding: 0.9rem 1.4rem; border-radius: 14px; box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s; z-index: 200; max-width: 90vw; text-align: center;
}
.df-flash.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Footer ---------- */
.footer { max-width: 1280px; margin: 0 auto; padding: clamp(2.6rem, 5vw, 4rem) clamp(1.2rem, 5vw, 4rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer .brand { font-size: 1.5rem; }
.footer-tag { color: var(--muted); font-size: 0.95rem; max-width: 22rem; margin: 0.8rem 0 0; text-wrap: pretty; }
.footer-head { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple); font-weight: 600; margin: 0 0 0.8rem; }
.footer-text { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }
.footer-text a { color: inherit; }
.footer-text a:hover { color: var(--purple); }
.footer-fine { border-top: 1px solid var(--line); margin-top: 2.4rem; padding-top: 1.4rem; color: var(--muted); font-size: 0.82rem; }

/* ---------- About / story ---------- */
.about { max-width: 1280px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.2rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem); }
.about-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-art { position: relative; }
.about-slot { width: 100%; height: 520px; border-radius: 22px; }
.about-badge {
  position: absolute; right: -14px; bottom: -18px;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 0.9rem 1.2rem; box-shadow: 0 18px 40px -22px rgba(70, 32, 107, 0.5);
  display: flex; flex-direction: column; gap: 0.15rem;
}
.about-badge strong { font-family: var(--serif); font-size: 1.25rem; color: var(--purple-deep); }
.about-badge span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }
.about-copy h2 { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.05; margin-bottom: 1.6rem; }
.about-copy p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin: 0 0 1.1rem; max-width: 34rem; text-wrap: pretty; }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.pull-quote {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.35;
  color: var(--purple-deep); margin: 1.8rem 0; padding-left: 1.3rem;
  border-left: 3px solid var(--purple-light); max-width: 32rem; text-wrap: balance;
}
.about-sign { display: flex; flex-direction: column; gap: 0.1rem; }
.sign-name { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }
.sign-role { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple); font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonials .wrap { padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4rem); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testi-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.6rem 1.6rem 1.4rem; margin: 0; display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.testi-card:hover { border-color: var(--purple-light); transform: translateY(-3px); }
.testi-stars { color: var(--purple); font-size: 0.95rem; letter-spacing: 0.15em; }
.testi-card blockquote { margin: 0; font-size: 1.02rem; line-height: 1.6; color: var(--ink); flex: 1; text-wrap: pretty; }
.testi-card figcaption { display: flex; align-items: center; gap: 0.8rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.testi-avatar {
  width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--purple-soft); color: var(--purple-deep); font-family: var(--serif); font-size: 1.2rem;
}
.testi-who { display: flex; flex-direction: column; line-height: 1.3; }
.testi-who strong { font-weight: 600; font-size: 0.95rem; }
.testi-who span { font-size: 0.8rem; color: var(--purple); font-weight: 600; }

/* ---------- First visit + FAQ ---------- */
.firstvisit { max-width: 1280px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4rem); }
.fv-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.fv-step { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 1.4rem 1.3rem; }
.fv-num { font-family: var(--serif); font-size: 1.1rem; color: var(--purple); font-weight: 500; display: inline-block; margin-bottom: 0.8rem; letter-spacing: 0.04em; }
.fv-step h3 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 0.5rem; }
.fv-step p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.55; text-wrap: pretty; }

.faq-block { max-width: 760px; margin: 0 auto; }
.faq-title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.1rem); text-align: center; margin-bottom: 1.8rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--purple-light); }
.faq-q {
  width: 100%; font-family: inherit; cursor: pointer; background: transparent; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left;
  padding: 1.15rem 1.4rem; font-size: 1.02rem; font-weight: 600; color: var(--ink);
}
.faq-q:hover { color: var(--purple); }
.faq-icon {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--purple-soft); color: var(--purple-deep); font-size: 1.2rem; line-height: 1;
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--purple); color: var(--white); }
.faq-a { padding: 0 1.4rem 1.25rem; }
.faq-a p { margin: 0; color: var(--muted); font-size: 0.98rem; line-height: 1.6; max-width: 56ch; text-wrap: pretty; }
.faq-foot { text-align: center; color: var(--muted); font-size: 0.92rem; margin: 1.8rem 0 0; }
.faq-foot a { color: var(--purple); font-weight: 600; }

[hidden] { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 360px; order: -1; }
  .hero-slot { height: 360px; }
  .instructor-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .about-art { order: -1; max-width: 460px; }
  .about-slot { height: 380px; }
  .about-badge { right: 12px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .fv-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-right { gap: 1rem; }
  .nav-link { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .tt-row { grid-template-columns: 64px 1fr; }
  .tt-book { grid-column: 2; justify-self: start; margin-top: 0.4rem; }
  .class-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 720px) {
  .cal-toolbar { justify-content: center; }
  .cal-label { min-width: 8rem; font-size: 1.05rem; }
  .cal-today { display: none; }
  .m-cell { min-height: 72px; padding: 0.35rem; }
  .m-chip { font-size: 0.62rem; padding: 0.3rem 0.35rem; }
  .m-chip small { display: none; }
  .m-daynum { font-size: 0.74rem; }
  .bk-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .bk-item-side { width: 100%; justify-content: space-between; }
}
@media (max-width: 480px) {
  .pole-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-stats { gap: 1.6rem; }
  .m-head { font-size: 0.6rem; }
  .fv-steps { grid-template-columns: 1fr; }
  .pull-quote { font-size: 1.3rem; }
}
