/* ─── Self-hosted Gambarino (covers all weights — no Georgia fallback) ── */
@font-face {
  font-family: 'Gambarino';
  src: url('assets/Gambarino-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── Smooth scroll ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ─── Hide body until JS overlay is ready (prevents flash) ──────── */
body:not(.js-loaded) { opacity: 0; }

/* ─── Page transition overlay (curtain wipe up) ─────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080F25;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}
.page-transition.is-hidden-above { transform: translateY(-100%); }
.page-transition.is-hidden-below { transform: translateY(100%); }
.page-transition.no-transition   { transition: none !important; }

/* ─── Booking modal ─────────────────────────────────────────────── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.booking-modal.is-open { opacity: 1; pointer-events: all; }
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 22, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.booking-modal__card {
  position: relative;
  z-index: 1;
  background: #0d1930;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 20px;
  width: 100%;
  max-width: 980px;
  height: clamp(400px, 56vh, 580px);
  display: flex;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}
.booking-modal.is-open .booking-modal__card { transform: translateY(0); }
.booking-modal__close {
  position: absolute;
  top: 0;
  left: calc(100% + 16px);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.booking-modal__close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.booking-modal__close svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.booking-modal__choices { display: flex; gap: 16px; width: 100%; height: 100%; }
.booking-choice {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.35s;
  cursor: pointer;
  z-index: 0;
}
.booking-choice::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: -1;
  border-radius: inherit;
}
.booking-choice:hover::before { opacity: 0.07; }
.booking-choice:hover { border-color: rgba(200,167,122,0.5); }
.booking-choice__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A77A;
  margin-bottom: 4px;
}
.booking-choice__icon svg {
  width: 48px;
  height: 48px;
}
.booking-choice__title {
  font-family: 'Gambarino', serif;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--gold);
  text-align: center;
  line-height: 1;
}
.booking-choice__sub {
  font-size: clamp(12px, 1.1vw, 14px);
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.5;
  max-width: 220px;
}
@media (max-width: 1024px) {
  .booking-modal__close { top: -48px; left: auto; right: 0; }
}

@media (max-width: 520px) {
  .booking-modal__card { flex-direction: column; height: auto; min-height: 320px; }
  .booking-modal__choices { flex-direction: column; }
  .booking-choice { padding: 24px 20px; }
}

/* ─── Lead capture modal ────────────────────────────────────────── */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lead-modal.is-open { opacity: 1; pointer-events: all; }
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 22, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lead-modal__card {
  position: relative;
  z-index: 1;
  background: #0d1930;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
  width: 100%;
  max-width: 460px;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}
.lead-modal.is-open .lead-modal__card { transform: translateY(0); }
.lead-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.lead-modal__close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.lead-modal__close svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }
.lead-modal__head { margin-bottom: 24px; }
.lead-modal__title {
  font-family: 'Gambarino', serif;
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  line-height: 1.05;
  margin-top: 14px;
}
.lead-modal__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-top: 8px;
}
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form__row { display: flex; gap: 14px; }
.lead-form__row .lead-field { flex: 1; }
.lead-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.lead-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}
.lead-field input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
}
.lead-field input::placeholder { color: rgba(255,255,255,0.35); }
.lead-field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.lead-form__submit { margin-top: 8px; width: 100%; text-align: center; justify-content: center; }
.lead-form__submit:disabled { opacity: 0.6; cursor: default; }
.lead-form__error {
  font-size: 13px;
  color: #ff9b9b;
  text-align: center;
}
@media (max-width: 420px) {
  .lead-form__row { flex-direction: column; }
}

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

