/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --bg: #080808;
  --panel: #111111;
  --text: #f4f2ea;
  --muted: #b8b6ae;
  --accent: #f3bc1b;
  --accent-soft: rgba(243, 188, 27, 0.15);
  --accent-glow: rgba(243, 188, 27, 0.25);
  --line: rgba(255, 255, 255, 0.1);
  --danger: #ff6b6b;
  --ok: #6ee7a0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --container: min(1160px, 92vw);
  --header-h: 110px;
  --section-space: clamp(3rem, 6vw, 5.2rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.6;
}

::selection {
  background: var(--accent);
  color: #0a0900;
  -webkit-text-fill-color: #0a0900;
  text-shadow: none;
}

::-moz-selection {
  background: var(--accent);
  color: #0a0900;
  text-shadow: none;
}

/* Grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../assets/grain.svg");
  opacity: 0.22;
  pointer-events: none;
  z-index: 9999;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
summary {
  margin: 0 0 0.75rem;
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.0;
  color: #fff;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
}

strong {
  color: var(--text);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

/* ============================================================
   SECTION TAG
   ============================================================ */
.section-tag {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid rgba(243, 188, 27, 0.3);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1200px;
  z-index: 100;
  height: clamp(75px, 8vw, 90px);
  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid transparent;
  border-radius: 99px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.site-header.scrolled {
  background: rgba(6, 6, 6, 0.85);
  border-color: transparent;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  top: 1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.5rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.brand img {
  height: 62px;
  width: auto;
  max-width: min(240px, 48vw);
  display: block;
}

.brand:hover {
  opacity: 0.8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(240, 238, 232, 0.82);
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
  z-index: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  transform: scale(1.08);
  /* Zoom effect on hover */
}

/* Remove the old yellow background scale effect as we are replacing it with text zoom */
.site-nav a::before {
  display: none;
}

.site-nav .nav-cta {
  min-height: unset;
  height: 44px;
  padding: 0 1.2rem;
  font-size: 0.85rem;
  color: #0e0c08;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #0e0c08;
  transform: scale(1.04);
  box-shadow: none;
  background: #ffd24e;
}

.site-nav .nav-cta::before,
.site-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  /* Changed padding to allow absolute spans to center */
  position: relative;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  left: 50%;
  margin-left: -12px;
  background: #f8f7f0;
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.25s ease,
    background-color 0.25s ease;
  transform-origin: center;
}

/* initial positions */
.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

/* open positions (cross) */
.body.menu-open .menu-toggle span:nth-child(1),
.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--accent);
}

.body.menu-open .menu-toggle span:nth-child(2),
.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scale(0.2);
}

.body.menu-open .menu-toggle span:nth-child(3),
.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--accent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  min-height: 50px;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.22s, border-color 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

/* Primary */
.btn-primary {
  background: var(--accent);
  color: #0e0c08;
  border-color: rgba(255, 215, 80, 0.55);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  left: 160%;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffd24e;
  box-shadow: 0 10px 32px rgba(243, 188, 27, 0.45);
}

/* Pulse ring on hero CTA */
.hero-actions .btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: ctaPulse 3s 2.5s ease-out infinite;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }

  70% {
    transform: scale(1.22);
    opacity: 0;
  }

  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

/* Ghost */
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-ghost:hover,
.hero-actions .btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 10, 0.58);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-actions .btn-ghost {
    background: rgba(20, 20, 20, 0.78);
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #050505;
  padding: 0.5rem 0.9rem;
  border-radius: 0 0 8px 8px;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Cinematic Light Leaks background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Dynamic Light Leaks */
.hero-grid-bg::after {
  content: "";
  position: absolute;
  width: 150vw;
  height: 150vh;
  top: -25vh;
  left: -25vw;
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(243, 188, 27, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(243, 188, 27, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  animation: lightLeaksSweep 18s ease-in-out infinite alternate;
}

@keyframes lightLeaksSweep {
  0% {
    transform: translate(-3%, -5%) scale(1);
  }

  50% {
    transform: translate(5%, 8%) scale(1.1);
  }

  100% {
    transform: translate(-2%, 4%) scale(1.05);
  }
}

/* Coach photo */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--bg);
  contain: paint;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(8, 8, 8, 0.85) 0%,
      rgba(8, 8, 8, 0.55) 35%,
      transparent 65%,
      transparent 100%);
  z-index: 1;
}

