/* ================================================================
   WILD & POTTY — "Aotearoa Bloom / Kinetic Kiln"
   Design System: Organic Maximalism
   ================================================================ */

/* ── Variables ── */
:root {
  /* Surface hierarchy — Midnight Plum (darkest → lightest) */
  --surface-base:       #150629;   /* body background */
  --surface:            #1e0935;
  --surface-low:        #2a1045;
  --surface-mid:        #301a4d;
  --surface-high:       #3d1f60;
  --surface-highest:    #4a2570;

  /* Primary — Acid Green */
  --primary:            #BDFF00;
  --primary-dim:        #9fd400;
  --on-primary:         #0e0220;

  /* Secondary — Bubblegum Pink */
  --secondary:          #ff6d8d;
  --secondary-dim:      #e0506e;
  --on-secondary:       #150629;

  /* Tertiary — Neon Lavender */
  --tertiary:           #e092ff;
  --tertiary-dim:       #c470e0;

  /* Logo sign colours */
  --logo-green:         #c2e000;
  --logo-pink:          #ff2080;

  /* Text */
  --text-primary:       #e9ffb9;
  --text-white:         #ffffff;
  --text-muted:         rgba(233,255,185,0.65);
  --text-on-dark:       rgba(255,255,255,0.8);

  /* Typography */
  --font-display:       'Plus Jakarta Sans', sans-serif;
  --font-body:          'Be Vietnam Pro', sans-serif;
  --font-script:        'Dancing Script', cursive;

  /* Shape */
  --radius-pill:        999px;
  --radius-xl:          3rem;
  --radius-lg:          1.5rem;
  --radius-md:          1rem;
  --radius-blob:        60% 40% 50% 70% / 50% 60% 40% 55%;

  /* Motion */
  --transition:         0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --spring:             0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing (generous, editorial) */
  --space-section:      clamp(5rem, 10vw, 8.5rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--surface-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Container ── */
.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* ── Section Tag (pill label) ── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-primary);
  background: var(--primary);
  border-radius: var(--radius-pill);
  padding: 0.3em 1.1em;
  margin-bottom: 1rem;
}

.section-tag--light {
  color: var(--on-primary);
  background: var(--primary);
}

/* ── Section Titles ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}

.section-title--light { color: var(--text-white); }
.section-title--light em { color: var(--primary); }

.section-intro {
  font-size: 1.05rem;
  max-width: 580px;
  color: var(--text-primary);
  margin-bottom: 3rem;
  line-height: 1.75;
}

.section-intro--light { color: var(--text-primary); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8em 2.2em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* Squish on click — tactile pottery feel */
.btn:active { transform: scale(0.95) !important; }

.btn--primary {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
  font-weight: 800;
}

.btn--primary:hover {
  background: #d4ff26;
  border-color: #d4ff26;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(189,255,0,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn--outline:hover {
  background: var(--secondary);
  color: var(--on-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,109,141,0.3);
}

.btn--large { font-size: 1.05rem; padding: 0.95em 2.6em; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Blob shapes ── */
.blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
  animation: blobFloat 9s ease-in-out infinite alternate;
}

