/* ============================================================
   DANCE WITH DENIS — MAIN STYLESHEET
   ============================================================

   QUICK-EDIT GUIDE (no developer needed):
   • Change brand colors → edit hex values in the :root block
   • Change section spacing → look for padding-block values
   • Change font sizes → look for clamp() or rem values
   • Add a new page → copy the .page-hero block from an existing page

   TABLE OF CONTENTS
   1.  Fonts Import
   2.  CSS Variables
   3.  Reset & Base
   4.  Typography
   5.  Layout Utilities
   6.  Buttons
   7.  Navigation
   8.  PWA Install Banner
   9.  Hero (Homepage)
   10. Page Hero (Inner Pages)
   11. Section Headers & Signature Line
   12. Dance Styles Grid
   13. Cards (dark & light variants)
   14. Video Embed Component
   15. About Split Layout
   16. Class Cards
   17. Pricing Cards
   18. Testimonial Cards
   19. Gallery Grid
   20. Forms (Contact & Booking)
   21. Booking Sidebar & Slots
   22. CTA Banner Section
   23. Stats Row
   24. Footer
   25. Reveal (Scroll Animations)
   26. Utility Classes
   27. Responsive Overrides
   ============================================================ */


/* ── 1. FONTS ──────────────────────────────────────────────── */
/* Plus Jakarta Sans: clean sophisticated grotesque for all headings  */
/* DM Sans: clean body text and UI labels                             */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..500;9..600;9..700&display=swap');


/* ── 2. CSS VARIABLES ──────────────────────────────────────── */
:root {
  /* ─ Brand Colors ───────────────────────────── */
  /* ✏️ EDIT: Change these to retheme the entire site */
  --purple:          #8B5CF6;   /* Action: electric purple  */
  --purple-dark:     #6D28D9;
  --purple-light:    #C4B5FD;
  --purple-dim:      rgba(139,92,246, 0.12); /* Tint for backgrounds */

  /* ─ Backgrounds ──────────────────────────── */
  --bg-dark:      #080808;   /* Deepest black — hero, footer */
  --bg-dark-2:    #111111;   /* Main dark sections */
  --bg-dark-3:    #1C1C1C;   /* Dark cards */
  --bg-dark-4:    #262626;   /* Dark input fields, hover */
  --bg-light:     #FAFAFA;   /* Clean neutral light sections */
  --bg-cream:     #F0F0F0;   /* Slightly darker neutral */
  --bg-white:     #FFFFFF;

  /* ─ Text ────────────────────────────────── */
  --text-dark:    #111111;
  --text-medium:  #3C3C3C;
  --text-muted:   #666666;
  --text-light:   #F8F8F8;
  --text-dim:     #888888;

  /* ─ Borders ───────────────────────────────────── */
  --border-light: rgba(0,0,0,0.10);
  --border-dark:  rgba(255,255,255,0.09);
  --border-purple:   rgba(139,92,246,0.30);

  /* ─ Typography ───────────────────────────────── */
  /* Stack Sans Notch: display font with built-in notch cuts for big titles */
  --font-display:  'Stack Sans Notch', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Stack Sans Notch also as the serif/heading variable — applies everywhere headings are used */
  --font-serif:    'Stack Sans Notch', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  /* DM Sans: clean body text + labels                                          */
  --font-sans:     'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ─ Sizing ────────────────────────────────────── */
  --container-max: 1200px;
  --radius-sm:     0.375rem;
  --radius:        0.625rem;
  --radius-lg:     1rem;
  --radius-xl:     1.5rem;
  --radius-full:   9999px;

  /* ─ Shadows ───────────────────────────────────── */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.12);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.20);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.28);
  --shadow-purple:  0 4px 24px rgba(139,92,246,0.32);

  /* ─ Cyber / Neon Palette ──────────────────────── */
  --neon-blue:     #00D4FF;
  --neon-purple:   #BF5AFF;
  --neon-pink:     #FF2D78;
  --cyber-grad:    linear-gradient(135deg, #00D4FF 0%, #7C3AED 55%, #EC4899 100%);
  --cyber-grad-h:  linear-gradient(90deg,  #00D4FF 0%, #7C3AED 55%, #EC4899 100%);
  --glow-blue:     0 0 18px rgba(0,212,255,0.55),  0 0 40px rgba(0,212,255,0.25);
  --glow-purple:   0 0 18px rgba(124,58,237,0.60),  0 0 40px rgba(124,58,237,0.25);
  --glow-cyber:    0 0 16px rgba(0,212,255,0.45), 0 0 32px rgba(124,58,237,0.35), 0 0 64px rgba(236,72,153,0.15);

  /* ─ Transitions ───────────────────────────────── */
  --ease:        0.25s ease;
  --ease-slow:   0.45s ease;
  --ease-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ── 3. RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-dark);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

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

/* Prevent any section or main from causing horizontal scroll */
main, section { max-width: 100%; overflow-x: hidden; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; }

input, textarea, select { font-family: inherit; }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ── 4. TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif); /* Space Grotesk */
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.028em; /* Steezy-style tight tracking */
}