.hero-photo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(8, 8, 8, 1) 0%, transparent 100%);
  z-index: 1;
}

.hero-photo img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center 30%;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: auto;
}

@media (pointer: fine) {
  html:not(.perf-lite) .hero-photo img {
    will-change: transform;
  }
}

/* Spotlight */
.hero-spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 4% -4%, rgba(243, 188, 27, 0.12), transparent 65%),
    radial-gradient(ellipse 40% 40% at 96% 8%, rgba(255, 255, 255, 0.03), transparent 58%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + clamp(2.5rem, 5vw, 5rem)) clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: min(540px, 48vw);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  margin-bottom: 0;
}

.hero-copy .htl {
  background: linear-gradient(to bottom right, #ffffff, #a8a8a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Accent text outline */
.text-outline {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
  display: inline-block;
}

/* Eyebrow with pulse dot */
.eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.eyebrow-pulse {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(243, 188, 27, 0.7);
  animation: pulseGlow 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

.eyebrow {
  font-size: 0.74rem;
  color: #d9c67a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0;
}

.hero-copy h1 .accent {
  color: var(--accent);
}

/* Brush SVG */
.brush-wrap {
  margin: 0.15rem 0 1rem;
}

.brush-svg {
  width: min(460px, 85%);
  display: block;
  filter: drop-shadow(0 0 10px rgba(243, 188, 27, 0.28));
}

.brush-svg .b1 {
  animation: brushGlow 6s 2s ease-in-out infinite;
}


.brush-svg .b2 {
  stroke-dasharray: 512;
  stroke-dashoffset: 512;
  animation: brushDraw 0.95s 0.65s cubic-bezier(0.3, 0, 0.2, 1) forwards;
}

@keyframes brushReveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes brushDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes brushGlow {

  0%,
  100% {
    opacity: 0.85;
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(243, 188, 27, 0.65));
  }
}

.hero-text {
  max-width: 52ch;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Hero stats counters */
.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.5rem 1rem;
  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  gap: 0;
}

.hstat {
  flex: 1;
  text-align: center;
}

.hstat-divider {
  width: 1px;
  height: 2.8rem;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.hstat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.05em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hstat-suffix {
  font-size: 1.4rem;
}

.hstat p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-hint span {
  display: block;
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  position: relative;
}

.scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  60% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 2;
  background: var(--accent);
  padding: 0.78rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  animation: tickerScroll 32s linear infinite;
}

.ticker.is-paused .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  color: #0a0900;
  white-space: nowrap;
}

.ticker-track .sep {
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.68rem;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

/* ============================================================
   HERO ENTRANCE ANIMATIONS
   ============================================================ */
.hero-a {
  opacity: 0;
  transform: translateY(28px);
  animation: heroSlideUp 0.7s calc(var(--d, 0) * 0.15s + 0.1s) cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.65s ease;
}

.reveal.reveal-left {
  transform: translateX(-32px);
}

.reveal.reveal-right {
  transform: translateX(32px);
}

.reveal.delay-1 {
  transition-delay: 0.12s;
}

.reveal.delay-2 {
  transition-delay: 0.24s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

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

.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* Gold offset frame — on col pour éviter les conflits de stacking context */
.about-photo-col {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-photo-col::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border: 2px solid rgba(243, 188, 27, 0.38);
  border-radius: var(--radius);
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
}

/* Hover effect: Graphic offset */
.about-photo-col:hover {
  transform: translate(-6px, -6px);
}

.about-photo-col:hover::before {
  transform: translate(12px, 12px);
  border-color: var(--accent);
}

.about-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}

.badge-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.badge-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(243, 188, 27, 0.06));
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: default;
}

