/* ================================================================
   AYMEN MOVES — main stylesheet
   Design system + layout + responsive
   ================================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Palette */
  --bg: #f6f1e8;
  --bg-warm: #efe7d8;
  --bg-dark: #0e0e0e;
  --bg-dark-2: #181715;
  --ink: #14110d;
  --ink-2: #3a342a;
  --ink-soft: #6b6356;
  --line: #e2d8c5;
  --line-dark: #2a2722;
  --accent: #d97706;          /* warm amber */
  --accent-2: #b35a00;        /* deep amber */
  --accent-glow: rgba(217, 119, 6, 0.18);
  --gold: #c9a86a;
  --cream: #fbf7ef;           /* light text on dark surfaces — never flips */
  --surface: #fbf7ef;         /* elevated cards, menus, quote boxes */
  --on-dark: #fbf7ef;
  --on-dark-muted: rgba(251, 247, 239, 0.72);
  --overlay-dark: rgba(14, 14, 14, 0.82);
  --white: #ffffff;

  /* Type */
  --font-display: 'Anton', 'Bebas Neue', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Sizing / spacing */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(20, 17, 13, 0.08);
  --shadow-md: 0 18px 50px rgba(20, 17, 13, 0.12);
  --shadow-lg: 0 40px 80px rgba(20, 17, 13, 0.18);

  /* Motion */
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
h1, h2, h3, h4 {
  text-wrap: balance;
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
::selection {
  background: var(--accent);
  color: white;
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section__eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.section__eyebrow--light {
  color: var(--gold);
}

/* ---------- BUTTONS ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  position: relative;
  isolation: isolate;
  transition: transform 0.45s var(--easing), box-shadow 0.45s var(--easing),
    background 0.3s ease, color 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--easing);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(20, 17, 13, 0.18);
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--primary {
  --btn-bg: var(--accent);
  --btn-fg: white;
}
.btn--primary:hover {
  --btn-bg: var(--accent-2);
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn--booked {
  --btn-bg: rgba(20, 17, 13, 0.04);
  --btn-fg: var(--ink-soft);
  border: 1.5px dashed rgba(20, 17, 13, 0.28);
  cursor: not-allowed;
  position: relative;
  letter-spacing: 0.04em;
}
.btn--booked:hover {
  transform: none;
  box-shadow: none;
  --btn-bg: rgba(20, 17, 13, 0.06);
}
.btn--booked .btn__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 241, 232, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(246, 241, 232, 0.96);
}
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__left {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.brand__at {
  color: var(--accent);
  margin-right: 2px;
}

/* Instagram-style verified badge */
.verified-badge {
  width: 17px;
  height: 17px;
  margin-left: 5px;
  align-self: center;
  flex-shrink: 0;
}
.verified-badge__seal {
  fill: #2d8cff;
}
.verified-badge__check {
  fill: #ffffff;
}
.nav__drawer-brand .verified-badge {
  width: 16px;
  height: 16px;
}

/* Socials */
.socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
.socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, transform 0.35s var(--easing);
}
.socials a:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* Menu */
.nav__menu > ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--ink);
  background: rgba(20, 17, 13, 0.06);
}
.nav__link--btn .chev {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--easing);
}
.has-submenu {
  position: relative;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.has-submenu:hover .nav__link--btn .chev,
.has-submenu:focus-within .nav__link--btn .chev {
  transform: rotate(180deg);
}
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 8px);
  width: 340px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--easing);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.submenu a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.25s ease;
}
.submenu a:hover {
  background: var(--bg-warm);
}
.submenu strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.submenu span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  margin-left: 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  border: 1px solid var(--line);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    transform 0.35s var(--easing);
}
.theme-toggle:hover {
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.theme-toggle svg {
  width: 19px;
  height: 19px;
}
.theme-toggle__sun {
  display: none;
}
.theme-toggle__moon {
  display: block;
}
.theme-toggle__label {
  display: none;
}
html[data-theme='dark'] .theme-toggle__sun {
  display: block;
}
html[data-theme='dark'] .theme-toggle__moon {
  display: none;
}
.theme-toggle--drawer {
  width: auto;
  height: auto;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(20, 17, 13, 0.05);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.theme-toggle--drawer .theme-toggle__label {
  display: inline;
}
.theme-toggle--drawer:hover {
  transform: none;
}

/* Hamburger */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  background: var(--ink);
  transition: background 0.25s ease, transform 0.35s var(--easing);
}
.nav__burger:hover {
  background: var(--accent-2);
}
.nav__burger span {
  width: 18px;
  height: 2px;
  background: var(--surface);
  border-radius: 2px;
  transition: transform 0.35s var(--easing), opacity 0.2s ease;
}
.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer (portaled outside <header>) — hidden on desktop */
.nav__menu--mobile {
  display: none;
}
.nav__backdrop {
  display: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      900px 600px at 90% 10%,
      rgba(217, 119, 6, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 5% 80%,
      rgba(180, 140, 80, 0.12),
      transparent 60%
    );
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

/* Text */
.hero__eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}
.title-stroke {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.title-stroke::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  top: 50%;
  height: 0.11em;
  background: var(--accent);
  transform: skewY(-4deg);
  border-radius: 2px;
}
.title-bang {
  color: var(--accent);
}
.hero__highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-2);
  background: var(--accent-glow);
  border: 1px solid rgba(217, 119, 6, 0.28);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero__highlight .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.18);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(217, 119, 6, 0);
  }
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(20px, 3vw, 40px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__meta span {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Photo */
.hero__photo {
  position: relative;
}
.hero__photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translate3d(0, var(--par-y, 0px), 0) rotate(0.5deg);
  background: var(--bg-warm);
  aspect-ratio: 4 / 5;
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--easing);
}
.hero__photo-frame:hover img {
  transform: scale(1.04);
}
.hero__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--overlay-dark);
  color: var(--on-dark);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

/* Decorative tiny corner */
.hero__photo::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(217, 119, 6, 0.35);
  border-radius: calc(var(--radius-lg) + 10px);
  z-index: -1;
  transform: rotate(0.5deg);
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll span {
  width: 1px;
  height: 36px;
  background: var(--ink-soft);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  inset: -36px 0 0 0;
  background: var(--accent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(72px);
  }
}

