/* ═══════════════════════════════════════════════════════════════
   SHARED STYLES — James Arthur Magic
   All pages link to this file.
═══════════════════════════════════════════════════════════════ */

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

:root {
  --black:      #080810;
  --deep:       #0d0d1a;
  --card:       #111120;
  --card-border:#1e1e35;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim:   #7a6330;
  --white:      #f5f3ee;
  --muted:      #9994a8;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --max:        1180px;
  --radius:     6px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY HELPERS ───────────────────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.15;
}

.gold  { color: var(--gold); }
.muted { color: var(--muted); }

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── STICKY NAV ───────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 160;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition);
}

#site-nav.scrolled {
  background: rgba(8,8,16,0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border);
}

/* Inner pages: nav is always dark since there's no video behind it */
#site-nav.always-dark {
  background: rgba(8,8,16,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta { padding: 10px 24px !important; }

/* ─── SECTION SPACING ──────────────────────────────────────────── */
.section    { padding: 120px 0; }
.section-sm { padding: 72px 0; }

/* ─── GOLD RULE ────────────────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* ─── PLACEHOLDER BOXES ────────────────────────────────────────── */
.photo-placeholder {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 16px;
}
.photo-placeholder.tall   { height: 320px; }
.photo-placeholder.medium { height: 200px; }

.photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── INNER PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--deep);
  border-bottom: 1px solid var(--card-border);
}

.page-hero-label  { margin-bottom: 12px; }
.page-hero-title  {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
}

/* ─── SECTION CTA STRIP ────────────────────────────────────────── */
.cta-strip {
  background: var(--card);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 24px;
}
.cta-strip p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   HOME — HERO (two-column)
═══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0d0820 0%, #09061a 50%, #050312 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,16,0.92) 0%,
    rgba(8,8,16,0.7) 50%,
    rgba(8,8,16,0.3) 100%
  );
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
  width: 100%;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(32px, 8vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.hero-title-line {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}

.hero-cities {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-city-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 6px 18px;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: rgba(245,243,238,0.75);
  margin-bottom: 48px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}
.hero-phone:hover { color: var(--gold); }
.hero-phone svg { width: 16px; height: 16px; }

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--gold-dim);
}

/* Hero photo (right column) */
.hero-photo-wrap { position: relative; }

/* ┌─────────────────────────────────────────────────────────────┐
   │  SWAP IN: Replace .hero-photo-placeholder with:            │
   │  <img src="images/james-portrait.jpg"                      │
   │       alt="James Arthur — San Antonio Mentalist"           │
   │       style="width:100%;height:600px;object-fit:cover;     │
   │              border-radius:8px;">                          │
   └─────────────────────────────────────────────────────────────┘ */
.hero-photo-placeholder {
  height: 600px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.hero-photo-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(8,8,16,0.6), transparent);
  border-radius: 0 0 8px 8px;
}

/* ═══════════════════════════════════════════════════════════════
   PROOF BAR — playbill / theater-program layout
═══════════════════════════════════════════════════════════════ */
#proof-bar {
  background: var(--deep);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 16px 0;
}

.proof-grid {
  display: flex;
  flex-direction: column;
}

.proof-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--card-border);
}
.proof-item:last-child { border-bottom: none; }

.proof-number {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 120px;
}

.proof-number--text {
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.proof-connector {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--gold-dim) 0,
    var(--gold-dim) 3px,
    transparent 3px,
    transparent 10px
  );
  opacity: 0.35;
  margin: 0 32px;
}

.proof-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED REVIEW (home page)
═══════════════════════════════════════════════════════════════ */
#featured-review {
  background: var(--deep);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 96px 0;
}

.review-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.review-mark {
  font-family: var(--serif);
  font-size: 140px;
  color: var(--gold);
  opacity: 0.12;
  line-height: 0.5;
  display: block;
  margin-bottom: 20px;
}

.review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 36px;
}

.review-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.review-name { font-weight: 600; color: var(--white); }
.review-sep  { color: var(--gold-dim); }