/* Space Grotesk is slightly condensed — size up vs Cormorant */
h1 { font-size: clamp(3rem, 7.5vw, 6rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

body {
  font-size: 1.0625rem;
  line-height: 1.6;
}

p { max-width: 68ch; line-height: 1.7; }

/* Utility type classes */
.text-serif  { font-family: var(--font-serif); }
.text-red    { color: var(--purple); }
.text-muted  { color: var(--text-muted); }

/* Stars — red suits the brand better than gold */
.stars { color: var(--purple); font-size: 1rem; letter-spacing: 0.1em; }


/* ── 5. LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

.section        { padding-block: 5rem; }
.section-dark   { background: var(--bg-dark-2); color: var(--text-light); }
.section-darker { background: var(--bg-dark);   color: var(--text-light); }
.section-light  { background: var(--bg-light);  color: var(--text-dark); }
.section-cream  { background: var(--bg-cream);  color: var(--text-dark); }
.section-white  { background: var(--bg-white);  color: var(--text-dark); }

@media (max-width: 767px) { .section { padding-block: 3.5rem; } }


/* ── 6. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-full); /* Pill-shaped — steezy signature */
  padding: 0.875rem 1.875rem;
  min-height: 52px;   /* Tappable on mobile */
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease);
}

.btn:active { transform: scale(0.97); }

.btn:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

/* Primary — red filled */
.btn-primary { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--purple-dark); border-color: var(--purple-dark);
  box-shadow: var(--shadow-purple); transform: translateY(-2px);
}

/* Secondary — white filled (clean against dark backgrounds) */
.btn-secondary { background: #fff; color: var(--bg-dark); border-color: #fff; }
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.88); transform: translateY(-2px);
}

/* Outline — red border */
.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--purple); color: #fff; transform: translateY(-2px);
}

/* Outline white (replaces outline-gold; kept for backwards compatibility) */
.btn-outline-gold { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-gold:hover, .btn-outline-gold:focus-visible {
  background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px);
}

/* Ghost — white border (for dark backgrounds) */
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px);
}

/* Outline button — thin white border for dark sections */
.btn-outline-cyber {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: none;
}
.btn-outline-cyber:hover, .btn-outline-cyber:focus-visible {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn-lg { font-size: 1.0625rem; padding: 1.0625rem 2.375rem; min-height: 58px; }
.btn-sm { font-size: 0.875rem;  padding: 0.625rem 1.375rem; min-height: 42px; }

/* Full-width variant */
.btn-full { width: 100%; }


/* ── 7. NAVIGATION ───────────────────────────────────────── */

/* Always solid white */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

/* Hidden state — slides up off screen on scroll down */
.site-header--hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.875rem;
  gap: 1.5rem;
}

/* ─ Logo: single line, brand colour (like Justin Neto in pink) ─ */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-logo-script { display: none; } /* removed — now one-line logo */

/* Logo image (replaces text in header + footer) */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* SVG is black — invert to white on the dark footer background */
  filter: brightness(0) invert(1);
}

.nav-logo-name {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  /* Notch effect is built into the Stack Sans Notch letterforms —
     no CSS pseudo-element cuts needed */
}

/* ─ Nav links: always a flex row on desktop ────────────── */
.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.nav-link svg     { display: none; }
.nav-link.active  { color: #000; background: rgba(139,92,246,0.10); }
.nav-link.active svg { opacity: 1; }

/* Nav actions (CTA button + hamburger) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

/* ─ Language switcher ─────────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-btn {
  background: transparent;
  color: rgba(0,0,0,0.4);
  border: none;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  line-height: 1;
  min-height: 0;
  transition: background var(--ease), color var(--ease);
}

.lang-btn.active {
  background: #000;
  color: #fff;
}

.lang-btn:hover:not(.active) {
  color: rgba(0,0,0,0.7);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  cursor: pointer;
}

.nav-toggle:hover { background: rgba(0,0,0,0.05); }

.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─ Mobile ──────────────────────────────── */
@media (max-width: 767px) {

  .nav-links { display: none; }

  /* Mobile nav overlay — white to match header */
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    z-index: 1001;
    padding: 0 2rem;
    animation: menu-fade-in 0.2s ease;
  }

  @keyframes menu-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* Toggle button floats in the viewport corner,
     independent of the header stacking context */
  .nav-toggle {
    position: fixed;
    top: 0.875rem;
    right: 1.25rem;
    z-index: 1003;          /* → above the overlay (1001) */
  }

  /* Lang switch sits fixed just to the left of the hamburger, vertically centred with it */
  .lang-switch {
    position: fixed;
    top: calc(0.875rem + 9px); /* hamburger top + (44px - ~26px pill) / 2 */
    right: calc(1.25rem + 44px + 0.5rem);
    z-index: 1003;
  }

  /* Style the focus ring to match the brand */
  .nav-toggle:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 3px;
  }

  .nav-link {
    font-size: 1.875rem;
    font-family: var(--font-serif);
    font-weight: 700;
    padding: 0.875rem 1.75rem;
    color: rgba(0,0,0,0.7);
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: var(--radius-lg);
    transition: color var(--ease), background var(--ease);
  }

  .nav-link svg     { width: 22px; height: 22px; opacity: 0.55; }
  .nav-link:hover,
  .nav-link:active  { color: #000; background: rgba(0,0,0,0.05); }
  .nav-link:hover svg { opacity: 1; }

  .nav-cta { display: none; }
}