:root {
  --bg-dark:    #080f25;
  --bg-light:   #f7fef6;
  --gold:       #c8a77a;
  --gold-10:    rgba(200,167,122,0.10);
  --gold-15:    rgba(200,167,122,0.15);
  --gold-24:    rgba(200,167,122,0.24);
  --white:      #ffffff;
  --white-75:   rgba(255,255,255,0.75);
  --white-40:   rgba(255,255,255,0.40);
  --white-20:   rgba(255,255,255,0.20);
  --white-10:   rgba(255,255,255,0.10);
  --dark-text:  #080f25;
  --dark-60:    rgba(23,28,23,0.60);
  --dark-40:    rgba(0,0,0,0.40);
  --dark-15:    rgba(8,15,37,0.15);

  --font-display:    'Gambarino', Georgia, serif;
  --font-body:       'Geist', 'Inter', sans-serif;
  --font-signature:  'Dancing Script', cursive;

  --radius-sm:  8px;
  --radius-md:  24px;
  --radius-lg:  32px;
  --radius-xl:  56px;
  --radius-pill: 99px;

  --max-content: 1295px;
  --section-gap: 160px;
  --inner-gap:   80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Utilities ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 64px);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  white-space: nowrap;
}
.badge span { font-weight: 700; }

.badge--dark  { background: var(--gold-15); color: var(--gold); }
.badge--light { background: var(--dark-15); color: var(--dark-text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 21px 64px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.03em;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--gold-outline {
  background: var(--gold-24);
  backdrop-filter: blur(48px);
  color: var(--gold);
}
.btn--gold-solid {
  background: var(--gold);
  color: var(--dark-text);
}
.btn--dark-outline {
  background: var(--dark-15);
  backdrop-filter: blur(48px);
  color: var(--dark-text);
}

/* ─── Navbar ────────────────────────────────────────────────────── */
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 40px);
}

.navbar__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.navbar__logo {
  display: block;
  height: clamp(44px, 4.5vw, 60px);
  width: auto;
}

.navbar .btn { padding: 18px 40px; font-size: 15px; }

/* Full navbar with nav links */
.navbar--full {
  gap: clamp(16px, 3vw, 32px);
}
/* JS-driven collapse: hide links+CTA, show hamburger */
.navbar--full .nav-hamburger           { display: none; }
.navbar--full.navbar--collapsed .navbar__links,
.navbar--full.navbar--collapsed > .btn { display: none; }
.navbar--full.navbar--collapsed .nav-hamburger { display: flex; }

/* ─── Transparent navbar with progressive blur ─── */
.navbar--transparent {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
}
.navbar--transparent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(8,15,37,0.45) 0%, rgba(8,15,37,0.05) 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 25%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 25%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