@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1) rotate(0deg); }
  to   { transform: translate(3%, 4%) scale(1.06) rotate(7deg); }
}

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s var(--spring);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─────────────────────────────────────────────── */
/*  NAVIGATION — Glassmorphism                     */
/* ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(21, 6, 41, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(21, 6, 41, 0.88);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  cursor: default;
  user-select: none;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.nav__logo-wild  { color: var(--logo-green); }
.nav__logo-amp   { color: var(--logo-pink); margin: 0 0.08em; }
.nav__logo-potty { color: var(--logo-green); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav__links a {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: right var(--transition);
}

.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { right: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ─────────────────────────────────────────────── */
/*  HERO                                           */
/* ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(155deg, var(--surface-base) 0%, #2a0850 45%, #3d1268 80%, #4a1a7a 100%);
  overflow: hidden;
  padding-top: 5rem;
}

.hero__bg-blobs { position: absolute; inset: 0; pointer-events: none; }

.blob--1 {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(189,255,0,0.12), rgba(21,6,41,0.05));
  top: -12%; left: -10%;
  animation-duration: 10s;
}

.blob--2 {
  width: 38vw; height: 38vw;
  background: radial-gradient(circle, rgba(255,109,141,0.18), rgba(21,6,41,0.03));
  bottom: 5%; right: -6%;
  animation-duration: 13s;
  animation-delay: -4s;
}

.blob--3 {
  width: 28vw; height: 28vw;
  background: radial-gradient(circle, rgba(224,146,255,0.15), transparent);
  top: 38%; left: 52%;
  animation-duration: 16s;
  animation-delay: -6s;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem;
  animation: heroFadeIn 1.1s ease-out both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tertiary);
  margin-bottom: 1rem;
  animation: heroFadeIn 1.1s ease-out 0.2s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 10rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.92;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1.1s ease-out 0.35s both;
  text-shadow: 0 0 80px rgba(189,255,0,0.25);
}

.hero__title em {
  font-style: italic;
  color: var(--primary);
  display: block;
}

.hero__title .amp {
  color: var(--secondary);
  font-size: 0.72em;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  animation: heroFadeIn 1.1s ease-out 0.5s both;
}

.hero__cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.1s ease-out 0.65s both;
}

.hero .btn--outline {
  color: var(--tertiary);
  border-color: var(--tertiary);
}

.hero .btn--outline:hover {
  background: rgba(224,146,255,0.15);
  color: var(--text-white);
  border-color: var(--tertiary);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(233,255,185,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeIn 1.1s ease-out 1s both;
}

.hero__scroll-hint svg {
  width: 22px;
  height: 33px;
}

.scroll-dot {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  pointer-events: none;
}

.hero__wave svg { width: 100%; height: auto; }

/* ─────────────────────────────────────────────── */
/*  ABOUT                                          */
/* ─────────────────────────────────────────────── */
.about {
  background: var(--surface);
  padding-block: var(--space-section);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about__image-wrap {
  display: flex;
  justify-content: center;
}

/* Real photo of Lou */
.about__photo-wrap {
  width: min(360px, 88vw);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45),
              0 0 0 2px rgba(189,255,0,0.18);
  position: relative;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about__text { max-width: 540px; }

.about__text p {
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: nowrap;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  display: block;
}

.stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.squiggle,
.squiggle--top,
.squiggle--bottom { display: none; }

/* ─────────────────────────────────────────────── */
/*  WORK / POTTERY                                 */
/* ─────────────────────────────────────────────── */
.work {
  background: var(--surface-low);
  padding-block: var(--space-section);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.work-card {
  background: var(--surface-high);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  /* Ghost border fallback — outline-variant at 15% */
  outline: 1px solid rgba(224,146,255,0.12);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  outline-color: rgba(189,255,0,0.2);
}

.work-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.75rem;
  align-items: start;
}

.work-card--wide .work-card__icon { grid-row: span 2; }

.work-card__icon {
  width: 72px;
  height: 72px;
  background: var(--surface-highest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  padding: 0.9rem;
}

.work-card__icon svg { width: 100%; height: 100%; }

.work-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}

.work-card p {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────── */
/*  STUDIO SECTION                                  */
/* ─────────────────────────────────────────────── */
.studio {
  padding-block: 5rem 4rem;
  background: var(--surface);
}

.studio__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.studio__intro {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 520px;
  margin-inline: auto;
  margin-top: 0.75rem;
  line-height: 1.65;
}

.studio__photos {
  display: flex;
  justify-content: center;
}

.studio__photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: min(280px, 100%);
}

.studio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.studio__photo:hover img {
  transform: scale(1.03);
}

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

/* ─────────────────────────────────────────────── */
/*  PHOTO GALLERY (inside .work)                   */
/* ─────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-highest);
  position: relative;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--full {
  grid-column: span 3;
  aspect-ratio: 21 / 9;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
  min-height: 200px;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* ─────────────────────────────────────────────── */
/*  SCHEDULE / CALENDAR                            */
/* ─────────────────────────────────────────────── */
.schedule {
  margin-top: 3.5rem;
  margin-bottom: 0.5rem;
}

.schedule__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.schedule__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.schedule__item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  background: var(--surface-high);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  outline: 1px solid rgba(224,146,255,0.1);
  transition: outline-color var(--transition), transform var(--transition);
}

