/* =============================================
   MYSTERY FAMILY — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #ec4899;
  --pink-dark:  #db2777;
  --pink-dim:   rgba(236,72,153,0.15);
  --pink-glow:  rgba(236,72,153,0.08);
  --black:      #0a0a0a;
  --black-mid:  #111111;
  --black-soft: #0d0d0d;
  --border:     #1a1a1a;
  --text:       rgb(202,202,202);
  --muted:      rgb(202,202,202);
  --faint:      #444444;
  --serif:      'Playfair Display', serif;
  --sans:       'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

p { color: rgb(202,202,202); }

::placeholder { color: #555; opacity: 1; }
::-ms-input-placeholder { color: #555; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 40px;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(236,72,153,0.3), transparent);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* =============================================
   NAV
   ============================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(236,72,153,0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  z-index: 201;
}
.logo-icon { width: 52px; height: 44px; flex-shrink: 0; }

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-active { color: var(--pink) !important; }

.nav-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 500;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--pink-dark) !important; }

/* Burger button — hidden on desktop */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 201;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--serif);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu .mob-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.mobile-menu .mob-cta:hover { background: var(--pink-dark) !important; }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(22,10,18,0.75) 45%, rgba(10,10,10,0.82) 100%);
}
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(236,72,153,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236,72,153,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 2; }
.hero-blob-1 {
  top: 15%; left: 8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(236,72,153,0.13) 0%, transparent 70%);
}
.hero-blob-2 {
  bottom: 15%; right: 8%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(236,72,153,0.09) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  width: 100%;
}
.hero-content .tag { font-size: 0.72rem; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  margin: 0 0 28px;
  font-weight: 900;
  color: #fff;
}
.hero-title em { color: var(--pink); font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  color: rgb(202,202,202);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--pink), transparent);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: var(--pink);
  color: #fff;
  padding: 16px 36px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
  transition: background 0.2s;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--pink-dark); color: #fff; }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 16px 36px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--pink); }

.btn-full {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 0.88rem;
}

/* =============================================
   LATEST VIDEOS
   ============================================= */
#videos { padding: 100px 0; }

.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.video-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--black-mid);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  display: block;
}
.video-card:hover {
  border-color: rgba(236,72,153,0.4);
  transform: translateY(-4px);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  background: #111;
}
.video-card.featured .video-thumb { height: 340px; }
.video-card.small .video-thumb   { height: 190px; }