/* ─── Navbar light mode (over white section) ─── */
.navbar__logo,
.navbar__links a,
.navbar .btn--gold-outline,
.nav-hamburger span {
  transition: color 0.3s, filter 0.3s, border-color 0.3s, background 0.3s;
}
.navbar--light .navbar__logo {
  filter: hue-rotate(191deg) saturate(2.5) brightness(0.14);
}
.navbar--light .navbar__links a { color: #080F25; }
.navbar--light .navbar__links a:hover { color: rgba(8,15,37,0.5); }
.navbar--light .navbar__links a.is-active { color: #080F25; }
.navbar--light .nav-divider { background: rgba(8,15,37,0.15) !important; }
.navbar--light .btn--gold-outline { background: rgba(8,15,37,0.24); color: #080F25; }
.navbar--light .btn--gold-outline:hover { background: rgba(8,15,37,0.38); }
.navbar--light.navbar--transparent::before {
  background: linear-gradient(to bottom, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.1) 60%, transparent 100%);
}
.navbar--light .nav-hamburger span { background: #080F25; }

/* ─── Hamburger ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile drawer ─── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,15,37,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 150;
  flex-direction: column;
  padding: 100px 16px 48px;
  gap: 8px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.25s;
}
.nav-drawer.is-open { opacity: 1; }
.nav-drawer a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--white-75);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--white); }
.nav-drawer .btn {
  margin-top: 16px;
  border-bottom: none;
  padding-block: 20px;
  font-size: 17px;
  font-weight: 700;
}
.nav-drawer__logo {
  position: absolute;
  top: 0; left: 16px;
  height: 95px;
  display: flex;
  align-items: center;
}
.nav-drawer__logo img { height: 55px; }
.nav-drawer__close {
  position: absolute;
  top: 0; right: 16px;
  height: 95px; width: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}
.nav-drawer__close:hover { opacity: 1; }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .navbar--transparent::before {
    height: 100%;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: transparent;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .navbar--transparent { border-bottom: 1px solid rgba(255,255,255,0.2); }
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  flex-wrap: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.navbar__links a {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  color: var(--white-75);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.navbar__links a.is-active::after { transform: translateX(-50%) scaleX(1); }
.navbar__links a:hover { color: var(--white); }
.navbar__links .nav-divider {
  width: 1px;
  height: 16px;
  background: var(--white-20);
  flex-shrink: 0;
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  text-align: center;
  max-width: 1400px;
  padding-inline: clamp(16px, 4vw, 0px);
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__stars {
  position: relative;
  height: 24px;
  width: 103px;
  flex-shrink: 0;
}
.hero__stars img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: contain; }

.hero__rating-text {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  color: var(--white-75);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.85;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  text-wrap: pretty;
}
.hero__heading em {
  color: var(--gold);
  font-style: italic;
  font-synthesis: style;
}

.hero__sub {
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--gold);
  text-transform: uppercase;
  max-width: 760px;
  line-height: 1.4;
}

/* Video block */
.hero__media {
  width: 100%;
  max-width: clamp(320px, 90vw, 1080px);
  padding-inline: clamp(16px, 4vw, 0px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.hero__video-wrap {
  position: relative;
  width: 100%;
  border-radius: clamp(16px, 3vw, 32px);
  box-shadow: 0 42px 210px rgba(0,0,0,0.6);
  background: #0d1730 url('assets/vsl-bckgnd.jpg') center/cover no-repeat;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.hero__video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero__video-placeholder span {
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 600;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(80px, 12vw, 160px);
  height: clamp(80px, 12vw, 160px);
  pointer-events: none;
}
.hero__play img { width: 100%; height: 100%; object-fit: contain; transform: rotate(90deg); }

/* Hero with bottom-right CTA (page2) */
.hero__cta-corner {
  position: absolute;
  bottom: clamp(20px, 4vw, 40px);
  right: clamp(20px, 4vw, 40px);
}

/* ─── Marquee ───────────────────────────────────────────────────── */
.marquee-section {
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.marquee-label {
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 400;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
}

.marquee-track-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.marquee-track-outer::before,
.marquee-track-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 6vw, 80px);
  z-index: 2;
}
.marquee-track-outer::before { left: 0;  background: linear-gradient(to right, var(--bg-dark), transparent); }
.marquee-track-outer::after  { right: 0; background: linear-gradient(to left,  var(--bg-dark), transparent); }

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 40s linear infinite;
  opacity: 0.8;
}
.marquee-set {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  padding-right: clamp(40px, 5vw, 72px);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-12.5%); }
}

.marquee-set img {
  zoom: 0.09;
  flex-shrink: 0;
}

/* ─── Section heading shared ────────────────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-synthesis: none;
  line-height: 0.87;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.section-title--dark  { color: var(--white); }
.section-title--light { color: var(--dark-text); text-shadow: none; }

.h2-80 { font-size: clamp(36px, 5.5vw, 80px); }

/* ─── Content Section (Avant vs Après) ─────────────────────────── */
.content-section {
  padding-block: clamp(80px, 9vw, 160px);
}

.content-section .section-header { max-width: 900px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 80px); }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
}
@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .plans-vs {
    text-align: center;
    font-size: 24px;
    transform: rotate(90deg);
    margin: 8px 0;
  }
}

.plan-card {
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 48px) clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.plan-card--muted { background: var(--gold-10); }
.plan-card--featured {
  background: rgba(200,167,122,0.05);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 120px rgba(200,167,122,0.35);
}

.plan-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.plan-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  line-height: 0.87;
  text-shadow: 0 4px 44px rgba(0,0,0,0.65);
}

.plan-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  width: 100%;
  align-items: start;
}
@media (max-width: 600px) {
  .plan-card__features { grid-template-columns: 1fr; }
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.plan-feature__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.plan-feature__text {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
}

.plans-vs {
  flex-shrink: 0;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  line-height: 1;
}

/* ─── Divider line ──────────────────────────────────────────────── */
.section-divider {
  width: 100%;
  max-width: clamp(600px, 80vw, 1400px);
  margin-inline: auto;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-block: 0;
}

/* ─── Testimonials ──────────────────────────────────────────────── */
.testimonials-section { padding-block: clamp(80px, 9vw, 160px); }
.testimonials-section .container { max-width: 1600px; }
.testimonials-section .section-header { max-width: 900px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 80px); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card__bg img { object-position: center 20%; }
}