.schedule__item:hover {
  outline-color: rgba(189,255,0,0.2);
  transform: translateX(4px);
}

.schedule__item--featured {
  background: var(--surface-highest);
  outline-color: rgba(189,255,0,0.22);
}

.schedule__date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.schedule__name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.schedule__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.schedule__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,109,141,0.15);
  color: var(--secondary);
  border-radius: var(--radius-pill);
  padding: 0.25em 0.85em;
  white-space: nowrap;
  border: 1px solid rgba(255,109,141,0.3);
}

.schedule__tag--featured {
  background: rgba(189,255,0,0.12);
  color: var(--primary);
  border-color: rgba(189,255,0,0.3);
}

.schedule__note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  text-align: center;
}

.schedule__note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────────────────────────────────────────── */
/*  SPECIAL EVENTS                                 */
/* ─────────────────────────────────────────────── */
.events {
  margin-top: 4rem;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-card {
  background: var(--surface-high);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  outline: 1px solid rgba(224,146,255,0.1);
  transition: transform var(--transition), box-shadow var(--transition), outline-color var(--transition);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  outline-color: rgba(189,255,0,0.2);
}

.event-card__icon {
  flex-shrink: 0;
  line-height: 1;
  width: 44px;
  height: 44px;
  background: rgba(189,255,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(189,255,0,0.2);
}

.event-card__icon .ti {
  font-size: 1.35rem;
  color: var(--primary);
}

.event-card h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.event-card p {
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.62;
}

.event-card a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────────────────────────────────────────── */
/*  CONTACT EMAIL LINK                             */
/* ─────────────────────────────────────────────── */
.contact__email {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition);
}

.contact__email:hover { color: var(--secondary); }

/* Location links */
.location__item a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.location__item a:hover { color: var(--secondary); }

/* ─────────────────────────────────────────────── */
/*  CLASSES                                        */
/* ─────────────────────────────────────────────── */
.classes {
  background: var(--surface-mid);
  padding-block: var(--space-section);
}

.classes__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.class-card {
  background: var(--surface-high);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  outline: 1px solid rgba(224,146,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.class-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  outline-color: rgba(189,255,0,0.18);
}

.class-card--featured {
  background: var(--surface-highest);
  outline-color: rgba(189,255,0,0.25);
}

.class-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 1.75rem;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.25em 0.9em;
}

.class-card__location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
}

.class-card__location svg {
  width: 13px;
  height: 13px;
  fill: var(--secondary);
  flex-shrink: 0;
}

.class-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.class-card p {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.65;
  flex-grow: 1;
}

.class-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.class-card__features li {
  position: relative;
  padding-left: 1.2em;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.class-card__features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.65em;
  top: 0.18em;
}

.classes__note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(189,255,0,0.06);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  max-width: 620px;
  margin-inline: auto;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: 1px solid rgba(189,255,0,0.15);
  margin-top: 3rem;
}

.classes__note svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.classes__note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────────────────────────────────────────── */
/*  PHILOSOPHY QUOTE                               */
/* ─────────────────────────────────────────────── */
.philosophy {
  background: var(--surface-base);
  padding-block: var(--space-section);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.philosophy__blobs { position: absolute; inset: 0; pointer-events: none; }

.blob--ph1 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(189,255,0,0.07), transparent 70%);
  top: -15%; left: -15%;
  animation-duration: 12s;
}

.blob--ph2 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(255,109,141,0.08), transparent 70%);
  bottom: -10%; right: -10%;
  animation-duration: 15s;
  animation-delay: -5s;
}