/* ─ Desktop: hide hamburger, force row layout ───────────── */
@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    transform: none !important;
    background: transparent !important;
    padding: 0 !important;
    align-items: center;
    gap: 0.25rem;
  }
}

/* Tight screens: smaller nav text */
@media (min-width: 768px) and (max-width: 1100px) {
  .nav-link { font-size: 0.8rem; padding: 0.45rem 0.45rem; }
  .nav-cta  { font-size: 0.8rem; padding: 0.55rem 0.9rem; min-height: 38px; }
}


/* ── 8. PWA INSTALL BANNER ─────────────────────────────────── */
.pwa-banner {
  background: linear-gradient(135deg, var(--bg-dark-2), var(--bg-dark-3));
  border-bottom: 1px solid var(--border-dark);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 68px;
}

.pwa-banner[hidden] { display: none; }

.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 200px;
}

.pwa-banner-icon  { font-size: 1.5rem; flex-shrink: 0; }
.pwa-banner-text  { font-size: 0.9rem; color: var(--text-light); max-width: none; line-height: 1.4; }

.pwa-banner-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* iOS instruction popup */
.pwa-ios-instructions {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.375rem 1.5rem;
  width: min(360px, calc(100vw - 2.5rem));
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.pwa-ios-instructions p   { color: var(--text-light); font-size: 0.9375rem; margin-bottom: 1rem; max-width: none; }
.pwa-ios-instructions .ios-steps { display: flex; flex-direction: column; gap: 0.625rem; text-align: left; }

.ios-step         { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--text-dim); }
.ios-step-icon    { font-size: 1.25rem; flex-shrink: 0; }
.pwa-ios-close    { margin-top: 1rem; width: 100%; }


/* ── 9. HERO — WHITE FRAME + ROUNDED CARD ──────────────── */
/*
  The section is a white padded frame.
  Inside is a rounded card: video panel (9:16) + black content panel.
*/

/* White section wrapper */
.hero {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  padding-top: calc(4.25rem + 1.25rem); /* top = nav height + gap */
  min-height: 100dvh;
}

/* Rounded card */
.hero-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: var(--container-max);
  height: calc(85dvh - 2.5rem);
  min-height: 420px;
  max-height: 800px;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
}

/* ─ Video panel — width driven by 9:16 aspect ratio ─── */
.hero-video-panel {
  flex: 0 0 auto;
  aspect-ratio: 9 / 16; /* portrait phone video — panel width = hero height × 9/16 */
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

/* Dark fill shown when no video source is present */
.hero-video-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  z-index: 0;
}

/* Scanline + neon tint overlay on top of the video */
.hero-video-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.022) 3px,
      rgba(0,0,0,0.022) 4px
    ),
    linear-gradient(to bottom,
      rgba(0,212,255,0.055) 0%,
      transparent 45%,
      rgba(124,58,237,0.07) 100%
    );
  z-index: 2;
  pointer-events: none;
}

/* ─ Portrait video fill ───────────────────────────────── */

/* Self-hosted .mp4 (phone portrait or landscape) */
video.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* keeps dancer’s head in frame */
  z-index: 1;
}

/* YouTube iframe — panel is exactly 9:16, so simple fill works */
iframe.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  z-index: 1;
}

/* ─ Content panel ────────────────────────────────── */
.hero-content-panel {
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  padding: 4rem 3.25rem;
  position: relative;
  z-index: 2;
  border-left: 1px solid rgba(191,90,255,0.2);
  box-shadow: inset 1px 0 18px rgba(124,58,237,0.04);
}

/* Glowing neon divider line at the left edge */
.hero-content-panel::before {
  display: block;
  content: '';
  position: absolute;
  top: 8%; bottom: 8%;
  left: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--neon-blue) 25%,
    var(--neon-purple) 75%,
    transparent 100%
  );
  box-shadow:
    0 0 6px  rgba(0,212,255,0.85),
    0 0 18px rgba(191,90,255,0.60),
    0 0 36px rgba(0,212,255,0.25);
  z-index: 4;
}

.hero-overlay, .hero::before, .hero::after { display: none; }

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Eyebrow hidden — title carries the full weight */
.hero-eyebrow { display: none; }

/* ─ Big logo ─────────────────────────────── */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(28px);
  animation: hero-in 0.9s ease 0.3s forwards;
}

.hero-logo-big {
  display: block;
  width: 600px;
  max-width: min(100%, 95%);
  height: auto;
  /* invert makes black paths white; hue-rotate(180deg) restores gradient colours */
  filter: invert(1) hue-rotate(180deg);
}

/* ─ Title: massive, all-caps, cyber gradient ─────── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 11rem);
  font-weight: 700;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(28px);
  animation: hero-in 0.9s ease 0.3s forwards;
}

.hero-title em { font-style: normal; font-weight: 700; }

/* ─ Subtitle ─────────────────────────────────────── */
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  max-width: 26ch;
  line-height: 1.55;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-in 0.9s ease 0.55s forwards;
}