.testi-card {
  position: relative;
  border: 1px solid var(--white-20);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: clamp(320px, 30vw, 462px);
  overflow: hidden;
}

.testi-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testi-card__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,15,15,0) 27%, rgba(15,15,15,0.9) 85%);
}

.testi-card__quote-icon {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.testi-card__quote-icon img { width: 100%; height: 100%; object-fit: contain; }

.testi-card__text {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--gold);
  text-align: center;
  line-height: 1.3;
}

.testi-card__name {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: 10px;
}

.testimonials-section .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 80px);
}

/* ─── Booking / Calendar ────────────────────────────────────────── */
.booking-section { padding-top: clamp(40px, 4vw, 64px); padding-bottom: clamp(80px, 9vw, 160px); }
.booking-section .section-header { max-width: 900px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 80px); }

.calendar-embed {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  aspect-ratio: 1280/702;
  border-radius: var(--radius-sm);
  background: #0d1730;
  border: 1px solid var(--white-10);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Transparent overlay that gates the calendar — click opens the lead form */
.calendar-overlay {
  position: absolute;
  inset: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: block;
}
.calendar-embed__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--white-40);
  text-align: center;
  padding: 24px;
}
.calendar-embed__placeholder svg {
  width: 48px; height: 48px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.calendar-embed__placeholder span {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.calendar-embed__placeholder small {
  font-size: 13px;
  opacity: 0.6;
}

/* ─── Light section ─────────────────────────────────────────────── */
.light-section {
  background: var(--bg-light);
  border-radius: clamp(24px, 4vw, 60px);
  margin-bottom: clamp(64px, 8vw, 120px);
  padding-block: clamp(80px, 10vw, 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(80px, 12vw, 240px);
  color: var(--dark-text);
  overflow: hidden;
}

/* ─── Founder ───────────────────────────────────────────────────── */
.founder-section { width: 100%; max-width: var(--max-content); padding-inline: clamp(24px, 5vw, 64px); }
.founder-section .section-header { max-width: 1000px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 64px); }

.founder-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
@media (max-width: 900px) {
  .founder-layout { grid-template-columns: 1fr; }
}

.founder-photo {
  flex-shrink: 0;
  width: clamp(220px, 35vw, 549px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 120px rgba(0,0,0,0.15);
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
@media (max-width: 900px) {
  .founder-photo { width: 80%; max-width: 100%; margin-inline: auto; height: auto; aspect-ratio: 4/3; }
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
  padding-block: clamp(24px, 5vw, 64px);
}

.founder-bio {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-60);
  line-height: 1.6;
}

.founder-signature {
  font-family: var(--font-signature);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 40px);
  color: var(--dark-text);
  line-height: 1.1;
}

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq-section { width: 100%; max-width: var(--max-content); padding-inline: clamp(24px, 5vw, 64px); }
.faq-section .section-header { max-width: 1000px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 80px); }

.faq-list { width: 100%; }

.faq-item {
  border-top: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }

.faq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 clamp(24px, 5vw, 64px);
  padding: clamp(20px, 3vw, 28px) 0;
  align-items: start;
  user-select: none;
}
.faq-question__text  { grid-column: 1; grid-row: 1 / 3; }
.faq-chevron         { display: none; pointer-events: none; }
.faq-side            { grid-column: 2; grid-row: 1; padding-top: 0; }

@media (max-width: 640px) {
  .faq-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 12px;
  }
  .faq-question__text { grid-column: 1; grid-row: 1; align-self: start; }
  .faq-chevron        { display: flex; grid-column: 2; grid-row: 1; align-self: start; transition: transform 0.22s ease; }
  .faq-item.is-open .faq-chevron { transform: rotate(180deg); }
  .faq-side           { grid-column: 1 / -1; grid-row: 2; padding-top: 16px; }
}

