/* =============================================
   Laughing Around — style.css
   ============================================= */

/* ── Design tokens ──────────────────────────── */
:root {
  --bg:          #0B0B0B;
  --surface:     #141414;
  --surface-2:   #1C1C1C;
  --line:        #272727;
  --cream:       #F0EFE9;
  --muted:       #757575;

  /* Purple → blue gradient */
  --grad:        linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  --grad-start:  #7C3AED;
  --grad-end:    #2563EB;
  --grad-hover:  linear-gradient(135deg, #6D28D9 0%, #1D4ED8 100%);

  --font:   'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w:  1280px;
  --pad-x:  1.25rem;
  --section: 5rem;
}

@media (min-width: 768px) {
  :root { --pad-x: 2rem; --section: 7rem; }
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font); background: var(--bg); color: var(--cream); -webkit-font-smoothing: antialiased; line-height: 1.5; }
img, video { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
address { font-style: normal; }
:focus-visible { outline: 2px solid var(--grad-start); outline-offset: 3px; }

/* ── Layout ─────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section     { padding: var(--section) 0; }
.section-border { border-top: 1px solid var(--line); }

/* ── Typography ─────────────────────────────── */
.label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.heading-xl {
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--cream);
}

.heading-lg {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--cream);
}

.body-text {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Gradient utility for text */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.9rem 1.75rem;
  border-radius: 6px;
  transition: opacity 0.15s, border-color 0.15s;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary  { background: var(--grad); color: #fff; }
.btn-primary:hover { background: var(--grad-hover); }

.btn-ghost    { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--muted); }

.btn-sm { font-size: 0.8125rem; padding: 0.6rem 1.125rem; }


/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 100%);
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
}

#site-nav.scrolled {
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 38px; width: auto; display: block; }

.nav-links { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }

/* White nav text — stays visible over video */
.nav-links a {
  font-size: 0.875rem;
  color: var(--cream);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); opacity: 1; }

.nav-right { display: flex; align-items: center; gap: 0.875rem; flex-shrink: 0; }

.nav-unit21 {
  display: none;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.875rem;
  color: rgba(240,239,233,0.85);
  transition: color 0.15s;
}
.nav-unit21:hover { color: var(--cream); }
@media (min-width: 768px) { .nav-unit21 { display: inline-flex; } }

.nav-hamburger { display: flex; color: var(--cream); padding: 4px; line-height: 0; }
@media (min-width: 768px) { .nav-hamburger { display: none; } }

/* Mobile menu */
#mobile-menu { display: none; background: var(--bg); border-bottom: 1px solid var(--line); padding: 0.875rem var(--pad-x) 1.5rem; }
#mobile-menu.open { display: block; }

.mobile-menu-links a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  color: rgba(240,239,233,0.7);
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}
.mobile-menu-links li:last-child a { border-bottom: none; }
.mobile-menu-links a:hover,
.mobile-menu-links a.active { color: var(--cream); }

.mobile-book {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--grad);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem;
  border-radius: 6px;
  margin-top: 1.25rem;
  transition: opacity 0.15s;
}
.mobile-book:hover { opacity: 0.9; }


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #0B0B0B;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  border: 0;
}

/* Two-layer overlay: strong bottom gradient + left-side depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(11,11,11,0.35) 0%, transparent 65%),
    linear-gradient(to top,
      rgba(11,11,11,0.95)  0%,
      rgba(11,11,11,0.65)  25%,
      rgba(11,11,11,0.35)  55%,
      rgba(11,11,11,0.1)  100%);
}

/* ── Hero body (main text block) ── */
.hero-body {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) 3.5rem;
  width: 100%;
}

/* Eyebrow label */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,239,233,0.55);
}

/* Headline */
.hero-h1 {
  margin-bottom: 1.5rem;
  max-width: 820px;
  line-height: 1.01;
}
.hero-br { display: none; }
@media (min-width: 580px) { .hero-br { display: block; } }

/* "in Soho." — gradient accent */
.hero-h1-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub text */
.hero-sub {
  font-size: 1rem;
  color: rgba(240,239,233,0.7);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* CTAs — single button + text link */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
}
@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
  }
}

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(240,239,233,0.65);
  transition: color 0.15s;
  white-space: nowrap;
}
.hero-cta-link svg { flex-shrink: 0; transition: transform 0.15s; }
.hero-cta-link:hover { color: var(--cream); }
.hero-cta-link:hover svg { transform: translateX(3px); }

