:root {
  --header-h: 88px;
  --max-width: 1100px;
  --pad-xs: 16px;
  --pad-sm: 28px;
  --pad-md: 56px;
  --pad-lg: 88px;

  --black: #000;
  --white: #f4f8fc;
  --bg: #f1f6fb;
  --muted: #6b7280;

  /* Expanded premium blue scale (adds variety, keeps your theme) */
  --blue-400: #4da3e6;
  --blue-500: #0e7ac6;
  --blue-600: #0b63a3;
  --blue-700: #075b9a;
  --blue-800: #0a3f6b;

  --h1: clamp(28px, 5.2vw, 56px);
  --h2: clamp(20px, 3.6vw, 32px);
  --lead: 18px;

  /* Parallax image placeholders (unused now, but safe to keep) */
  --parallax-1: url('https://images.unsplash.com/photo-1532619675605-5f1f1b3b6a65?q=80&w=2000&auto=format&fit=crop&s=placeholder');
  --parallax-2: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=2000&auto=format&fit=crop&s=placeholder');

  /* Premium Topics gradients (blue-only, subtle) */
  --topic-1: linear-gradient(145deg, rgba(10, 63, 107, 0.96), rgba(14, 122, 198, 0.86));
  --topic-2: linear-gradient(145deg, rgba(8, 52, 92, 0.96), rgba(11, 99, 163, 0.86));
  --topic-3: linear-gradient(145deg, rgba(7, 40, 72, 0.96), rgba(77, 163, 230, 0.78));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--black);
  line-height: 1.6;
  /* keep content from sliding under the fixed header */
  
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-xs);
}

/* ===== Wordmark Logo (Lori small over Peacock big) ===== */
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  letter-spacing: 0.2px;
}

.wordmark .top {
  font-weight: 800;
  font-size: 12px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.9;
}

.wordmark .bottom {
  font-weight: 950;
  font-size: 20px;
  letter-spacing: -0.6px;
  color: var(--black);
}

.wordmark .tag {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.2;
  font-weight: 600;
}

.wordmark.is-inverse .top,
.wordmark.is-inverse .bottom {
  color: var(--white);
}

.wordmark.is-inverse .tag {
  color: rgba(255, 255, 255, 0.72);
}

.wordmark.navmark .top {
  font-size: 24px;
}

.wordmark.navmark .bottom {
  font-size: 40px;
}

.wordmark.navmark .tag {
  display: none;
}

.wordmark-bottom-lg {
  font-size: 24px;
}

/* NAV */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.85));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: background 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

/* Dark header variant (used over light sections) */
/* Light mode (when over light sections) */
header.is-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92));
  border-bottom: 1px solid rgba(11, 22, 33, 0.06);
}

header.is-light nav a,
header.is-light .wordmark .top,
header.is-light .wordmark .bottom {
  color: var(--black);
}

header nav a,
header .wordmark .top,
header .wordmark .bottom {
  color: var(--white);
}

/* Smooth transitions for header content */
header .nav-inner,
header nav a,
header .wordmark .top,
header .wordmark .bottom,
header .cta {
  transition: color 320ms ease, background 320ms ease, box-shadow 320ms ease, opacity 260ms ease;
}

header.is-dark nav a {
  color: var(--white);
  opacity: 0.95;
}

header.is-dark .wordmark .top,
header.is-dark .wordmark .bottom {
  color: var(--white);
}

header.is-dark .cta {
  color: white;
  box-shadow: 0 12px 30px rgba(14, 122, 198, 0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-xs);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav a {
  font-weight: 700;
  color: inherit;
  opacity: 0.95;
}

.cta {
  /* Premium blue depth */
  background: linear-gradient(180deg, var(--blue-500), var(--blue-800));
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(14, 122, 198, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

/* HERO (video background, cropped height, panel center-right) */
.hero {
  position: relative;
  margin: calc(var(--header-h) + 28px) var(--pad-xs) 28px;
  border-radius: 18px;
  overflow: hidden;
  height: clamp(520px, 72vh, 680px);
  min-height: 520px;
  box-shadow: 0 28px 80px rgba(6, 18, 32, 0.08);
}

.hero .media {
  position: relative;
  height: 100%;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  display: block;
  filter: contrast(1.02) saturate(0.98);
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 10%,
    rgba(0, 0, 0, 0.22) 55%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
}

.hero .hero-panel {
  position: absolute;
  top: 5%;
  right: clamp(20px, 5vw, 64px);
  transform: none;
  width: min(640px, calc(100% - 40px));
  padding: 40px 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.15));
  color: white;
  text-align: left;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.hero .eyebrow {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-size: var(--h1);
  line-height: 1.02;
  font-weight: 900;
}

.hero p.sub {
  margin: 14px 0 20px 0;
  max-width: 760px;
  font-size: var(--lead);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: var(--pad-md) 0;
  position: relative;
}

.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-xs);
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.995);
  transition: transform 700ms cubic-bezier(0.16, 0.8, 0.24, 1), opacity 600ms ease-out;
  will-change: transform, opacity;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.kicker {
  /* more premium depth while staying “blue” */
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.kicker-inverse {
  background: white;
  color: var(--blue-700);
}

h2.section-title {
  margin: 0;
  font-size: var(--h2);
  font-weight: 900;
}

.section-title-inverse {
  color: var(--white);
}

/* About dynamic */
/* Shared inner padding so floating elements can align with the card’s padded edge */
.bg-white {
  --about-inner-pad: clamp(22px, 4vw, 46px);
}

.bg-white {
  background: linear-gradient(180deg, var(--bg), #fff);
}

.about-dynamic {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(6, 18, 32, 0.06);
}

.about-dynamic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 420px at 20% 0%, rgba(14, 122, 198, 0.1), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--bg), #fff);
  z-index: 0;
}