.badge-grid span:hover {
  border-color: rgba(243, 188, 27, 0.42);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(243, 188, 27, 0.12));
  transform: translateY(-3px);
}

/* ============================================================
   PROGRAMMES
   ============================================================ */
.programmes {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(243, 188, 27, 0.06), transparent 70%);
}

.section-head {
  max-width: 68ch;
  margin-bottom: clamp(1.45rem, 2.8vw, 1.95rem);
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.prog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.88);
  padding: 2rem 1.7rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, border-color 0.24s ease;
  overflow: hidden;
}

/* Featured */
.prog-featured {
  border-color: rgba(243, 188, 27, 0.55);
  background: rgba(24, 24, 24, 0.85); /* Slightly lighter flat bg for featured */
  transform: scale(1.015);
  z-index: 1;
}

/* Featured shine removed */
.prog-featured::before {
  display: none;
}

.prog-popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(243, 188, 27, 0.5);
  background: linear-gradient(180deg, rgba(243, 188, 27, 0.2), rgba(243, 188, 27, 0.08));
  color: #f6dea0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
}

.prog-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(243, 188, 27, 0.22);
}

.prog-tier {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.prog-card h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.prog-desc {
  font-size: 0.86rem;
  color: #999;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.prog-price {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.prog-amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 4vw, 4rem);
  color: #fff;
  line-height: 1;
}

.prog-featured .prog-amount {
  color: var(--accent);
}

.prog-price-detail {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.35rem;
  gap: 0.05rem;
}

.prog-currency {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ccc;
}

.prog-period {
  font-size: 0.74rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prog-features {
  flex: 1;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.7rem;
}

.prog-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.87rem;
  color: #ccc9bf;
  line-height: 1.4;
}

.prog-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.prog-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.prog-note {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: #555;
}

@media (hover: hover) and (pointer: fine) {
  .prog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 188, 27, 0.5);
  }

  .prog-featured:hover {
    transform: scale(1.015) translateY(-6px);
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(90deg,
      rgba(243, 188, 27, 0.1) 0%,
      rgba(243, 188, 27, 0.06) 50%,
      rgba(243, 188, 27, 0.1) 100%);
  border-top: 1px solid rgba(243, 188, 27, 0.22);
  border-bottom: 1px solid rgba(243, 188, 27, 0.22);
  padding: clamp(2rem, 4.1vw, 3.2rem) 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner-inner > div {
  max-width: 38ch;
}

.cta-banner-inner h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  margin: 0;
}

.cta-banner-inner p {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
}

/* ============================================================
   SERVICES / CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  --svc-rgb: 243, 188, 27;
  border: 1px solid rgba(var(--svc-rgb), 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(0, 0, 0, 0.24));
  padding: 1.35rem 1.25rem 1.2rem;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-areas:
    "icon title"
    "copy copy";
  gap: 0.25rem 0.9rem;
  align-items: center;
}

.service-card:nth-child(2) {
  --svc-rgb: 222, 200, 136;
}

.service-card:nth-child(3) {
  --svc-rgb: 210, 188, 128;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--svc-rgb), 0.82), rgba(var(--svc-rgb), 0));
  opacity: 0.55;
}

.service-card::after {
  position: absolute;
  right: 0.85rem;
  top: 0.42rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.09em;
  color: rgba(var(--svc-rgb), 0.24);
  pointer-events: none;
}

.service-card:nth-child(1)::after {
  content: '01';
}

.service-card:nth-child(2)::after {
  content: '02';
}

.service-card:nth-child(3)::after {
  content: '03';
}

.service-card h3 {
  grid-area: title;
  margin: 0;
  font-size: clamp(1.28rem, 2vw, 1.75rem);
}

.service-card p {
  grid-area: copy;
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #cbc7bb;
  line-height: 1.55;
  max-width: 42ch;
}

.icon-wrap {
  grid-area: icon;
  width: 56px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(155deg, rgba(var(--svc-rgb), 0.2), rgba(var(--svc-rgb), 0.06));
  border: 1px solid rgba(var(--svc-rgb), 0.32);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--svc-rgb), 0.5);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.28));
  }

  .service-card:hover .icon-wrap {
    transform: translateY(-1px);
    border-color: rgba(var(--svc-rgb), 0.5);
    background: linear-gradient(155deg, rgba(var(--svc-rgb), 0.3), rgba(var(--svc-rgb), 0.12));
  }

  .service-card:hover .svc-icon {
    color: #ffe19e;
    transform: translateY(-0.5px);
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.3));
  box-shadow: var(--shadow);
  position: relative;
  transition: border-color 0.28s, transform 0.28s;
}

.testimonial:hover {
  border-color: rgba(243, 188, 27, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.testimonial blockquote {
  margin: 0 0 1.1rem;
  color: #f0ede3;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.65;
}

.testi-name {
  display: block;
  font-weight: 800;
  color: #f0ece0;
}

.testi-loc {
  display: block;
  font-size: 0.82rem;
  color: #777;
  margin-top: 0.15rem;
}

.testi-role {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.16rem 0.55rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4d0c4;
}

/* Before/After */
.before-after {
  margin-top: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.9);
  text-align: center;
}