/* ── Hero footer strip ── */
.hero-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(8,8,8,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 50px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.hero-footer-inner::-webkit-scrollbar { display: none; }

.hero-footer-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: rgba(240,239,233,0.55);
  white-space: nowrap;
  padding: 0 1.25rem;
  flex-shrink: 0;
}
.hero-footer-item:first-child { padding-left: 0; }
.hero-footer-item svg { color: rgba(240,239,233,0.3); flex-shrink: 0; }

.hero-footer-div {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
/* Push price to the right on wider screens */
@media (min-width: 640px) {
  .hero-footer-div--wide { flex: 1; background: none; }
}

.hero-footer-price {
  color: rgba(240,239,233,0.75);
}
.hero-footer-price strong {
  font-weight: 600;
  color: var(--cream);
}

.hero-footer-directions {
  color: rgba(240,239,233,0.75);
  font-weight: 500;
  transition: color 0.15s;
  text-decoration: none;
}
.hero-footer-directions svg { color: var(--grad-start); flex-shrink: 0; }
.hero-footer-directions:hover { color: var(--cream); }


/* ══════════════════════════════════════════════
   INFO STRIP
══════════════════════════════════════════════ */
.hours-bar {
  border-bottom: 1px solid var(--line);
  padding: 0.8125rem 0;
  background: rgba(20,20,20,0.6);
}

.hours-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: rgba(240,239,233,0.75);
  font-weight: 400;
  white-space: nowrap;
}
.hours-item svg { color: var(--muted); flex-shrink: 0; }

.hours-sep { color: var(--muted); font-size: 0.75rem; flex-shrink: 0; }

.hours-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cream);
  transition: opacity 0.15s;
}
.hours-directions svg { color: var(--grad-start); flex-shrink: 0; }
.hours-directions:hover { opacity: 0.75; }


/* ══════════════════════════════════════════════
   TRUST BAR — scrolling marquee
══════════════════════════════════════════════ */
#trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.trust-header {
  padding: 1.5rem 0 0.75rem;
  text-align: center;
}

