/* Bobby Khan speaker site — section styles */

*,
*::before,
*::after { box-sizing: border-box; }

html,
body {
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}

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

button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--bk-gold);
  outline-offset: 2px;
}

/* Body scroll lock when mobile drawer is open */
body.is-drawer-open { overflow: hidden; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 20px 32px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav__inner {
  pointer-events: auto;
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__wordmark::before {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--bk-gold);
  display: inline-block;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.nav__pill {
  background: rgba(32, 32, 32, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 12px;
  display: inline-flex;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__link {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 10px 18px;
  color: var(--fg);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
  border: 0;
  background: transparent;
}
.nav__link:hover { color: var(--bk-gold); }
.nav__link--active { background: var(--fg); color: var(--bk-black); }

.nav__cta-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.nav__book {
  background: var(--bk-gold);
  color: var(--bk-black);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--dur-base) var(--ease-out);
}
.nav__book:hover { background: var(--bk-gold-hover); }

.nav__icon-btn {
  width: 40px;
  height: 40px;
  background: var(--bk-gold);
  border: 0;
  cursor: pointer;
  display: none; /* surfaced only on mobile */
  align-items: center;
  justify-content: center;
  color: var(--bk-black);
  padding: 0;
}
.nav__icon-btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base) var(--ease-out);
}
.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 85vw);
  background: var(--bk-black);
  border-left: 1px solid rgba(255, 192, 0, 0.2);
  z-index: 100;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease-out);
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.drawer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.drawer__brand::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--bk-gold);
  display: inline-block;
  transform: rotate(45deg);
}
.drawer__close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--fg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.drawer__close:hover { border-color: var(--bk-gold); color: var(--bk-gold); }

.drawer__link {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--dur-base) var(--ease-out);
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  text-align: left;
  cursor: pointer;
}
.drawer__link:hover,
.drawer__link--active { color: var(--bk-gold); }

.drawer__cta {
  margin-top: auto;
  background: var(--bk-gold);
  color: var(--bk-black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 24px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background var(--dur-base) var(--ease-out);
}
.drawer__cta:hover { background: var(--bk-gold-hover); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 32px;
  background: var(--bk-black);
}
.hero__card {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 180px);
  background: linear-gradient(180deg, #0b0b0b 0%, #000 100%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__media img,
.hero__media picture,
.hero__media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(20%) contrast(1.05);
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.6) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.8) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bk-gold);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--bk-gold);
}
.hero__script {
  font-family: 'Snell Roundhand', 'Brush Script MT', cursive;
  font-style: italic;
  color: var(--bk-gold);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 500;
  transform: rotate(-2deg);
  display: inline-block;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 32px;
  letter-spacing: -1px;
}
.hero__title em {
  color: var(--bk-gold);
  font-style: normal;
}
.hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--bk-mist);
  max-width: 460px;
  margin: 0 0 40px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__cta {
  background: var(--bk-gold);
  color: var(--bk-black);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-out);
}
.hero__cta:hover { background: var(--bk-gold-hover); color: var(--bk-black); }
.hero__cta-icon {
  width: 28px;
  height: 28px;
  background: var(--bk-black);
  color: var(--bk-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-display);
}
.hero__rating-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
}
.hero__rating-stars {
  color: var(--bk-gold);
  font-size: 12px;
  letter-spacing: 2px;
}
.hero__rating-meta {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bk-ash);
}

.hero__badge {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  right: 32px;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.hero__badge-avatar {
  width: 44px;
  height: 44px;
  /* WebP in 2026 has ~98%+ support; skipping image-set fallback for a 44px bg */
  background-image: url('../assets/bobby-portrait.webp');
  background-size: cover;
  background-position: center 25%;
  flex-shrink: 0;
}
.hero__badge-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.hero__badge-title {
  font-size: 11px;
  color: var(--bk-ash);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero__side-stats {
  position: absolute;
  z-index: 3;
  top: 56px;
  right: 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: right;
}
.hero__side-stat {
  font-family: var(--font-display);
}
.hero__side-stat-num {
  font-size: 34px;
  font-weight: 900;
  color: var(--bk-gold);
  line-height: 1;
}
.hero__side-stat-lbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bk-ash);
  margin-top: 6px;
}

/* ==========================================================================
   SECTION shell (shared)
   ========================================================================== */
.section__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bk-gold);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--bk-gold);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: -1px;
  margin: 0 0 24px;
  max-width: 900px;
}
.section__title em {
  color: var(--bk-gold);
  font-style: normal;
}
.section__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--bk-mist);
  max-width: 640px;
  margin: 0 0 40px;
}
.section__num {
  position: absolute;
  top: 48px;
  right: 48px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  letter-spacing: -4px;
  user-select: none;
  pointer-events: none;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  background: var(--bk-black);
  padding: 96px 32px;
  position: relative;
}
.about__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}
.about__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
}
.about__rule {
  width: 64px;
  height: 3px;
  background: var(--bk-gold);
  margin: 0 0 24px;
  opacity: 0.8;
  border: 0;
}
.about__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bk-mist);
  margin-bottom: 18px;
  max-width: 520px;
}
.about__body em {
  color: var(--bk-gold);
  font-style: normal;
}

