:root {
  --bg: #fdf8fc;
  --bg-soft: #fdf8fc;
  --bg-card: #ffffff;
  --text: #2a1f35;
  --muted: #5c4f6e;
  --pink: #ff8ec4;
  --pink-soft: #ffd6ec;
  --pink-deep: #e0569a;
  --mint: #6ee7c0;
  --mint-soft: #c8f5e4;
  --mint-deep: #2cb88a;
  --lavender: #b89cff;
  --lavender-soft: #e4d6ff;
  --lavender-deep: #8b5cf6;
  --sun: #ffd166;
  --sun-soft: #fff0b3;
  --sun-deep: #f4a826;
  --coral: #ff9a76;
  --sky: #7dd3fc;
  --border: rgba(42, 31, 53, 0.1);
  --shadow: 0 16px 40px rgba(224, 86, 154, 0.12);
  --shadow-pop: 0 20px 50px rgba(139, 92, 246, 0.18);
  --radius: 24px;
  --radius-sm: 14px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: var(--lavender-deep);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

.title-rainbow {
  display: inline-block;
  background: linear-gradient(90deg, var(--pink) 0%, var(--lavender) 35%, var(--mint) 70%, var(--sun) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(255, 142, 196, 0.25));
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.hub.section {
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

.section--soft {
  background:
    linear-gradient(135deg, rgba(255, 214, 236, 0.55) 0%, rgba(228, 214, 255, 0.45) 50%, rgba(200, 245, 228, 0.5) 100%);
  border-block: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--pink), var(--lavender), var(--mint), var(--sun)) 1;
}

.section--team {
  background: linear-gradient(180deg, rgba(255, 240, 179, 0.35), transparent);
}

.section--classes {
  background:
    linear-gradient(135deg, rgba(200, 245, 228, 0.5) 0%, rgba(255, 240, 179, 0.35) 100%);
}

.section--showcases {
  background: var(--bg);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(96px, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
  max-width: 880px;
  margin-inline: auto;
}

.showcase-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(42, 31, 53, 0.08);
  min-height: 120px;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.7rem 0.55rem;
  background: linear-gradient(transparent, rgba(45, 27, 61, 0.72));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.showcase-item--feature {
  grid-column: span 7;
  grid-row: span 2;
}

.showcase-item--wide {
  grid-column: span 5;
  grid-row: span 2;
}

.showcase-item:not(.showcase-item--feature):not(.showcase-item--wide) {
  grid-column: span 6;
  grid-row: span 1;
}

.section-header--compact {
  margin-bottom: 1.25rem;
}

.section-header--compact .section-lead {
  font-size: 0.95rem;
}

.showcase-foot {
  text-align: center;
  margin: 0;
}

.section--events {
  background: linear-gradient(180deg, transparent, rgba(255, 214, 236, 0.4));
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* Hero compact */
.hero--compact {
  min-height: min(78vh, 620px);
  min-height: min(78dvh, 620px);
}

.hero--compact .hero-inner {
  padding: 2.5rem 0 3rem;
}

.hero--compact .hero-logo {
  width: clamp(80px, 12vw, 100px);
}

.hero--compact .hero-lead {
  font-size: 1rem;
  max-width: 48ch;
}

/* Quick facts strip */
.quick-facts {
  padding: 0 0 1rem;
  margin-top: -1rem;
  position: relative;
  z-index: 4;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.quick-fact {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  box-shadow: 0 2px 10px rgba(42, 31, 53, 0.05);
}

.quick-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--pink-deep);
  margin-bottom: 0.15rem;
}

.quick-fact span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

/* Hub tabs */
.hub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hub-tab {
  flex: 1;
  min-width: 140px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(42, 31, 53, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.hub-tab.is-active {
  background: #fff;
  border-color: var(--pink-deep);
  box-shadow: 0 4px 16px rgba(224, 86, 154, 0.12);
  color: var(--pink-deep);
}

.hub-panel {
  display: none;
}

.hub-panel.is-active {
  display: block;
}

.hub-panel-head {
  margin-bottom: 1.25rem;
}

.hub-panel-head h2 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  background: linear-gradient(90deg, var(--pink-deep), var(--lavender-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hub-panel-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

/* Approach strip */
.approach-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}

.approach-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: 0 2px 10px rgba(42, 31, 53, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.approach-chip:hover {
  border-color: var(--pink-soft);
  box-shadow: 0 6px 18px rgba(224, 86, 154, 0.1);
}

.approach-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  margin-bottom: 0;
  border-radius: 8px;
  background: var(--pink-soft);
}

.approach-chip:nth-child(1) span { background: var(--pink-soft); }
.approach-chip:nth-child(2) span { background: var(--lavender-soft); }
.approach-chip:nth-child(3) span { background: var(--mint-soft); }

.approach-chip strong {
  color: var(--text);
}

/* Coach cards — Instagram "Meet your coach" style */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.coach-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  border: 2px solid var(--pink-soft);
}

.coach-banner {
  position: relative;
  background: linear-gradient(135deg, #ff3d9a, #e0569a);
  padding: 1rem 1rem 2.5rem;
  min-height: 72px;
}

.coach-banner--phoebe {
  background: linear-gradient(135deg, #ff5eb3, #c026d3);
}

.coach-banner-logo {
  position: absolute;
  left: 0.75rem;
  top: 0.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(139, 92, 246, 0.45);
  line-height: 1;
  pointer-events: none;
}

.coach-banner-text {
  margin: 0;
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.coach-photo-wrap {
  width: 220px;
  height: 220px;
  margin: -2rem auto 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(224, 86, 154, 0.25);
  flex-shrink: 0;
}

.coach-photo-wrap .coach-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border: none;
  border-radius: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}

.coach-photo {
  width: calc(100% - 2rem);
  max-width: 220px;
  margin: -2rem auto 0;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(224, 86, 154, 0.25);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center center;
}

.coach-photo--wide {
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  max-width: none;
  width: calc(100% - 1.5rem);
}

.coach-body {
  padding: 0.85rem 1rem 1rem;
  text-align: center;
}

.coach-tagline {
  margin: 0 0 0.65rem;
  font-weight: 800;
  color: var(--pink-deep);
  font-size: 0.92rem;
}

.coach-details {
  text-align: left;
  margin-bottom: 0.65rem;
}

.coach-details summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--lavender-deep);
  font-size: 0.88rem;
  list-style: none;
}

.coach-details summary::-webkit-details-marker {
  display: none;
}

.coach-details p {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.coach-ig-link {
  font-size: 0.82rem;
  font-weight: 800;
}

/* Instagram embeds */
.embed-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.embed-wrap {
  min-height: 200px;
  display: flex;
  justify-content: center;
}

.embed-wrap .instagram-media {
  margin: 0 !important;
  min-width: 280px !important;
  width: 100% !important;
  max-width: 400px !important;
}

.embed-row--three {
  grid-template-columns: repeat(3, 1fr);
}

.studio-foot {
  text-align: center;
  margin: 0;
}

/* Studio vibe */
.vibe-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.vibe-chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-soft), var(--sun-soft));
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(224, 86, 154, 0.12);
}

.vibe-split {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 1rem;
  align-items: start;
}

.event-card--compact {
  grid-template-columns: 1fr;
  padding: 1rem;
}

.event-card--compact img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 3px solid #fff;
  margin-bottom: 0.75rem;
}

.vibe-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.vibe-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid #fff;
}