.trust-intro-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.trust-intro-sub {
  font-size: 0.8125rem;
  color: var(--muted);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.trust-outer {
  padding: 0.875rem 0;
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.trust-outer::before,
.trust-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-outer::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.trust-outer::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 55s linear infinite;
}

.trust-track:hover { animation-play-state: paused; }

@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-set {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.75rem;
}

.trust-name { font-size: 0.875rem; color: var(--cream); white-space: nowrap; }
.trust-dot  { color: var(--muted); font-size: 0.5rem; line-height: 1; flex-shrink: 0; vertical-align: middle; }


/* ══════════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════════ */
.packages-heading .label { margin-bottom: 0.75rem; }

.packages-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

/* Badge overlay on card image */
.pkg-img { position: relative; width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

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

.pkg-badge-img {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.pkg-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-card:hover { border-color: rgba(117,117,117,0.45); }

/* Gradient border on featured card */
.pkg-card.featured {
  border: 1px solid transparent;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.pkg-header { margin-bottom: 1rem; }

.pkg-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.pkg-sub {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.pkg-name   { font-size: 1.2rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }

.pkg-price {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pkg-per { font-size: 0.875rem; font-weight: 500; opacity: 0.7; }
.pkg-per-hour { font-size: 0.7rem; font-weight: 500; }

.pkg-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  min-height: calc(0.875rem * 1.65 * 3);
}

.pkg-includes {
  margin-bottom: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.pkg-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--cream);
}
.pkg-includes svg { flex-shrink: 0; margin-top: 2px; color: var(--grad-start); }

.pkg-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
}
.pkg-btn.primary { background: var(--grad); color: #fff; }
.pkg-btn.primary:hover { background: var(--grad-hover); }
.pkg-btn.secondary { background: var(--surface-2); color: var(--cream); }
.pkg-btn.secondary:hover { background: var(--line); }

.packages-note { font-size: 0.875rem; color: var(--muted); margin-top: 2rem; line-height: 1.7; }
.packages-note a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s; }
.packages-note a:hover { color: var(--grad-start); }


/* ══════════════════════════════════════════════
   STUDIO FACTS
══════════════════════════════════════════════ */
.studio-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .studio-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }

.studio-photos { display: flex; flex-direction: column; gap: 0.75rem; order: 2; }
@media (min-width: 768px) { .studio-photos { order: 1; } }

.studio-photo-a,
.studio-photo-b {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.studio-photo-a { aspect-ratio: 4 / 3; }
.studio-photo-b { aspect-ratio: 4 / 3; }
.studio-photo-a img,
.studio-photo-b img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-placeholder { font-size: 0.8125rem; color: var(--muted); }

.studio-text-col { order: 1; }
@media (min-width: 768px) { .studio-text-col { order: 2; } }

.studio-text-col .label      { margin-bottom: 0.75rem; }
.studio-text-col .heading-lg { margin-bottom: 1.25rem; }
.studio-text-col .body-text  { margin-bottom: 2rem; }

.studio-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.facts-list { border-top: 1px solid var(--line); }
.fact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
}
.fact-label { color: var(--muted); padding-top: 2px; }
.fact-value { color: var(--cream); }

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.15s;
}
.directions-link:hover { opacity: 0.8; }
.directions-link svg { color: var(--grad-start); -webkit-text-fill-color: unset; flex-shrink: 0; }


/* ══════════════════════════════════════════════
   PODCAST SUPPORT — icon grid
══════════════════════════════════════════════ */
.support-intro { margin-bottom: 3rem; }
.support-intro .label { margin-bottom: 0.75rem; }
.support-intro .heading-lg { margin-bottom: 1rem; }
.support-intro-text { max-width: 560px; margin-bottom: 0.5rem; }
.support-intro-sub { font-size: 0.875rem; color: var(--muted); max-width: 560px; }

.support-services {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .support-services { grid-template-columns: repeat(2, 1fr); } }

.support-service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.2s;
}
.support-service-card:hover { border-color: rgba(117,117,117,0.45); }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--grad-start);
}

.service-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.support-cta { margin-top: 2.5rem; }


/* ══════════════════════════════════════════════
   TESTIMONIALS — horizontal scroll cards
══════════════════════════════════════════════ */
#testimonials { padding: var(--section) 0; }

.testimonials-scroll-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--pad-x);
  /* Fade right edge */
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.testimonials-scroll-inner {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-bottom: 0.5rem; /* prevent scrollbar overlap */
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem 2.25rem;
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(117,117,117,0.45); }

.testimonial-card.testimonial-placeholder { opacity: 0.4; }

.testimonial-quote-mark {
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: -0.5rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  flex: 1;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.avatar-initials {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--cream); }
.testimonial-show { font-size: 0.75rem; color: var(--muted); margin-top: 1px; }


/* ══════════════════════════════════════════════
   UNIT 21
══════════════════════════════════════════════ */
.unit21-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.unit21-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 900px) {
  .unit21-content { flex-direction: row; }
}

.unit21-text {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  flex-shrink: 0;
}
@media (min-width: 900px) { .unit21-text { width: 38%; padding: 3.5rem; } }

.unit21-text .heading-lg { margin-bottom: 0.25rem; }
.unit21-text .body-text  { margin-bottom: 0.5rem; }

.unit21-cta-btn { align-self: flex-start; }

.unit21-video {
  flex: 1;
  position: relative;
  background: #000;
  overflow: hidden;
  min-height: 260px;
}
@media (min-width: 900px) { .unit21-video { min-height: 0; } }

.unit21-embed-wrap {
  position: absolute;
  top: -10%; left: -10%;
  width: 120%; height: 120%;
}
.unit21-embed-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}


/* ══════════════════════════════════════════════
   LOCATION
══════════════════════════════════════════════ */
.location-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Map column */
.location-map-col { order: 2; }
@media (min-width: 768px) { .location-map-col { order: 1; } }

.location-map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0d12;
}

.location-map-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  /* Dark-mode map using CSS filters */
  filter: grayscale(100%) invert(92%) hue-rotate(180deg) brightness(0.78) contrast(1.15) sepia(15%);
}

/* Custom purple pin — centred over the embed */
.location-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(124,58,237,0.55));
}