/* ---------- STORY ---------- */
.story {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
  position: relative;
}
.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      800px 400px at 100% 0%,
      rgba(217, 119, 6, 0.06),
      transparent 60%
    );
  pointer-events: none;
}
.story__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 150px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  margin: 10px 0 clamp(48px, 6vw, 80px);
}
.story__name span {
  color: var(--ink);
  display: inline-block;
}
.story__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.story__text p {
  margin-bottom: 18px;
  color: var(--ink-2);
  font-size: clamp(15.5px, 1.1vw, 17.5px);
  line-height: 1.75;
}
.story__text strong {
  color: var(--ink);
}
.story__lead {
  font-family: var(--font-body);
  font-style: normal;
  font-size: clamp(19px, 1.9vw, 24px) !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
  margin-bottom: 28px !important;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
.story__lead em {
  color: var(--ink-soft);
  font-style: normal;
  display: block;
  font-size: 0.6em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.story__lead strong {
  font-style: normal;
  font-weight: 600;
}
.story__quote {
  margin: 26px 0;
  padding: 20px 24px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.story__mission {
  margin-top: 36px !important;
  padding: 26px 28px;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: var(--radius);
  font-size: 17px !important;
  font-weight: 500;
}
.story__mission span {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: 0.02em;
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
}

/* Photo */
.story__photo {
  position: sticky;
  top: 110px;
}
.story__photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: translate3d(0, var(--par-y, 0px), 0) rotate(-0.8deg);
  background: var(--bg-warm);
  aspect-ratio: 4 / 5;
}
.story__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--overlay-dark);
  color: var(--on-dark);
  backdrop-filter: blur(8px);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: var(--bg-dark);
  color: var(--cream);
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 600px at 10% 0%,
      rgba(217, 119, 6, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 90% 100%,
      rgba(201, 168, 106, 0.1),
      transparent 60%
    );
  pointer-events: none;
}
.testimonials__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.testimonials__title-line {
  display: block;
}
.testimonials__title-line + .testimonials__title-line {
  margin-top: clamp(18px, 2.8vw, 32px);
}
.testimonials__title-line--accent {
  color: var(--accent);
}
.testimonials__sub {
  font-size: 16px;
  color: rgba(251, 247, 239, 0.7);
  max-width: 520px;
  margin-bottom: 56px;
}

/* Slider */
.slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.slider__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(251, 247, 239, 0.08);
  border: 1px solid rgba(251, 247, 239, 0.15);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.4s var(--easing),
    border-color 0.25s ease;
  z-index: 5;
}
.slider__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}
.slider__btn svg {
  width: 22px;
  height: 22px;
}
.slider__btn[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}
.slider__viewport {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
}
.slider__track {
  display: flex;
  gap: 22px;
  transition: transform 0.7s var(--easing);
  will-change: transform;
}
.testimonial {
  flex: 0 0 calc((100% - 44px) / 3);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark-2);
  position: relative;
  cursor: zoom-in;
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
  border: 1px solid rgba(251, 247, 239, 0.06);
  isolation: isolate;
}
.testimonial__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.55) saturate(1.1);
  transform: scale(1.18);
  z-index: 0;
  pointer-events: none;
}
.testimonial__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 14, 0.35);
}
.testimonial img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s var(--easing);
}
.testimonial__expand {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(14, 14, 14, 0.78);
  color: var(--cream);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 16px;
  transition: background 0.25s ease, transform 0.35s var(--easing);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.45);
}
.testimonial:hover .testimonial__bg {
  transform: scale(1.24);
  filter: blur(22px) brightness(0.6) saturate(1.15);
}
.testimonial__bg {
  transition: transform 0.9s var(--easing), filter 0.9s var(--easing);
}
.testimonial:hover .testimonial__expand {
  background: var(--accent);
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.slider__dots button {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.18);
  transition: background 0.3s ease, width 0.3s ease;
}
.slider__dots button.is-active {
  background: var(--accent);
  width: 48px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 8, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.lightbox.is-open {
  display: flex;
}
.lightbox__img {
  max-width: min(94vw, 600px);
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(251, 247, 239, 0.1);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.35s var(--easing);
  border: 1px solid rgba(251, 247, 239, 0.18);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.lightbox__close {
  top: 24px;
  right: 24px;
  font-size: 28px;
  line-height: 1;
}
.lightbox__nav svg {
  width: 22px;
  height: 22px;
}
.lightbox__nav--prev {
  left: 24px;
}
.lightbox__nav--next {
  right: 24px;
}

/* TestimonialsParallax */
.testimonials-parallax {
  padding: clamp(78px, 9vw, 124px) 0 clamp(70px, 8vw, 104px);
  isolation: isolate;
  background-color: #0b0b0c;
  background-image:
    radial-gradient(900px 620px at 12% 16%, rgba(217, 119, 6, 0.18), transparent 62%),
    radial-gradient(760px 520px at 86% 44%, rgba(201, 168, 106, 0.09), transparent 64%),
    linear-gradient(rgba(251, 247, 239, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 247, 239, 0.04) 1px, transparent 1px);
  background-attachment: fixed, fixed, fixed, fixed;
  background-position: center;
  background-size: auto, auto, 54px 54px, 54px 54px;
}
.testimonials-parallax__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.testimonials-parallax__grid,
.testimonials-parallax__aurora {
  position: absolute;
  display: block;
  transform: translate3d(0, var(--par-y, 0px), 0);
  will-change: transform;
}
.testimonials-parallax__grid {
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(251, 247, 239, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 247, 239, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(85% 65% at 50% 12%, #000 25%, transparent 82%);
  mask-image: radial-gradient(85% 65% at 50% 12%, #000 25%, transparent 82%);
}
.testimonials-parallax__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 8px,
    rgba(251, 247, 239, 0.14) 9px
  );
}
.testimonials-parallax__aurora {
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(78px);
  opacity: 0.45;
  background: radial-gradient(circle at 40% 45%, rgba(217, 119, 6, 0.42), transparent 66%);
  animation: auroraFloat 17s ease-in-out infinite;
}
.testimonials-parallax__aurora--one {
  top: -15%;
  right: -12%;
}
.testimonials-parallax__aurora--two {
  left: -20%;
  bottom: 18%;
  width: min(46vw, 620px);
  background: radial-gradient(circle at 45% 50%, rgba(201, 168, 106, 0.28), transparent 65%);
  animation-direction: reverse;
}
.testimonials-parallax__intro,
.testimonials-parallax__groups,
.proof-wall,
.testimonials-cta {
  position: relative;
  z-index: 1;
}
.testimonials-parallax__intro {
  margin-bottom: clamp(34px, 5vw, 58px);
}
.testimonials-parallax__intro .testimonials__title {
  max-width: 920px;
}
.testimonials-parallax__intro .testimonials__sub {
  max-width: 720px;
  margin-bottom: 16px;
}
.testimonials__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.testimonials__sources li {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(217, 119, 6, 0.32);
  background: rgba(217, 119, 6, 0.1);
}
.testimonials-parallax__groups {
  display: grid;
  gap: 0;
}
.kpi-block {
  position: relative;
  min-height: auto;
  padding-block: clamp(56px, 9vh, 112px);
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.9s var(--easing), transform 0.9s var(--easing);
  overflow: clip;
}
.kpi-block::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 247, 239, 0.12),
    transparent
  );
  pointer-events: none;
}
.kpi-block.is-in {
  opacity: 1;
  transform: translateY(0);
}
/* Edge padding that lines the first card up with the heading text. */
.kpi-block {
  --edge-pad: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
}
.kpi-block__head {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 2vw, 28px);
  margin-bottom: clamp(22px, 2.8vw, 38px);
}
.kpi-block__head .kpi-block__rule {
  flex: 1 1 auto;
  align-self: center;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(251, 247, 239, 0.22),
    rgba(251, 247, 239, 0)
  );
}
.kpi-block__index {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.kpi-block__head h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin: 0;
  flex-shrink: 0;
}
/* Full-bleed horizontal swipe / scroll track. */
.kpi-block__track {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 2.4vw, 40px);
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-inline: var(--edge-pad);
  padding-block: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--edge-pad);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}