/* ==========================================================================
   STORY / Journey
   ========================================================================== */
.story {
  background: var(--bk-iron);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.story__header {
  max-width: 1280px;
  margin: 0 auto 64px;
}
.story__cards {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story__card {
  background: linear-gradient(180deg, #1a1610 0%, #0e0c08 100%);
  border: 1px solid rgba(255, 192, 0, 0.08);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.story__card:hover { border-color: rgba(255, 192, 0, 0.25); }
.story__card-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  color: var(--bk-gold);
  line-height: 1;
  margin-bottom: 20px;
}
.story__card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 12px;
}
.story__card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bk-ash);
}
.story__card::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  background: var(--bk-gold);
  opacity: 0.04;
  transform: rotate(45deg);
}

/* ==========================================================================
   CAPTIVATE list
   ========================================================================== */
.captivate {
  background: var(--bk-black);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.captivate__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.captivate__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
  position: relative;
  order: 2;
}
.captivate__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.captivate__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 60%, rgba(0, 0, 0, 0.7) 100%);
}
.captivate__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.captivate__item {
  background: linear-gradient(90deg, #1a1610 0%, #0e0c08 100%);
  border: 1px solid rgba(255, 192, 0, 0.08);
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.captivate__item:hover { border-color: rgba(255, 192, 0, 0.3); }
.captivate__item-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--bk-gold);
  letter-spacing: 2px;
  min-width: 28px;
}
.captivate__item-arrow {
  margin-left: auto;
  color: var(--bk-gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  display: inline-flex;
}
.captivate__item:hover .captivate__item-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   TOPICS
   ========================================================================== */
.topics {
  background: var(--bk-iron);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.topics__grid-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.topics__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
  position: sticky;
  top: 120px;
}
.topics__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topics__topics-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}
.topic {
  background: linear-gradient(135deg, #1a1610 0%, #0e0c08 100%);
  border: 1px solid rgba(255, 192, 0, 0.1);
  padding: 24px;
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  color: inherit;
  font: inherit;
}
.topic:hover {
  border-color: var(--bk-gold);
  background: linear-gradient(135deg, #2a2210 0%, #1a1308 100%);
}
.topic.is-active {
  border-color: var(--bk-gold);
  background: linear-gradient(135deg, #3a2d12 0%, #1a1308 100%);
}
.topic__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  color: var(--bk-gold);
  letter-spacing: 2px;
}
.topic__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  letter-spacing: 0.5px;
  line-height: 1.25;
}

/* ==========================================================================
   QUOTE
   ========================================================================== */
.quote {
  background: var(--bk-black);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.quote__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote__body blockquote {
  margin: 0;
  font-family: 'Snell Roundhand', 'Brush Script MT', cursive;
  font-style: italic;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  color: var(--fg);
  font-weight: 400;
}
.quote__body em {
  color: var(--bk-gold);
  font-style: italic;
}
.quote__mark {
  width: 64px;
  height: 3px;
  background: var(--bk-gold);
  margin: 32px 0;
  border: 0;
}
.quote__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bk-mist);
  max-width: 480px;
}
.quote__media {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.quote__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

/* ==========================================================================
   REACH
   ========================================================================== */
.reach {
  background: var(--bk-iron);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.reach__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reach__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.stat {
  background: linear-gradient(180deg, #1a1610 0%, #0b0805 100%);
  border: 1px solid rgba(255, 192, 0, 0.15);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  color: var(--bk-gold);
  line-height: 1;
  letter-spacing: -2px;
}
.stat__lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bk-ash);
  margin-top: 14px;
}
.reach__copy {
  color: var(--bk-mist);
  max-width: 480px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--fg);
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.pill:hover { border-color: var(--bk-gold); color: var(--bk-gold); }
.pill.is-active {
  background: var(--fg);
  color: var(--bk-black);
  border-color: var(--fg);
}
.reach__media {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.reach__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   WATCH
   ========================================================================== */
.watch {
  background: var(--bk-black);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.watch__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.watch__inner .section__eyebrow { justify-content: center; }
.watch__inner .section__title,
.watch__inner .section__lead { margin-left: auto; margin-right: auto; }
.watch__player {
  max-width: 380px;
  margin: 40px auto 16px;
  background: var(--bk-black);
  border: 1px solid rgba(255, 192, 0, 0.08);
  transition: border-color var(--dur-base) var(--ease-out);
}
.watch__player:hover { border-color: rgba(255, 192, 0, 0.25); }
.watch__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  background: var(--bk-black);
}
.watch__caption {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bk-ash);
  margin: 0;
}

/* ==========================================================================
   BOOKING
   ========================================================================== */
.booking {
  position: relative;
  min-height: 90vh;
  padding: 120px 32px;
  overflow: hidden;
}
.booking__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.booking__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booking__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
}
.booking__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.booking__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.booking__divider {
  width: 100%;
  max-width: 560px;
  height: 2px;
  background: var(--bk-gold);
  margin: 40px 0;
  opacity: 0.6;
  border: 0;
}
.booking__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.booking__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.booking__contact-item:hover { color: var(--fg); }
.booking__contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--bk-gold);
  color: var(--bk-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.booking__contact-item:hover .booking__contact-icon {
  background: var(--bk-gold);
  color: var(--bk-black);
}
.booking__kit-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 18px 28px;
  background: var(--bk-gold);
  color: var(--bk-black);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background var(--dur-base) var(--ease-out);
  width: fit-content;
  border: 0;
  cursor: pointer;
}
.booking__kit-btn:hover { background: var(--bk-gold-hover); color: var(--bk-black); }
.booking__kit-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--bk-black);
  color: var(--bk-gold);
}