.hub-panel-head h2,
.section-header h2 {
  background: linear-gradient(90deg, var(--pink-deep), var(--lavender-deep), var(--mint-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

/* Ambient decorations */
.ambient {
  display: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: blob-drift 18s ease-in-out infinite;
}

.blob--pink {
  width: 280px;
  height: 280px;
  top: 8%;
  left: -4%;
  background: var(--pink);
}

.blob--mint {
  width: 220px;
  height: 220px;
  top: 45%;
  right: -3%;
  background: var(--mint);
  animation-delay: -4s;
}

.blob--lavender {
  width: 260px;
  height: 260px;
  bottom: 15%;
  left: 10%;
  background: var(--lavender);
  animation-delay: -8s;
}

.blob--yellow {
  width: 200px;
  height: 200px;
  top: 22%;
  right: 18%;
  background: var(--sun);
  animation-delay: -12s;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.08); }
  66% { transform: translate(-16px, 22px) scale(0.95); }
}

.note {
  position: absolute;
  font-size: 1.8rem;
  animation: float 10s ease-in-out infinite;
}

.note--1 { top: 14%; left: 6%; color: rgba(255, 142, 196, 0.55); animation-delay: 0s; }
.note--2 { top: 32%; right: 8%; color: rgba(184, 156, 255, 0.6); animation-delay: -2s; font-size: 2.4rem; }
.note--3 { bottom: 28%; left: 12%; color: rgba(110, 231, 192, 0.55); animation-delay: -4s; font-size: 2rem; }
.note--4 { bottom: 42%; right: 14%; color: rgba(255, 209, 102, 0.65); animation-delay: -6s; font-size: 2.2rem; }
.note--5 { top: 55%; left: 4%; color: rgba(255, 154, 118, 0.5); animation-delay: -1s; }
.note--6 { top: 68%; right: 6%; color: rgba(125, 211, 252, 0.55); animation-delay: -5s; font-size: 2.1rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-22px) rotate(10deg); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(42, 31, 53, 0.06);
}