/* ═══════════════════════════════════════════════════════════════
   EVENT TYPE LIST (home page — replaces audience card grid)
═══════════════════════════════════════════════════════════════ */
.event-list { display: flex; flex-direction: column; }

.event-row {
  display: grid;
  grid-template-columns: 72px 1fr 240px;
  gap: 0 56px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--card-border);
}
.event-row:first-child { border-top: 1px solid var(--card-border); }

.event-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  padding-top: 2px;
}

.event-body h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.event-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
}

.event-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

.event-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-dim);
  border-left: 2px solid var(--gold-dim);
  padding-left: 12px;
  line-height: 1.4;
  transition: color var(--transition), border-color var(--transition);
}

.event-row:hover .event-tag {
  color: var(--gold);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   WHO I WORK WITH (home page)
═══════════════════════════════════════════════════════════════ */
#audience { background: var(--black); }

.audience-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.audience-headline {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.audience-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}
.audience-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   EXPERIENCE PAGE
═══════════════════════════════════════════════════════════════ */
#experience { background: var(--deep); }

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.experience-headline {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 40px;
}

.moment-list { display: flex; flex-direction: column; gap: 36px; }

.moment-item { display: flex; gap: 20px; }

.moment-number {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: right;
}

.moment-text h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.moment-text p { font-size: 15px; color: var(--muted); line-height: 1.7; }

.experience-media { display: flex; flex-direction: column; gap: 16px; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */
#about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo-wrap { position: relative; }

/* ┌─────────────────────────────────────────────────────────────┐
   │  SWAP IN: Replace .about-photo-placeholder with:           │
   │  <img src="images/james-portrait.jpg" alt="James Arthur"   │
   │       style="width:100%;height:580px;object-fit:cover;     │
   │              border-radius:6px;">                          │
   └─────────────────────────────────────────────────────────────┘ */
.about-photo-placeholder {
  height: 580px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 16px;
}

.about-photo-caption {
  position: absolute;
  bottom: -1px; left: -1px; right: -1px;
  background: linear-gradient(to top, rgba(8,8,16,0.95), transparent);
  padding: 48px 24px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.about-headline {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 28px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: rgba(245,243,238,0.8);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.credentials { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }

.credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.credential-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.client-logos-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
}

.client-logos { display: flex; flex-wrap: wrap; gap: 12px; }

.logo-chip {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════
   PACKAGES PAGE — stacked row layout
═══════════════════════════════════════════════════════════════ */
#packages { background: var(--black); }

.packages-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.packages-headline { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }

/* Stacked list container */
.package-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 48px; }

.package-row {
  display: grid;
  grid-template-columns: 200px 1fr 180px;
  gap: 0 56px;
  align-items: start;
  padding: 44px 40px;
  background: var(--card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.package-row:hover { border-color: var(--gold); }

.package-row.pkg-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 40px rgba(201,168,76,0.1);
}

/* Left column — identity */
.pkg-popular {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pkg-name {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.1;
}

.pkg-type {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* Middle column — body */
.pkg-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.pkg-specs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: rgba(245,243,238,0.6);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
}

.pkg-spec-dot { color: var(--gold-dim); }

.pkg-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-includes li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pkg-includes li::before {
  content: '✦';
  color: var(--gold-dim);
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Right column — price + CTA */
.pkg-action { text-align: right; }

.pkg-price-from {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.pkg-price-value {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
}

.pkg-btn { width: 100%; justify-content: center; }

.package-note { text-align: center; font-size: 14px; color: var(--muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS PAGE
═══════════════════════════════════════════════════════════════ */
#testimonials { background: var(--deep); }

.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-headline { font-size: clamp(32px, 4vw, 52px); }

.video-testimonial-placeholder {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 56px;
  max-width: 800px;
  cursor: pointer;
}

.play-button {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-button svg { width: 28px; height: 28px; fill: var(--black); margin-left: 4px; }

.video-label { font-size: 13px; color: var(--muted); letter-spacing: 0.08em; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }

.testimonial-quote {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245,243,238,0.9);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card-border);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.05em;
}

.author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.author-title { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════════════════════════ */
#faq { background: var(--black); }

.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar h2 { font-size: clamp(32px, 3.5vw, 48px); margin-bottom: 20px; }
.faq-sidebar p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--card-border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding-bottom: 28px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ═══════════════════════════════════════════════════════════════
   BOOKING FORM
═══════════════════════════════════════════════════════════════ */
#book { background: var(--deep); text-align: center; }

.book-inner { max-width: 720px; margin: 0 auto; }

.book-headline { font-size: clamp(36px, 5vw, 64px); margin-bottom: 20px; }
.book-sub { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 52px; }

.book-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 52px;
  text-align: left;
  margin-bottom: 48px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

.form-input, .form-select, .form-textarea {
  background: var(--black);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold-dim); }
.form-select option { background: var(--deep); }
.form-textarea { min-height: 120px; resize: vertical; }

.form-submit-row { margin-top: 28px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.form-promise { font-size: 13px; color: var(--muted); }

.book-alternatives { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }

.alt-contact { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--muted); transition: color var(--transition); }
.alt-contact:hover { color: var(--gold); }

.alt-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.alt-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.alt-divider { width: 1px; height: 32px; background: var(--card-border); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
#footer {
  background: var(--black);
  border-top: 1px solid var(--card-border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-logo { font-family: var(--serif); font-size: 20px; }

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-area {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}

.footer-copy { font-size: 12px; color: var(--gold-dim); }

/* ─── MOBILE STICKY CTA ─────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--card);
  border-top: 1px solid var(--card-border);
  padding: 16px 20px;
  gap: 12px;
}
.mobile-cta-bar a { flex: 1; text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   HAMBURGER BUTTON
   Three horizontal lines that animate into an × when open.
   Hidden on desktop, shown at ≤860px.
═══════════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animate the three lines into an × when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY
   Full-screen dark panel with large serif nav links.
   Fades in when .open is added by main.js.
═══════════════════════════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  width: 100%;
  padding: 0 24px;
}

.mobile-nav-links a {
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  padding: 10px 0;
  display: block;
  width: 100%;
  transition: color 0.2s ease;
}

.mobile-nav-links a:hover { color: var(--gold); }

.mobile-nav-links .mobile-nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-top: 32px;
  padding: 15px 40px;
  width: auto;
  display: inline-flex;
}

/* Prevent page scrolling while the mobile nav is open */
body.nav-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 500px; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 860px) {
  .nav-links    { display: none; }
  .nav-cta      { display: none; }
  .nav-hamburger { display: flex; }

  .proof-number   { min-width: 90px; }
  .proof-connector { margin: 0 16px; }

  .experience-grid { grid-template-columns: 1fr; gap: 48px; }
  .audience-cards  { grid-template-columns: 1fr; }
  .event-row       { grid-template-columns: 48px 1fr; gap: 0 32px; padding: 40px 0; }
  .event-tags      { display: none; }
  .event-num       { font-size: 44px; }
  .package-grid    { grid-template-columns: 1fr; }
  .package-row     { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .pkg-action      { text-align: left; display: flex; align-items: center; gap: 24px; }
  .pkg-btn         { width: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .book-form       { padding: 32px 24px; }
  .footer-inner    { flex-direction: column; text-align: center; }

  .mobile-cta-bar  { display: flex; }
  body             { padding-bottom: 80px; }
}

@media (max-width: 560px) {
  .section { padding: 80px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-cities  { gap: 8px; }
  #featured-review { padding: 64px 0; }
  .review-mark { font-size: 100px; }
  .event-row  { grid-template-columns: 40px 1fr; gap: 0 20px; }
  .event-num  { font-size: 32px; }
}

/* ─── SHARED JS BEHAVIOUR ──────────────────────────────────────── */
/* (JS included inline in each page) */