.about-dynamic::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--about-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--about-bg-opacity, 0);
  z-index: 0;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.94));
  opacity: var(--about-overlay-opacity, 1);
  z-index: 1;
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 2;
  padding: var(--about-inner-pad, clamp(22px, 4vw, 46px));
}

.about-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
  margin-top: 18px;
}

/* Floating speaker image (About section) */
.about-speaker {
  position: absolute;
  right: -56px;
  /* Clamp to the padded edge so the cutoff looks intentional */
  bottom: clamp(-40px, -6vw, -80px);
  width: 400px;
  max-width: 45vw;
  z-index: 4;
  pointer-events: none;
}

.about-speaker img {
  width: 100%;
  height: auto;
  display: block;
  /* soft shadow + subtle blue rim light */
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 14px rgba(14, 122, 198, 0.35));
}

@media (max-width: 900px) {
  .about-speaker {
    right: -20px;
    bottom: 0;
    width: 240px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 78px;
  }
  .about-speaker {
    display: none;
  }
}

.about-headline {
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 950;
  line-height: 1.08;
  margin: 0 0 12px 0;
  letter-spacing: -0.6px;
}

.about-lead {
  font-size: 18px;
  color: var(--black);
  font-weight: 650;
  line-height: 1.6;
  margin: 0;
  max-width: 62ch;
}

.about-highlight {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  /* subtle blue variety */
  background: linear-gradient(135deg, rgba(14, 122, 198, 0.12), rgba(14, 122, 198, 0.05));
  border: 1px solid rgba(14, 122, 198, 0.18);
}

.about-highlight .label {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 12px;
  color: var(--blue-700);
  margin-bottom: 10px;
}

.about-highlight .quote {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
  color: var(--black);
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.about-block {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 22, 33, 0.06);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 36px rgba(6, 18, 32, 0.04);
}

.about-block h3 {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--blue-700);
}

.about-block p {
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 850;
  font-size: 13px;
  color: var(--black);
}

.stat-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue-400);
}

.profile-card-lite {
  background: rgba(0, 0, 0, 0.92);
  color: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.profile-card-lite .small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
}

.profile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.profile-badge {
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14, 122, 198, 0.22), rgba(14, 122, 198, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-cta {
  margin-top: 16px;
}

/* Topics (black) */
.bg-black {
  /* premium black with subtle blue “wash” */
  background: radial-gradient(900px 420px at 18% 0%, rgba(14, 122, 198, 0.16), rgba(0, 0, 0, 0) 62%),
    linear-gradient(180deg, #050608, #0a0f16);
  color: var(--white);
}

.topics-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  max-width: 860px;
  margin: 0 0 18px 0;
}

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

/* Base topic style */
.topic {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border-radius: 12px;
  padding: 24px;
  min-height: 240px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.topic:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

/* Premium look for ALL topic cards (including Recovery) */
.topics-grid .topic {
  border-radius: 16px;
  padding: 28px;
  min-height: 260px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.topics-grid .topic::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  pointer-events: none;
}

.topics-grid .topic:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

/* Apply the same blue gradient sequence to EACH grid (Topics + Recovery) */
.topics-grid .topic:nth-child(1) {
  background: var(--topic-1);
}

.topics-grid .topic:nth-child(2) {
  background: var(--topic-2);
}

.topics-grid .topic:nth-child(3) {
  background: var(--topic-3);
}

.topic .title {
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.topic .core {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.topic ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.best-for {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  margin-top: 14px;
}

.recovery {
  margin-top: 36px;
}

/* Photo between Topics and Recovery (crop top ~30%) */
.topics-photo {
  margin: 28px 0 18px 0;
  height: 800px; /* control visible height */
  overflow: hidden; /* enables cropping */
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(6, 18, 32, 0.18);
}

.topics-photo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;

  /* shows more of the lower portion (effectively crops top ~30%) */
  object-position: 50% 70%;
}

.recovery-title {
  margin: 12px 0 8px 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: 20px;
  font-weight: 900;
}

.recovery-lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 860px;
  margin: 0 0 18px 0;
}

.topics-grid-recovery {
  grid-template-columns: repeat(3, 1fr);
}

.highlights {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* Reusable “surface/panel” primitives */
.surface {
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(6, 18, 32, 0.12);
}

.surface--light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
}

.surface--dark {
  background: rgba(0, 0, 0, 0.92);
  color: var(--white);
}

.surface--glass {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.08));
  color: var(--white);
}

