/* ============================================
   DANCE CENTRAL DUBAI — Design Tokens
   ============================================ */
:root{
  --bg-dark: #150E1B;
  --surface-dark: #201530;
  --surface-dark-2: #2A1C3D;
  --pink: #E51262;
  --pink-dim: #7A0E3A;
  --gold: #FAB60F;
  --purple: #7664AE;
  --lime: #FAB60F; /* legacy alias kept so old rules still resolve to brand gold */
  --cream: #F5F1E8;
  --cream-2: #ECE6D6;
  --ink: #171319;
  --muted: #9A8FB0;
  --muted-light: #D7CFE6;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --container: 1180px;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }

html{ scroll-behavior: smooth; }

body{
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* ============================================
   SHARED
   ============================================ */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--lime);
  margin-bottom: 14px;
  display: inline-block;
}
.eyebrow-dark{ color: var(--pink); }
.center{ text-align: center; }

.section-title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title.light{ color: var(--cream); }
.accent{ color: var(--pink); }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: var(--pink);
  color: var(--cream);
}
.btn-primary:hover{ background: #ff477e; }

.btn-ghost{
  border-color: rgba(245,241,232,0.35);
  color: var(--cream);
}
.btn-ghost:hover{ border-color: var(--lime); color: var(--lime); }

.btn-ghost-light{
  border-color: rgba(23,19,25,0.25);
  color: var(--ink);
}
.btn-ghost-light:hover{ border-color: var(--pink); color: var(--pink); }

.btn-whatsapp{
  background: var(--lime);
  color: var(--ink);
  padding: 10px 20px;
}
.btn-whatsapp:hover{ background: #d9ff6b; }
.icon-wa{ width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; overflow: visible; }

/* ============================================
   NAV
   ============================================ */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,12,18,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,241,232,0.08);
}
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo{ display: flex; align-items: center; }
.nav-logo img{ height: 42px; width: auto; }
.footer-logo img{ height: 56px; }
.nav-links{
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a{ color: var(--muted-light); transition: color 0.18s ease; }
.nav-links a:hover{ color: var(--lime); }
.nav-burger{ display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span{ display: block; width: 22px; height: 2px; background: var(--cream); margin: 5px 0; }

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative;
  min-height: 100svh;
  background: var(--bg-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 24px 120px;
}
.hero-bg-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.32;
  z-index: 0;
}
.hero-glow{
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 72% 28%, rgba(255,45,110,0.38), transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(203,255,61,0.16), transparent 65%);
  filter: blur(10px);
  animation: driftGlow 14s ease-in-out infinite alternate;
}
@keyframes driftGlow{
  0%{ transform: translate(0,0) scale(1); }
  100%{ transform: translate(-2%, 2%) scale(1.06); }
}
.hero::after{
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13,12,18,0.55) 0%, rgba(13,12,18,0.65) 45%, rgba(13,12,18,0.92) 100%);
}
.hero-grid{
  display: none;
}
.hero-inner{
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-title{
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 0.86;
  font-size: clamp(3.6rem, 14vw, 9.5rem);
  margin: 6px 0 30px;
}
.hero-title .line{ display: block; }
.line-1{ color: var(--cream); }
.line-2{ color: var(--cream); margin-left: clamp(0px, 8vw, 120px); -webkit-text-stroke: 2px var(--cream); color: transparent; }
.line-3{ color: var(--pink); }

.hero-sub{
  max-width: 480px;
  font-size: 1.08rem;
  color: var(--muted-light);
  margin-bottom: 40px;
}
.hero-cta{ display: flex; flex-wrap: wrap; gap: 16px; }

.ticket-badge{
  position: absolute;
  right: 6%;
  bottom: 8%;
  z-index: 3;
  transform: rotate(-6deg);
}
.ticket-badge-inner{
  background: var(--lime);
  color: var(--ink);
  border: 2px dashed var(--ink);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-mono);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.ticket-stars{ font-size: 0.75rem; letter-spacing: 0.1em; }
.ticket-score{ font-family: var(--font-display); font-size: 2rem; line-height: 1; margin: 2px 0; }
.ticket-count{ font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; text-align: center; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee{
  background: var(--pink);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee-track{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  animation: scrollMarquee 26s linear infinite;
}
.marquee-track span{ flex: 0 0 auto; }
@keyframes scrollMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about{
  background: var(--cream);
  padding: 110px 24px;
}
.about-inner{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-quote{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.28;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0.005em;
  margin-bottom: 56px;
}
.about-quote em{ font-style: normal; color: var(--pink); }

.about-stats{
  display: flex;
  justify-content: center;
  gap: clamp(24px, 8vw, 80px);
  flex-wrap: wrap;
}
.stat{ display: flex; flex-direction: column; align-items: center; }
.stat-num{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--pink);
  line-height: 1;
}
.stat-label{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* ============================================
   PILLARS (Why We Stand Out)
   ============================================ */
.pillars{
  background: var(--bg-dark);
  padding: 100px 24px 110px;
}
.pillar-grid{
  max-width: var(--container);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card{
  border-top: 2px solid var(--pink);
  padding-top: 22px;
  text-align: center;
}
.pillar-mark{
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.pillar-card h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.pillar-card p{ color: var(--muted-light); font-size: 0.94rem; }

/* ============================================
   GLOBAL EXPOSURE
   ============================================ */
.global{
  background: var(--cream);
  padding: 100px 24px;
}
.global-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.global-body{ font-size: 1.05rem; color: var(--ink); opacity: 0.85; margin-top: 8px; }
.global-body strong{ color: var(--pink); font-weight: 700; }
.global-badge-inner{
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  color: var(--cream);
  transform: rotate(2deg);
  box-shadow: 0 20px 40px rgba(118,100,174,0.3);
}
.global-badge-label{
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 14px;
}
.global-badge-name{
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.global-badge-loc{
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* ============================================
   SIGNATURE PRODUCTIONS
   ============================================ */
.productions{
  background: var(--bg-dark);
  color: var(--cream);
  padding: 110px 24px;
}
.production-row{
  max-width: var(--container);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.production-row.reverse{ direction: rtl; }
.production-row.reverse > *{ direction: ltr; }
.production-media{
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--purple);
  aspect-ratio: 4/3;
}
.production-media img{ width: 100%; height: 100%; object-fit: cover; }
.production-tag{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.production-text h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
  letter-spacing: 0.005em;
}
.production-text p{ color: var(--muted-light); font-size: 0.98rem; }

.production-gallery{
  max-width: var(--container);
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.production-gallery img{
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(245,241,232,0.12);
}

/* ============================================
   IMPACT & VISION
   ============================================ */
.impact{
  background: var(--cream-2);
  padding: 100px 24px;
}
.impact-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.impact-list{ list-style: none; margin: 22px 0; }
.impact-list li{
  font-family: var(--font-mono);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23,19,25,0.12);
  color: var(--ink);
}
.impact-line{ font-size: 1.05rem; margin-top: 20px; color: var(--ink); opacity: 0.8; }
.vision-col{
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vision-col .eyebrow-dark{ color: var(--gold); }
.vision-col .impact-list li{ color: var(--cream); border-bottom-color: rgba(245,241,232,0.15); }
.vision-text{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.32;
  letter-spacing: 0.005em;
}

/* ============================================
   PARTNERSHIP
   ============================================ */
.partner{
  background: var(--bg-dark);
  color: var(--cream);
  padding: 110px 24px;
}
.partner-intro{
  max-width: 620px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted-light);
  font-size: 1.05rem;
}
.partner-grid{
  max-width: var(--container);
  margin: 56px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background: rgba(245,241,232,0.1);
}
.partner-card{
  background: var(--surface-dark);
  padding: 34px 30px;
  text-align: center;
  flex: 1 1 calc(33.333% - 2px);
  min-width: 260px;
}
.partner-card h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.partner-card p{ color: var(--muted-light); font-size: 0.92rem; }
.partner-cta{ text-align: center; margin-top: 50px; }

/* ============================================
   CLASSES
   ============================================ */
.classes{
  background: var(--cream-2);
  padding: 110px 24px 100px;
}
.class-grid{
  max-width: var(--container);
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.class-card{
  background: var(--cream-2);
  padding: 40px 32px;
  transition: background 0.2s ease;
}
.class-card:hover{ background: var(--pink); color: var(--cream); }
.class-card:hover .class-icon{ color: var(--cream); }
.class-icon{
  width: 48px; height: 48px;
  color: var(--pink);
  margin-bottom: 22px;
  transition: color 0.2s ease;
}
.class-card:hover .class-icon{ color: var(--lime); }
.class-icon svg{ width: 100%; height: 100%; }
.class-card h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.class-card p{ font-size: 0.96rem; color: inherit; opacity: 0.85; }

.classes-cta{
  max-width: var(--container);
  margin: 56px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews{
  background: var(--bg-dark);
  color: var(--cream);
  padding: 110px 24px;
}
.review-grid{
  max-width: var(--container);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card{
  background: var(--surface-dark);
  border: 1px solid rgba(245,241,232,0.08);
  border-radius: 4px;
  padding: 32px 28px;
}
.review-stars{ color: var(--lime); letter-spacing: 0.1em; display: block; margin-bottom: 18px; }
.review-card p{ font-size: 1rem; color: var(--muted-light); margin-bottom: 22px; }
.review-name{ font-family: var(--font-mono); font-size: 0.78rem; color: var(--pink); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================
   GALLERY
   ============================================ */
.gallery{
  background: var(--cream);
  padding: 100px 24px;
}
.gallery-grid{
  max-width: var(--container);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item{
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface-dark);
  border: 2px solid var(--ink);
}
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img{ transform: scale(1.05); }

.img-placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  background: repeating-linear-gradient(45deg, var(--surface-dark), var(--surface-dark) 10px, var(--surface-dark-2) 10px, var(--surface-dark-2) 20px);
  color: var(--muted-light);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero .img-placeholder{ display: none; } /* hero has its own dark bg, no need to flag */

/* ============================================
   VISIT
   ============================================ */
.visit{ background: var(--cream); padding: 110px 24px; }
.visit-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-row{
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23,19,25,0.12);
}
.info-label{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  flex: 0 0 110px;
  padding-top: 3px;
}
.info-value{ font-size: 1rem; }
.info-value a:hover{ color: var(--pink); }

.visit-cta{ display: flex; flex-wrap: wrap; gap: 16px; margin: 34px 0 26px; }

.social-row{ display: flex; gap: 22px; font-family: var(--font-mono); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.social-row a{ border-bottom: 1px solid transparent; transition: border-color 0.18s ease, color 0.18s ease; }
.social-row a:hover{ color: var(--pink); border-color: var(--pink); }

.visit-map{
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--ink);
  aspect-ratio: 4/3.4;
}
.visit-map iframe{ width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }

/* ============================================
   FOOTER
   ============================================ */
.footer{
  background: var(--ink);
  color: var(--muted-light);
  padding: 60px 24px 40px;
  text-align: center;
}
.footer-inner{ max-width: var(--container); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo{ font-size: 1.4rem; }
.footer-fine{ font-size: 0.78rem; color: var(--muted); margin-top: 16px; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-wa{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  transition: transform 0.18s ease;
  overflow: visible;
}
.floating-wa:hover{ transform: scale(1.08); }
.floating-wa svg{ width: 28px; height: 28px; fill: var(--ink); flex-shrink: 0; display: block; }

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero{
  position: relative;
  background: var(--bg-dark);
  color: var(--cream);
  padding: 170px 24px 90px;
  min-height: clamp(500px, 68vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.75;
}
/* Some source photos have a big logo/screen filling the top of frame
   with people lower down — bias the crop toward the bottom for those
   specific hero photos so visitors actually see faces, not empty stage. */
.page-hero-img.bias-down{ object-position: center 80%; }
/* Visit page hero photo is busier/more colourful than the old show
   photos this variant was designed for — nudge the crop so the full
   logo reads (not clipped) and deepen the scrim a touch so the title
   stays legible over the mural. .page-hero-img is only used on the
   Visit page now, so this is safe to tune specifically for it. */
.page-hero-img.bias-mid{ object-position: center 58%; }
/* Other photos have the important content (a show logo, banner text)
   filling the TOP of the frame — bias the crop upward so that content
   isn't the first thing cropped out from behind the nav bar. */
.page-hero-img.bias-up{ object-position: center 8%; }
/* Blank hero variant (no photo yet) — don't force the same tall
   min-height as the image version, or it's just an empty dark slab. */
.page-hero-noimg{ min-height: 0; }
/* Dance Vaganza hero: the official show badge, shown at full brightness
   and full size side-by-side with the title — not a faded watermark
   behind the text. Sits on the same colourful gradient corners used by
   the other no-photo hero pages, so there's no empty dead space. */
.page-hero-badge{ min-height: clamp(440px, 54vh, 620px); padding-bottom: 70px; }
.page-hero-inner-badge{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.page-hero-badge-copy{ flex: 1 1 380px; min-width: 0; }
.page-hero-badge-img{
  flex: 0 0 auto;
  display: block;
  width: clamp(220px, 27vw, 380px);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
/* Tablet: still side-by-side, just tighter, so both the copy and the
   full badge stay comfortably unclipped. */
@media (max-width: 1040px){
  .page-hero-badge{ min-height: clamp(400px, 50vh, 560px); }
  .page-hero-inner-badge{ gap: 32px; }
  .page-hero-badge-img{ width: clamp(190px, 30vw, 300px); }
}
/* Phones: no spare width beside the title for a side-by-side badge,
   so stack it — full-size and fully visible — above the copy instead.
   Uses the compound .page-hero.page-hero-badge selector (instead of
   .page-hero-badge alone) so it reliably beats the generic mobile
   .page-hero override further down this file regardless of source
   order — the same fix this hero needed the first time around. */
@media (max-width: 680px){
  .page-hero.page-hero-badge{ min-height: 0; padding: 140px 20px 48px; }
  .page-hero-inner-badge{
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .page-hero-badge-copy{ flex-basis: auto; }
  .page-hero-badge-copy .page-hero-sub{ margin-left: auto; margin-right: auto; }
  .page-hero-badge-img{ width: min(64vw, 300px); }
}
/* Colorful (no-photo) hero variant — used on pages without dedicated
   hero photography. Same layered look as the homepage hero (drifting
   brand-colour glow + faint grid) instead of a flat block colour, so
   these pages still feel premium rather than "placeholder". */
.page-hero-color{
  background: var(--bg-dark);
}
.page-hero-color-glow{
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 42% at 20% 22%, rgba(229,18,98,0.42), transparent 60%),
    radial-gradient(ellipse 42% 38% at 84% 18%, rgba(250,182,15,0.28), transparent 62%),
    radial-gradient(ellipse 50% 48% at 55% 95%, rgba(118,100,174,0.38), transparent 65%);
  filter: blur(30px);
  animation: driftGlow 16s ease-in-out infinite alternate;
}
.page-hero-color-grid{
  display: none;
}
.page-hero::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,14,27,0.25) 0%, rgba(21,14,27,0.65) 100%);
}
/* Extra depth specifically behind the text column on the Visit hero,
   so the title/subtitle stay readable over the busy mural photo —
   but keep the photo itself bright: darken tightly behind the text on
   the left, fade out quickly so the mural's colour reads clearly
   everywhere else, rather than dimming the whole photo down. */
.page-hero-scrim-strong::after{
  background:
    linear-gradient(100deg, rgba(10,8,14,0.46) 0%, rgba(10,8,14,0.2) 38%, rgba(10,8,14,0.06) 70%, rgba(10,8,14,0) 100%),
    linear-gradient(180deg, rgba(21,14,27,0.02) 0%, rgba(21,14,27,0.18) 100%);
}
.page-hero-scrim-strong .page-hero-img{ opacity: 1; filter: saturate(1.28) contrast(1.12) brightness(1.18); }
/* Phones: the text column runs full-width (no clear left/right split
   to work with), so swap to a softer all-over scrim instead of the
   diagonal one — still noticeably brighter than before, just kept
   uniform enough that the title stays legible edge to edge. */
@media (max-width: 680px){
  .page-hero-scrim-strong::after{
    background: linear-gradient(180deg, rgba(10,8,14,0.26) 0%, rgba(10,8,14,0.16) 45%, rgba(10,8,14,0.46) 100%);
  }
  .page-hero-scrim-strong .page-hero-img{ opacity: 0.99; filter: saturate(1.18) contrast(1.08) brightness(1.12); }
}
.page-hero-inner{ position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; }
.page-hero-title{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 7.3vw, 5.4rem);
  line-height: 0.94;
  margin: 10px 0 18px;
  letter-spacing: 0.03em;
  text-shadow: 0 12px 38px rgba(0,0,0,0.34);
}
.page-hero-title::after{
  content: '';
  display: block;
  width: 118px;
  height: 5px;
  border-radius: 999px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  box-shadow: 0 0 26px rgba(250,182,15,0.45);
}
.page-hero-sub{ max-width: 660px; color: var(--muted-light); font-size: 1.12rem; line-height: 1.75; }
/* Dubai Land (Mira) hero: "MIRA" rendered as a gold-to-pink gradient
   fill, a short matching gradient bar underneath the title, and one
   highlighted word in the copy — reuses the site's existing brand
   colours (gold + pink) rather than introducing a new palette. */
.page-hero-title-gradient{
  background: linear-gradient(90deg, var(--gold) 0%, #f2d77d 20%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  display: inline-block;
  transform: translateY(2px);
}
.page-hero-title-bar{
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  margin: 2px 0 22px;
}
.page-hero-accent-word{
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px rgba(250,182,15,0.2);
}
.page-hero-crumb{ font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; }
.page-hero-crumb a{ color: var(--muted-light); }
.page-hero-crumb a:hover{ color: var(--gold); }

/* ============================================
   PRODUCTIONS TEASER (home)
   ============================================ */
.prod-teaser{
  background: var(--bg-dark);
  padding: 110px 24px;
}
.prod-teaser-sub{
  max-width: 560px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted-light);
}
.prod-teaser-grid{
  max-width: var(--container);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prod-teaser-card{
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(245,241,232,0.12);
}
.prod-teaser-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prod-teaser-card:hover img{ transform: scale(1.06); }
.prod-teaser-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 22px;
  background: linear-gradient(180deg, transparent 40%, rgba(13,12,18,0.92) 100%);
}
.prod-teaser-tag{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.prod-teaser-overlay h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.prod-teaser-cta{ text-align: center; margin-top: 46px; }

/* ============================================
   CLASSES TEASER (home)
   ============================================ */
.classes-teaser{
  background: var(--cream-2);
  padding: 110px 24px 100px;
}
.ct-grid{
  max-width: var(--container);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ct-card{
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  border: 2px solid var(--ink);
}
.ct-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ct-card:hover img{ transform: scale(1.08); }
.ct-card span{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 10px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(13,12,18,0.85));
}

/* ============================================
   CTA BAND (home, pre-footer)
   ============================================ */
.cta-band{
  background: var(--ink);
  padding: 80px 24px;
}
.cta-band-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.cta-band .eyebrow{ color: var(--gold); }
.cta-band-sub{ color: var(--muted-light); margin-top: 6px; }
.cta-band-buttons{ display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   FOOTER LINKS
   ============================================ */
.footer-links{
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-light);
}
.footer-links a:hover{ color: var(--pink); }
.nav-links a.active{
  position: relative;
  color: var(--ink);
  font-weight: 700;
  padding: 6px 14px;
  margin: -6px -14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--pink) 55%, var(--gold));
}
.nav-links a.active:hover{ color: var(--ink); filter: brightness(1.06); }

/* ============================================
   VAGANZA PAGE — season blocks & gallery grid
   ============================================ */
.season-block{ scroll-margin-top: 90px; }
.season-bullets{
  list-style: none;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.season-bullets li{
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: var(--muted-light);
  padding-left: 22px;
  position: relative;
  letter-spacing: 0.01em;
}
.season-bullets li::before{
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
/* On light-background sections (e.g. partner page "what's next" block),
   the default light-on-dark bullet text needs to flip for contrast */
.global-text .season-bullets li{ color: var(--ink); opacity: 0.8; }
.global-text .season-bullets li::before{ background: var(--pink); }
.season-gallery{
  max-width: var(--container);
  margin: 44px auto 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.season-gallery button.g-thumb{
  all: unset;
  cursor: pointer;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(245,241,232,0.12);
}
.season-gallery .g-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  display: block;
}
.season-gallery .g-thumb:hover img{ transform: scale(1.06); filter: brightness(1.08); }
.season-gallery .g-thumb:focus-visible{ outline: 3px solid var(--gold); outline-offset: 2px; }

.season-divider{
  max-width: var(--container);
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(245,241,232,0.1);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,8,14,0.97);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open{ display: flex; }
.lightbox-stage{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
}
.lightbox-img{
  max-width: min(92vw, 1400px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-tap-zone{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  cursor: pointer;
  background: transparent;
  border: none;
}
.lightbox-tap-zone.prev{ left: 0; }
.lightbox-tap-zone.next{ right: 0; }
.lightbox-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(245,241,232,0.1);
  border: 1px solid rgba(245,241,232,0.25);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease;
  pointer-events: none;
}
.lightbox-stage:hover .lightbox-arrow{ pointer-events: auto; }
.lightbox-arrow:hover{ background: var(--pink); border-color: var(--pink); }
.lightbox-arrow.prev{ left: 24px; }
.lightbox-arrow.next{ right: 24px; }
.lightbox-arrow svg{ width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.lightbox-close{
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 4;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,241,232,0.1);
  border: 1px solid rgba(245,241,232,0.25);
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover{ background: var(--pink); border-color: var(--pink); }
.lightbox-counter{
  position: absolute;
  top: 30px;
  left: 26px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted-light);
}
.lightbox-hint{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================
   CLASSES PAGE — detail cards
   ============================================ */
.classes-page-grid{
  max-width: var(--container);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  border-radius: 12px;
  overflow: hidden;
}
.class-detail-noimg{
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--purple), var(--pink) 55%, var(--gold));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.class-detail-noimg img{ width: 46px; height: 46px; object-fit: contain; opacity: 0.9; filter: brightness(0) invert(1); }
.class-detail-noimg span{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}

/* Color-block style panels — split into a solid color zone (title,
   description, buttons) and a photo zone, matching the reference
   "YouDance"-style card layout. Copy is always visible, not hover-only,
   so this reads fine on touch devices. */
.style-panel{
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  overflow: hidden;
  isolation: isolate;
}
.style-panel-color{
  flex: 1 1 56%;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 34px);
  color: var(--cream);
  position: relative;
  z-index: 2;
}
.style-panel-photo{
  flex: 1 1 44%;
  position: relative;
  overflow: hidden;
}
.style-panel-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.style-panel:hover .style-panel-photo img{ transform: scale(1.06); }
.style-panel-photo::after{
  content: '';
  position: absolute; inset: 0;
  /* soft fade so the photo blends into its color zone instead of a hard seam */
  box-shadow: inset 24px 0 30px -20px rgba(0,0,0,0.35);
}
.style-panel-content h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 0.95;
  margin-bottom: 12px;
}
.style-panel-content p{
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.92;
  max-width: 340px;
}
.style-panel-btns{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 18px; }
.style-panel-btn{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(13,12,18,0.28);
  color: var(--cream);
  border: 1px solid rgba(245,241,232,0.55);
  white-space: nowrap;
}
.style-panel-btn:hover{ background: rgba(13,12,18,0.5); }
.style-panel-btn-ghost{
  background: transparent;
  border: 1px solid rgba(245,241,232,0.35);
}
.style-panel-btn-ghost:hover{ background: rgba(245,241,232,0.15); }

/* On-brand color set, extended for 8 distinct panels */
.style-panel-1 .style-panel-color{ background: var(--pink); }
.style-panel-2 .style-panel-color{ background: var(--purple); }
.style-panel-3 .style-panel-color{ background: #B5450C; }
.style-panel-4 .style-panel-color{ background: #0E6E64; }
.style-panel-5 .style-panel-color{ background: var(--pink-dim); }
.style-panel-6 .style-panel-color{ background: #2B2560; }
.style-panel-7{ }
.style-panel-7 .style-panel-color{ background: var(--gold); color: var(--ink); }
.style-panel-7 .style-panel-btn{ background: rgba(23,19,25,0.18); color: var(--ink); border-color: rgba(23,19,25,0.5); }
.style-panel-7 .style-panel-btn-ghost{ background: transparent; border-color: rgba(23,19,25,0.4); }
.style-panel-7 .style-panel-btn-ghost:hover{ background: rgba(23,19,25,0.12); }
.style-panel-7 .style-panel-content p{ opacity: 0.82; }
.style-panel-8 .style-panel-color{ background: #6E2E4F; }

@media (max-width: 900px){
  .style-panel{ flex-direction: column; aspect-ratio: auto; }
  .style-panel-photo{ aspect-ratio: 16/9; }
  .style-panel-content p{ margin-bottom: 16px; }
}

/* ============================================
   CLASSES PAGE — poster gallery
   Portrait, branded poster artwork shown in full inside a light card,
   with a caption (tagline / name / blurb / actions) below it. Designed
   for the vertical poster images that carry their own title art, so the
   photo is the hero instead of a cropped side-slice.
   (The older .style-panel styles above are kept for mira.html.)
   ============================================ */
.styles-gallery{
  max-width: var(--container);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 22px;
}
/* The main "Find Your Style" grid (7 classes) — auto-fill leaves an
   uneven, left-hugging last row (e.g. 4+3 with empty space on the
   right). Flexbox with wrap + center gives every row, complete or
   not, the same card width and keeps a short last row centered
   instead of stranded on one side, at any viewport width. */
#classes-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: none;
}
#classes-grid .style-card{
  flex: 1 1 258px;
  max-width: 278px;
}
@media (max-width: 1040px){
  #classes-grid .style-card{ flex-basis: 240px; max-width: 300px; }
}
@media (max-width: 560px){
  #classes-grid .style-card{ flex-basis: 100%; max-width: 420px; }
}
/* Mira only lists 6 classes (not the full 7), so auto-fill leaves an
   uneven, gappy last row. Lock it to a clean 3x2 grid instead. */
.styles-gallery-mira{
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
}
@media (max-width: 900px){
  .styles-gallery-mira{ grid-template-columns: repeat(2, 1fr); max-width: 640px; }
}
@media (max-width: 560px){
  .styles-gallery-mira{ grid-template-columns: 1fr; max-width: 420px; }
}
.style-card{
  --card-accent: var(--pink);
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid rgba(23,19,25,0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px -12px rgba(23,19,25,0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
}
.style-card:focus-visible{
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}
.style-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 44px -18px rgba(23,19,25,0.36);
}
.style-card-photo{
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface-dark);
}
.style-card-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.style-card:hover .style-card-photo img{ transform: scale(1.05); }
.style-card-body{
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 20px 22px;
  border-top: 4px solid var(--card-accent);
  color: var(--ink);
}
.style-card-kicker{
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--card-accent);
  margin-bottom: 9px;
}
.style-card h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  line-height: 1;
  margin-bottom: 10px;
}
.style-card-body p{
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.72;
  margin-bottom: 18px;
  flex: 1 1 auto;
}
.style-card-btns{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.style-card-btn{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--card-accent);
  color: var(--cream);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: filter 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.style-card-btn:hover{ filter: brightness(1.08); }
.style-card-btn-ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(23,19,25,0.25);
}
.style-card-btn-ghost:hover{ background: rgba(23,19,25,0.06); filter: none; }

/* Per-class accent colours (matches the original 8-colour panel set) */
.style-card-1{ --card-accent: var(--pink); }
.style-card-2{ --card-accent: var(--purple); }
.style-card-3{ --card-accent: #B5450C; }
.style-card-4{ --card-accent: #0E6E64; }
.style-card-5{ --card-accent: var(--pink-dim); }
.style-card-6{ --card-accent: #2B2560; }
.style-card-7{ --card-accent: var(--gold); }
.style-card-8{ --card-accent: #6E2E4F; }
/* Gold reads poorly as text/label on white — darken just those bits,
   and use dark text on the gold-filled button. */
.style-card-7 .style-card-kicker{ color: #9A6B06; }
.style-card-7 .style-card-btn{ color: var(--ink); }

@media (max-width: 420px){
  .styles-gallery{ gap: 16px; }
  .style-card-body{ padding: 20px 18px; }
}

/* ============================================
   CLASS DETAIL PAGE (video/image hero + glass box)
   ============================================ */
.class-hero{
  position: relative;
  min-height: 68vh;
  background: var(--bg-dark);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 60px 24px 70px;
}
.class-hero.no-media{
  background: linear-gradient(135deg, var(--purple), var(--pink-dim) 55%, var(--bg-dark));
}
.class-hero-media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.class-hero-scrim{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,12,18,0.35) 0%, rgba(13,12,18,0.55) 55%, rgba(13,12,18,0.92) 100%);
}
/* The "see-through" glass textbox that sits on top of the video/image.
   backdrop-filter keeps the media visible behind the text while the
   translucent panel + solid text colour keep copy readable either way. */
.class-hero-glass{
  position: relative;
  z-index: 2;
  max-width: 720px;
  background: rgba(21,14,27,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245,241,232,0.15);
  border-radius: 10px;
  padding: 28px 32px;
  color: var(--cream);
}
.class-hero-title{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  margin: 10px 0 8px;
}
.class-hero-tagline{ color: var(--muted-light); font-size: 1rem; }

.class-details{ background: var(--cream); padding: 80px 24px; }
.class-details-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}
.class-description{ font-size: 1.08rem; margin-top: 14px; color: var(--ink); opacity: 0.85; line-height: 1.7; }

.learn-list{
  list-style: none;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.learn-list li{
  font-size: 0.96rem;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.learn-list li::before{
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--pink);
  border-radius: 50%;
}

.batch-row{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(245,241,232,0.14);
  font-family: var(--font-mono);
  font-size: 0.86rem;
}
.batch-row:first-child{ padding-top: 0; }
.batch-row:last-child{ margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.batch-row strong{
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  color: var(--gold);
  margin-bottom: 2px;
}
.batch-days{ color: var(--muted-light); opacity: 0.85; }
.batch-days::after{ content: '—'; margin-left: 8px; opacity: 0.5; }
.batch-time{ color: var(--cream); font-weight: 700; letter-spacing: 0.01em; }

/* Inside the (light-background) level cards on the Mini Movers page,
   swap the dark-card colors for ones that read on cream. */
.level-batches .batch-row{ border-bottom: 1px dashed rgba(23,19,25,0.12); }
.level-batches .batch-row strong{
  color: #5f4200;
  text-shadow: none;
}
.level-batches .batch-days{ color: var(--ink); opacity: 0.55; }
.level-batches .batch-time{ color: var(--ink); font-weight: 700; }

/* ============================================
   SCHEDULE GRID (Mira branch timetable)
   ============================================ */
.schedule-grid{
  max-width: var(--container);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.schedule-day{
  background: var(--cream);
  border-radius: 10px;
  padding: 0 24px 22px;
  border: 1px solid rgba(23,19,25,0.08);
  border-top: 4px solid var(--pink);
  overflow: hidden;
}
.schedule-day-2{ border-top-color: var(--purple); }
.schedule-day-3{ border-top-color: var(--gold); }
.schedule-day-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 0 14px;
  border-bottom: 1px solid rgba(23,19,25,0.1);
  margin-bottom: 6px;
}
.schedule-day-head h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0;
}
.schedule-day-count{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.schedule-day .batch-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(23,19,25,0.12);
}
.schedule-day .batch-row:last-child{ border-bottom: none; padding-bottom: 0; }
.schedule-day .batch-row strong{
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}
.schedule-time{
  flex: 0 0 auto;
  background: var(--cream-2);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.schedule-day-1 .schedule-time{ background: rgba(229,18,98,0.1); color: var(--pink); }
.schedule-day-2 .schedule-time{ background: rgba(118,100,174,0.12); color: var(--purple); }
.schedule-day-3 .schedule-time{ background: rgba(250,182,15,0.16); color: #8a6300; }

.btn-lg{
  padding: 18px 26px !important;
  font-size: 0.92rem !important;
}

.levels-grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.level-learn-list{
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 4px;
}
.level-learn-list li{
  font-size: 0.82rem;
  color: var(--ink);
  opacity: 0.75;
  padding-left: 14px;
  position: relative;
}
.level-learn-list li::before{
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pink);
}
.level-batches{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(23,19,25,0.15);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--ink);
  opacity: 0.8;
}
.level-card{
  background: var(--cream-2);
  border: 1px solid rgba(23,19,25,0.1);
  border-radius: 8px;
  padding: 22px;
}
.level-name{
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--pink);
  display: block;
}
.level-ages{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin: 4px 0 10px;
}
.level-card p{ font-size: 0.9rem; color: var(--ink); opacity: 0.8; }

.info-card{
  background: var(--ink);
  color: var(--cream);
  border-radius: 10px;
  padding: 30px;
  position: sticky;
  top: 100px;
}
.info-card-row{
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,241,232,0.12);
}
.info-card-row:first-child{ padding-top: 0; }
.info-card-label{
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.info-card-value{ font-size: 0.98rem; color: var(--muted-light); }

/* ============================================
   REVIEWS — scrollable strip
   ============================================ */
.review-scroll{
  max-width: var(--container);
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}
.review-scroll .review-card{
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.review-scroll::-webkit-scrollbar{ height: 8px; }
.review-scroll::-webkit-scrollbar-thumb{ background: var(--pink); border-radius: 4px; }
.review-scroll::-webkit-scrollbar-track{ background: var(--surface-dark); }
.review-scroll-hint{
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}

/* ============================================
   FEATURED-IN BADGE (press mentions)
   ============================================ */
.featured-in{
  background: var(--cream-2);
  padding: 40px 24px;
  text-align: center;
}
.featured-in-label{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.featured-in-name{
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.featured-in-name:hover{ color: var(--pink); }
.featured-in-quote{
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--ink);
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.6;
}
.featured-in-link{
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink);
}
.featured-in-link:hover{ color: var(--ink); }

/* ============================================
   YOUTUBE FACADE (click-to-play, fast-loading)
   ============================================ */
.yt-block{ display: flex; flex-direction: column; }
.yt-watch-link{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}
.yt-watch-link:hover{ color: var(--pink); }
.yt-facade{
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(245,241,232,0.15);
  background: var(--surface-dark);
}
.yt-facade img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-facade iframe{ width: 100%; height: 100%; border: 0; }
.yt-play{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(229,18,98,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.yt-facade:hover .yt-play{ transform: translate(-50%, -50%) scale(1.08); background: var(--pink); }
.yt-play svg{ width: 22px; height: 22px; fill: var(--cream); margin-left: 3px; }
.yt-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(13,12,18,0.9));
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.video-row{
  max-width: var(--container);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-row.single{ grid-template-columns: 1fr; max-width: 820px; }

/* ============================================
   PLAYLIST CARD (season playlists, "watch all" link)
   ============================================ */
.production-thumbnail{
  position: relative;
  display: block;
  max-width: 820px;
  margin: 28px auto 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(245,241,232,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.production-thumbnail:hover{
  border-color: var(--pink);
  transform: translateY(-2px);
}
.production-thumbnail img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.production-thumbnail-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(15,12,18,0.2), rgba(15,12,18,0.68));
}
.production-thumbnail-play{
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.52);
  font-size: 1.8rem;
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.production-thumbnail-label{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

.playlist-card{
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface-dark);
  border: 1px solid rgba(245,241,232,0.15);
  border-radius: 10px;
  padding: 28px 30px;
  transition: border-color 0.2s ease;
}
.playlist-card:hover{ border-color: var(--pink); }
.playlist-card-icon{
  flex: 0 0 auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.playlist-card-icon svg{ width: 26px; height: 26px; fill: var(--cream); }
.playlist-card-body{ flex: 1 1 auto; }
.playlist-card-body h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.playlist-card-body p{
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted-light);
}
.playlist-card-btn{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.playlist-card-btn:hover{ background: #ff477e; }

/* ============================================
   TEAM PAGE
   ============================================ */
.team-feature{
  max-width: var(--container);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.team-feature-photo{
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: 0 14px 34px -14px rgba(23,19,25,0.35);
}
.team-feature-photo .class-detail-noimg{ width: 100%; height: 100%; }
.team-feature-photo img.team-real-photo{ width: 100%; height: 100%; object-fit: cover; display: block; }
.team-feature-info h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.team-feature-info .team-role{
  font-size: 0.8rem;
  margin: 8px 0 18px;
}
.team-feature-info p{ font-size: 1.02rem; color: var(--ink); opacity: 0.75; line-height: 1.6; }
.team-subhead{
  max-width: var(--container);
  margin: 64px auto 0;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
  border-top: 1px solid rgba(23,19,25,0.12);
  padding-top: 28px;
}
.team-grid{
  max-width: var(--container);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Management currently lists 2 people and Instructors lists 3 —
   size each grid to its actual headcount so there's no lopsided
   empty gap in the row (swap these if the roster count changes). */
.team-grid-management{ grid-template-columns: repeat(2, 1fr); max-width: 700px; }
.team-grid-instructors{ grid-template-columns: repeat(3, 1fr); max-width: 900px; }
.team-card{
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(23,19,25,0.08);
  padding-top: 28px;
}
.team-grid-instructors .team-card{ background: var(--cream-2); }
.team-photo{
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  width: 62%;
  margin: 0 auto;
  box-shadow: 0 10px 24px -12px rgba(23,19,25,0.3);
}
.team-photo .class-detail-noimg{ width: 100%; height: 100%; }
.team-photo img.team-real-photo{ width: 100%; height: 100%; object-fit: cover; display: block; }
.team-info{ padding: 20px 22px 24px; text-align: center; }
.team-info h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.team-role{
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 6px 0 12px;
}
.team-info p{ font-size: 0.86rem; color: var(--ink); opacity: 0.7; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px){
  .class-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .review-grid{ grid-template-columns: 1fr; }
  .visit-inner{ grid-template-columns: 1fr; }
  .visit-map{ aspect-ratio: 16/10; }
  .pillar-grid{ grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .global-inner{ grid-template-columns: 1fr; }
  .global-badge{ order: -1; max-width: 320px; }
  .production-row, .production-row.reverse{ grid-template-columns: 1fr; direction: ltr; }
  .production-gallery{ grid-template-columns: repeat(2, 1fr); }
  .impact-inner{ grid-template-columns: 1fr; }
  .partner-card{ flex-basis: calc(50% - 2px); }
  .prod-teaser-grid{ grid-template-columns: 1fr; max-width: 420px; }
  .ct-grid{ grid-template-columns: repeat(3, 1fr); }
  .season-gallery{ grid-template-columns: repeat(3, 1fr); }
  .classes-page-grid{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .team-grid-management{ grid-template-columns: repeat(2, 1fr); }
  .team-grid-instructors{ grid-template-columns: repeat(2, 1fr); max-width: 640px; }
  .team-feature{ grid-template-columns: 1fr; }
  .team-feature-photo{ max-width: 320px; margin: 0 auto; }
  .cta-band-inner{ flex-direction: column; align-items: flex-start; text-align: left; }
  .class-details-inner{ grid-template-columns: 1fr; }
  .info-card{ position: static; }
  .levels-grid{ grid-template-columns: 1fr; }
  .schedule-grid{ grid-template-columns: 1fr; }
}

/* With 7 nav items (Home, Dance Vaganza, Classes, Partner, Mira Branch,
   Our Team, Visit) the full nav no longer fits cleanly at tablet widths —
   switch to the hamburger menu earlier than the rest of the layout shifts. */
@media (max-width: 1040px){
  .nav-links{ display: none; }
  .nav-burger{ display: block; }
}

@media (max-width: 680px){
  .class-grid{ grid-template-columns: 1fr; }
  .ticket-badge{ right: 5%; bottom: 4%; transform: rotate(-4deg) scale(0.85); }
  .line-2{ margin-left: 0; }
  .classes-cta{ flex-direction: column; align-items: flex-start; }
  .pillar-grid{ grid-template-columns: 1fr; }
  .production-gallery{ grid-template-columns: repeat(2, 1fr); }
  .partner-card{ flex-basis: 100%; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .ct-grid{ grid-template-columns: repeat(2, 1fr); }
  .season-gallery{ grid-template-columns: repeat(2, 1fr); }
  .lightbox-arrow{ width: 42px; height: 42px; }
  .lightbox-arrow.prev{ left: 8px; }
  .lightbox-arrow.next{ right: 8px; }
  .page-hero{ padding: 140px 20px 70px; min-height: clamp(420px, 58vh, 620px); }
  .review-scroll{ justify-content: flex-start; }
  .video-row{ grid-template-columns: 1fr; }
  .playlist-card{ flex-direction: column; text-align: center; padding: 26px 22px; }
  .playlist-card-btn{ width: 100%; justify-content: center; }
  .team-grid{ grid-template-columns: 1fr; max-width: 360px; }
  .team-grid-management{ grid-template-columns: 1fr; max-width: 360px; }
  .team-grid-instructors{ grid-template-columns: 1fr; max-width: 360px; }
}

/* ============================================
   ACCESSIBILITY — skip link + focus ring
   ============================================ */
.skip-link{
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 2000;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus{ top: 12px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
#main-content{ scroll-margin-top: 90px; }

/* ============================================
   MOBILE NAV — CSS class toggle (no inline JS styles)
   The burger toggles .nav-open on the fixed .nav; the panel
   below is anchored to it. Only active where the burger shows.
   ============================================ */
.nav-burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px){
  .nav.nav-open .nav-links{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 12, 18, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 24px 26px;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
  }
  .nav.nav-open .nav-links a{ padding: 10px 0; font-size: 1.05rem; }
  .nav.nav-open .nav-links a.active{
    margin: 0;
    padding: 10px 16px;
    border-radius: 10px;
  }
}

/* ============================================
   ENQUIRY FORM (Visit page)
   ============================================ */
.enquiry{
  background: var(--cream);
  color: var(--ink);
  padding: 90px 24px 100px;
}
.enquiry-inner{ max-width: 760px; margin: 0 auto; }
.enquiry-lead{
  text-align: center;
  color: var(--ink);
  opacity: 0.72;
  max-width: 560px;
  margin: 14px auto 40px;
  font-size: 1.02rem;
  line-height: 1.6;
}
.enquiry-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.enquiry-form .field-full{ grid-column: 1 / -1; }
.field{ display: flex; flex-direction: column; gap: 7px; }
.field label{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-dim);
  font-weight: 700;
}
.field input,
.field select,
.field textarea{
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #E3DCD0;
  border-radius: 10px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea{ resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(229, 18, 98, 0.14);
}
.enquiry-submit{ grid-column: 1 / -1; margin-top: 6px; }
.enquiry-submit .btn{ width: 100%; justify-content: center; }
.enquiry-fineprint{
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.6;
  text-align: center;
  margin-top: 4px;
}
.enquiry-fineprint a{ color: var(--pink-dim); }
.hidden-field{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 680px){
  .enquiry-form{ grid-template-columns: 1fr; }
  .enquiry{ padding: 64px 20px 74px; }
}

/* ============================================
   LEGAL / SIMPLE CONTENT PAGES (privacy, thank-you, 404)
   ============================================ */
.legal-page{
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 90px;
}
.legal-page h1{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.legal-page .legal-updated{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 34px;
}
.legal-page h2{
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 34px 0 12px;
}
.legal-page p,
.legal-page li{ color: var(--ink); opacity: 0.82; line-height: 1.7; }
.legal-page ul{ padding-left: 22px; margin: 10px 0; }
.legal-page li{ margin-bottom: 7px; }
.legal-page a{ color: var(--pink); }

.error-page{
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 24px 90px;
}
.error-page .error-code{
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 0.9;
  color: var(--pink);
  letter-spacing: 0.02em;
}
.error-page h1{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--cream);
  margin: 6px 0 14px;
}
.error-page p{ color: var(--muted-light); max-width: 440px; margin: 0 auto 30px; line-height: 1.6; }
.error-actions{ display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