/* ─ CTAs ─────────────────────────────────────────── */
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-in 0.9s ease 0.75s forwards;
}

/* ─ Cyber gradient CTA button ───────────────────── */
.btn-blue {
  background: linear-gradient(135deg, #0EA5E9 0%, #7C3AED 100%);
  color: #fff;
  border: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  justify-content: center;
  transition: filter var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn-blue:hover,
.btn-blue:focus-visible {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: var(--glow-cyber);
}

/* Glass CTA button — traveling conic-gradient border
   Uses transform:rotate() — works on all browsers, no @property needed */
.btn-glass {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(0, 199, 255, 0.14) 0%,
    rgba(179, 2, 224, 0.14) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  box-shadow: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  justify-content: center;
  z-index: 0;
  transition: background var(--ease), transform var(--ease);
}

/* Rotating conic-gradient creates the traveling border — mask hides the centre */
.btn-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    transparent  0%,
    transparent 20%,
    #00C7FF     38%,
    #B302E0     55%,
    transparent 75%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: border-spin 3s linear infinite;
  z-index: -1;
}

.btn-glass:hover,
.btn-glass:focus-visible {
  background: linear-gradient(
    135deg,
    rgba(0,199,255,0.24) 0%,
    rgba(179,2,224,0.24) 100%
  );
  transform: translateY(-2px);
}

@keyframes border-spin {
  to { transform: rotate(360deg); }
}

/* White solid button (hero secondary CTA) */
.btn-white {
  color: #0a0a0a;
  border: 2px solid #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  justify-content: center;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn-white:hover,
.btn-white:focus-visible {
  background: rgba(255,255,255,0.88);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,255,255,0.18);
}

/* ─ Animation ────────────────────────────────────── */
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }

.hero-scroll, .hero-scroll-line { display: none; }

/* ─ Tablet ───────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1100px) {
  .hero-content-panel { padding: 2.5rem 2rem; }
  .hero-title         { font-size: clamp(2.25rem, 4vw, 4rem); }
}

/* ─ Mobile: full-width card below the header ────── */
@media (max-width: 767px) {
  .hero {
    padding: 0;
    padding-top: 3.5rem;   /* push card below fixed nav */
    align-items: flex-start;
    min-height: 100svh;
  }

  .hero-card {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: calc(100svh - 3.5rem);
    max-height: none;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  }

  .hero-video-panel {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 9 / 16;
  }

  .hero-content-panel {
    flex: 1;
    padding: 1.5rem 1.25rem 1.75rem;
    align-items: flex-start;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  /* Smaller logo on mobile */
  .hero-logo-wrap { margin-bottom: 1rem; }
  .hero-logo-big  { width: 220px; }

  .hero-subtitle {
    max-width: none;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  /* Full-width stacked buttons */
  .hero-ctas {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    min-height: 48px;
  }
}


/* ── 10. PAGE HERO (INNER PAGES) ───────────────────────────── */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 4.5rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 65% at 50% 115%, rgba(139,92,246,0.13), transparent);
}

.page-hero > * { position: relative; z-index: 1; }

/* Uppercase tracked label — replaces the script eyebrow */
.page-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 0.875rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.035em;
}

.page-hero-title em { color: var(--purple-light); font-style: normal; }

.page-hero-subtitle {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.68);
  max-width: 55ch;
  margin-inline: auto;
  line-height: 1.6;
}


/* ── 11. SECTION HEADERS & SIGNATURE DANCE-FLOOR LINE ──────── */
.section-header { margin-bottom: 3rem; }

.section-header.centered { text-align: center; }
.section-header.centered .section-title::after { margin-inline: auto; }
.section-header.centered p { margin-inline: auto; }

/* Uppercase tracked label — no script font, intentionally restrained */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.section-light .section-eyebrow,
.section-cream .section-eyebrow,
.section-white .section-eyebrow { color: var(--purple); }

/* Main section heading — Space Grotesk */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: inherit;
  line-height: 1.0;
  letter-spacing: -0.028em;
}

/* ★ SIGNATURE ELEMENT: solid red rule under every heading.
   Replaced the red→gold gradient with pure red — cleaner and bolder. */
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--purple);
  margin-top: 1rem;
  border-radius: 1px;
}

.section-description {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: 1.0625rem;
}

.section-light  .section-description,
.section-cream  .section-description,
.section-white  .section-description { color: var(--text-muted); }


/* ── 12. DANCE STYLES — STEEZY-STYLE HORIZONTAL ROWS ──────── */
/*
  Each dance style is a full-width row separated by hairline borders.
  Hovering reveals a subtle red tint — like a spotlight on a dark stage.
*/
.dance-styles-list {
  border-top: 1px solid var(--border-dark);
  margin-top: 2rem;
}

.dance-style-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--ease);
  position: relative;
}

.dance-style-row:hover { background: rgba(139,92,246,0.04); }

.dance-style-row-header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  flex-wrap: wrap;
  row-gap: 0.25rem;
}

.dance-style-row-num {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  flex-shrink: 0;
  align-self: center;
  margin-top: 0.25rem;
}

.dance-style-row-name {
  font-family: var(--font-serif); /* Space Grotesk */
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  flex: 1;
}