.before-after-placeholder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.before-after-placeholder span {
  min-height: 140px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(8, 8, 8, 0.4);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: #c9c4b6;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* ============================================================
   ZONE
   ============================================================ */
.split-grid {
  display: grid;
  gap: 2rem 3rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.area ul {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.area li {
  position: relative;
  padding-left: 1.15rem;
  color: #f0ede3;
  font-weight: 500;
}

.area li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(243, 188, 27, 0.6);
}

.map-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.3));
}

.map-wrap img,
.map-wrap .zone-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 6px);
}

.zone-map .sea-motion {
  pointer-events: none;
}

.zone-map .sea-sheen {
  opacity: 0.16;
  transform-box: fill-box;
  transform-origin: center;
  animation: seaSheenDrift 15s linear infinite;
}

.zone-map .sea-sheen.delay {
  opacity: 0.1;
  animation-duration: 20s;
  animation-delay: -8s;
}

.zone-map .sea-current {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 9 11;
  animation: seaCurrentSlide 13s linear infinite;
}

.zone-map .sea-current.c2 {
  animation-duration: 16s;
  animation-delay: -3.2s;
}

.zone-map .sea-current.c3 {
  animation-duration: 18s;
  animation-delay: -6.5s;
}

.zone-map .sea-ripple {
  transform-box: fill-box;
  transform-origin: center;
  animation: seaRippleShift 7s ease-in-out infinite;
}

.zone-map .sea-ripple.r2 {
  animation-delay: -2.1s;
}

.zone-map .sea-ripple.r3 {
  animation-delay: -3.8s;
}

.zone-map .sea-shore-main {
  animation: shoreBreath 8s ease-in-out infinite;
}

.zone-map .sea-shore-glow {
  animation: shoreBreath 8s ease-in-out infinite reverse;
}

.zone-map.is-paused .sea-sheen,
.zone-map.is-paused .sea-current,
.zone-map.is-paused .sea-ripple,
.zone-map.is-paused .sea-shore-main,
.zone-map.is-paused .sea-shore-glow {
  animation-play-state: paused;
}

@keyframes seaSheenDrift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(620px);
  }
}

@keyframes seaCurrentSlide {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -220;
  }
}

@keyframes seaRippleShift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateX(4px) translateY(-1px);
    opacity: 0.7;
  }
}

@keyframes shoreBreath {
  0%,
  100% {
    opacity: 0.95;
  }

  50% {
    opacity: 0.65;
  }
}

/* ============================================================
   PERF LITE MODE
   ============================================================ */
.perf-lite .hero-grid-bg::after {
  animation-duration: 26s;
}

.perf-lite .ticker-track {
  animation-duration: 48s;
}

.perf-lite .zone-map .sea-sheen {
  animation-duration: 24s;
}

.perf-lite .zone-map .sea-current {
  animation-duration: 20s;
}

.perf-lite .zone-map .sea-current.c2 {
  animation-duration: 24s;
}

.perf-lite .zone-map .sea-current.c3 {
  animation-duration: 28s;
}