.philosophy__quote {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.philosophy__quote p {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 5vw, 3rem);
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.philosophy__quote footer {
  font-size: 0.88rem;
  color: var(--tertiary);
  letter-spacing: 0.1em;
  font-style: italic;
}

/* ─────────────────────────────────────────────── */
/*  LOCATION                                       */
/* ─────────────────────────────────────────────── */
.location {
  background: var(--surface-low);
  padding-block: var(--space-section);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location__text p {
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location__item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.location__item svg {
  width: 22px;
  height: 22px;
  fill: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.location__item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-white);
  margin-bottom: 0.15rem;
}

.location__item span {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.location__map-placeholder { display: flex; justify-content: center; }

.map-blob {
  width: min(340px, 85vw);
  aspect-ratio: 1;
  background: var(--surface-high);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(189,255,0,0.1);
}

.map-nz { width: 100%; height: 100%; }

/* ─────────────────────────────────────────────── */
/*  CONTACT                                        */
/* ─────────────────────────────────────────────── */
.contact {
  background: linear-gradient(155deg, var(--surface-mid) 0%, var(--surface-low) 100%);
  padding-block: var(--space-section);
  position: relative;
  overflow: hidden;
}

.contact__blobs { position: absolute; inset: 0; pointer-events: none; }

.blob--c1 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(189,255,0,0.08), transparent 70%);
  top: -10%; left: -8%;
  animation-duration: 11s;
}

.blob--c2 {
  width: 35vw; height: 35vw;
  background: radial-gradient(circle, rgba(255,109,141,0.1), transparent 70%);
  bottom: -10%; right: -5%;
  animation-duration: 14s;
  animation-delay: -3s;
}

.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tertiary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-highest);
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.85em 1.2em;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: 1px solid rgba(224,146,255,0.15);
  transition: outline-color var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(233,255,185,0.35);
}

.form-group select option { background: var(--surface-mid); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline-color: var(--primary);
  background: var(--surface-high);
}

.contact__confirmation {
  text-align: center;
  padding: 3rem;
  background: var(--surface-high);
  border-radius: var(--radius-xl);
  outline: 1px solid rgba(189,255,0,0.2);
}

.confirmation__icon { font-size: 3rem; margin-bottom: 1rem; }

.contact__confirmation h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact__confirmation p { color: var(--text-primary); }

/* ─────────────────────────────────────────────── */
/*  FOOTER                                         */
/* ─────────────────────────────────────────────── */
.footer {
  background: var(--surface-base);
  padding-top: 0;
  padding-bottom: 3rem;
  text-align: center;
}

.footer__wave { line-height: 0; }
.footer__wave svg { width: 100%; height: auto; }

.footer__content { padding-inline: 2rem; padding-top: 2rem; }

.footer__logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.35);
}

.footer__tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.footer__locations {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tertiary);
  margin-bottom: 1.5rem;
}

.footer__dot { color: var(--primary); }

.footer__copy {
  font-size: 0.78rem;
  color: rgba(233,255,185,0.35);
  line-height: 1.8;
}

/* ─────────────────────────────────────────────── */
/*  BURGER MOBILE MENU                             */
/* ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__burger {
    display: flex;
    position: relative;
    z-index: 1001; /* always above the overlay */
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 64px; /* start below the nav bar */
    left: 0; right: 0; bottom: 0;
    background: rgba(21, 6, 41, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav__links.open { display: flex; }

  .nav__links a { font-size: 1.5rem; }

  .nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Stack layouts */
  .about__grid,
  .location__grid { grid-template-columns: 1fr; gap: 3rem; }

  .work__grid { grid-template-columns: 1fr; }
  .work-card--wide { grid-column: span 1; grid-template-columns: 1fr; }
  .work-card--wide .work-card__icon { grid-row: auto; }

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

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

  .about__stats { gap: 1.5rem; }

  /* Gallery — 2 col on mobile */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide,
  .gallery__item--full { grid-column: span 2; }

  /* Schedule — stack */
  .schedule__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .schedule__tag { align-self: flex-start; }

  /* Events — stack */
  .events__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__cta-group { flex-direction: column; align-items: center; }
}