.dance-style-row-level {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  margin-left: auto;
  align-self: center;
}

.dance-style-row-desc {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 60ch;
  margin-top: 0.75rem;
  padding-left: calc(0.65rem + 1.25rem); /* Indent past the number */
}

@media (max-width: 600px) {
  .dance-style-row-level { order: 3; margin-left: 0; margin-top: 0.25rem; }
  .dance-style-row-desc  { padding-left: 0; }
  .dance-style-row-header { flex-direction: column; gap: 0.375rem; align-items: flex-start; }
  .dance-style-row-num { margin-top: 0; }
}


/* ── 13. CARDS ─────────────────────────────────────────────── */
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* On dark backgrounds */
.card {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-purple);
  box-shadow: 0 8px 32px rgba(139,92,246,0.10);
}

/* On light backgrounds */
.card-light {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.card-light:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.14);
  border-color: rgba(139,92,246,0.12);
}

.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(139,92,246,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--purple); /* SVG icons inherit this via currentColor */
  flex-shrink: 0;
}

/* Size SVG icons consistently inside card-icon wrappers */
.card-icon svg { width: 22px; height: 22px; }

.card-title { font-family: var(--font-serif); font-size: 1.25rem; color: #fff; font-weight: 700; margin-bottom: 0.6rem; }
.card-light .card-title { color: var(--text-dark); }

.card-body { font-size: 0.9375rem; color: var(--text-dim); line-height: 1.65; max-width: none; }
.card-light .card-body { color: var(--text-medium); }


/* ── 14. VIDEO EMBED COMPONENT ─────────────────────────────── */
/*
  Usage:
    <div class="video-embed" data-video-id="YOUTUBE_ID" data-title="Video title">
      <div class="video-thumb"></div>
      <div class="video-overlay">
        <button class="video-play-btn" aria-label="Play video">
          <svg viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg>
        </button>
        <span class="video-label">Free Preview</span>
      </div>
    </div>

  JS loads the YouTube thumbnail into .video-thumb automatically.
  Clicking replaces the whole component with an autoplay iframe.
  Replace YOUTUBE_ID with the 11-character ID from a YouTube URL.
*/
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-dark-3);
}

.video-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Warm gradient shows until YouTube thumbnail loads */
  background-color: var(--bg-dark-3);
  background-image: linear-gradient(135deg, #1A1014 0%, #2E1520 55%, #1A1014 100%);
  transition: transform 0.5s ease;
}

.video-embed:hover .video-thumb { transform: scale(1.04); }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  background: rgba(0,0,0,0.28);
  transition: background var(--ease);
}

.video-embed:hover .video-overlay { background: rgba(0,0,0,0.12); }

.video-play-btn {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--purple);
  border: none;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--ease-spring), background var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 28px rgba(139,92,246,0.55);
  flex-shrink: 0;
}

.video-play-btn:hover { transform: scale(1.12); background: var(--purple-dark); }

.video-play-btn svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }

.video-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.52);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

/* When playing: iframe fills the container */
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ── 15. ABOUT SPLIT LAYOUT ────────────────────────────────── */
.about-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-split { grid-template-columns: 1fr 1fr; }
  .about-split.reverse > :first-child { order: 2; }
  .about-split.wide-photo { grid-template-columns: 5fr 4fr; }
}

@media (min-width: 1024px) { .about-split { gap: 5rem; } }

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  /* No overflow:hidden — allows the ::before gradient frame to extend outside */
  aspect-ratio: 4 / 5;
  background: var(--bg-dark-3);
}

/* Gradient border frame — solid red, clean */
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--purple);
  border-radius: calc(var(--radius-xl) + 3px);
  z-index: 0;
}

.about-photo-wrap img {
  position: absolute;
  inset: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 2px);
  z-index: 1;
}

.about-photo-placeholder {
  position: absolute;
  inset: 3px;
  background: linear-gradient(160deg, var(--bg-dark-3), var(--bg-dark-4));
  border-radius: calc(var(--radius-xl) - 2px);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--text-dim);
}

/* Floating badge on photo */
.about-badge {
  position: absolute;
  bottom: 1.5rem; right: 0;
  background: var(--purple);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-purple);
  z-index: 2;
  text-align: center;
  min-width: 130px;
}

.about-badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.about-text > * + * { margin-top: 1.125rem; }

.about-credentials { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }

.credential-tag {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-purple);
  color: var(--purple);
}

.section-dark .credential-tag,
.section-darker .credential-tag { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.55); }


/* ── 16. CLASS CARDS ───────────────────────────────────────── */
.class-cards-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.class-card {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}

.class-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 50px rgba(0,0,0,0.45);
}

/* Video preview at top — no border-radius needed (overflow:hidden on parent) */
.class-card .video-embed {
  border-radius: 0;
  flex-shrink: 0;
}

.class-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.class-card-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.875rem; }