/* Edge vignette to blend map into the dark surface */
.location-map-vignette {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(11,11,11,0.65) 100%);
  pointer-events: none;
}

/* Text column */
.location-text-col { order: 1; }
@media (min-width: 768px) { .location-text-col { order: 2; } }

.location-text-col .label        { margin-bottom: 0.75rem; }
.location-text-col .heading-lg   { margin-bottom: 1.25rem; }
.location-text-col .body-text    { margin-bottom: 1.75rem; }
.location-text-col .btn          { margin-bottom: 2rem; }

.location-address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.location-address-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.location-nearby { margin-top: 2rem; border-top: 1px solid var(--line); padding-top: 1.25rem; }

.location-nearby-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.625rem;
}

.location-nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
.location-nearby-list li {
  font-size: 0.8125rem;
  color: rgba(240,239,233,0.65);
}
.location-nearby-list li::before {
  content: '↗ ';
  color: var(--grad-start);
  font-size: 0.7rem;
}


/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; } }

.contact-text .label      { margin-bottom: 0.75rem; }
.contact-text .heading-lg { margin-bottom: 1rem; }
.contact-text .body-text  { margin-bottom: 1.25rem; }

.contact-email {
  font-size: 0.9375rem;
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.15s;
}
.contact-email:hover { opacity: 0.8; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

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

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

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  color: var(--cream);
  transition: border-color 0.15s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--grad-start); }

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { align-self: flex-start; }


/* ══════════════════════════════════════════════
   FOOTER — modern 2026 redesign
══════════════════════════════════════════════ */
#site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  padding-bottom: calc(2rem + 80px); /* clear mobile bar */
}
@media (min-width: 768px) { #site-footer { padding-bottom: 2rem; } }

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .footer-top { flex-direction: row; align-items: center; justify-content: space-between; }
}

.footer-logo { height: 30px; width: auto; }
.footer-tagline { font-size: 0.8125rem; color: var(--muted); margin-top: 0.5rem; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.footer-social a:hover { color: var(--cream); background: var(--surface-2); }

/* Footer nav — horizontal pill row */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
}

.footer-nav a {
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 0.4rem 0.875rem;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.footer-nav a:hover { color: var(--cream); border-color: var(--line); }

/* Footer bottom strip */
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer-address {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-address a { transition: color 0.15s; }
.footer-address a:hover { color: var(--cream); }

.footer-sep { margin: 0 0.4rem; opacity: 0.4; }
@media (max-width: 640px) { .footer-sep { display: none; } }
@media (max-width: 640px) {
  .footer-address { display: flex; flex-direction: column; gap: 0.1rem; }
}

.footer-copy { font-size: 0.75rem; color: var(--muted); flex-shrink: 0; }


/* ══════════════════════════════════════════════
   MOBILE BOOKING BAR
══════════════════════════════════════════════ */
#mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 0.75rem var(--pad-x);
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 768px) { #mobile-bar { display: none; } }

#mobile-bar a {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.875rem;
  border-radius: 6px;
  transition: opacity 0.15s;
}
#mobile-bar a:hover { opacity: 0.9; }


/* ══════════════════════════════════════════════
   ADD-ONS — compact secondary section
══════════════════════════════════════════════ */
.addons-section {
  padding-top: 2rem;
  border: 1px solid var(--line);
  border-radius: 0.625rem;
  padding: 2rem 1.75rem;
  margin-top: 1.5rem;
  background: var(--surface);
}

.addons-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 600px) {
  .addons-header {
    flex-direction: row;
    align-items: baseline;
    gap: 1.25rem;
  }
}

.addons-heading-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--cream);
  flex-shrink: 0;
}

.addons-intro {
  font-size: 0.8125rem;
  color: var(--muted);
  opacity: 0.7;
}

/* Grid — 2 columns mobile, 3 on wider screens */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5rem;
}
@media (min-width: 900px) {
  .addons-grid { grid-template-columns: repeat(3, 1fr); }
}

.addon-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.addon-icon {
  flex-shrink: 0;
  color: var(--muted);
  margin-top: 1px;
}

.addon-content {
  flex: 1;
  min-width: 0;
}

.addon-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.addon-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}

.addon-price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--grad-start);
  flex-shrink: 0;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.addon-per {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.addon-price--request {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.addon-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}