.booking__form {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 192, 0, 0.2);
  padding: 40px;
}
.booking__form-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg);
  margin-bottom: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bk-ash);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--fg);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--bk-gold); }
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.field select option { background: var(--bk-iron); color: var(--fg); }
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.field--row .field { margin-bottom: 0; }

/* Date picker contrast fix for dark theme */
.field input[type="date"] { color-scheme: dark; }

.booking__submit {
  width: 100%;
  background: var(--bk-gold);
  color: var(--bk-black);
  border: 0;
  padding: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background var(--dur-base) var(--ease-out);
}
.booking__submit:hover { background: var(--bk-gold-hover); }
.booking__submit[disabled],
.booking__submit[aria-busy="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--bk-gold);
}

.booking__toast {
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--bk-gold);
  background: rgba(255, 192, 0, 0.08);
  color: var(--bk-gold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
}
.booking__toast.is-visible { display: block; }
.booking__toast--error {
  border-color: #d46a6a;
  background: rgba(212, 106, 106, 0.1);
  color: #ff9a9a;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bk-black);
  padding: 80px 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__brand-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.footer__brand-mark span { color: var(--bk-gold); }
.footer__tagline {
  font-size: 14px;
  color: var(--bk-ash);
  max-width: 300px;
}
.footer__col-title {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bk-ash);
  margin-bottom: 18px;
}
.footer__col a,
.footer__col .footer__link {
  display: block;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 6px 0;
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
.footer__col a:hover { color: var(--bk-gold); }
.footer__col .footer__link { cursor: default; color: var(--bk-mist); }
.footer__col a.footer__link--action { cursor: pointer; color: var(--fg); }
.footer__col a.footer__link--action:hover { color: var(--bk-gold); }
.footer__legal {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--bk-ash);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet — 1024px and down: tighten gaps, shrink side padding, but keep most 2-col layouts */
@media (max-width: 1024px) {
  .hero,
  .about,
  .story,
  .captivate,
  .topics,
  .quote,
  .reach,
  .watch,
  .booking { padding-left: 24px; padding-right: 24px; }

  .about__grid,
  .captivate__grid,
  .topics__grid-wrap,
  .quote__grid,
  .reach__grid,
  .booking__inner { gap: 48px; }

  .section__num { font-size: 140px; top: 32px; right: 24px; }

  .hero__content { padding: 48px 40px; }
  .hero__side-stats { top: 40px; right: 32px; gap: 14px; }
  .hero__side-stat-num { font-size: 28px; }

  .topics__media { position: relative; top: 0; }
  .topics__topics-list { grid-template-columns: 1fr 1fr; }

  .stat__num { font-size: 52px; }
  .story__card { padding: 28px 24px; }
}

/* Mobile — 720px and down: collapse to single-column, surface hamburger, hide desktop nav */
@media (max-width: 720px) {
  .hero {
    padding: 100px 16px 40px;
    min-height: auto;
  }
  .hero__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__content {
    padding: 40px 24px;
    max-width: none;
  }
  .hero__media img {
    object-position: center 15%;
  }
  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.95) 100%);
  }
  .hero__side-stats,
  .hero__badge { display: none; }
  .hero__script { font-size: 34px; }
  .hero__title { font-size: clamp(40px, 10vw, 56px); }
  .hero__ctas { gap: 20px; }

  /* Nav collapses: hide pill + book button, surface hamburger */
  .nav { padding: 16px 20px; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__pill { display: none; }
  .nav__book { display: none; }
  .nav__icon-btn { display: inline-flex; }

  .about,
  .story,
  .captivate,
  .topics,
  .quote,
  .reach,
  .watch,
  .booking { padding: 72px 20px; }

  .watch__player { max-width: 85vw; }

  .about__grid,
  .captivate__grid,
  .topics__grid-wrap,
  .reach__grid,
  .quote__grid,
  .booking__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story__cards { grid-template-columns: 1fr; }
  .topics__topics-list { grid-template-columns: 1fr; }
  .captivate__media { order: -1; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section__num { font-size: 96px; top: 16px; right: 16px; }

  .booking__form { padding: 28px 20px; }
  .field--row { grid-template-columns: 1fr; }
  .reach__stats { grid-template-columns: 1fr; }

  .quote__body blockquote { font-size: clamp(32px, 10vw, 48px); }
}

/* Very narrow — keep footer legible */
@media (max-width: 420px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
}

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