.perf-lite .zone-map .sea-ripple {
  animation-duration: 11s;
}

.perf-lite .site-header,
.perf-lite .hero-stats,
.perf-lite .mobile-cta {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 760px), (pointer: coarse) {
  .perf-lite .hero-grid-bg::after,
  .perf-lite .zone-map .sea-sheen,
  .perf-lite .zone-map .sea-current,
  .perf-lite .zone-map .sea-ripple,
  .perf-lite .zone-map .sea-shore-main,
  .perf-lite .zone-map .sea-shore-glow {
    animation: none !important;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.9);
  overflow: hidden;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

.faq-list details[open] {
  border-color: rgba(243, 188, 27, 0.36);
  background: rgba(20, 19, 16, 0.94);
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  list-style: none;
  padding: 1.05rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .faq-list summary:hover {
    color: var(--accent);
  }
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.22s ease;
  flex-shrink: 0;
  margin-left: 0.85rem;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list summary:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(243, 188, 27, 0.55);
  background: rgba(243, 188, 27, 0.08);
}

.faq-body {
  padding: 0 1.25rem 1rem;
}

.faq-body p {
  margin: 0;
}

@media (max-width: 760px) {
  .faq-list {
    gap: 0.6rem;
  }

  .faq-list summary {
    padding: 0.95rem 1rem;
    font-size: clamp(1rem, 4.8vw, 1.16rem);
  }

  .faq-list summary::after {
    font-size: 1.25rem;
    margin-left: 0.65rem;
  }

  .faq-body {
    padding: 0 1rem 0.95rem;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-info ul {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  font-size: 0.93rem;
}

.contact-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-grid;
  place-items: center;
  color: rgba(243, 188, 27, 0.9);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info ul a {
  color: #f5e8bc;
  overflow-wrap: anywhere;
  transition: color 0.2s;
}

.contact-call-btn {
  margin-top: 1.5rem;
}

@media (hover: hover) and (pointer: fine) {
  .contact-info ul a:hover {
    color: var(--accent);
  }
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.9);
  padding: 1.5rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.field {
  margin-bottom: 0.9rem;
}

.contact-form label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #f5f3ea;
  font-weight: 700;
  font-size: 0.86rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(4, 4, 4, 0.65);
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font: inherit;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(243, 188, 27, 0.5);
  box-shadow: 0 0 0 3px rgba(243, 188, 27, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f3bc1b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form select option {
  background: #111;
  color: #f4f2ea;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible,
a:focus-visible,
summary:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(243, 188, 27, 0.6);
  outline-offset: 2px;
}

.form-status {
  margin-top: 0.8rem;
  min-height: 1.2rem;
  font-size: 0.9rem;
}

.form-status.success {
  color: var(--ok);
}

.form-status.error {
  color: var(--danger);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.55));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2.8rem 0 2.2rem;
}

.footer-brand img {
  height: 54px;
  width: auto;
  max-width: 180px;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #888;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(243, 188, 27, 0.08);
}

.footer-nav h3,
.footer-programmes h3,
.footer-legal h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-programmes ul {
  display: grid;
  gap: 0.5rem;
}

.footer-nav a,
.footer-programmes a,
.footer-legal a {
  color: #888;
  font-size: 0.86rem;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-programmes a:hover {
  color: var(--accent);
}

.footer-legal p {
  font-size: 0.84rem;
  color: #666;
  margin-bottom: 0.35rem;
}

.back-top {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--accent);
  font-size: 0.84rem;
  transition: text-shadow 0.2s;
}

.back-top:hover {
  text-shadow: 0 0 12px rgba(243, 188, 27, 0.5);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #69665e;
  margin: 0;
  text-align: center;
}

/* ============================================================
   RESPONSIVE — TABLET (< 980px)
   ============================================================ */
@media (max-width: 980px) {
  .hero {
    min-height: unset;
    flex-direction: column;
  }

  .hero-photo {
    position: relative;
    inset: unset;
    width: 100%;
    height: clamp(300px, 60vw, 480px);
    padding-top: var(--header-h, 70px);
    order: -1;
  }

  .hero-photo::before {
    background: linear-gradient(to bottom,
        rgba(8, 8, 8, 0.25) 0%,
        rgba(8, 8, 8, 0.6) 60%,
        #080808 100%);
  }

  .hero-photo::after {
    display: none;
  }

  .hero-photo img {
    height: 140%;
    object-fit: cover;
  }

  .hero-inner {
    padding-top: 2rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
  }

  .scroll-hint {
    display: none;
  }

  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .testimonials-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programmes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prog-featured {
    transform: none;
  }

  .prog-featured:hover {
    transform: none;
  }

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

  .about-photo-col {
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 760px)
   ============================================================ */
@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 101;
    /* Stay above the full screen mobile menu overlay */
  }

  .site-header,
  .site-header.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-bottom: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: clamp(90px, 12vw, 120px) 2rem 2rem;
    transform-origin: center;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
    box-shadow: none;
    z-index: 90;
    overflow-y: auto;
  }


  .menu-open .site-nav {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .site-nav ul a::before {
    display: none;
  }

  .site-nav li {
    width: auto;
    border-bottom: none;
  }

  .site-nav li a {
    display: block;
    width: auto;
    padding: 0.5rem;
    font-size: 1.5rem;
    text-align: center;
  }

  .nav-cta {
    margin-top: 0.9rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 8.5vw, 3.8rem);
  }

  .hero-photo img {
    height: 140%;
    top: -20%;
    object-position: center 45%;
  }

  .hero-stats {
    gap: 0;
    padding-top: 1.2rem;
    margin-top: 1.5rem;
  }

  .cards-grid,
  .testimonials-grid,
  .programmes-grid,
  .footer-inner,
  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 1.5rem;
    text-align: center;
    padding: 2.2rem 0 2rem;
  }

  .footer-brand img {
    margin: 0 auto 0.85rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-nav ul,
  .footer-programmes ul {
    justify-items: center;
  }

  .contact-form {
    padding: 1.2rem 1rem;
  }

  .contact-info .btn {
    width: 100%;
  }

  .service-card {
    padding: 1.1rem 1rem 1rem;
    grid-template-columns: 48px 1fr;
    gap: 0.2rem 0.7rem;
  }

  .service-card::after {
    right: 0.7rem;
    top: 0.35rem;
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.86rem;
    max-width: none;
  }

  .icon-wrap {
    width: 48px;
    border-radius: 9px;
  }

  .prog-card {
    padding: 1.35rem 1.2rem;
  }

  .prog-popular-badge {
    top: 0.7rem;
    right: 0.7rem;
    gap: 0.3rem;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    padding: 0.24rem 0.5rem;
  }

  .prog-badge-dot {
    width: 5px;
    height: 5px;
  }

  .prog-card h3 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .prog-price {
    margin-bottom: 1.25rem;
    padding-bottom: 1.1rem;
  }

  .prog-features {
    gap: 0.55rem;
    margin-bottom: 1.2rem;
  }
  
  /* Badges fluid wrap on mobile */
  .badge-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
  }
  
  .badge-grid span {
    width: auto;
    flex: 0 1 auto;
    font-size: 0.82rem;
    padding: 0.6rem 0.9rem;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .cta-banner .btn {
    width: 100%;
  }

  .testi-head {
    gap: 0.45rem;
  }

  .testi-track .testimonial {
    padding: 1.15rem 1rem 1rem;
  }

  .testi-track .testimonial blockquote {
    margin: 0.75rem 0 0.9rem;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .testi-track .testimonial figcaption {
    gap: 0.45rem;
  }

  .testi-role {
    font-size: 0.6rem;
    padding: 0.12rem 0.45rem;
  }

  .ticker-track span {
    font-size: 0.9rem;
  }
}

/* ============================================================
   SECTION PROCESS — Comment ça marche
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.9);
  padding: 2rem 1.7rem;
  min-height: 100%;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.step-num {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 6vw, 4.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(243, 188, 27, 0.28);
  margin-bottom: 0.8rem;
  transition: -webkit-text-stroke-color 0.3s;
}

.process-step h3 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  margin-bottom: 0.6rem;
}

.step-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  transition: letter-spacing 0.2s;
}

.step-link:hover {
  letter-spacing: 0.1em;
}

@media (hover: hover) and (pointer: fine) {
  .process-step:hover {
    border-color: rgba(243, 188, 27, 0.4);
    transform: translateY(-4px);
  }

  .process-step:hover .step-num {
    -webkit-text-stroke-color: rgba(243, 188, 27, 0.65);
  }
}

@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 760px) {
  .process-step {
    padding: 1.35rem 1.2rem;
  }

  .step-num {
    font-size: clamp(2.8rem, 14vw, 3.8rem);
    margin-bottom: 0.55rem;
  }

  .process-step h3 {
    font-size: clamp(1.25rem, 6vw, 1.6rem);
    margin-bottom: 0.45rem;
  }

  .step-link {
    margin-top: 0.8rem;
  }
}

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(6, 6, 6, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  gap: 0.75rem;
}

@media (max-width: 760px) {
  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .back-to-top {
    bottom: 5.8rem;
  }
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
  border: 1px solid transparent;
}

.mobile-cta-btn:active {
  transform: scale(0.97);
}

/* Appeler */
.mobile-cta-btn:first-child {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  color: var(--text);
}

.mobile-cta-btn:first-child:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

/* WhatsApp */
.mobile-cta-wa {
  background: #25D366;
  color: #fff;
}

.mobile-cta-wa:hover {
  opacity: 0.9;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 80;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0900;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(14px) scale(0.85);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(243, 188, 27, 0.4);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 6px 28px rgba(243, 188, 27, 0.6);
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #ffd24e 55%, var(--accent) 100%);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}


/* ============================================================
   HERO MOUSE SPOTLIGHT
   ============================================================ */
.hero-mouse-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(350px circle at var(--gx, -400px) var(--gy, -400px),
      rgba(243, 188, 27, 0.09),
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

/* Hero copy — will-change hint for parallax */
.hero-copy {
  will-change: auto;
}

@media (pointer: fine) {
  html:not(.perf-lite) .hero-copy {
    will-change: transform;
  }
}

/* ============================================================
   SERVICE CARD INLINE SVG ICONS
   ============================================================ */
.svc-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  display: block;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.service-card .svc-icon {
  color: rgba(var(--svc-rgb), 0.96);
}

.svc-icon path,
.svc-icon line,
.svc-icon rect,
.svc-icon circle,
.svc-icon polyline,
.svc-icon polygon {
  vector-effect: non-scaling-stroke;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
@media (pointer: fine) {

  body,
  a,
  button,
  summary,
  [role="button"],
  .badge-grid span,
  .prog-card,
  .service-card,
  .testimonial,
  .process-step,
  select,
  label {
    cursor: none;
  }

  #cursorDot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    left: -20px;
    top: -20px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s, transform 0.15s, background 0.2s;
    will-change: left, top;
  }

  #cursorRing {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(243, 188, 27, 0.65);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    left: -20px;
    top: -20px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.3s, background 0.3s, opacity 0.3s;
    will-change: left, top;
  }

  #cursorRing.cursor-hover {
    width: 58px;
    height: 58px;
    border-color: var(--accent);
    background: rgba(243, 188, 27, 0.05);
  }

  #cursorDot.cursor-click {
    transform: translate(-50%, -50%) scale(0.5);
    background: #fff;
  }
}

/* ============================================================
   MORPHING TEXT
   ============================================================ */
.morph-text {
  display: inline-block;
}

.morph-text.morph-out {
  animation: morphOut 0.28s ease-in both;
}

.morph-text.morph-in {
  animation: morphIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes morphOut {
  to {
    opacity: 0;
    transform: translateY(-14px) scale(0.94);
  }
}

@keyframes morphIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   SPARKLES (boutons CTA)
   ============================================================ */
.btn-sparkle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f3bc1b;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  animation: sparkleFly 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes sparkleFly {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0);
    opacity: 0;
  }
}

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testi-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.9);
}