.thumb-bg {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-fallback {
  font-size: 3rem;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.thumb-fallback.a { background: linear-gradient(135deg,#1a0a18,#2d1030); }
.thumb-fallback.b { background: linear-gradient(135deg,#0a101a,#0f1a2d); }
.thumb-fallback.c { background: linear-gradient(135deg,#120a0a,#2a100a); }
.thumb-bg[style*="url("] .thumb-fallback { z-index: -1; }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  background: rgba(236,72,153,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: transform 0.2s, background 0.2s;
  z-index: 3;
}
.video-card:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); background: var(--pink); }
.play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.play-btn.small-play { width: 40px; height: 40px; }
.play-btn.small-play svg { width: 14px; height: 14px; margin-left: 2px; }

.video-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--pink-dim);
  border: 1px solid rgba(236,72,153,0.35);
  color: var(--pink);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 3;
}
.rating-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  border-radius: 2px;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 3;
}
.rating-badge.good  { color: #4ade80; }
.rating-badge.mixed { color: #facc15; }
.rating-badge.poor  { color: #f87171; }

.video-info { padding: 18px 20px; }
.video-card.featured .video-info { padding: 24px 28px; }

.video-venue {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
  display: block;
}
.video-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: #e8e8e8;
  margin-bottom: 8px;
  font-weight: 600;
}
.video-card.featured .video-title { font-size: 1.3rem; margin-bottom: 10px; }
.video-meta {
  font-size: 0.78rem;
  color: rgb(202,202,202);
  line-height: 1.5;
}
.video-card.featured .video-meta { max-width: 420px; }

.video-sidebar { display: flex; flex-direction: column; gap: 16px; }

/* =============================================
   WHO WE ARE
   ============================================= */
#about { padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  color: rgb(202,202,202);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }

.about-pillars { display: flex; flex-direction: column; gap: 20px; }

.pillar {
  padding: 24px 28px;
  background: var(--black-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  border-left: 3px solid var(--pink);
}
.pillar h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}
.pillar p { font-size: 0.85rem; color: rgb(202,202,202); line-height: 1.6; }

/* =============================================
   STATS (hidden by default)
   ============================================= */
#stats {
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
  margin-top: 8px;
}

/* =============================================
   FEATURED EXPERIENCES
   ============================================= */
#experiences { padding: 100px 0; }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px;
}
.exp-card {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black-mid);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.exp-card:hover {
  border-color: rgba(236,72,153,0.4);
  transform: translateY(-4px);
}
.exp-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.exp-thumb-a { background: linear-gradient(135deg,#1a0a18,#2d0f2d); }
.exp-thumb-b { background: linear-gradient(135deg,#0a0f1a,#0f1a2d); }
.exp-thumb-c { background: linear-gradient(135deg,#120a0a,#1f0f0a); }
.exp-thumb-icon {
  position: absolute;
  bottom: 16px; right: 16px;
  font-size: 2.5rem;
  opacity: 0.6;
}
.exp-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--pink-dim);
  border: 1px solid rgba(236,72,153,0.3);
  color: var(--pink);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.exp-body { padding: 24px; }
.exp-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}
.exp-body p {
  font-size: 0.87rem;
  color: rgb(202,202,202);
  margin-bottom: 16px;
  line-height: 1.6;
}
.exp-link {
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  border-bottom: 1px solid rgba(236,72,153,0.3);
  padding-bottom: 1px;
}

/* =============================================
   FOR BUSINESSES
   ============================================= */
#business { padding: 100px 0; }

.business-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.business-visual {
  position: relative;
  height: 380px;
  background: linear-gradient(135deg,#0f0a18,#1a0a18);
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.business-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(236,72,153,0.12), transparent 60%);
}
.business-icon { font-size: 5rem; position: relative; z-index: 1; opacity: 0.7; }
.business-content .section-title { margin-bottom: 20px; }
.business-content > p {
  color: rgb(202,202,202);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.business-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.business-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgb(202,202,202);
  line-height: 1.5;
}
.business-points li::before {
  content: '→';
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   SERVICES
   ============================================= */
#services { padding: 100px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.service-item { background: var(--black); padding: 40px 32px; }
.service-accent { width: 40px; height: 2px; background: var(--pink); margin-bottom: 24px; }
.service-item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 12px;
}
.service-item p { color: rgb(202,202,202); font-size: 0.87rem; line-height: 1.7; }

/* =============================================
   HOW IT WORKS
   ============================================= */
#how-it-works { padding: 100px 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  padding: 36px 28px;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  counter-increment: step;
  position: relative;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(236,72,153,0.15);
}
.step-icon { font-size: 1.8rem; margin-bottom: 16px; }
.step h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}
.step p { font-size: 0.85rem; color: rgb(202,202,202); line-height: 1.6; }

/* =============================================
   JOIN / FORMS
   ============================================= */
#join {
  padding: 100px 0;
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
}

#form-tabs {
  display: flex;
  margin-bottom: 40px;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  max-width: 640px;
}
.ftab {
  flex: 1;
  background: #0a0a0a;
  border: none;
  border-right: 1px solid #1a1a1a;
  color: rgb(200,200,200);
  padding: 14px 12px;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-align: center;
}
.ftab:last-child { border-right: none; }
.ftab:hover { color: #fff; background: #111; }
.ftab.active {
  color: var(--pink);
  background: #141414;
  border-bottom: 2px solid var(--pink);
  font-weight: 500;
}

.form-panel { max-width: 640px; }

.form-intro {
  color: rgb(202,202,202);
  font-size: 0.92rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: #111;
  border: 1px solid #2a2a2a;
  color: rgb(202,202,202);
  padding: 14px 16px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1.4;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--pink);
  background: #141414;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none;
  cursor: pointer;
  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 d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option { background: #111; color: rgb(202,202,202); }

.form-msg { margin-top: 12px; font-size: 0.87rem; min-height: 20px; }
.form-msg--success { color: #4ade80; }
.form-msg--error   { color: #f87171; }

/* Newsletter */
.newsletter-strip {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 240px; }
.newsletter-text h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 6px;
}
.newsletter-text p { color: rgb(202,202,202); font-size: 0.88rem; }
.newsletter-form-inner {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 280px;
  align-items: stretch;
}
.newsletter-form-inner input {
  background: #111;
  border: 1px solid #2a2a2a;
  color: rgb(202,202,202);
  padding: 12px 16px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.newsletter-form-inner input:nth-child(1) { flex: 0 0 130px; }
.newsletter-form-inner input:nth-child(2) { flex: 1; }
.newsletter-form-inner input:focus { outline: none; border-color: var(--pink); }
.newsletter-form-inner .btn-primary { white-space: nowrap; padding: 12px 20px; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: #060606;
  border-top: 1px solid #111;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 900;
  color: #999;
}
.footer-logo .logo-icon { width: 36px; height: 30px; }
.footer-copy { font-size: 0.78rem; color: #999; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: #999;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink); }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .business-inner { gap: 48px; }
  .about-grid { gap: 40px; }
}

/* Hide nav links before they get squashed — burger takes over */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* Mobile nav breakpoint */
@media (max-width: 900px) {
  #nav { padding: 0 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .container { padding: 0 20px; }

  /* Hero */
  #hero { padding-top: 70px; }
  .hero-blob-1 { width: 280px; height: 280px; }
  .hero-blob-2 { width: 200px; height: 200px; }

  /* Videos */
  .video-grid { grid-template-columns: 1fr; }
  .video-sidebar { flex-direction: column; }
  .video-card.small .video-thumb { height: 200px; }
  .video-card.featured .video-thumb { height: 260px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Business */
  .business-inner { grid-template-columns: 1fr; gap: 40px; }
  .business-visual { height: 200px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr 1fr; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  #form-tabs { max-width: 100%; }
  .ftab { font-size: 0.72rem; padding: 12px 6px; }

  /* Newsletter */
  .newsletter-strip { flex-direction: column; gap: 20px; }
  .newsletter-form-inner { flex-wrap: wrap; }
  .newsletter-form-inner input:nth-child(1) { flex: 1 1 100%; }
  .newsletter-form-inner input:nth-child(2) { flex: 1 1 100%; }
  .newsletter-form-inner .btn-primary { width: 100%; text-align: center; }

  /* Footer */
  #footer { flex-direction: column; text-align: center; padding: 36px 24px; }
  .footer-links { justify-content: center; }
}

/* Small mobile */
@media (max-width: 500px) {
  .hero-title { font-size: 2.6rem; line-height: 1; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: 100%; max-width: 280px; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  #nav { padding: 0 16px; }
  .nav-logo { font-size: 1.1rem; }
  .logo-icon { width: 40px; height: 34px; }
  .ftab { font-size: 0.65rem; padding: 10px 4px; }
}

/* =============================================
   MULTI-PAGE COMPONENTS
   ============================================= */

/* Page hero (non-home pages) */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #160a12 50%, #0a0a0a 100%);
  border-bottom: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgb(202,202,202);
  max-width: 580px;
  line-height: 1.8;
  margin-top: 8px;
}

.section-pad { padding: 100px 0; }

/* ---- Features grid (home) ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
}
.feature-card {
  background: var(--black-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: rgba(236,72,153,0.35);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2.2rem; margin-bottom: 18px; }
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-card p { font-size: 0.88rem; color: rgb(202,202,202); line-height: 1.7; }

/* ---- Testimonial ---- */
.testimonial-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--pink);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.4;
}
.testimonial-wrap blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: #fff;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 400;
}
.testimonial-wrap cite {
  font-size: 0.82rem;
  color: var(--pink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

/* ---- CTA section ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0a0f, #1a0a14, #0a0a0a);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem,5vw,4.5rem);
  margin: 0 0 24px;
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
}
.cta-title em { color: var(--pink); font-style: italic; }

/* ---- How It Works vertical steps ---- */
.steps-grid-v {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.step-v {
  display: grid;
  grid-template-columns: 64px 64px 1fr;
  gap: 0 24px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid #1a1a1a;
}
.step-v:last-child { border-bottom: none; }
.step-v-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(236,72,153,0.2);
  line-height: 1;
  padding-top: 4px;
}
.step-v-icon { font-size: 2rem; padding-top: 2px; }
.step-v-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}
.step-v-body p { font-size: 0.92rem; color: rgb(202,202,202); line-height: 1.8; }
.step-list {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-list li {
  font-size: 0.9rem;
  color: rgb(202,202,202);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.step-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* ---- Our Families grid ---- */
.families-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
  margin-bottom: 0;
}
.family-card {
  background: var(--black-mid);
  border: 1px solid var(--border);
  border-left: 3px solid var(--pink);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.family-card:hover { transform: translateY(-4px); border-color: rgba(236,72,153,0.5); }
.family-icon { font-size: 2rem; margin-bottom: 14px; }
.family-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}
.family-card p { font-size: 0.88rem; color: rgb(202,202,202); line-height: 1.7; }

/* ---- For Venues benefit list ---- */
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgb(202,202,202);
  line-height: 1.5;
}
.benefit-list li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Pricing grid ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--black-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover { border-color: rgba(236,72,153,0.35); transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--pink);
  background: linear-gradient(135deg, #130a12, #1a0a14);
}
.pricing-badge-top {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-header { margin-bottom: 16px; }
.pricing-header h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}
.pricing-price span { font-size: 1rem; color: #666; font-weight: 400; }
.pricing-card > p { font-size: 0.88rem; color: rgb(202,202,202); line-height: 1.6; margin-bottom: 20px; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  font-size: 0.85rem;
  color: rgb(202,202,202);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.pricing-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 1.4rem;
  line-height: 0.9;
}

/* ---- Videos page filter ---- */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  background: var(--black-mid);
  border: 1px solid var(--border);
  color: #888;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { color: #fff; border-color: #444; }
.filter-tab.active { background: var(--pink); border-color: var(--pink); color: #fff; }

.videos-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 24px;
}

/* ---- Join page ---- */
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.join-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 8px;
}
.join-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.join-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-dim);
  border: 1px solid rgba(236,72,153,0.3);
  color: var(--pink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.join-step h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}
.join-step p { font-size: 0.88rem; color: rgb(202,202,202); line-height: 1.6; }

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-block h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-info-block a {
  color: rgb(202,202,202);
  transition: color 0.2s;
  font-size: 0.92rem;
}
.contact-info-block a:hover { color: var(--pink); }
.contact-info-block p { font-size: 0.88rem; color: rgb(202,202,202); line-height: 1.6; }
.social-link {
  color: var(--pink) !important;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(236,72,153,0.3);
  padding-bottom: 1px;
}

/* ---- Footer ---- */
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding: 60px 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 900;
  color: #999;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.85rem; color: #555; margin-bottom: 20px; line-height: 1.5; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--pink); border-color: var(--pink); }
.footer-social svg { width: 16px; height: 16px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.footer-nav a {
  color: #666;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--pink); }
.footer-cta-block { padding-top: 4px; }
.footer-bottom {
  border-top: 1px solid #111;
  padding: 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: #333;
}

/* ---- Responsive additions for new pages ---- */
@media (max-width: 900px) {
  .join-grid       { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner    { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 24px; }
  .footer-bottom   { padding: 20px 24px; flex-direction: column; text-align: center; }
  .step-v          { grid-template-columns: 48px 48px 1fr; gap: 0 16px; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .videos-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 130px 0 60px; }
  .step-v    { grid-template-columns: 40px 1fr; gap: 0 12px; }
  .step-v-icon { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .families-grid { grid-template-columns: 1fr; }
}