.kpi-block__track::-webkit-scrollbar {
  display: none;
}
.kpi-block__track.is-grabbing {
  cursor: grabbing;
  scroll-snap-type: none;
}
.kpi-block__track.is-grabbing .proof-card {
  pointer-events: none;
}
.kpi-block__track-end {
  flex: 0 0 1px;
}
.kpi-block__track .proof-card {
  --card-rot: 0deg;
  --par-y-card: 0px;
  scroll-snap-align: start;
}
.proof-card {
  --card-rot: 0deg;
  --card-delay: 0ms;
  --par-y-card: 0px;
  position: relative;
  flex: 0 0 clamp(300px, 27vw, 440px);
  width: clamp(300px, 27vw, 440px);
  height: auto;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(251, 247, 239, 0.14);
  background: #121111;
  color: var(--cream);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.38);
  transform: rotate(var(--card-rot)) translate3d(0, var(--par-y-card), 0);
  transition: box-shadow 0.55s var(--easing), border-color 0.35s ease,
    filter 0.35s ease;
  cursor: zoom-in;
  isolation: isolate;
}
.proof-card--hero {
  flex-basis: clamp(380px, 34vw, 540px);
  width: clamp(380px, 34vw, 540px);
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 38px 120px rgba(217, 119, 6, 0.18), 0 30px 96px rgba(0, 0, 0, 0.44);
}
.proof-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: inherit;
}
.proof-card__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.45) saturate(1.16);
  transform: scale(1.22);
  transition: transform 0.65s var(--easing), filter 0.45s ease;
}
.proof-card__glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 7, 0.12), rgba(6, 6, 7, 0.62));
}
.proof-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 2px;
  transform-origin: center center;
  transition: transform 0.55s var(--easing), filter 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .proof-card:hover {
    transform: rotate(0deg) translate3d(0, calc(var(--par-y-card) - 16px), 0)
      scale(1.045);
    border-color: rgba(217, 119, 6, 0.55);
    box-shadow: 0 42px 110px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(217, 119, 6, 0.2);
    filter: saturate(1.08);
    z-index: 8;
  }
  .proof-card:hover .proof-card__glow {
    transform: scale(1.38);
    filter: blur(22px) brightness(0.52) saturate(1.22);
  }
  .proof-card:hover img {
    transform: scale(1.16);
    filter: contrast(1.04);
  }
  .proof-card--hero:hover {
    transform: rotate(0deg) translate3d(0, calc(var(--par-y-card) - 18px), 0)
      scale(1.05);
  }
  .proof-card--hero:hover img {
    transform: scale(1.18);
  }
  /* Gentle lift inside the swipe track so the hover never clips. */
  .kpi-block__track .proof-card:hover,
  .kpi-block__track .proof-card--hero:hover {
    transform: translate3d(0, calc(var(--par-y-card) - 6px), 0) scale(1.02);
  }
}
.proof-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.proof-wall {
  padding-top: clamp(42px, 7vw, 86px);
}
.proof-wall__header {
  max-width: 720px;
  margin-bottom: clamp(22px, 3vw, 38px);
}
.proof-wall__header .section__eyebrow {
  margin-bottom: 12px;
}
.proof-wall__header h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
}
.proof-wall__grid {
  columns: 4 220px;
  column-gap: 20px;
}
.proof-card--wall {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  transform: translateY(0);
}
.testimonials-videos {
  margin-top: clamp(36px, 5vw, 64px);
}
.testimonials-videos__head {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 36px);
}
.testimonials-videos__head h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  margin: 8px 0 0;
}
.testimonials-videos .video-strip__grid {
  max-width: 980px;
}
@media (max-width: 720px) {
  .testimonials-videos__head h3 {
    font-size: clamp(24px, 7vw, 32px);
  }
}
.testimonials-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: clamp(42px, 6vw, 82px);
  padding-block: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(251, 247, 239, 0.12);
  border-bottom: 1px solid rgba(251, 247, 239, 0.12);
}
.testimonials-cta span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.testimonials-cta strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  max-width: 760px;
}

/* ---------- TESTIMONIALS MARQUEE RAIL ---------- */
.proof-rail {
  overflow: hidden;
  contain: layout paint;
  max-width: 100vw;
  padding: 12px 0 24px;
  position: relative;
  z-index: 1;
}
.proof-rail__track {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  width: max-content;
  animation: proofRailScroll 55s linear infinite;
  will-change: transform;
}
.proof-rail:hover .proof-rail__track,
.proof-rail:focus-within .proof-rail__track {
  animation-play-state: paused;
}
@keyframes proofRailScroll {
  to {
    transform: translateX(-50%);
  }
}
.proof-rail__card {
  flex-shrink: 0;
  width: clamp(240px, 22vw, 320px);
  height: clamp(335px, 48vh, 460px);
  border-radius: 16px;
  overflow: hidden;
  background: #0d0d0f;
  border: 1px solid rgba(251, 247, 239, 0.13);
  cursor: zoom-in;
  padding: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  place-items: center;
}
figure.proof-rail__card {
  margin: 0;
  cursor: default;
}
.proof-rail__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.proof-rail__card:hover,
.proof-rail__card:focus-visible {
  transform: scale(1.07) translateY(-5px);
  border-color: rgba(217, 119, 6, 0.55);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}
.proof-rail__card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.proof-rail__hint {
  text-align: center;
  font-size: 14px;
  color: var(--on-dark-muted);
  margin-top: 12px;
}
@media (max-width: 720px) {
  .proof-rail__card {
    width: clamp(195px, 60vw, 260px);
    height: clamp(275px, 78vw, 365px);
    border-radius: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .proof-rail__track {
    animation: none;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .proof-rail__track::-webkit-scrollbar {
    display: none;
  }
}

/* ---------- SERVICES / CTA ---------- */
.services {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
}
.services__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.services__title span {
  color: var(--accent);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing),
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 119, 6, 0.4);
}
.card--primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
/* NOTE: doubled `.card.card--primary` selector is intentional — it bumps
   specificity to (0,2,1) so it beats `.card h3` (0,1,1) which is declared
   later in the file. */