.site-header .nav {
  position: relative;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.site-header--minimal .nav {
  justify-content: space-between;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.nav-logo {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--pink-soft), 0 0 0 6px var(--lavender-soft);
}

.footer-logo {
  border-radius: 50%;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.nav-links a {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-links a:hover {
  background: var(--pink-soft);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--pink-deep) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(224, 86, 154, 0.25);
  border-radius: 10px;
}

.nav-cta:hover {
  background: #c94a88 !important;
}

.nav-links a.is-current {
  background: var(--lavender-soft);
  color: var(--lavender-deep);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--pink-deep);
  color: #fff;
  box-shadow: 0 4px 14px rgba(224, 86, 154, 0.28);
}

.btn-primary:hover {
  background: #c94a88;
  box-shadow: 0 6px 20px rgba(224, 86, 154, 0.35);
}

.btn-ghost {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.btn-ghost:hover {
  background: var(--bg);
  border-color: var(--pink);
  color: var(--pink-deep);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(135deg, rgba(224, 86, 154, 0.72) 0%, rgba(139, 92, 246, 0.65) 45%, rgba(44, 184, 138, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 0 5rem;
  color: #fff;
}

.hero-logo {
  width: clamp(96px, 15vw, 130px);
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.9),
    0 0 0 10px rgba(255, 142, 196, 0.5),
    0 16px 40px rgba(0, 0, 0, 0.25);
  animation: logo-bob 3s ease-in-out infinite;
}

@keyframes logo-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-chip {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(42, 31, 53, 0.25);
}

.hero-lead {
  max-width: 58ch;
  margin: 0 auto 1.75rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.hero-dot:nth-child(1).is-active,
.hero-dot:nth-child(1):hover { background: var(--pink); border-color: var(--pink); }
.hero-dot:nth-child(2).is-active,
.hero-dot:nth-child(2):hover { background: var(--lavender); border-color: var(--lavender); }
.hero-dot:nth-child(3).is-active,
.hero-dot:nth-child(3):hover { background: var(--mint); border-color: var(--mint); }

.hero-dot.is-active {
  transform: scale(1.35);
}

.hero-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.audience-pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.audience-pill--pink { background: rgba(255, 142, 196, 0.85); color: #fff; }
.audience-pill--lavender { background: rgba(184, 156, 255, 0.9); color: #fff; }
.audience-pill--mint { background: rgba(110, 231, 192, 0.9); color: #1a4034; }
.audience-pill--sun { background: rgba(255, 209, 102, 0.95); color: #5c3d00; }

/* Trust band — for parents */
.trust {
  padding: 0 0 clamp(2rem, 5vw, 3rem);
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-card {
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  border: 3px solid #fff;
  box-shadow: var(--shadow-pop);
  transition: transform 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
}

.trust-card--pink { background: linear-gradient(160deg, #fff 0%, var(--pink-soft) 100%); }
.trust-card--lavender { background: linear-gradient(160deg, #fff 0%, var(--lavender-soft) 100%); }
.trust-card--mint { background: linear-gradient(160deg, #fff 0%, var(--mint-soft) 100%); }

.trust-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.trust-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.trust-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.section-header--center {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2rem;
}

.offering-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.contact-checklist {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text);
}

.contact-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint-deep);
  font-weight: 800;
}

.optional {
  font-weight: 600;
  color: var(--muted);
  font-style: normal;
}

.form-field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--lavender-soft);
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 700;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field select:focus {
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px rgba(184, 156, 255, 0.25);
}

/* Offerings */
.offerings {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.offering-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-pop);
  border: 3px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offering-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 24px 50px rgba(139, 92, 246, 0.25);
}

.offering-card--pink {
  background: linear-gradient(160deg, #ffd6ec 0%, #ffb8da 100%);
}

.offering-card--mint {
  background: linear-gradient(160deg, #c8f5e4 0%, #8ef0cc 100%);
}

.offering-card--sun {
  background: linear-gradient(160deg, #fff0b3 0%, #ffd166 100%);
}

.offering-icon {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 6px 16px rgba(42, 31, 53, 0.1);
}

.offering-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.offering-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
}

.offering-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--mint-deep);
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar {
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.25s ease;
}

.pillar:hover {
  transform: translateY(-6px) rotate(1deg);
}

.pillar--pink {
  background: linear-gradient(180deg, #fff 0%, var(--pink-soft) 100%);
  border-color: var(--pink);
}

.pillar--lavender {
  background: linear-gradient(180deg, #fff 0%, var(--lavender-soft) 100%);
  border-color: var(--lavender);
}

.pillar--mint {
  background: linear-gradient(180deg, #fff 0%, var(--mint-soft) 100%);
  border-color: var(--mint);
}

.pillar-icon {
  font-size: 2rem;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 14px rgba(42, 31, 53, 0.1);
}

.pillar h3 {
  margin-bottom: 0.65rem;
  color: var(--text);
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

/* Team */
.team-grid {
  display: grid;
  gap: 2rem;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 0;
  align-items: start;
  background: #fff;
  border: 3px solid var(--lavender-soft);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
}

.team-card:nth-child(2) {
  border-color: var(--mint-soft);
}

.team-embed-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 1rem 0.75rem;
  background: linear-gradient(180deg, var(--lavender-soft) 0%, #fff 100%);
  border-right: 1px solid var(--border);
}

.team-card:nth-child(2) .team-embed-wrap {
  background: linear-gradient(180deg, var(--mint-soft) 0%, #fff 100%);
}

.team-embed-crop {
  position: relative;
  width: 100%;
  max-width: 300px;
  max-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(42, 31, 53, 0.1);
}

.team-embed-crop .instagram-media,
.team-embed-crop iframe {
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 300px !important;
  border: 0 !important;
}

.team-role {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

.team-body h3 {
  margin-bottom: 1rem;
}

.team-body p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.team-body p:last-child {
  margin-bottom: 0;
}

/* Classes */
.class-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.class-tab {
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(42, 31, 53, 0.05);
}

.class-tab:hover {
  border-color: var(--pink-soft);
}

.class-tab--pink.is-active {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: #fff;
  box-shadow: 0 4px 14px rgba(224, 86, 154, 0.25);
}

.class-tab--sun.is-active {
  background: var(--sun-deep);
  border-color: var(--sun-deep);
  color: #fff;
  box-shadow: 0 4px 14px rgba(244, 168, 38, 0.25);
}

.class-tab--mint.is-active {
  background: var(--mint-deep);
  border-color: var(--mint-deep);
  color: #fff;
  box-shadow: 0 4px 14px rgba(44, 184, 138, 0.25);
}

.class-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(42, 31, 53, 0.06);
}

.class-panel-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 3px solid var(--pink-soft);
}

.class-sub {
  margin: 0.35rem 0 1rem;
  font-weight: 800;
  color: var(--lavender-deep);
}

.class-panel-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.class-details {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.class-details li + li {
  margin-top: 0.45rem;
}

.class-note {
  font-size: 0.92rem;
}

.class-note a {
  font-weight: 600;
}

/* Events */
.event-card {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #ffd6ec 0%, #e4d6ff 40%, #fff0b3 100%);
  border: 3px solid #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow-pop);
}

.event-visual img {
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px rgba(224, 86, 154, 0.25);
  border: 3px solid #fff;
}

.event-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-deep), var(--lavender-deep));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-copy h3 {
  margin-bottom: 0.75rem;
}

.event-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

/* Instagram */
.section--instagram {
  padding-bottom: 0;
}

.instagram-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, var(--lavender-soft) 100%);
  border: 3px solid var(--lavender);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow-pop);
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 3px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-grid img:nth-child(1) { box-shadow: 0 8px 20px rgba(255, 142, 196, 0.35); }
.instagram-grid img:nth-child(2) { box-shadow: 0 8px 20px rgba(255, 209, 102, 0.35); }
.instagram-grid img:nth-child(3) { box-shadow: 0 8px 20px rgba(110, 231, 192, 0.35); }
.instagram-grid img:nth-child(4) { box-shadow: 0 8px 20px rgba(184, 156, 255, 0.35); }

.instagram-grid img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.class-panel.is-active {
  display: grid;
}

.team-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.team-body {
  padding: 1.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-intro p {
  color: var(--muted);
  font-weight: 600;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.contact-email,
.contact-social {
  font-weight: 800;
  text-decoration: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-field {
  display: block;
  margin-bottom: 0.85rem;
}

.form-field span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--lavender-soft);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.section--contact {
  background: var(--bg);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(42, 31, 53, 0.06);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px rgba(184, 156, 255, 0.25);
}

.enquiry-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--pink-deep);
  font-weight: 700;
}

.form-note--email {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-nav a:hover {
  color: var(--pink-deep);
}

/* Terms page */
.terms-page {
  background: var(--bg);
}

.terms-main {
  padding: 3rem 0 4rem;
}

.terms-block {
  background: linear-gradient(180deg, #fff, var(--pink-soft));
  border: 3px solid var(--lavender-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.terms-block:nth-child(3) {
  background: linear-gradient(180deg, #fff, var(--mint-soft));
  border-color: var(--mint-soft);
}

.terms-block:nth-child(4) {
  background: linear-gradient(180deg, #fff, var(--sun-soft));
  border-color: var(--sun-soft);
}

.terms-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.terms-block h3 {
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem;
}

.terms-block ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.terms-block li + li {
  margin-top: 0.4rem;
}

.terms-contact {
  color: var(--muted);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .quick-facts-grid,
  .coach-grid,
  .showcase-grid,
  .approach-strip,
  .embed-row,
  .embed-row--three,
  .vibe-split,
  .offerings-grid,
  .pillars,
  .trust-grid,
  .contact-layout,
  .instagram-panel,
  .event-card,
  .class-panel,
  .team-card {
    grid-template-columns: 1fr;
  }

  .coach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-item--feature,
  .showcase-item--wide,
  .showcase-item:not(.showcase-item--feature):not(.showcase-item--wide) {
    grid-column: span 6;
    grid-row: span 1;
    min-height: 200px;
  }

  .team-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .team-embed-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1rem 0.75rem;
  }
}

@media (max-width: 720px) {
  .coach-grid {
    grid-template-columns: 1fr;
  }

  .showcase-item--feature,
  .showcase-item--wide,
  .showcase-item:not(.showcase-item--feature):not(.showcase-item--wide) {
    grid-column: 1 / -1;
  }

  .quick-facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hub-tab {
    min-width: calc(50% - 0.25rem);
    flex: 1 1 calc(50% - 0.25rem);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .offerings {
    margin-top: -1.5rem;
  }

  .hero-inner {
    padding-bottom: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-slide,
  .note,
  .blob,
  .btn,
  .pillar,
  .hero-logo,
  .btn-primary {
    animation: none;
    transition: none;
  }
}