/* Apply the reusable primitives to existing elements without changing your HTML */
.hero .hero-panel,
.profile-card-lite,
.about-block,
.contact-card,
.booking-aside {
  border-radius: 14px;
}

/* Videos */
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.video {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 44px rgba(6, 18, 32, 0.06);
  width: 100%;
}

/* Center a single video in the grid and constrain its max width */
.video-grid > .video:only-child {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 900px; /* adjust as desired */
}

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

.videos-lead {
  font-size: 18px;
  max-width: 860px;
  margin: 0 0 18px 0;
}

/* Booking */
.bg-inverse {
  background: linear-gradient(180deg, #07080a, #0c0c0c);
  color: var(--white);
}

.booking-grid {
  display: grid;
  
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 12px;
  padding: 26px;
}

.booking-copy {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 14px 0;
}

.contact {
  margin-top: 12px;
}

.contact-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.contact-email {
  margin-top: 10px;
}

.contact-card a {
  color: var(--blue-400);
  font-weight: 900;
}

.contact-card .cta {
  color: white;
}

.contact-note {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

.booking-cta {
  margin-top: 18px;
}

.booking-aside {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 12px;
  padding: 18px;
}

.aside-title {
  font-weight: 900;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 12px;
}

.aside-list {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  padding-left: 18px;
  margin: 0;
}

/* Footer */
footer {
  background: #030303;
  color: rgba(255, 255, 255, 0.9);
  padding: 44px 0;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
}

.footer-mark {
  align-items: center;
}

.footer-bottom {
  font-size: 26px;
}

.footer-copy {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1000px) {
  .topics-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .about-top {
    grid-template-columns: 1fr;
  }

  .about-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .hero {
    height: clamp(340px, 52vh, 440px);
  }

  .hero .hero-panel {
    top: 12%;
    left: 16px;
    right: 16px;
    width: auto;
    text-align: center;
    padding: 24px;
  }

  .hero .cta-row {
    justify-content: center;
  }
}

/* Mobile nav toggle + drawer */
.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-bars {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 999px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after  { top: 7px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9998; /* under header (9999) */
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
}

.mobile-menu-panel {
  position: absolute;
  top: var(--header-h);
  left: 12px;
  right: 12px;
  border-radius: 14px;
  padding: 16px;
  background: rgba(0,0,0,0.92);
  color: var(--white);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  transform: translateY(-8px);
  transition: transform 220ms ease;
}

header.is-light ~ .mobile-menu .mobile-menu-panel,
header.is-light .mobile-menu-panel {
  background: rgba(255,255,255,0.98);
  color: var(--black);
}

.mobile-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.mobile-menu-close {
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 28px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.mobile-menu-links a {
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 800;
  background: rgba(255,255,255,0.06);
}

header.is-light .mobile-menu-links a {
  background: rgba(0,0,0,0.06);
}

.mobile-menu-cta {
  margin-top: 12px;
}

html.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

html.menu-open .mobile-menu-panel {
  transform: translateY(0);
}

@media (max-width: 640px) {
  /* keep header height smaller on mobile */
  :root { --header-h: 72px; }

  nav ul {
    display: none; /* hide desktop links */
  }

  .nav-toggle {
    display: inline-flex; /* show hamburger */
    align-items: center;
    justify-content: center;
  }

  .nav-inner {
    gap: 10px;
  }

  /* make CTA fit on small screens */
  header .cta {
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
  }

  /* hero spacing */
  .hero {
    margin: calc(var(--header-h) + 16px) var(--pad-xs) 18px;
    border-radius: 16px;
  }

  section {
    padding: var(--pad-sm) 0;
  }
}