.card.card--primary h3 {
  color: var(--cream);
}
.card.card--primary p {
  color: rgba(251, 247, 239, 0.92);
}
.card.card--primary .card__list li {
  color: rgba(251, 247, 239, 0.98);
  border-color: rgba(251, 247, 239, 0.14);
}
.card.card--primary .card__list li::before {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6.2L5 8.6l4.5-5' stroke='%230e0e0e' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / 10px 10px no-repeat,
    var(--accent);
}
.card__tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: white;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 20px;
}
.card__tag--alt {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid var(--accent);
}
.card--primary .card__tag--alt {
  color: var(--accent);
  border-color: var(--accent);
}
.card__tag--booked {
  background: transparent;
  color: #b23a2a;
  border: 1px solid rgba(178, 58, 42, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}

/* Booked card variant */
.card--booked {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.card--booked h3,
.card--booked p,
.card--booked .card__list li {
  opacity: 0.78;
}
.card--booked:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
/* Diagonal corner ribbon */
.card__ribbon {
  position: absolute;
  top: 22px;
  right: -52px;
  transform: rotate(35deg);
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 60px;
  box-shadow: 0 6px 16px rgba(192, 57, 43, 0.22);
  pointer-events: none;
  z-index: 2;
}
.card__formats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: -4px 0 14px;
  line-height: 1.4;
}
.card__footnote {
  font-size: 12.5px !important;
  color: var(--ink-soft) !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
  text-align: center;
}
.card__footnote a {
  color: var(--accent-2);
  font-weight: 600;
  border-bottom: 1px solid rgba(217, 119, 6, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.card__footnote a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Submenu flag */
.submenu__flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b23a2a !important;
  font-weight: 500;
}
.submenu__flag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.3vw, 32px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 14px;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}
.card p {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.card__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.card__list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.45;
}
.card__list li:last-child {
  border-bottom: 0;
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 17px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6.2L5 8.6l4.5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / 10px 10px no-repeat,
    var(--accent);
}
.card .btn {
  margin-top: auto;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  color: var(--cream);
  padding: clamp(70px, 8vw, 110px) 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 400px at 50% 0%,
      rgba(217, 119, 6, 0.16),
      transparent 60%
    );
  pointer-events: none;
}
.footer__inner {
  text-align: center;
  position: relative;
}
.footer__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.footer__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 auto 50px;
  max-width: 1000px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}
.footer__email {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  border-bottom: 1px solid rgba(251, 247, 239, 0.3);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer__email:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.footer__email-note {
  font-size: 12.5px;
  color: rgba(251, 247, 239, 0.5);
  letter-spacing: 0.04em;
}
.socials--footer {
  justify-content: center;
  margin-bottom: 60px;
}
.socials--footer a {
  width: 46px;
  height: 46px;
  background: rgba(251, 247, 239, 0.06);
  color: var(--cream);
}
.socials--footer a:hover {
  background: var(--accent);
  color: white;
}
.socials--footer svg {
  width: 19px;
  height: 19px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(251, 247, 239, 0.1);
  font-size: 13px;
  color: rgba(251, 247, 239, 0.55);
  letter-spacing: 0.02em;
}
.footer__brand {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--easing), transform 0.9s var(--easing);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   VIDEO — YouTube embeds (hero band + testimonial strip)
   User-initiated playback with accessible overlay controls.
   ================================================================ */
.media-video {
  --media-ratio: 16 / 9;
  position: relative;
  margin: 0;
  width: 100%;
}
.media-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--media-ratio);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0b0c;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing),
    border-color 0.35s ease;
}
.media-video__yt,
.media-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
}
.media-video__yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.media-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.5s ease;
}
.media-video.is-loaded .media-video__poster {
  opacity: 0;
  pointer-events: none;
}
.media-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(54px, 7vw, 68px);
  height: clamp(54px, 7vw, 68px);
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(217, 119, 6, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
  pointer-events: auto;
  z-index: 2;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease,
    box-shadow 0.2s ease;
}
.media-video__play:hover,
.media-video__play:focus-visible {
  background: var(--accent-2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.48);
  transform: scale(1.05);
}
.media-video__play:focus-visible,
.media-video__btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.media-video.is-loaded .media-video__play {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}
.media-video__play svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
}
/* Custom control bar — always available once a video has been loaded. */
.media-video__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.media-video.is-loaded .media-video__controls {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
}
.media-video:hover .media-video__frame,
.media-video:focus-within .media-video__frame {
  border-color: rgba(217, 119, 6, 0.5);
}
.media-video__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.media-video__btn:hover {
  background: rgba(217, 119, 6, 0.9);
}
.media-video__btn:active {
  transform: scale(0.92);
}
.media-video__btn[aria-pressed="true"] {
  background: rgba(217, 119, 6, 0.92);
}
.media-video__btn svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

/* Hero video band (sits on the page background, follows light/dark). */
.hero-video {
  padding-block: clamp(44px, 6vw, 86px);
}
.hero-video__inner {
  display: grid;
  gap: clamp(20px, 3vw, 38px);
  justify-items: center;
}
.hero-video__copy {
  max-width: 760px;
  text-align: center;
}
.hero-video__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  font-size: clamp(28px, 4.6vw, 58px);
  margin: 8px 0 0;
  color: var(--ink);
}
.media-video--wide {
  max-width: 1160px;
}