/* Inline tag badges */
.tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.tag-level   { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.60); border: 1px solid rgba(255,255,255,0.14); }
.tag-format  { background: rgba(139,92,246,0.12);  color: var(--purple-light);  border: 1px solid rgba(139,92,246,0.20); }
.tag-new     { background: rgba(74,222,128,0.10); color: #4ade80;           border: 1px solid rgba(74,222,128,0.20); }
.tag-popular { background: rgba(139,92,246,0.15);  color: #fff;              border: 1px solid rgba(139,92,246,0.30); }

.class-card-title { font-family: var(--font-serif); font-size: 1.25rem; color: #fff; font-weight: 700; margin-bottom: 0.6rem; line-height: 1.25; }
.class-card-desc  { font-size: 0.9rem; color: var(--text-dim); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; max-width: none; }

.class-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dark);
  flex-wrap: wrap;
}

.class-card-price { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: #fff; }
.class-card-price span { font-size: 0.8rem; font-family: var(--font-sans); font-weight: 400; color: var(--text-dim); }


/* ── 17. PRICING CARDS ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  align-items: start;
}

.pricing-card {
  background: var(--bg-dark-3);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.1);
}

/* Featured card — gradient border via background-clip trick */
.pricing-card.featured {
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--bg-dark-3), var(--bg-dark-3)),
    var(--cyber-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 0 0 1px rgba(0,212,255,0.15),
    var(--glow-cyber),
    0 16px 60px rgba(0,0,0,0.5);
}

.pricing-card.featured:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(0,212,255,0.25),
    0 0 24px rgba(0,212,255,0.5),
    0 0 48px rgba(124,58,237,0.4),
    0 20px 60px rgba(0,0,0,0.5);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyber-grad-h);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--glow-blue);
}

.pricing-tier {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.375rem;
}

.pricing-name { font-family: var(--font-serif); font-size: 1.375rem; color: #fff; font-weight: 700; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-block: 1.375rem;
  padding-block: 1.375rem;
  border-block: 1px solid var(--border-dark);
}

.pricing-currency { font-size: 1.25rem; font-weight: 700; color: var(--text-dim); align-self: flex-start; margin-top: 0.5rem; }
.pricing-amount   { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.04em; }
.pricing-period   { font-size: 0.85rem; color: var(--text-dim); }

.pricing-savings { display: inline-block; margin-bottom: 1rem; font-size: 0.8rem; font-weight: 700; color: #4ade80; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 1.75rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.4;
}

.pricing-feature-icon { color: var(--neon-blue); flex-shrink: 0; font-size: 1rem; margin-top: 0.1rem; }
.pricing-feature.unavailable { color: var(--text-dim); }
.pricing-feature.unavailable .pricing-feature-icon { color: var(--text-dim); }

.pricing-card .btn { margin-top: auto; }


/* ── 18. TESTIMONIAL CARDS ─────────────────────────────────── */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.testimonial-card {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 1.875rem;
  position: relative;
  transition: transform var(--ease), border-color var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(237,168,32,0.20);
}

/* Decorative oversized quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem; left: 1.25rem;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  color: var(--purple);
  opacity: 0.22;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars { color: var(--purple); font-size: 0.875rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-text  { font-size: 0.9375rem; color: var(--text-light); line-height: 1.72; font-style: italic; margin-bottom: 1.5rem; max-width: none; }

.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name   { font-weight: 700; font-size: 0.9375rem; color: #fff; line-height: 1.2; }
.testimonial-detail { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.15rem; }

/* Light variant — for use on cream/white sections */
.testimonial-card-light {
  background: var(--bg-white);
  border-color: var(--border-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial-card-light:hover    { box-shadow: 0 6px 28px rgba(0,0,0,0.13); border-color: rgba(139,92,246,0.12); }
.testimonial-card-light .testimonial-text   { color: var(--text-medium); }
.testimonial-card-light .testimonial-name   { color: var(--text-dark); }
.testimonial-card-light .testimonial-detail { color: var(--text-muted); }


/* ── 19. GALLERY GRID ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }

.gallery-caption { padding: 0.5rem 0.25rem 0; font-size: 0.8125rem; color: var(--text-dim); }

/* Filter buttons above gallery */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gallery-filter-btn {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-dark);
  background: transparent;
  color: var(--text-dim);
  transition: all var(--ease);
  cursor: pointer;
  min-height: 40px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}


/* ── 20. FORMS ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1.375rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.section-light .form-label,
.section-cream .form-label { color: var(--text-dark); }

.form-control {
  width: 100%;
  background: var(--bg-dark-4);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  min-height: 52px;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-control::placeholder { color: var(--text-dim); }

.form-control:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}

.section-light .form-control,
.section-cream .form-control {
  background: var(--bg-white);
  border-color: var(--border-light);
  color: var(--text-dark);
}

.section-light .form-control:focus,
.section-cream .form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.10);
}

textarea.form-control { resize: vertical; min-height: 130px; line-height: 1.65; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-hint  { font-size: 0.8125rem; color: var(--text-dim); margin-top: 0.375rem; line-height: 1.4; max-width: none; }
.form-error { font-size: 0.8125rem; color: #ff6b6b; margin-top: 0.375rem; }

.form-success {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  color: #4ade80;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  margin-top: 1rem;
  display: none;
  max-width: none;
}
.form-success.show { display: block; }

/* Radio / checkbox rows */
.radio-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  transition: all var(--ease);
}