.testi-track {
  display: flex;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.testi-track .testimonial {
  flex: 0 0 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  opacity: 1;
  transform: none;
  box-shadow: none;
  background: transparent;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.2rem, 3.2vw, 1.8rem) clamp(1.2rem, 2.8vw, 1.75rem);
  font-size: 1rem;
  position: relative;
}

.testi-track .testimonial::before {
  display: none;
}

.testi-track .testimonial::after {
  display: none;
}

.testi-track .testimonial blockquote {
  margin: 0.78rem 0 1rem;
  padding-left: 0;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  color: #f0ece2;
  max-width: 54ch;
}

.testi-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.testi-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.9rem;
  padding: 0.12rem 0.35rem;
  border: 1px solid rgba(243, 188, 27, 0.35);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #f0d892;
}

.testi-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ccc7b9;
  background: rgba(255, 255, 255, 0.015);
}

.testi-track .testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.testi-track .testimonial .testi-name {
  color: #fbf7ec;
}

.testi-track .testimonial .testi-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0;
  color: #8e8a7d;
}

.testi-track .testimonial .testi-loc::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(243, 188, 27, 0.45);
}

@media (hover: hover) and (pointer: fine) {
  .testi-track .testimonial:hover {
    transform: none;
    border-color: transparent;
  }
}