/* Testimonial video strip (inside the dark testimonials section). */
.video-strip {
  padding-top: clamp(46px, 7vw, 88px);
}
.video-strip__header {
  max-width: 720px;
  margin-bottom: clamp(22px, 3vw, 38px);
}
.video-strip__header .section__eyebrow {
  margin-bottom: 12px;
}
.video-strip__header h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--cream);
  margin: 0;
}
.video-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 30px);
  max-width: 920px;
  margin-inline: auto;
  justify-items: center;
}
.media-video--short {
  max-width: 320px;
  margin-inline: auto;
}
.media-video--short .media-video__frame {
  border-radius: 20px;
}
@media (max-width: 720px) {
  .video-strip__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 360px;
    margin-inline: auto;
  }
  .media-video__controls {
    gap: 12px;
    padding: 14px;
  }
  .media-video__btn {
    width: 46px;
    height: 46px;
  }
  .media-video__btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero__photo {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .hero__photo-frame {
    aspect-ratio: 4 / 5;
  }
  .hero__scroll {
    display: none;
  }
  .story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story__photo {
    position: relative;
    top: 0;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
    order: -1;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .services__grid .card:first-child {
    grid-column: 1 / -1;
  }
  .testimonial {
    flex: 0 0 calc((100% - 22px) / 2);
  }
  .kpi-block {
    min-height: auto;
    padding-block: clamp(40px, 6vh, 72px);
  }
  .kpi-block__head {
    margin-bottom: clamp(18px, 3vw, 28px);
  }
  .kpi-block__head h3 {
    font-size: clamp(24px, 3.4vw, 38px);
  }
  .proof-card,
  .proof-card--hero {
    flex: 0 0 clamp(280px, 38vw, 400px);
    width: clamp(280px, 38vw, 400px);
  }
  .proof-card--hero {
    flex-basis: clamp(320px, 42vw, 460px);
    width: clamp(320px, 42vw, 460px);
  }
  .proof-wall__grid {
    columns: 3 220px;
    column-gap: 18px;
  }
  .proof-wall__header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }
  .nav__inner {
    padding: 12px var(--gutter);
  }
  .nav__left {
    gap: 14px;
  }
  .brand {
    font-size: 20px;
  }
  .socials--nav {
    display: none;
  }
  /* Hide the inline desktop menu on mobile + tablet (we use the portaled drawer instead) */
  .nav__menu--desktop {
    display: none;
  }
  .nav__burger {
    display: inline-flex;
  }

  /* Backdrop overlay behind the drawer */
  .nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(14, 14, 14, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--easing), visibility 0.4s var(--easing);
  }
  .nav__backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile drawer */
  .nav__menu--mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 380px);
    background: var(--surface);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.5s var(--easing);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav__menu--mobile.is-open {
    transform: translateX(0);
  }

  /* Drawer header (brand + close X) */
  .nav__drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .nav__drawer-brand {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    color: var(--ink);
    display: inline-flex;
    align-items: baseline;
  }
  .nav__drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(20, 17, 13, 0.06);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.3s var(--easing);
  }
  .nav__drawer-close:hover {
    background: var(--ink);
    color: var(--cream);
    transform: rotate(90deg);
  }
  .nav__drawer-close svg {
    width: 18px;
    height: 18px;
    fill: none;
  }

  /* Drawer link list */
  .nav__drawer-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 22px 8px;
    gap: 2px;
  }
  .nav__drawer-list > li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav__drawer-list > li:last-child {
    border-bottom: 0;
  }
  .nav__drawer-list .nav__link {
    width: 100%;
    padding: 18px 6px;
    border-radius: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0.01em;
  }
  .nav__drawer-list .nav__link:hover,
  .nav__drawer-list .nav__link:focus-visible {
    background: transparent;
    color: var(--accent-2);
  }
  .nav__drawer-list .nav__link--btn {
    cursor: pointer;
  }
  .nav__drawer-list .chev {
    width: 14px;
    height: 14px;
    transition: transform 0.35s var(--easing);
  }

  /* Submenu in drawer (collapsible).
     NOTE: extra `.has-submenu` selector is required because the desktop
     `.has-submenu:focus-within .submenu` rule has specificity (0,3,0) and
     would otherwise win and apply `transform: translate(-50%, 0)`, shoving
     the submenu off the left edge of the drawer. */
  .nav__menu--mobile .has-submenu .submenu,
  .nav__menu--mobile .has-submenu:hover .submenu,
  .nav__menu--mobile .has-submenu:focus-within .submenu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    background: var(--bg-warm);
    border: 0;
    border-radius: 14px;
    margin: 4px 0 14px;
    padding: 6px;
    opacity: 1;
    visibility: visible;
    display: none;
    left: auto;
  }
  .nav__menu--mobile .has-submenu.is-open .submenu {
    display: flex;
  }
  .nav__menu--mobile .has-submenu.is-open .nav__link--btn .chev {
    transform: rotate(180deg);
  }
  .nav__menu--mobile .submenu a {
    padding: 12px 14px;
  }
  .nav__menu--mobile .submenu strong {
    font-size: 14.5px;
  }
  .nav__menu--mobile .submenu span {
    font-size: 12.5px;
  }

  /* Drawer footer (tagline + socials) */
  .nav__drawer-footer {
    padding: 22px 22px 28px;
    border-top: 1px solid var(--line);
    background: var(--bg-warm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .nav__drawer-tagline {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .socials--drawer {
    display: flex;
    gap: 6px;
  }
  .socials--drawer a {
    width: 40px;
    height: 40px;
    background: rgba(20, 17, 13, 0.06);
  }
  .socials--drawer a:hover {
    background: var(--ink);
    color: var(--cream);
  }

  /* Lock body scroll when drawer is open */
  body.no-scroll {
    overflow: hidden;
  }

  /* hero */
  .hero {
    padding: 28px 0 64px;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    width: 100%;
  }
  .hero__meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .hero__meta strong {
    font-size: 22px;
  }
  .hero__meta span {
    font-size: 11px;
  }

  /* story */
  .story {
    padding: 70px 0;
  }
  .story__lead {
    font-size: 19px !important;
  }
  .story__quote {
    font-size: 17px;
    padding: 16px 18px;
  }

  /* testimonials */
  .testimonials {
    padding: 70px 0 60px;
    overflow: visible;
  }
  .testimonial {
    flex: 0 0 100%;
  }
  .testimonials-parallax {
    padding: 56px 0 48px;
    background-attachment: scroll;
    overflow: visible;
  }
  .testimonials-parallax__groups {
    overflow: visible;
    min-width: 0;
  }
  .testimonials-parallax__intro {
    margin-bottom: 28px;
  }
  .testimonials-parallax__groups {
    gap: 0;
  }
  .kpi-block {
    min-height: auto;
    min-width: 0;
    padding-block: 28px 32px;
    opacity: 1;
    transform: none;
    overflow: visible;
  }
  .kpi-block__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 14px;
  }
  .kpi-block__head .kpi-block__rule {
    display: none;
  }
  .kpi-block__index {
    font-size: 12px;
  }
  .kpi-block__head h3 {
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.05;
    text-wrap: balance;
  }
  .kpi-block__track {
    gap: 12px;
    padding-block: 6px 18px;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
  }
  .proof-card,
  .proof-card--hero {
    flex: 0 0 clamp(268px, 84vw, 340px);
    width: clamp(268px, 84vw, 340px);
    height: auto;
    flex-shrink: 0;
    transform: none !important;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    border-radius: 18px;
  }
  .proof-card--hero {
    flex-basis: clamp(280px, 86vw, 360px);
    width: clamp(280px, 86vw, 360px);
  }
  .proof-card__media {
    width: 100%;
  }
  .proof-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    padding: 4px;
    object-fit: contain;
    object-position: center top;
  }
  .proof-card:active {
    transform: scale(0.985);
    transition-duration: 0.15s;
  }
  .proof-card:active img {
    transform: scale(1.04);
    transition-duration: 0.15s;
  }
  .proof-wall {
    padding-top: 36px;
  }
  .proof-wall__grid {
    columns: 1;
    column-gap: 12px;
  }
  .proof-card--wall {
    width: 100%;
    margin-bottom: 14px;
  }
  .testimonials-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 46px;
  }
  .testimonials-cta .btn {
    width: 100%;
  }
  .slider {
    grid-template-columns: 1fr;
  }
  .slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
  }
  .slider__btn--prev {
    left: 4px;
  }
  .slider__btn--next {
    right: 4px;
  }
  .slider__btn:hover {
    transform: translateY(-50%) scale(1.05);
  }

  /* services */
  .services {
    padding: 70px 0;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__grid .card:first-child {
    grid-column: auto;
  }
  .card {
    padding: 26px 22px;
  }

  /* footer */
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .lightbox__nav {
    width: 44px;
    height: 44px;
  }
  .lightbox__nav--prev {
    left: 10px;
  }
  .lightbox__nav--next {
    right: 10px;
  }
  .lightbox__close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 18px;
  }
  .hero__title {
    font-size: 50px;
  }
  .hero__meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .hero__meta strong {
    font-size: 18px;
  }
  .hero__meta span {
    font-size: 10.5px;
    letter-spacing: 0.04em;
  }
  .story__name {
    font-size: 48px;
  }
  .card {
    padding: 24px 20px;
  }
  .card h3 {
    font-size: 22px;
  }
  .services__title,
  .testimonials__title {
    font-size: 38px;
  }
  .proof-card,
  .proof-card--hero {
    flex: 0 0 clamp(252px, 88vw, 320px);
    flex-basis: clamp(252px, 88vw, 320px);
    width: clamp(252px, 88vw, 320px);
    height: auto;
  }
  .proof-card--hero {
    flex-basis: clamp(264px, 90vw, 336px);
    width: clamp(264px, 90vw, 336px);
  }
  .kpi-block {
    padding-block: 22px 28px;
  }
  .testimonials__sub {
    margin-bottom: 36px;
  }
  .footer__quote {
    font-size: clamp(22px, 6vw, 32px);
  }
  .hero__eyebrow {
    font-size: 11.5px;
    letter-spacing: 0.22em;
  }
  /* Burger stays a comfortable tap target */
  .nav__burger {
    width: 42px;
    height: 42px;
  }
}

/* Honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .kpi-block__track,
  .proof-card,
  .testimonials-parallax__grid,
  .testimonials-parallax__aurora {
    transform: none !important;
  }
}

/* ================================================================
   TYPEFORM POPUP SAFETY NET
   ----------------------------------------------------------------
   The only thing we override here is the popup container's
   positioning — just enough that, even if embed.js' own stylesheet
   never applies, the popup can't fall back to rendering as an inline
   block below the footer. Everything else (close button placement,
   iframe wrapper sizing, mobile breakpoints) is left to Typeform's
   own stylesheet so its built-in touch/click targets keep working.
   ================================================================ */
.tf-v1-popup,
.tf-v1-popup-wrapper {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  pointer-events: auto !important;
}

/* Our own close control — sits above Typeform's iframe when their
   built-in X stops responding (common when analytics are blocked). */
.tf-fallback-close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top, 14px));
  right: max(14px, env(safe-area-inset-right, 14px));
  z-index: 2147483647;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(14, 14, 14, 0.72);
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tf-fallback-close svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.tf-fallback-close:active {
  transform: scale(0.94);
}

/* ================================================================
   DARK MODE
   Activated via html[data-theme="dark"] (set by an early inline
   script + the theme toggle). Tokens flip first, then a handful of
   targeted overrides fix components that hard-code light values.
   ================================================================ */
html[data-theme='dark'] {
  --bg: #0d0d0f;
  --bg-warm: #17161b;
  --surface: #1a191f;
  --ink: #f3eee4;
  --ink-2: #cbc5ba;
  --ink-soft: #9b958a;
  --line: #2c2a31;
  --line-dark: #201e24;
  --accent: #e88b1a;
  --accent-2: #f0a44a;
  --accent-glow: rgba(232, 139, 26, 0.2);
  --cream: #fbf7ef;
  --on-dark: #fbf7ef;
  --on-dark-muted: rgba(251, 247, 239, 0.72);
  --overlay-dark: rgba(8, 8, 10, 0.88);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 40px 80px rgba(0, 0, 0, 0.6);
}

/* Smooth the cross-fade when switching themes */
html[data-theme] body {
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Nav */
html[data-theme='dark'] .nav {
  background: rgba(13, 13, 15, 0.82);
}
html[data-theme='dark'] .nav.is-scrolled {
  background: rgba(13, 13, 15, 0.95);
  border-bottom-color: var(--line);
}
html[data-theme='dark'] .nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hamburger + drawer chrome */
html[data-theme='dark'] .nav__burger {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}
html[data-theme='dark'] .nav__burger:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
html[data-theme='dark'] .nav__burger span {
  background: var(--ink);
}
html[data-theme='dark'] .nav__drawer-close {
  background: rgba(255, 255, 255, 0.08);
}
html[data-theme='dark'] .theme-toggle--drawer {
  background: rgba(255, 255, 255, 0.06);
}

/* Booked button */
html[data-theme='dark'] .btn--booked {
  --btn-bg: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
}
html[data-theme='dark'] .btn--booked:hover {
  --btn-bg: rgba(255, 255, 255, 0.08);
}

/* Keep the dark-on-light callout/card as an elevated dark surface
   instead of letting the flipped --ink turn them bright. */
html[data-theme='dark'] .story__mission {
  background: #211f27;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}
html[data-theme='dark'] .card--primary {
  background: #211f27;
  border-color: var(--line);
}
html[data-theme='dark'] .card.card--primary h3 {
  color: var(--ink);
}

/* Photo overlays — always light text on dark glass */
html[data-theme='dark'] .hero__badge,
html[data-theme='dark'] .story__caption {
  color: var(--on-dark);
  background: var(--overlay-dark);
}

/* Always-dark sections — lock light foregrounds */
html[data-theme='dark'] .testimonials,
html[data-theme='dark'] .footer {
  color: var(--on-dark);
}
html[data-theme='dark'] .testimonials__title,
html[data-theme='dark'] .testimonials__sub,
html[data-theme='dark'] .footer__quote,
html[data-theme='dark'] .footer__email,
html[data-theme='dark'] .footer__bottom,
html[data-theme='dark'] .footer__brand {
  color: var(--on-dark);
}
html[data-theme='dark'] .testimonials__sub {
  color: var(--on-dark-muted);
}
html[data-theme='dark'] .footer__bottom {
  color: var(--on-dark-muted);
}
html[data-theme='dark'] .footer__email {
  border-bottom-color: rgba(251, 247, 239, 0.35);
}
html[data-theme='dark'] .socials--footer a {
  color: var(--on-dark);
  background: rgba(251, 247, 239, 0.08);
  border: 1px solid rgba(251, 247, 239, 0.12);
}
html[data-theme='dark'] .slider__btn {
  color: var(--on-dark);
  background: rgba(251, 247, 239, 0.1);
  border-color: rgba(251, 247, 239, 0.18);
}

/* Elevated surfaces on dark page */
html[data-theme='dark'] .submenu {
  background: var(--surface);
  border-color: var(--line);
}
html[data-theme='dark'] .submenu a:hover {
  background: var(--bg-warm);
}
html[data-theme='dark'] .story__quote {
  background: var(--surface);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
html[data-theme='dark'] .card {
  background: var(--surface);
  border-color: var(--line);
}
html[data-theme='dark'] .card--booked {
  background: var(--surface);
}
html[data-theme='dark'] .card__formats {
  color: var(--accent-2);
}
html[data-theme='dark'] .card__footnote a {
  color: var(--accent-2);
}

/* Buttons & ghost outlines */
html[data-theme='dark'] .btn--ghost {
  --btn-fg: var(--ink);
  border-color: rgba(243, 238, 228, 0.55);
}
html[data-theme='dark'] .btn--ghost:hover {
  --btn-bg: var(--ink);
  --btn-fg: var(--bg);
}
html[data-theme='dark'] .btn:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

/* Mobile drawer */
html[data-theme='dark'] .nav__menu--mobile {
  background: var(--surface);
}
html[data-theme='dark'] .nav__drawer-header {
  background: var(--surface);
}
html[data-theme='dark'] .nav__drawer-footer {
  background: var(--bg-warm);
}
html[data-theme='dark'] .socials--drawer a {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero highlight pill */
html[data-theme='dark'] .hero__highlight {
  color: var(--accent-2);
  border-color: rgba(232, 139, 26, 0.4);
}
html[data-theme='dark'] .socials a:hover,
html[data-theme='dark'] .socials--drawer a:hover {
  background: var(--accent);
  color: #ffffff;
}
html[data-theme='dark'] .nav__drawer-close:hover {
  background: var(--accent);
  color: #ffffff;
}
html[data-theme='dark'] .theme-toggle {
  border-color: var(--line);
  color: var(--ink-2);
}
html[data-theme='dark'] .theme-toggle:hover {
  color: var(--ink);
  border-color: var(--accent);
}

/* Program page */
html[data-theme='dark'] .program-nav {
  background: rgba(13, 13, 15, 0.82);
  border-bottom-color: var(--line);
}
html[data-theme='dark'] .program-nav__links a:hover {
  color: var(--accent-2);
}
html[data-theme='dark'] .program-hero {
  background:
    radial-gradient(900px 560px at 78% 12%, rgba(232, 139, 26, 0.12), transparent 62%),
    var(--bg);
}
html[data-theme='dark'] .program-hero__video {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* ================================================================
   VISUAL ENHANCEMENTS
   Parallax, scroll effects, animated backgrounds, marquee, richer
   reveals + card spotlight. Self-contained: includes its own
   dark-mode and reduced-motion handling so it can't desync from the
   base styles above.
   ================================================================ */

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 120;
  pointer-events: none;
  background: transparent;
}
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent-2));
  box-shadow: 0 0 12px var(--accent-glow);
  will-change: transform;
}

/* ---------- Film-grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
html[data-theme='dark'] .grain {
  opacity: 0.06;
  mix-blend-mode: screen;
}

/* ---------- Hero animated background ---------- */
.hero__bg {
  overflow: hidden;
}
.hero__aurora,
.hero__orb,
.hero__grid {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform;
}
.hero__aurora {
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
}
.hero__aurora--1 {
  top: -12%;
  right: -6%;
  width: 46vw;
  height: 46vw;
  max-width: 640px;
  max-height: 640px;
  background: radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.5), transparent 65%);
  animation: auroraFloat 14s ease-in-out infinite;
}
.hero__aurora--2 {
  bottom: -16%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 106, 0.4), transparent 65%);
  animation: auroraFloat 18s ease-in-out infinite reverse;
}
.hero__orb {
  border-radius: 50%;
  border: 1px solid rgba(217, 119, 6, 0.28);
}
.hero__orb--1 {
  top: 18%;
  left: 8%;
  width: 14px;
  height: 14px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.1);
  animation: orbFloat 9s ease-in-out infinite;
}
.hero__orb--2 {
  bottom: 22%;
  right: 14%;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border: 0;
  animation: orbFloat 11s ease-in-out infinite reverse;
}
.hero__grid {
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, var(--par-y, 0px), 0);
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 10%, #000 25%, transparent 72%);
  mask-image: radial-gradient(120% 90% at 70% 10%, #000 25%, transparent 72%);
  background-image: linear-gradient(
      to right,
      rgba(20, 17, 13, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(20, 17, 13, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
}
html[data-theme='dark'] .hero__grid {
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
}
html[data-theme='dark'] .hero__aurora--1 {
  opacity: 0.5;
}
@keyframes auroraFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 26px, 0) scale(1.08);
  }
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -22px, 0);
  }
}