.radio-option:hover { border-color: var(--border-purple); color: #fff; }
.radio-option input[type="radio"] { accent-color: var(--purple); }
.radio-option input[type="radio"]:checked + span { color: var(--purple); }
.radio-option:has(input:checked) { border-color: var(--purple); background: rgba(139,92,246,0.08); }


/* ── 21. BOOKING SIDEBAR & TIME SLOTS ──────────────────────── */
.booking-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) { .booking-layout { grid-template-columns: 3fr 2fr; align-items: start; } }

.booking-sidebar {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: sticky;
  top: 5.5rem;
}

.booking-sidebar h3 { font-family: var(--font-serif); font-size: 1.25rem; color: #fff; margin-bottom: 1.25rem; }

.availability-slots { display: flex; flex-direction: column; gap: 1rem; }

.slot-day {
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
}

.slot-times { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.slot-time {
  font-size: 0.82rem;
  padding: 0.375rem 0.8rem;
  background: var(--bg-dark-4);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  min-height: 36px;
}

.slot-time:hover    { background: rgba(139,92,246,0.15); border-color: var(--border-purple); color: #fff; }
.slot-time.selected { background: var(--purple); border-color: var(--purple); color: #fff; }
.slot-time.unavailable { opacity: 0.38; cursor: not-allowed; text-decoration: line-through; pointer-events: none; }

.booking-note { font-size: 0.85rem; color: var(--text-dim); line-height: 1.55; max-width: none; border-top: 1px solid var(--border-dark); padding-top: 1.25rem; margin-top: 1.25rem; }


/* ── 22. CTA BANNER SECTION ────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, #B00022 100%);
  padding-block: 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%; left: -8%;
  width: 45%; height: 220%;
  background: rgba(255,255,255,0.04);
  transform: rotate(-15deg);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -5%;
  width: 35%; height: 180%;
  background: rgba(0,0,0,0.06);
  transform: rotate(-15deg);
  pointer-events: none;
}

.cta-section .section-title::after { background: rgba(255,255,255,0.5); margin-inline: auto; }

.cta-section .section-eyebrow { color: rgba(255,255,255,0.82); }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  margin-inline: auto;
}

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }


/* ── 23. STATS ROW ─────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 2rem 3rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-block: 3rem;
}

.stat-item { text-align: center; min-width: 90px; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6vw, 5rem); /* Bigger — steezy loves large bold stats */
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-number em { color: var(--purple-light); font-style: normal; }

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-weight: 700;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}


/* ── 24. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  color: var(--text-dim);
}

.footer-top {
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
}

@media (min-width: 640px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.2fr 2fr; gap: 5rem; } }

.footer-logo { display: flex; align-items: center; line-height: 1; text-decoration: none; margin-bottom: 1rem; }
.footer-logo-script { display: none; } /* removed — one-line logo now */
.footer-logo-name   { font-family: var(--font-serif); font-size: 1.375rem; font-weight: 700; color: var(--purple); line-height: 1; letter-spacing: -0.02em; }

.footer-tagline { font-size: 1rem; color: var(--text-dim); font-style: italic; margin-bottom: 1.5rem; line-height: 1.55; max-width: none; }

.social-links { display: flex; gap: 0.5rem; }

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease);
}

.social-link:hover {
  color: #fff; background: var(--purple); border-color: var(--purple); transform: translateY(-2px);
}

.footer-nav { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }

.footer-nav-group h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-nav-group ul  { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-group a   { font-size: 0.9rem; color: var(--text-dim); transition: color var(--ease); }
.footer-nav-group a:hover { color: #fff; }
.footer-nav-group li:not(:has(a)) { font-size: 0.9rem; line-height: 1.4; }

.footer-pwa-btn { margin-top: 1.25rem; border-color: var(--border-dark); color: var(--text-dim); }
.footer-pwa-btn:hover { color: #fff; border-color: #fff; background: transparent; }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-block: 1.5rem;
}

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

.footer-copy { font-size: 0.8375rem; color: var(--text-dim); max-width: none; }


/* ── 25. REVEAL (SCROLL ANIMATIONS) ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children of a reveal group */
.reveal-group > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-group.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group.revealed > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-group.revealed > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-group.revealed > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-group.revealed > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-group.revealed > *:nth-child(6) { transition-delay: 0.55s; }

.reveal-group.revealed > * { opacity: 1; transform: translateY(0); }


/* ── 26. UTILITY CLASSES ───────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

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

.hidden { display: none !important; }

/* Notice / alert boxes */
.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  border-left: 3px solid;
  line-height: 1.5;
  max-width: none;
}

.notice-info    { background: rgba(59,130,246,0.10); border-color: #3b82f6; color: #93c5fd; }
.notice-success { background: rgba(74,222,128,0.10); border-color: #4ade80; color: #4ade80; }
.notice-warning { background: rgba(139,92,246,0.08); border-color: var(--purple); color: var(--purple-light); }

/* Visual divider */
.divider { width: 100%; height: 1px; background: var(--border-dark); border: none; margin-block: 2.5rem; }
.divider-red { background: linear-gradient(to right, transparent, var(--purple), transparent); }


/* ── 27. GOOGLE CALENDAR BOOKING EMBED ────────────────────── */
/*
  These styles frame the Google Calendar appointment-schedule iframe.
  The iframe itself (Google's UI) is not restyled here — only the
  container around it.
*/

/* Intro copy block above the calendar */
.booking-intro {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3rem;
}

.booking-intro-lead {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin: 1.25rem auto 1.75rem;
  max-width: 58ch;
}

/* Horizontal row of 4 reassurance facts */
.booking-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 2rem;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.booking-quick-facts li {
  font-size: 0.9rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  line-height: 1.4;
}

/* Outer card that frames the iframe */
.booking-embed-wrap {
  max-width: 920px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;                        /* clips iframe to card corners */
  border: 1px solid var(--border-dark);
  background: var(--bg-dark-3);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35);
}

/* Accent line at the top of the booking card — solid red */
.booking-embed-accent {
  height: 4px;
  background: var(--purple);
  display: block;
  flex-shrink: 0;
}

/* The actual embed target div — paste the <iframe> inside this */
#booking-embed {
  display: block;
}

/* Make the Google iframe fill its container responsively */
#booking-embed iframe {
  display: block;
  width: 100% !important;   /* override any fixed width Google may set */
  border: none !important;
  min-height: 600px;        /* comfortable minimum; Google's own UI may expand this */
}

/* ── Placeholder shown until the real iframe is pasted ─────── */
.booking-embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  min-height: 420px;
}