.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0 0.72rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.24s, width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.testi-dot:hover {
  background: rgba(243, 188, 27, 0.55);
}

.testi-dot.is-active {
  width: 20px;
  background: var(--accent);
}

/* ============================================================
   HERO H1 — ENTRANCE
   ============================================================ */
.hero-h1 {
  font-size: clamp(2.8rem, 5vw + 1rem, 5.8rem);
  line-height: 1.05;
  margin-bottom: 0;
  opacity: 0;
  animation: htlReveal 0.85s 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.htl {
  display: inline-block;
}

@keyframes htlReveal {
  from {
    opacity: 0;
    transform: translateY(48px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   NAV LINKS — ICON + PILL HOVER
   ============================================================ */

/* Kill the old left-to-right underline on ul links */
.site-nav ul a::after {
  display: none;
}

/* Make each nav link a flex row */
.site-nav ul a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.3em 0.7em;
  border-radius: 7px;
  margin: 0 -0.2em;
  /* cancel extra padding so links stay visually tight */
}

/* Pill highlight — scales up from center on hover */
.site-nav ul a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 7px;
  background: rgba(243, 188, 27, 0.08);
  border: 1px solid rgba(243, 188, 27, 0.18);
  transform: scaleX(0.65) scaleY(0.45);
  opacity: 0;
  transition:
    transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.18s;
}

.site-nav ul a:hover::before,
.site-nav ul a:focus-visible::before {
  transform: scale(1);
  opacity: 1;
}

/* ── Nav icons ── */
.nav-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    stroke 0.2s,
    transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-nav ul a:hover .nav-icon,
.site-nav ul a:focus-visible .nav-icon {
  stroke: var(--accent);
  transform: scale(1.22) translateY(-1px);
}

/* ============================================================
   BUTTON ICONS (arrow-right + optional left icon)
   ============================================================ */
.btn-arrow,
.btn-icon {
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-arrow {
  width: 15px;
  height: 15px;
  stroke-width: 2.5;
  margin-left: 0.05em;
  margin-right: -0.25em;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-icon {
  width: 15px;
  height: 15px;
  stroke-width: 2;
  margin-right: 0.05em;
  margin-left: -0.2em;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.75;
}

.btn:hover .btn-arrow,
.btn:focus-visible .btn-arrow {
  transform: translateX(5px);
}

.btn:hover .btn-icon,
.btn:focus-visible .btn-icon {
  opacity: 1;
  transform: scale(1.15) rotate(-8deg);
}

/* Mobile — hide nav icons on small menu to save space */
@media (max-width: 760px) {
  .nav-icon {
    display: none;
  }

  .site-nav ul a {
    margin: 0;
    padding: 0;
  }

  .site-nav ul a::before {
    display: none;
  }
}