/* ---------- Hero floating glass chip ---------- */
.hero__photo {
  isolation: isolate;
}
.hero__photo-chip {
  position: absolute;
  top: 18px;
  right: -6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: rgba(251, 247, 239, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  z-index: 3;
  transform: translate3d(0, var(--par-y, 0px), 0);
  will-change: transform;
}
.hero__photo-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1faa5a;
  box-shadow: 0 0 0 4px rgba(31, 170, 90, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
html[data-theme='dark'] .hero__photo-chip {
  color: var(--ink);
  background: rgba(26, 25, 31, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ---------- Marquee band ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee__track {
  display: inline-flex;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__group {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.marquee__group span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 34px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 0.55em;
  color: var(--cream);
}
.marquee__sep {
  color: var(--accent) !important;
}
@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}

/* ================================================================
   PROGRAM PAGE
   ================================================================ */
.program-page {
  background: var(--bg);
  overflow-x: clip;
}
.program-nav {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--gutter);
  background: rgba(246, 241, 232, 0.9);
  border-bottom: 1px solid rgba(226, 216, 197, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.program-nav__theme {
  flex-shrink: 0;
}
.program-nav__left {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  min-width: 0;
}
.program-nav__left .socials--nav {
  display: flex;
}
@media (max-width: 720px) {
  .program-nav__left .socials--nav {
    display: none;
  }
}
.program-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}
.program-nav__links a:hover {
  color: var(--accent-2);
}
.program-nav__cta {
  padding: 12px 20px;
}
.program-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 10vw, 136px) 0 clamp(54px, 7vw, 90px);
  background:
    radial-gradient(900px 560px at 78% 12%, rgba(217, 119, 6, 0.18), transparent 62%),
    var(--bg);
}
.program-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  text-align: center;
}
.program-hero__title,
.program-section-head h2,
.program-checkout__copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.96;
}
.program-hero__title {
  font-size: clamp(52px, 10vw, 132px);
  color: var(--ink);
  margin: 0 auto 18px;
}
.program-hero__underline {
  display: inline;
  color: var(--ink);
  font-size: clamp(19px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  background: linear-gradient(transparent 62%, rgba(217, 119, 6, 0.34) 62%);
}
.program-hero__underline--sub {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(16px, 2.1vw, 22px);
  font-weight: 500;
  line-height: 1.65;
  background: none;
  color: var(--ink-2);
}
.program-hero__video {
  max-width: 880px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  border-radius: clamp(16px, 2vw, 22px);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}
.program-hero__lead {
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--ink-2);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}
.program-hero__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.program-hero__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.program-hero__stats span {
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}
/* Black band for program proof rail, matches landing page testimonials */
.program-proof-band {
  background-color: #0b0b0c;
  background-image:
    radial-gradient(900px 620px at 12% 16%, rgba(217, 119, 6, 0.18), transparent 62%),
    radial-gradient(760px 520px at 86% 44%, rgba(201, 168, 106, 0.09), transparent 64%);
  padding: clamp(28px, 5vw, 48px) 0 clamp(22px, 4vw, 36px);
  overflow-x: clip;
}
.program-proof-band .proof-rail {
  padding-bottom: 8px;
}
.program-proof-band .proof-rail__track {
  animation-duration: 65s;
}
.program-vsl,
.program-system,
.program-paths,
.program-checkout,
.program-faq {
  padding: clamp(70px, 9vw, 124px) 0;
}
.program-vsl--hero {
  padding-top: clamp(20px, 3vw, 40px);
}
.program-section-head {
  max-width: 860px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.program-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.program-section-head h2,
.program-checkout__copy h2 {
  color: var(--ink);
  font-size: clamp(34px, 5.8vw, 76px);
}
.program-section-head--light h2 {
  color: var(--cream);
}
.program-section-head--light .program-hero__underline {
  color: var(--cream);
}
.program-system__grid,
.program-paths__grid,
.program-faq__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.program-card,
.program-path,
.program-faq article,
.program-checkout__embed {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.program-card {
  padding: clamp(24px, 3vw, 34px);
}
.program-card span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
}
.program-card h3,
.program-path h2,
.program-faq h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.program-card h3 {
  font-size: clamp(24px, 3vw, 38px);
  margin: 12px 0;
}
.program-card p,
.program-path li,
.program-faq p,
.program-checkout__copy p,
.program-checkout__copy li {
  color: var(--ink-2);
  line-height: 1.6;
}
.program-paths__grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
.program-path {
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.program-path ul {
  flex: 1;
  margin: 0;
  list-style: none;
  padding: 0;
}
.program-path h2 {
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 20px;
}
.program-path li,
.program-checkout__copy li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
}
.program-path li::before,
.program-checkout__copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.program-results {
  position: relative;
}
.program-results .container {
  position: relative;
  z-index: 1;
}
.program-results .program-section-head h2 {
  margin-bottom: clamp(20px, 3.2vw, 36px);
}
.program-video-grid {
  max-width: 980px;
}
.program-checkout__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.program-checkout__copy p {
  font-size: 18px;
  line-height: 1.7;
  margin: 18px 0 22px;
}
.program-checkout__fine {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0;
}
.program-checkout__embed {
  background: #0b0b12;
  border-color: rgba(251, 247, 239, 0.12);
  padding: clamp(16px, 3vw, 28px);
  min-height: 560px;
  overflow: hidden;
}
#whop-embedded-checkout {
  min-height: 520px;
  border-radius: 14px;
  overflow: hidden;
}
.program-checkout__embed p {
  margin-top: 12px;
  text-align: center;
  color: rgba(251, 247, 239, 0.7);
  font-size: 13px;
}
.program-faq__grid {
  grid-template-columns: repeat(2, 1fr);
}
.program-faq article {
  padding: 24px;
}
.program-faq h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .program-nav {
    gap: 10px;
    padding: 12px var(--gutter);
  }
  .program-nav__links {
    display: none;
  }
  .program-nav__cta {
    padding: 10px 16px;
    font-size: 13px;
  }
  .program-hero {
    padding: 44px 0 36px;
  }
  .program-hero__inner {
    text-align: left;
  }
  .program-hero__title {
    font-size: clamp(38px, 11vw, 64px);
    margin-bottom: 14px;
  }
  .program-hero__underline {
    font-size: clamp(15px, 4.4vw, 20px);
    line-height: 1.35;
    background: linear-gradient(transparent 70%, rgba(217, 119, 6, 0.34) 70%);
  }
  .program-hero__underline--sub {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.6;
    background: none;
  }
  .program-hero__lead {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 18px;
  }
  .program-hero__ctas {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
    gap: 10px;
  }
  .program-hero__ctas .btn,
  .program-nav__cta {
    white-space: normal;
  }
  .program-hero__stats {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 22px;
  }
  .program-hero__stats span {
    padding: 8px 13px;
    font-size: 12px;
  }
  .program-vsl,
  .program-system,
  .program-paths,
  .program-checkout,
  .program-faq {
    padding: 48px 0;
  }
  .program-hero__video {
    margin-top: 24px;
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  }
  .program-section-head {
    margin-bottom: 22px;
  }
  .program-section-head h2,
  .program-checkout__copy h2 {
    font-size: clamp(28px, 8vw, 44px);
  }
  .program-system__grid,
  .program-paths__grid,
  .program-faq__grid,
  .program-checkout__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .program-card {
    padding: 22px;
  }
  .program-card h3 {
    font-size: 24px;
    margin: 8px 0;
  }
  .program-path {
    padding: 22px;
  }
  .program-path h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .program-path li,
  .program-checkout__copy li {
    padding: 9px 0 9px 24px;
    font-size: 14px;
    line-height: 1.45;
  }
  .program-path li::before,
  .program-checkout__copy li::before {
    top: 18px;
    width: 8px;
    height: 8px;
  }
  .program-faq article {
    padding: 18px;
  }
  .program-faq h3 {
    font-size: 20px;
  }
  .program-checkout__copy p {
    font-size: 15px;
    margin: 14px 0 18px;
  }
  .program-checkout__embed {
    min-height: 620px;
    padding: 14px;
  }
  #whop-embedded-checkout {
    min-height: 580px;
  }
}
html[data-theme='dark'] .marquee {
  background: #050506;
  border-color: var(--line);
}