.booking-embed-placeholder-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.booking-embed-placeholder h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.875rem;
}

.booking-embed-placeholder p {
  color: var(--text-dim);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0.625rem;
  max-width: 44ch;
  margin-inline: auto;
}

.booking-embed-placeholder a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-embed-placeholder a:hover { color: #fff; }

/* Dev-mode note at the bottom of the placeholder */
.booking-embed-dev-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.8125rem !important;
  color: rgba(255,255,255,0.3) !important;
  max-width: 48ch;
  margin-inline: auto;
}

.booking-embed-dev-note code {
  background: rgba(255,255,255,0.08);
  padding: 0.15em 0.45em;
  border-radius: 0.25em;
  font-size: 0.9em;
  color: rgba(255,255,255,0.45);
}


/* ── 28. RESPONSIVE OVERRIDES ──────────────────────────────── */
/* Hero CTA stack on small screens */
@media (max-width: 420px) {
  .hero-ctas    { flex-direction: column; }
  .cta-actions  { flex-direction: column; align-items: center; }
}

/* About split becomes single column on mobile */
@media (max-width: 767px) {
  .about-badge { right: 0.5rem; }
}

/* Pricing grid single-column on very small screens */
@media (max-width: 400px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Footer stacks on small screens */
@media (max-width: 639px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}


/* ── 29. IN-PERSON CLASSES ────────────────────────────── */
.in-person-section {
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Radial neon glow at the top of the section */
.in-person-section::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50%;
  background: radial-gradient(ellipse at center top,
    rgba(0,212,255,0.07) 0%,
    rgba(124,58,237,0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* Header */
.in-person-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.in-person-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-block: 0.75rem 1rem;
}

/* Gradient accent on the second line */
.in-person-title em {
  display: block;
  background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-weight: 700;
}

.in-person-desc {
  color: rgba(255,255,255,0.52);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 46ch;
  margin: 0 auto;
}

/* Map — full-width, gradient border, cinematic */
.in-person-map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(0,212,255,0.3);
  box-shadow:
    0 0 18px rgba(0,212,255,0.2),
    0 0 40px rgba(124,58,237,0.15),
    0 0 80px rgba(0,212,255,0.07),
    0 24px 64px rgba(0,0,0,0.65);
  margin-bottom: 2rem;
}

/* Scanline + vignette overlay on the map */
.in-person-map-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.022) 3px,
      rgba(0,0,0,0.022) 4px
    ),
    linear-gradient(to bottom,
      rgba(3,3,18,0.28) 0%,
      transparent 25%,
      transparent 75%,
      rgba(3,3,18,0.45) 100%
    );
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}

/* Iframe as block element — NOT position:absolute so overflow:hidden works */
.in-person-map {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  filter: saturate(0.45) brightness(0.72) contrast(0.95);
}

/* Floating location badge */
.in-person-map-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background: rgba(3,3,18,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,212,255,0.35);
  border-radius: var(--radius-full);
  color: var(--neon-blue);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 0 16px rgba(0,212,255,0.25);
  z-index: 3;
}

/* Three contact cards */
.in-person-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.in-person-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.in-person-card:hover {
  border-color: rgba(0,212,255,0.28);
  box-shadow: 0 0 28px rgba(0,212,255,0.07), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

.in-person-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius);
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--neon-blue);
}

.in-person-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.in-person-card-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

.in-person-card-body a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--ease);
}

.in-person-card-body a:hover { color: var(--neon-blue); }

@media (max-width: 900px) {
  .in-person-map-wrap { height: auto; }
  .in-person-map { height: 360px; }
}

@media (max-width: 640px) {
  .in-person-map { height: 260px; }
  .in-person-cards { grid-template-columns: 1fr; gap: 1rem; }
  .in-person-card { padding: 1.5rem; text-align: left; }
  .in-person-card-icon { margin: 0 0 1rem; }
}