.faq-question__text {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 600;
  color: var(--dark-text);
  text-transform: uppercase;
  line-height: 1.5;
}

.faq-side {
  min-height: 28px;
}

.faq-chevron {
  display: none;
  align-items: center;
}
.faq-chevron svg {
  width: 20px; height: 20px;
  stroke: var(--dark-text);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-text {
  overflow: hidden;
  min-height: 0;
  font-size: clamp(14px, 1.3vw, 15px);
  font-weight: 400;
  color: var(--dark-40);
  line-height: 1.7;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
    padding-bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer-text {
  opacity: 1;
  transform: none;
  padding-bottom: clamp(20px, 3vw, 28px);
}

.faq-section .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 80px);
}

/* ─── Footer ────────────────────────────────────────────────────── */
footer {
  width: 100%;
  max-width: 3840px;
  margin-inline: auto;
  padding: clamp(80px, 10vw, 120px) 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.footer-disclaimer {
  max-width: clamp(300px, 70vw, 896px);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 400;
  color: var(--white-40);
  text-align: center;
  line-height: 1.6;
}

.footer-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 400;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.footer-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.footer-wordmark {
  width: 100%;
}
.footer-wordmark img { width: 100%; height: auto; }

/* ─── Sections spacing ──────────────────────────────────────────── */
section.no-pad { padding: 0; }

/* ─── What we do (Que faisons-nous?) ────────────────────────────── */
.whatwedo-section {
  padding-block: clamp(80px, 9vw, 160px);
}
.whatwedo-section .section-header {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.whatwedo-video-wrap {
  position: relative;
  width: 100%;
  max-width: clamp(320px, 90vw, 1094px);
  margin-inline: auto;
  border-radius: clamp(16px, 3vw, 32px);
  box-shadow: 0 42px 210px rgba(0,0,0,0.6);
  background: #0d1730;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.whatwedo-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 64px);
}

/* ─── Services ──────────────────────────────────────────────────── */
.services-section {
  padding-block: clamp(80px, 9vw, 160px);
}
.services-section .section-header {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* Tab switcher */
.services-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.services-tab {
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.services-tab--active {
  background: var(--white);
  color: var(--dark-text);
}
.services-tab--inactive {
  background: transparent;
  color: var(--white-75);
  border: 1px solid var(--white-20);
}
.services-tab--inactive:hover {
  background: var(--white-10);
}

/* Services grid: 3 cards left + photo right */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: stretch;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

.services-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: opacity 0.2s;
}
.service-card--featured {
  border: 1px solid var(--gold);
  background: rgba(255,255,255,0.05);
}
.service-card--muted {
  border: 1px solid var(--white-10);
  background: transparent;
  opacity: 0.5;
}
.service-card:hover { opacity: 1; }

.service-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.service-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--white);
  line-height: 0.9;
}
.service-card__desc {
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--white-75);
  line-height: 1.6;
}

.services-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}
.services-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Responsive misc ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .founder-signature { font-size: clamp(28px, 4vw, 38px); }
}

@media (max-width: 480px) {
  .btn { padding: 16px 32px; font-size: 14px; }
  .hero__heading { font-size: clamp(38px, 10vw, 62px); }
  .h2-80 { font-size: clamp(36px, 10vw, 56px); }
  .section-title { line-height: 0.97; }
  .section-title br, .hero__heading br { display: none; }
  .founder-signature { font-size: clamp(32px, 7vw, 40px); }
}


@media (max-width: 768px) {
  .navbar:not(.navbar--full) {
    justify-content: center;
  }
  .navbar:not(.navbar--full) .btn { display: none; }
  .navbar__logo { height: 55px; }
  .navbar:not(.navbar--full) .navbar__links { display: none; }
  .hero__video-wrap {
    width: calc(100vw - 32px);
    max-width: none;
  }
  .hero.no-pad {
    padding-top: clamp(48px, 10vw, 80px);
  }
  .marquee-set img { zoom: 0.07; }
  .marquee-track { animation-duration: 20s; }
  .marquee-label { font-size: 16px; }
  .footer-links { justify-content: center; }
  .footer-meta { flex-direction: column; align-items: center; }
}