/* ---------- Story watermark ---------- */
.story {
  overflow: hidden;
}
.story__watermark {
  position: absolute;
  top: clamp(20px, 5vw, 60px);
  left: 50%;
  transform: translate(-50%, var(--par-y, 0px));
  font-family: var(--font-display);
  font-size: clamp(140px, 32vw, 460px);
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: var(--ink);
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  will-change: transform;
}
.story .container {
  position: relative;
  z-index: 1;
}
html[data-theme='dark'] .story__watermark {
  opacity: 0.05;
}

/* ---------- Richer reveal system ---------- */
.reveal[data-reveal] {
  opacity: 0;
  transition: opacity 0.85s var(--easing), transform 0.85s var(--easing);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal[data-reveal='up'] {
  transform: translateY(36px);
}
.reveal[data-reveal='left'] {
  transform: translateX(-46px);
}
.reveal[data-reveal='right'] {
  transform: translateX(46px);
}
.reveal[data-reveal='scale'] {
  transform: scale(0.94);
}
.reveal[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Staggered children — the parent itself doesn't fade, its children do */
.reveal[data-reveal-stagger] {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}
[data-reveal-stagger].is-in > * {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].is-in > *:nth-child(1) {
  transition-delay: 0.04s;
}
[data-reveal-stagger].is-in > *:nth-child(2) {
  transition-delay: 0.1s;
}
[data-reveal-stagger].is-in > *:nth-child(3) {
  transition-delay: 0.16s;
}
[data-reveal-stagger].is-in > *:nth-child(4) {
  transition-delay: 0.22s;
}
[data-reveal-stagger].is-in > *:nth-child(5) {
  transition-delay: 0.28s;
}
[data-reveal-stagger].is-in > *:nth-child(6) {
  transition-delay: 0.34s;
}
[data-reveal-stagger].is-in > *:nth-child(7) {
  transition-delay: 0.4s;
}
[data-reveal-stagger].is-in > *:nth-child(8) {
  transition-delay: 0.46s;
}
[data-reveal-stagger].is-in > *:nth-child(n + 9) {
  transition-delay: 0.52s;
}

/* ---------- Card cursor spotlight ----------
   The glow sits on z-index:-1 inside the card's own stacking context
   (isolation:isolate), so it paints over the card background but UNDER
   the content — no need to re-layer every child, and the booked-card
   ribbon keeps its absolute positioning. */
[data-spotlight] .card {
  isolation: isolate;
}
[data-spotlight] .card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 0%),
    rgba(217, 119, 6, 0.16),
    transparent 60%
  );
  z-index: -1;
}
[data-spotlight] .card:hover::after {
  opacity: 1;
}

/* ---------- Reduced-motion: disable all the new motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress__bar {
    transform: scaleX(0) !important;
  }
  .hero__aurora,
  .hero__orb,
  .hero__photo-chip-dot,
  .marquee__track {
    animation: none !important;
  }
  .reveal[data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee__track {
    transform: none !important;
  }
}
