


/* ==========================================================================
   YOUR LEGEND IS BACK! — STYLESHEET
   ========================================================================== */

/* --- RESET --- */

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

html {
  scroll-behavior: smooth;!important
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* --- VARIABLES --- */

:root {

  /* Couleurs */
  --color-black: #0a0a0a;
  --color-black-soft: #121212;
  --color-white: #ffffff;
  --color-off-white: #f7f5f2;
  --color-gold: #c9a24b;
  --color-gold-light: #e0c27a;
  --color-gray: #8a8a8a;
  --color-gray-light: #e5e5e5;
  --color-gold-dark: #9b762e;

  /* Typo */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s var(--ease);

  /* Espacements */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-width: 1200px;

}


/* --- BASE --- */

body {
  font-family: var(--font-body);
  background-color: var(--color-off-white);
  color: var(--color-black);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
}

h2 em, h1 em {
  font-style: italic;
  color: var(--color-gold);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.05rem;
  color: inherit;
}

strong {
  font-weight: 700;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 1rem;
}


/* --- SECTIONS NOIRES / BLANCHES --- */

section {
  padding: var(--section-padding) 1.5rem;
  position: relative;
}

.chapter-intro,
.documentary-section,
.faq-section,
.final-cta-section {
  background-color: var(--color-black);
  color: var(--color-white);
}

.book-section,
.method-section,
.confidence-banner,
.testimonial-section,
.offers-section {
  background-color: var(--color-off-white);
  color: var(--color-black);
}


/* --- FADE-IN ON SCROLL --- */

.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* --- CTA GÉNÉRIQUE --- */

.cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all var(--transition-base);
}

.cta-gold, .final-cta-btn {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.cta-gold:hover, .final-cta-btn:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.3);
}


/* --- CONTAINERS GÉNÉRIQUES --- */

.container,
.chapter-intro-inner,
.book-container,
.method-container,
.confidence-inner,
.testimonial-container,
.documentary-inner,
.offers-container,
.faq-container,
.final-cta-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}


/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background-color var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-logo {
  height: 40px;
  transition: height var(--transition-base);
}

.site-header.scrolled .header-logo {
  height: 34px;
}

.header-nav {
  display: flex;
  gap: 2.2rem;
}

.header-nav a {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 4px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition-base);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  background-color: var(--color-gold);
  color: var(--color-black) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem !important;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta::after {
  display: none;
}

.header-cta:hover {
  background-color: var(--color-gold-light);
}

.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
}

.header-burger span {
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-black);
}

.hero-video-wrap,
.hero-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video,
.hero-media-wrap img,
.hero-media-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.hero-title em {
  color: var(--color-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-gray-light);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--color-white);
}

.hero-cta-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-gray-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 30px;
  background-color: var(--color-gold);
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}


/* --- RESPONSIVE HEADER --- */

@media (max-width: 900px) {

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 320px;
    background-color: var(--color-black-soft);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.8rem;
    transition: right var(--transition-base);
    z-index: 999;
  }

  .header-nav.is-open {
    right: 0;
  }

  .header-burger {
    display: flex;
  }

}


/* ==========================================================================
   CHAPTER INTRO — "LA CHUTE"
   ========================================================================== */

.chapter-intro {
  padding: var(--section-padding) 1.5rem;
}

.chapter-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chapter-text .section-kicker {
  color: var(--color-gold-light);
}

.chapter-text h2 {
  color: var(--color-white);
}

.chapter-paragraph {
  color: var(--color-gray-light);
  margin-bottom: 1.3rem;
  font-size: 1.1rem;
}

.chapter-paragraph:last-of-type {
  margin-bottom: 0;
}

.chapter-highlight {
  color: var(--color-gold-light);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-gold);
}

.chapter-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter var(--transition-base);
}

.chapter-media:hover img {
  filter: grayscale(0%);
}


/* ==========================================================================
   SECTION LIVRE GRATUIT
   ========================================================================== */

.book-section {
  padding: var(--section-padding) 1.5rem;
}

.book-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.book-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.book-cover-img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.25));
  transition: transform 0.6s var(--ease);
}

.book-visual:hover .book-cover-img {
  transform: translateY(-10px) rotate(-1deg);
}

.book-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--color-black);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transform: rotate(6deg);
}

.book-content .section-kicker {
  color: var(--color-gold);
}

.book-title {
  margin-bottom: 1.2rem;
}

.book-description {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  max-width: 550px;
}

.book-benefits {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.book-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.02rem;
}

.book-benefits .icon-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.book-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.book-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 1rem 1.3rem;
  border: 1px solid var(--color-gray-light);
  border-radius: 50px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition-base);
}

.book-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-gold);
}

.book-form-note {
  font-size: 0.8rem;
  color: var(--color-gray);
}


/* --- Responsive --- */

@media (max-width: 900px) {

  .chapter-intro-inner,
  .book-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .book-visual {
    order: -1;
  }

}


/* ==========================================================================
   SECTION MÉTHODE / 3 PILIERS
   ========================================================================== */

.method-section {
  padding: var(--section-padding) 1.5rem;
}

.method-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.method-header .section-kicker {
  justify-content: center;
  display: flex;
}

.method-header h2 {
  margin-bottom: 1rem;
}

.method-header p {
  color: #444;
  font-size: 1.1rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.method-card {
  background-color: var(--color-white);
  padding: 2.8rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.method-number {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gray-light);
}

.method-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background-color: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-icon img,
.method-icon svg {
  width: 30px;
  height: 30px;
  filter: invert(70%) sepia(40%) saturate(500%) hue-rotate(0deg);
}

.method-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.method-card p {
  color: #444;
  font-size: 0.98rem;
}


/* --- Responsive --- */

@media (max-width: 900px) {

  .method-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

}


/* ==========================================================================
   BANDEAU CONFIANCE (chiffres clés)
   ========================================================================== */

.trust-section {
  background-color: var(--color-black);
  padding: 4rem 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-number sup {
  font-size: 0.5em;
  top: -1em;
}

.trust-label {
  color: var(--color-gray-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-divider {
  width: 1px;
  background-color: rgba(255,255,255,0.15);
}


/* ==========================================================================
   TÉMOIGNAGES
   ========================================================================== */

.testimonials-section {
  padding: var(--section-padding) 1.5rem;
  background-color: var(--color-white);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.testimonials-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-black-soft);
  margin-bottom: 1.2rem;
  line-height: 1.5;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--color-gold);
  position: absolute;
  top: -1.5rem;
  left: -2rem;
  font-family: Georgia, serif;
  opacity: 0.5;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-black);
  font-size: 1rem;
}

.testimonial-role {
  color: var(--color-gray);
  font-size: 0.88rem;
}

.testimonial-stars {
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-gray-light);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  padding: 0;
}

.testimonials-dot.is-active {
  background-color: var(--color-gold);
  transform: scale(1.3);
}

.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition-base);
  z-index: 2;
}

.testimonials-arrow:hover {
  border-color: var(--color-gold);
}

.testimonials-arrow.prev {
  left: -10px;
}

.testimonials-arrow.next {
  right: -10px;
}


/* --- Responsive --- */

@media (max-width: 900px) {

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .trust-divider {
    display: none;
  }

}

@media (max-width: 700px) {

  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .testimonial-quote::before {
    display: none;
  }

}

/* ==========================================================================
   PACKS — VERSION ÉLÉGANTE, DOUCE ET HAUT DE GAMME
   ========================================================================== */

.packs-section {
  padding: 110px 24px;
  background: linear-gradient(135deg, #f7f3ed 0%, #eee5da 100%);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

/* Carte */

.pack-card,
.pack-card.is-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 48px 38px 38px;

  color: #28201a;
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid rgba(124, 91, 58, 0.18);
  border-radius: 18px;

  box-shadow:
    0 20px 55px rgba(64, 44, 27, 0.1),
    inset 0 1px 0 #fff;

  transform: none;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Barre dorée discrète */

.pack-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 38px;
  width: 45px;
  height: 3px;

  background: linear-gradient(90deg, #9b7043, #d8b887);
  border-radius: 0 0 4px 4px;
}

.pack-card::after {
  display: none;
}

.pack-card:hover,
.pack-card.is-featured:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 121, 71, 0.42);

  box-shadow:
    0 30px 70px rgba(64, 44, 27, 0.16),
    inset 0 1px 0 #fff;
}

/* Carte centrale */

.pack-card.is-featured {
  background: linear-gradient(145deg, #30271f, #191511);
  color: #fffaf3;
  border-color: rgba(210, 176, 127, 0.55);

  box-shadow:
    0 28px 65px rgba(42, 29, 19, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pack-card.is-featured::before {
  width: 70px;
  background: linear-gradient(90deg, #ba8950, #f1d7ad);
}

/* Badge */

.pack-badge {
  position: static;
  align-self: flex-start;
  transform: none;
  margin-bottom: 25px;
  padding: 7px 13px;

  color: #76502c;
  background: #f2e8da;
  border: 1px solid rgba(151, 104, 60, 0.2);
  border-radius: 50px;

  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pack-card.is-featured .pack-badge {
  color: #f4ddbb;
  background: rgba(212, 172, 116, 0.1);
  border-color: rgba(221, 184, 132, 0.28);
}

/* Titres */

.pack-name {
  margin: 0 0 12px;
  color: #251e18;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

.pack-card.is-featured .pack-name {
  margin-top: 0;
  color: #fffaf3;
}

.pack-name::after {
  display: none;
}

.pack-tagline {
  min-height: 95px;
  margin: 0 0 28px;
  color: #74685d;
  font-size: 0.94rem;
  line-height: 1.7;
  text-align: left;
}

.pack-card.is-featured .pack-tagline {
  color: rgba(255, 250, 243, 0.7);
}

/* Prix */

.pack-price {
  margin: 0 0 26px;
  padding: 0 0 28px;
  text-align: left;
  border-top: 0;
  border-bottom: 1px solid rgba(79, 59, 42, 0.13);
}

.pack-card.is-featured .pack-price {
  border-color: rgba(255, 255, 255, 0.12);
}

.pack-price-amount {
  color: #9b6938;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.pack-card.is-featured .pack-price-amount {
  color: #e4bf8d;
}

.pack-price-period {
  display: inline-block;
  margin-left: 6px;
  color: #84776b;
  font-size: 0.82rem;
}

/* Avantages */

.pack-features {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 0;

  color: #51473e;
  border: 0;

  font-size: 0.89rem;
  line-height: 1.5;
}

.pack-card.is-featured .pack-features li {
  color: rgba(255, 250, 243, 0.78);
}

.pack-features .icon-check,
.pack-card.is-featured .icon-check {
  display: flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;

  color: #fff;
  background: #a87949;
  border-radius: 50%;

  font-size: 0.62rem;
  box-shadow: none;
}

/* Bouton */

.pack-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  margin-top: auto;
  padding: 14px 20px;

  color: #fff;
  background: #30261f;
  border: 1px solid #30261f;
  border-radius: 50px;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;

  box-shadow: none;
  transition: all 0.3s ease;
}

.pack-cta:hover {
  color: #fff;
  background: #9b7043;
  border-color: #9b7043;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(94, 63, 37, 0.18);
}

.pack-card.is-featured .pack-cta {
  color: #292019;
  background: #f1ddbe;
  border-color: #f1ddbe;
}

.pack-card.is-featured .pack-cta:hover {
  background: #fff7eb;
  border-color: #fff7eb;
}

/* Responsive */

@media (max-width: 950px) {
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .pack-card,
  .pack-card.is-featured,
  .pack-card:hover,
  .pack-card.is-featured:hover {
    transform: none;
  }

  .pack-tagline {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .packs-section {
    padding: 75px 16px;
  }

  .pack-card,
  .pack-card.is-featured {
    padding: 40px 26px 28px;
  }
}

.pack-cta {
  display: block;
  text-align: center;
  width: 100%;
}

.packs-footer-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--color-gray);
  font-size: 0.92rem;
}

/* Hero avec vidéo de fond */
.hero-video-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #111;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  z-index: -3;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 9, 0.92) 0%,
      rgba(10, 10, 9, 0.62) 48%,
      rgba(10, 10, 9, 0.78) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 10, 9, 0.25),
      rgba(10, 10, 9, 0.75)
    );
}

.hero-video-bg .hero-content,
.hero-video-bg .hero-note {
  position: relative;
  z-index: 2;
}

.hero-video-bg .hero-orb {
  z-index: -1;
  opacity: 0.35;
}

.hero-video-bg .display em {
  color: #c89d50;
}

@media (max-width: 768px) {
  .hero-background-video {
    object-position: center;
  }

  .hero-video-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(10, 10, 9, 0.7),
        rgba(10, 10, 9, 0.9)
      );
  }
}

/* ==========================================================================
   SECTION DOCUMENTAIRE
   ========================================================================== */

.documentary-section {
  padding: var(--section-padding) 1.5rem;
  background-color: var(--color-black);
  position: relative;
  overflow: hidden;
}

.documentary-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.documentary-inner .section-kicker {
  justify-content: center;
  display: flex;
  color: var(--color-gold-light);
}

.documentary-inner h2 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.documentary-inner p {
  color: var(--color-gray-light);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.documentary-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.documentary-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.documentary-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.documentary-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--color-gold);
}

.documentary-play svg {
  width: 26px;
  height: 26px;
  fill: var(--color-white);
  margin-left: 4px;
}


/* --- Responsive --- */

@media (max-width: 900px) {

  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pack-card.is-featured {
    transform: scale(1);
    order: -1;
  }

  .pack-card.is-featured:hover {
    transform: translateY(-6px);
  }

}


/* ==========================================================================
   SECTION FAQ
   ========================================================================== */

.faq-section {
  padding: var(--section-padding) 1.5rem;
  background-color: var(--color-white);
  color: var(--color-black);
}

.faq-header {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.faq-header .section-kicker {
  display: flex;
  justify-content: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-light);
}

/* Question */

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-black-soft);
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--color-gold-dark);
}

/* Icône + */

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gray-light);
  border-radius: 50%;
  transition:
    transform var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-black);
  transition:
    transform var(--transition-base),
    background-color var(--transition-base);
}

.faq-icon::before {
  width: 10px;
  height: 1px;
}

.faq-icon::after {
  width: 1px;
  height: 10px;
}

/* Réponse cachée par défaut */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 0.4s var(--ease),
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.faq-answer-inner {
  max-width: 680px;
  padding: 0 0 1.8rem;
  color: white;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* État ouvert */

.faq-item.is-open .faq-question {
  color: var(--color-gold-dark);
}

.faq-item.is-open .faq-icon {
  background-color: var(--color-black);
  border-color: var(--color-black);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background-color: var(--color-gold);
}

.faq-item.is-open .faq-icon::after {
  transform: scaleY(0);
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
}

/* Accessibilité clavier */

.faq-question:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 5px;
}

/* Responsive */

@media (max-width: 768px) {
  .faq-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .faq-header {
    margin-bottom: 2.5rem;
  }

  .faq-question {
    gap: 1rem;
    padding: 1.35rem 0;
    font-size: 1rem;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
  }

  .faq-answer-inner {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.final-cta-section {
  padding: 6rem 1.5rem;
  background-color: var(--color-black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,162,90,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-inner .section-kicker {
  justify-content: center;
  display: flex;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}

.final-cta-inner h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1.5rem;
}

.final-cta-inner p {
  color: var(--color-gray-light);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.final-cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.final-cta-note {
  color: var(--color-gray);
  font-size: 0.88rem;
}

.final-cta-note strong {
  color: var(--color-gold-light);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--color-black-soft);
  padding: 4.5rem 1.5rem 2rem;
  color: var(--color-gray-light);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 1.2rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-gray);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--color-gold);
  background-color: rgba(201,162,90,0.1);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gray-light);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-col a {
  color: var(--color-gray);
  font-size: 0.92rem;
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.8rem;
}

.footer-bottom-links a {
  color: var(--color-gray);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--color-gold-light);
}

.footer-legal {
  color: var(--color-gray);
  font-size: 0.85rem;
}


/* --- Responsive --- */

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

}





    :root {
      --ink: #11110f;
      --paper: #ede9df;
      --sand: #d8cbb2;
      --gold: #bd9650;
      --rust: #8d3c2e;
      --mist: #a79e90;
      --line: rgba(237, 233, 223, .16);
      --serif: 'Cinzel', Georgia, serif;
      --sans: 'DM Sans', Arial, sans-serif;
    }

    /* ------------------------------
       Reset et styles globaux
    ------------------------------ */

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: var(--ink);
      color: var(--paper);
      font-family: var(--sans);
      line-height: 1.55;
      overflow-x: hidden;
    }

    body.locked {
      overflow: hidden;
    }

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

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .container {
      width: min(1180px, calc(100% - 48px));
      margin: auto;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--gold);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    .eyebrow:before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .display {
      font-family: var(--serif);
      font-weight: 600;
      letter-spacing: -.035em;
      line-height: 1.04;
    }

    /* ------------------------------
       Header et navigation
    ------------------------------ */

    .site-header {
      position: fixed;
      z-index: 20;
      top: 0;
      left: 0;
      width: 100%;
      transition: .3s;
      padding: 22px 0;
    }

    .site-header.scrolled {
      background: rgba(17, 17, 15, .9);
      backdrop-filter: blur(16px);
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      font-family: var(--serif);
      font-size: 1.05rem;
      letter-spacing: .18em;
      font-weight: 700;
    }

    .brand b {
      color: var(--gold);
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 31px;
      color: #d6d0c3;
      font-size: .76rem;
      letter-spacing: .04em;
    }

    .nav-links a {
      transition: .2s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-cta,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid var(--gold);
      background: var(--gold);
      color: #18140f;
      padding: 13px 20px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .11em;
      text-transform: uppercase;
      transition: .25s;
    }

    .nav-cta:hover,
    .btn:hover {
      background: #dfbb79;
      border-color: #dfbb79;
      transform: translateY(-2px);
    }

    .nav-cta {
      padding: 10px 16px;
    }

    .burger {
      display: none;
      background: none;
      border: 0;
      color: var(--paper);
      width: 38px;
      height: 34px;
    }

    .burger i {
      display: block;
      width: 24px;
      height: 1px;
      background: currentColor;
      margin: 6px 0;
      transition: .25s;
    }

    /* ------------------------------
       Hero
    ------------------------------ */

    .hero {
      min-height: 760px;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: radial-gradient(
        circle at 78% 30%,
        #564334 0,
        #1d1a16 28%,
        #11110f 62%
      );
    }

    .hero:after {
      content: 'ᚠ ᚢ ᚦ ᚨ ᚱ ᚲ ᚷ ᚹ';
      position: absolute;
      right: -4%;
      bottom: 15%;
      font-family: var(--serif);
      font-size: 10vw;
      letter-spacing: .16em;
      color: rgba(237, 233, 223, .035);
      white-space: nowrap;
      transform: rotate(-9deg);
    }

    .hero-orb {
      position: absolute;
      right: 10%;
      top: 20%;
      width: 390px;
      height: 510px;
      border-radius: 52% 48% 42% 58%;
      background: linear-gradient(
        145deg,
        rgba(166, 119, 72, .5),
        rgba(30, 25, 20, .15)
      );
      filter: blur(.5px);
      opacity: .75;
      transform: rotate(12deg);
    }

    .hero-orb:before {
      content: '';
      position: absolute;
      inset: 30px;
      background:
        linear-gradient(120deg, rgba(220, 194, 148, .2), transparent 45%),
        repeating-linear-gradient(
          135deg,
          transparent 0 14px,
          rgba(17, 17, 15, .18) 15px 17px
        );
      border-radius: inherit;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 150px 0 90px;
      max-width: 710px;
    }

    .hero h1 {
      font-size: clamp(3.2rem, 7.5vw, 7.4rem);
      margin: 23px 0 27px;
    }

    .hero h1 em {
      color: var(--gold);
      font-style: normal;
    }

    .hero-copy {
      max-width: 480px;
      color: #c4bdb0;
      font-size: 1.03rem;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 36px;
    }

    .text-link {
      color: var(--sand);
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 4px;
    }

    .text-link:hover {
      color: var(--gold);
    }

    .play {
      width: 43px;
      height: 43px;
      border: 1px solid rgba(237, 233, 223, .55);
      border-radius: 50%;
      background: transparent;
      color: var(--paper);
      display: inline-grid;
      place-items: center;
      font-size: .7rem;
      transition: .2s;
    }

    .play:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: scale(1.08);
    }

    .hero-note {
      position: absolute;
      bottom: 34px;
      left: 50%;
      z-index: 2;
      transform: translateX(-50%);
      font-size: .62rem;
      color: #8d897f;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    /* ------------------------------
       Sections générales
    ------------------------------ */

    .section {
      padding: 112px 0;
    }

    .section-light {
      background: var(--paper);
      color: var(--ink);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 55px;
    }

    .section h2 {
      font-size: clamp(2.25rem, 4vw, 4.3rem);
      margin-top: 15px;
    }

    .section-intro {
      max-width: 380px;
      color: var(--mist);
      font-size: .93rem;
    }

    .section-light .section-intro {
      color: #69645c;
    }

    /* ------------------------------
       Méthode / Piliers
    ------------------------------ */

    .pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(17, 17, 15, .18);
    }

    .pillar {
      background: var(--paper);
      padding: 36px 32px 42px;
      min-height: 270px;
    }

    .pillar-num {
      color: var(--rust);
      font-family: var(--serif);
      font-size: 2.3rem;
    }

    .pillar h3 {
      font-family: var(--serif);
      font-size: 1.25rem;
      margin: 20px 0 12px;
    }

    .pillar p {
      color: #70695f;
      font-size: .9rem;
    }

    /* ------------------------------
       Manifeste
    ------------------------------ */

    .manifesto {
      background: #191714;
      position: relative;
      overflow: hidden;
    }

    .manifesto:before {
      content: 'ᛉ';
      position: absolute;
      right: 10%;
      top: -50px;
      color: rgba(189, 150, 80, .09);
      font: 20rem var(--serif);
    }

    .quote {
      max-width: 900px;
      position: relative;
      z-index: 1;
    }

    .quote p {
      font: 600 clamp(2rem, 4.7vw, 5rem) / 1.1 var(--serif);
      letter-spacing: -.04em;
    }

    .quote p span {
      color: var(--gold);
    }

    .quote cite {
      display: block;
      margin-top: 32px;
      color: #958e81;
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      font-style: normal;
    }

    /* ------------------------------
       Parcours
    ------------------------------ */

    .steps {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 90px;
      align-items: start;
    }

    .steps-list {
      border-top: 1px solid var(--line);
    }

    .step {
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 22px;
      padding: 25px 0;
      border-bottom: 1px solid var(--line);
    }

    .step-number {
      color: var(--gold);
      font-family: var(--serif);
    }

    .step h3 {
      font: 600 1.45rem var(--serif);
      margin-bottom: 7px;
    }

    .step p {
      color: #9c9588;
      font-size: .88rem;
    }

    .side-card {
      border: 1px solid var(--line);
      padding: 38px;
      background: linear-gradient(
        145deg,
        rgba(189, 150, 80, .16),
        rgba(255, 255, 255, .02)
      );
      position: relative;
    }

    .side-card h3 {
      font: 600 2rem / 1.05 var(--serif);
      margin: 17px 0;
    }

    .side-card p {
      color: #aaa396;
      font-size: .9rem;
    }

    .side-card .btn {
      margin-top: 27px;
    }

    /* ------------------------------
       FAQ
    ------------------------------ */

    .faq-grid {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 100px;
    }

    .faq-list {
      border-top: 1px solid var(--line);
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
    }

    .faq-question {
      width: 100%;
      padding: 22px 0;
      background: none;
      border: 0;
      color: var(--paper);
      text-align: left;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font: 600 1.05rem var(--serif);
    }

    .faq-question span {
      color: var(--gold);
      font: 1.5rem var(--sans);
      transition: .25s;
    }

    .faq-item.open .faq-question span {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: .3s;
    }

    .faq-answer > div {
      overflow: hidden;
      color: white;
      font-size: .9rem;
    }

    .faq-item.open .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-item.open .faq-answer > div {
      padding: 0 35px 22px 0;
    }

    /* ------------------------------
       Bandeau CTA
    ------------------------------ */

    .cta-band {
      background: var(--rust);
      padding: 82px 0;
    }

    .cta-band .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .cta-band h2 {
      font-size: clamp(2rem, 4vw, 4rem);
      max-width: 680px;
    }

    .cta-band .btn {
      background: var(--paper);
      border-color: var(--paper);
      color: var(--rust);
      white-space: nowrap;
    }

    /* ------------------------------
       Footer
    ------------------------------ */

    .footer {
      padding: 32px 0;
      color: #827d73;
      font-size: .7rem;
      border-top: 1px solid var(--line);
    }

    .footer .container {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    /* ------------------------------
       Modal
    ------------------------------ */

    .modal {
      position: fixed;
      z-index: 40;
      inset: 0;
      background: rgba(0, 0, 0, .77);
      backdrop-filter: blur(8px);
      display: grid;
      place-items: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: .25s;
    }

    .modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-box {
      background: #24211c;
      border: 1px solid rgba(189, 150, 80, .55);
      width: min(620px, 100%);
      padding: 40px;
      position: relative;
      transform: translateY(18px);
      transition: .3s;
    }

    .modal.active .modal-box {
      transform: none;
    }

    .modal-close {
      position: absolute;
      right: 18px;
      top: 15px;
      background: none;
      border: 0;
      color: var(--paper);
      font-size: 1.5rem;
    }

    .modal h2 {
      font: 600 2.5rem var(--serif);
      margin: 14px 0;
    }

    .modal p {
      color: #aaa396;
    }

    .video-frame {
      aspect-ratio: 16 / 9;
      background: linear-gradient(120deg, #4c3525, #171513);
      display: grid;
      place-items: center;
      margin-top: 25px;
      position: relative;
      overflow: hidden;
    }

    .video-frame:after {
      content: 'VIKING / 01';
      position: absolute;
      bottom: 15px;
      left: 17px;
      font-size: .6rem;
      letter-spacing: .15em;
      color: #d9c29c;
    }

    .video-frame .play {
      width: 70px;
      height: 70px;
      font-size: 1rem;
    }

    .email-form {
      display: flex;
      gap: 10px;
      margin-top: 25px;
    }

    .email-form input {
      flex: 1;
      min-width: 0;
      background: #151411;
      border: 1px solid #514a3e;
      padding: 14px;
      color: var(--paper);
      outline: none;
    }

    .email-form input:focus {
      border-color: var(--gold);
    }

    .form-status {
      font-size: .75rem;
      color: var(--gold);
      margin-top: 12px;
      min-height: 1em;
    }

    /* ------------------------------
       Animations
    ------------------------------ */

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s ease;
    }

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

    /* ------------------------------
       Responsive
    ------------------------------ */

    @media (max-width: 800px) {
      .container {
        width: min(100% - 36px, 600px);
      }

      .nav-links,
      .nav > .nav-cta {
        display: none;
      }

      .burger {
        display: block;
      }

      .site-header.menu-open .nav-links {
        display: flex;
        position: absolute;
        left: 0;
        right: 0;
        top: 63px;
        background: #171613;
        border-bottom: 1px solid var(--line);
        padding: 25px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .hero {
        min-height: 710px;
      }

      .hero-orb {
        right: -30%;
        top: 32%;
        width: 300px;
        height: 390px;
        opacity: .55;
      }

      .hero-content {
        padding-top: 130px;
      }

      .section {
        padding: 78px 0;
      }

      .section-head,
      .cta-band .container {
        display: block;
      }

      .section-intro {
        margin-top: 22px;
      }

      .pillars,
      .steps,
      .faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .pillar {
        min-height: 0;
      }

      .cta-band .btn {
        margin-top: 25px;
      }

      .footer .container {
        flex-direction: column;
      }

      .email-form {
        flex-direction: column;
      }
    }

.pillar {
  position: relative;
  overflow: hidden;
}

.pillar-num {
  width: 100%;
  height: 180px;
  margin-bottom: 1.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  font-size: 0;
  color: transparent;
  border-radius: 10px;

  transition: transform 0.4s ease;
}

.pillar:nth-child(1) .pillar-num {
  background-image: url("/media/A1h.jpg");
}

.pillar:nth-child(2) .pillar-num {
  background-image: url("/media/A2b.jpg");
}

.pillar:nth-child(3) .pillar-num {
  background-image: url("/media/A3b.jpg");
}

.pillar:hover .pillar-num {
  transform: scale(1.03);
}
    @media (prefers-reduced-motion: reduce) {
      *,
      *:before,
      *:after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
      }
    }



/* ========== VARIABLES ========== */
:root {
  --black: #070707;
  --dark: #11110f;
  --gold: #c9a45d;
  --gold-light: #ead39b;
  --cream: #f5f0e6;
  --dark-text: #191714;
  --muted: #aaa497;
  --brown-muted: #6e675d;
  --line: rgba(201,164,93,.34);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

/* ========== RESET ========== */
* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
}

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

a { 
  color: inherit; 
  text-decoration: none; 
  transition: color 0.3s ease;
}

button { 
  font: inherit; 
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input { 
  font: inherit; 
  color: inherit;
}

/* ========== TYPOGRAPHIE ========== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

/* ========== LAYOUT ========== */
.container { 
  width: min(1160px, calc(100% - 40px)); 
  margin: auto; 
}

.section-inner { 
  width: min(1160px, calc(100% - 40px)); 
  margin: auto; 
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popupIn {
  from { 
    opacity: 0; 
    transform: translateY(25px) scale(.96); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-section { 
  opacity: 0; 
  transform: translateY(40px); 
  transition: opacity 1.2s cubic-bezier(.2,.9,.3,1), transform 1.2s cubic-bezier(.2,.9,.3,1); 
}

.fade-section.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

/* ========== HEADER / HERO ========== */
.hero-wrapper {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 24px;
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 30px;
}

.logo-img {
  width: 120px;
  height: auto;
  margin: 0 auto 40px;
}

.logo-img2 {
  width: 220px;
  height: auto;
  margin: 0 auto 40px;
}

/* Video Encart */
.video-encart {
  position: relative;
  max-width: 420px;
  margin: 0 auto 24px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.video-encart video,
.video-encart iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  z-index: 10;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-overlay.hidden { 
  opacity: 0; 
  pointer-events: none; 
}

.play-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.play-overlay:hover .play-circle {
  transform: scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #17130c;
  margin-left: 4px;
}

.play-label {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
}

.video-caption {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
}

.hero-copy { 
  margin-top: 40px; 
  max-width: 720px; 
  width: 100%; 
}

.hero-copy h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1;
  margin-bottom: 0;
  color: var(--cream);
}

.hero-copy h1 span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
}

.subtitle {
  margin: 26px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--line);
  margin: 30px auto;
}

/* ========== BUTTONS ========== */
.cta {
  display: inline-block;
  padding: 18px 40px;
  background: var(--gold);
  color: #17130c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
  border-radius: 4px;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 164, 93, .35);
}

.cta-outline {
  display: inline-block;
  padding: 18px 40px;
  border: 2px solid var(--gold);
  color: var(--cream);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .25s ease;
  border-radius: 4px;
}

.cta-outline:hover {
  background: var(--gold);
  color: #17130c;
}

.scroll-cue {
  display: inline-block;
  margin-top: 46px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.scroll-cue:hover {
  color: var(--gold-light);
}

/* ========== SECTIONS ========== */
.section { 
  padding: 100px max(24px, 5vw); 
}

.section-kicker {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 14px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  margin: 0 0 24px;
}

.section-title em { 
  font-style: italic; 
  color: var(--gold-light); 
}

/* ========== BOOK CAPTURE SECTION ========== */
.book-capture-section {
  background: #ffffff;
  color: var(--dark-text);
  padding: 90px max(24px, 5vw);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.book-capture-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
}

.book-cover-wrap { 
  position: relative; 
}

.book-cover-wrap img {
  width: 100%;
  display: block;
  border: 1px solid rgba(234, 211, 155, .5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .5);
  border-radius: 4px;
}

.book-ribbon {
  position: absolute;
  top: 20px;
  right: -12px;
  background: var(--gold);
  color: #17130c;
  padding: 6px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.book-capture-copy {
  padding: 0 20px;
}

.book-capture-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 12px 0 20px;
  color: var(--dark-text);
}

.book-capture-copy .desc {
  color: var(--brown-muted);
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.book-cta-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #C9A45D;
  color: black;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.book-cta-btn:hover {
  background: var(--gold);
  color: #17130c;
  transform: translateY(-2px);
}

.book-capture-note {
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  letter-spacing: .05em;
}

/* ========== CHAPTER INTRO ========== */
.chapter-intro {
  background: var(--black);
  color: white;
  padding: 100px max(24px, 5vw);
}

.chapter-intro-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.chapter-intro-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .5);
}

.chapter-intro-copy {
  padding: 0 20px;
}

.chapter-intro-copy p {
  color: var(--muted);
  font-size: 15px;
  margin: 20px 0;
  line-height: 1.8;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: #ffffff;
  color: var(--dark-text);
  padding: 5px max(24px, 5vw);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  padding: 1px 30px;
  border-right: 1px solid var(--line);
  text-align: center;
  flex: 1 1 auto;
  min-width: 140px;
}

.trust-item:last-child { 
  border-right: 0; 
}

.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.trust-item span {
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--brown-muted);
  text-transform: uppercase;
}

/* ========== TESTIMONIALS ========== */
.testimonial-section {
  background: var(--black);
  color: var(--cream);
  padding: 100px max(24px, 5vw);
}

.testimonial-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-intro p {
  color: var(--brown-muted);
  font-size: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.quote-card {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 30px 26px 26px;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.quote-card blockquote {
  margin: 10px 0 18px;
  font-size: 14px;
  color: var(--dark-text);
  line-height: 1.8;
}

.quote-card cite {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ========== DOCUMENTARY SECTION ========== */
.documentary-section {
  background: var(--black);
  color: var(--cream);
  padding: 100px max(24px, 5vw);
  text-align: center;
}

.intro-doc {
  max-width: 640px;
  margin: 20px auto 50px;
  color: var(--muted);
  font-size: 14px;
}

.video-encart--large {
  max-width: 900px;
  aspect-ratio: 16/9;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

/* ========== OFFERS SECTION ========== */

.offers-section {
  background: white;
  color: #fad090;
  padding: 100px max(24px, 5vw);
}

.offers-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.offers-intro {
  color: var(--brown-muted);
  font-size: 15px;
  margin-top: 20px;
  line-height: 1.8;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

/* Cartes noires */
.pack-card {
  background: #000000;
  color: #ffffff;
  border: 1px solid #333333;
  padding: 30px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: var(--gold);
}

/* La carte gratuite reste également noire */
.pack-card--free {
  background: #000000;
}

.pack-eyebrow {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.pack-title {
  font-size: 24px;
  margin: 0 0 12px;
  color: #ffffff;
}

.pack-desc {
  color: #d0d0d0;
  font-size: 14px;
  margin: 0 0 24px;
  flex-grow: 1;
  line-height: 1.8;
}

.pack-price {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 20px 0;
}

.pack-features {
  list-style: none;
  margin: 20px 0;
  flex-grow: 1;
}

.pack-features li {
  padding: 10px 0;
  border-top: 1px solid #333333;
  font-size: 13px;
  color: #d0d0d0;
}

.pack-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: #ffffff;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.pack-cta:hover {
  background: var(--gold);
  color: #17130c;
  transform: translateY(-2px);
}

.pack-cta--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: #ffffff;
}

.pack-cta--outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #17130c;
}

.offers-reassurance {
  text-align: center;
  font-size: 13px;
  color: var(--brown-muted);
}

.offers-reassurance a {
  color: var(--gold);
  text-decoration: underline;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background: white;
  color: white;
  padding: 100px max(24px, 5vw);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question span {
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-bottom: 20px;
  color: white;
  font-size: 13px;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--black);
  color: var(--cream);
  padding: 100px max(24px, 5vw);
  text-align: center;
}

.final-cta .section-kicker {
  justify-content: center;
  display: flex;
}

.final-cta .section-title {
  margin-bottom: 24px;
}

.final-cta > p {
  max-width: 600px;
  margin: 20px auto 40px;
  color: var(--muted);
  font-size: 15px;
}

/* Contenu du .final-cta (kicker, titre, paragraphe, CTA) au-dessus de la vidéo de fond */
.final-cta.section-video-bg > .section-kicker,
.final-cta.section-video-bg > .section-title,
.final-cta.section-video-bg > p,
.final-cta.section-video-bg > a {
  position: relative;
  z-index: 2;
}

/* ========== FOOTER ========== */
.legal {
  background: var(--black);
  color: var(--muted);
  text-align: center;
  padding: 20px;
  font-size: 10px;
  letter-spacing: .08em;
  border-top: 1px solid var(--line);
}

.legal a {
  margin: 0 10px;
  color: var(--muted);
  transition: color 0.3s ease;
}

.legal a:hover {
  color: var(--gold-light);
}

.footer {
  background: var(--black);
  color: var(--muted);
  text-align: center;
  padding: 20px;
  font-size: 10px;
  letter-spacing: .1em;
  border-top: 1px solid var(--line);
}

/* ========== POPUP STYLES ========== */
.popup {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .78);
  animation: modalFadeIn 0.3s ease;
}

.popup.active {
  display: flex;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup-content {
  position: relative;
  width: min(460px, 100%);
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--gold);
  background:
    linear-gradient(rgba(15, 15, 13, .9), rgba(15, 15, 13, .95)),
    url('/media/livreok.jpg') center / cover;
  color: var(--cream);
  box-shadow: 0 25px 80px rgba(0, 0, 0, .55);
  animation: popupIn .35s ease;
  border-radius: 4px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--gold-light);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--gold);
}

.popup h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .25);
  outline: none;
  background: rgba(255, 255, 255, .08);
  color: white;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: var(--gold);
}

.form-group input::placeholder {
  color: #c4bdae;
}

.submit-btn,
.ok-btn {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #17130c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.submit-btn:hover,
.ok-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 164, 93, .3);
}

.submit-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.error {
  display: none;
  margin-top: 5px;
  color: #e99c8e;
  font-size: 11px;
}

.loading {
  display: none;
  margin-top: 15px;
  color: var(--gold-light);
  font-size: 12px;
  text-align: center;
}

.confirmation {
  text-align: center;
}

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

.lead-success {
  text-align: center;
}

.lead-success h3 {
  margin: 1rem 0 0.5rem;
}

.lead-success p {
  margin-bottom: 1.5rem;
  color: var(--brown-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .packs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .chapter-intro-inner {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .book-capture-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .book-cover-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .testimonial-intro {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    flex-direction: column;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .packs-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    min-height: auto;
    padding: 40px 20px;
  }

  .logo-img {
    width: 80px;
  }

  .video-encart {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 8vw, 50px);
  }

  .section-title {
    font-size: clamp(24px, 6vw, 34px);
  }

  .cta {
    padding: 14px 28px;
    font-size: 10px;
  }

  .popup-content {
    padding: 30px 20px;
  }

  .popup h2 {
    font-size: 26px;
  }

  .section {
    padding: 60px 20px;
  }

  .book-capture-section {
    padding: 60px 20px;
  }

  .chapter-intro {
    padding: 60px 20px;
  }

  .documentary-section {
    padding: 60px 20px;
  }

  .offers-section {
    padding: 60px 20px;
  }

  .faq-section {
    padding: 60px 20px;
  }

  .final-cta {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 30px 16px;
  }

  .logo-img {
    width: 60px;
    margin-bottom: 20px;
  }

  .hero-copy h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 14px;
  }

  .pack-price {
    font-size: 28px;
  }

  .section-title {
    font-size: 22px;
  }

  .popup-content {
    padding: 24px 16px;
  }

  .video-encart {
    aspect-ratio: 1;
  }

  .testimonial-intro {
    gap: 20px;
  }

  .trust-item {
    padding: 15px;
  }

  .trust-item strong {
    font-size: 24px;
  }
}

/* ==========================================================================
   NORMALISATION — merged source blocks
   The source contained three style blocks with overlapping global selectors.
   These narrowly scoped safeguards keep the supplied components visible and
   preserve their existing class names and interactions.
   ========================================================================== */

.hero-section,
.hero-wrapper {
  isolation: isolate;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.site-header {
  z-index: 1000;
}

/* The source defines both state names in different sections/scripts. */
.fade-section.is-visible,
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

img,
video,
iframe {
  max-width: 100%;
}

iframe {
  border: 0;
}
.legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 20px 8px;
}

.legal a {
  white-space: nowrap;
  font-size: 12px;
}

@media (max-width: 480px) {
  .legal {
    gap: 7px;
    padding-inline: 4px;
  }

  .legal a {
    font-size: 9px;
  }
}

/* ==========================================================================
   FOND VIDÉO GÉNÉRIQUE — réutilisable sur toutes les sections
   ========================================================================== */

.section-video-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-video-bg .bg-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.section-video-bg .bg-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 9, 0.5),
    rgba(10, 10, 9, 0.5)
  );
}

/* Variante pour fond clair (section-light) : overlay blanc semi-opaque */
.section-video-bg.section-light-overlay .bg-video-overlay {
  background: linear-gradient(
    180deg,
    rgba(247, 245, 242, 0.72),
    rgba(247, 245, 242, 0.76)
  );
}

.section-video-bg > .container,
.section-video-bg > .section-inner {
  position: relative;
  z-index: 2;
}
/* ==========================================================================
   FIX DÉFINITIF — Centrage bloc + texte #hero-dark
   ========================================================================== */

#hero-dark.hero-video-bg {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

#hero-dark .container,
#hero-dark .hero-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 710px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  left: auto !important;
  right: auto !important;
}

#hero-dark .eyebrow,
#hero-dark h1,
#hero-dark .display,
#hero-dark .hero-copy,
#hero-dark .hero-actions {
  text-align: center !important;
  align-self: center !important;
  width: 100%;
}

#hero-dark .hero-actions {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  #hero-dark .hero-content {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
/* ==========================================================================
   FIX — Centrage #viking-video / .hero-content
   ========================================================================== */

#viking-video {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

#viking-video .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

#viking-video .eyebrow,
#viking-video .logo-img,
#viking-video .video-encart,
#viking-video .hero-copy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#viking-video .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (max-width: 700px) {
  #viking-video .hero-content {
    padding: 24px 16px;
  }
}

@media (max-width: 700px) {
  .pillar h3 {
    font-size: clamp(0.9rem, 4.2vw, 1.3rem);
    white-space: nowrap;
    overflow: visible;
  }
}

.offers-header .section-title {
  color: #ffffff !important;
}
.book-capture-copy h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}

.book-capture-copy h2 em {
  color: #d4af63 !important;
  -webkit-text-fill-color: #d4af63 !important;
}

/* ==================================================
   CORRECTION DU POPUP LIVRE
================================================== */

.modal {
  position: fixed;
  z-index: 9999;
  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.78);
}

.modal.active {
  display: flex;
}

.modal-box {
  position: relative;

  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  padding: 42px;
  overflow-y: auto;

  color: var(--cream);
  background:
    linear-gradient(
      rgba(15, 15, 13, 0.92),
      rgba(15, 15, 13, 0.96)
    ),
    url(" ") center / cover;

  border: 1px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 17px;

  color: var(--gold-light);
  font-size: 28px;
  line-height: 1;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-box .eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
}

.modal-box h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}

#site-email-panel,
#site-email-form {
  display: block;
  width: 100%;
}

#site-email-form .form-group {
  width: 100%;
  margin-bottom: 18px;
}

#site-email-form input {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 15px;

  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  outline: none;
}

#site-email-form input:focus {
  border-color: var(--gold);
}

#site-email-form input::placeholder {
  color: #c4bdae;
}

#site-email-form .submit-btn {
  display: block;
  width: 100%;
  min-height: 50px;
}

#site-form-status {
  min-height: 20px;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 12px;
  text-align: center;
}

/* Vidéo */
.video-encart {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-top: 20px;
}

.video-encart iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Mobile */
@media (max-width: 600px) {
  .modal {
    padding: 12px;
  }

  .modal-box {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 42px 22px 26px;
  }

  .modal-box h2 {
    font-size: 27px;
  }
}

/* Lecteur de présentation Viking — carte carrée et overlay de lancement */
.viking-player {
  position: relative !important;
  display: block !important;
  width: min(420px, 100%) !important;
  aspect-ratio: 1 / 1 !important;
  margin: 30px auto !important;
  overflow: hidden !important;
  background: #151515 !important;
  border: 1px solid rgba(201, 164, 93, 0.28);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  z-index: 10 !important;
}

.viking-player__video {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  background: #151515 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
  z-index: 1 !important;
}

.viking-player__overlay {
  position: absolute !important;
  inset: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  height: 100%;
  padding: 24px;
  color: #f5f0e6;
  background: #151515;
  border: 0;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.viking-player__overlay:hover .viking-player__circle,
.viking-player__overlay:focus-visible .viking-player__circle {
  background: #d8b56c;
  transform: scale(1.045);
  box-shadow: 0 0 0 8px rgba(201, 164, 93, 0.12), 0 10px 30px rgba(0, 0, 0, 0.28);
}

.viking-player__overlay:focus-visible {
  outline: 2px solid #ead39b;
  outline-offset: -6px;
}

.viking-player__overlay.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.viking-player__circle {
  display: grid;
  width: clamp(86px, 25%, 112px);
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
  background: #c9a45d;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.viking-player__icon {
  margin-left: 6px;
  color: #080808;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1;
}

.viking-player__label {
  max-width: 280px;
  color: #f5f0e6;
  font-family: var(--sans, 'Montserrat', sans-serif);
  font-size: clamp(12px, 2.4vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 700px) {
  .viking-player {
    width: min(100%, 420px) !important;
    margin: 24px auto !important;
    border-radius: 14px;
  }

  .viking-player__overlay {
    gap: 15px;
    padding: 18px;
  }
}

/* ========== VARIABLES (nécessaires au bloc) ========== */
:root {
  --black: #070707;
  --gold: #c9a45d;
  --gold-light: #ead39b;
  --cream: #f5f0e6;
  --muted: #aaa497;
  --line: rgba(201,164,93,.34);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

/* ========== HEADER / HERO ========== */
.hero-wrapper {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 24px;
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 30px;
}

.logo-img {
  width: 130px;
  height: auto;
  margin: 0 auto 40px;
}

/* Video Encart */
.video-encart {
  position: relative;
  max-width: 420px;
  margin: 0 auto 24px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.video-encart video,
.video-encart iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  z-index: 10;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.play-overlay:hover .play-circle {
  transform: scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #17130c;
  margin-left: 4px;
}

.play-label {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
}

.video-caption {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
}

.hero-copy {
  margin-top: 40px;
  max-width: 720px;
  width: 100%;
}

.hero-copy h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1;
  margin-bottom: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 700;
}

.hero-copy h1 span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
}

.subtitle {
  margin: 26px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--line);
  margin: 30px auto;
}

.cta {
  display: inline-block;
  padding: 18px 40px;
  background: var(--gold);
  color: #17130c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
  border-radius: 4px;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 164, 93, .35);
}

.scroll-cue {
  display: inline-block;
  margin-top: 46px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.scroll-cue:hover {
  color: var(--gold-light);
}

/* ========== RESPONSIVE (parties liées au hero) ========== */
@media (max-width: 700px) {
  .hero-content {
    min-height: auto;
    padding: 40px 20px;
  }

  .logo-img {
    width: 80px;
  }

  .video-encart {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 8vw, 50px);
  }

  .cta {
    padding: 14px 28px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 30px 16px;
  }

  .logo-img {
    width: 150px;
    margin-bottom: 20px;
  }

  .hero-copy h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 14px;
  }

  .video-encart {
    aspect-ratio: 1;
  }
}
/* Remonte tout le contenu de la section principale */
#presentation .hero-content {
  transform: translateY(-160px);
}

/* Garde le contenu centré */
#presentation .hero-content {
  margin-top: 0 !important;
}
/* =========================
   Version mobile : Hero
========================= */

@media (max-width: 600px) {
  #presentation .hero-content {
    transform: translateY(-155px);
  }
}


/* =========================
   Section des cartes
========================= */

.premium-section,
.premium-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
  box-sizing: border-box;
}


/* =========================
   Cartes
========================= */

.premium-card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 390px;
  overflow: hidden;
  padding: 18px;
  box-sizing: border-box;

  color: #f5ead4;
  text-align: center;

  background: linear-gradient(145deg, #fff, #000);
  border: 1px solid rgba(214, 170, 91, 0.45);
  border-radius: 12px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  transition: 0.35s ease;
}

.premium-card:hover {
  transform: translateY(-10px);
  border-color: #d8aa5b;
  box-shadow: 0 20px 50px rgba(214, 170, 91, 0.25);
}

.premium-card-highlight {
  background: linear-gradient(145deg, #fff, #000);
}


/* =========================
   Images
========================= */

.premium-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.8);
}


/* =========================
   Texte des cartes
========================= */

.premium-number {
  display: block;
  margin-top: 22px;

  color: #c99a4b;
  font-size: 12px;
  letter-spacing: 3px;
  text-align: center;
}

.premium-card h3 {
  max-width: 220px;
  margin: 12px auto;

  color: #f0c878;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.premium-card p {
  color: #c9bba4;
  font-size: 14px;
  line-height: 1.6;
}

.premium-card a {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;

  color: #e2b866;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
}


/* =========================
   Titre Corps / Esprit / Âme
========================= */

#tryptique {
  position: relative;
  overflow: hidden;
}

#tryptique .container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

#tryptique .section-head {
  display: block;
  width: 100%;
  text-align: center;
}

#tryptique .section-head > div {
  width: 100%;
  text-align: center;
}

#tryptique .titre-horizontal {
  display: block;
  width: 100%;
  margin: 0 auto;

  text-align: center;
  white-space: nowrap;
}


/* =========================
   Version tablette et mobile
========================= */

@media (max-width: 800px) {
  .premium-section,
  .premium-cards {
    grid-template-columns: 1fr;
    max-width: 430px;
    gap: 30px;
  }
}


/* =========================
   Version téléphone
========================= */

@media (max-width: 600px) {

  #tryptique .container {
    width: 100%;
    max-width: none;
    padding-right: 8px;
    padding-left: 8px;
  }

  #tryptique .titre-horizontal {
    font-size: 30px;
    white-space: normal;
  }

  .premium-section,
  .premium-cards {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    gap: 30px;
    margin: 25px auto;
    padding: 0 8px;
  }

  .premium-card {
    width: 100%;
    min-height: auto;
    margin: 0;
  }

  .premium-card img {
    width: 100%;
    height: 230px;
  }

  .premium-card h3 {
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
  }
}

/* Texte de présentation en blanc */
.book-capture-copy p,
.book-capture-copy .book-description,
.book-capture-copy .chapter-paragraph,
.book-capture-copy .intro-doc {
  color: #ffffff !important;
}

/* Si le texte appartient à la section livre entière */
.book-capture-section p,
.book-section p {
  color: #ffffff !important;
}

/* Texte de la section "prochaine légende" en blanc */
#prochaine-legende .chapter-intro-copy > p {
  color: #ffffff !important;
  opacity: 1 !important;
}

#prochaine-legende .cta-outline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: #ffffff !important;
  border-color: #c9a24b !important;
}

#prochaine-legende .cta-outline span {
  font-size: 1rem;
  letter-spacing: 0.12em;
}

#prochaine-legende .cta-outline strong {
  color: #ffffff !important;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
}
#prochaine-legende .cta-outline {
  background: rgba(10, 10, 10, 0.85) !important;
  border: 2px solid #c9a24b !important;
  color: #ffffff !important;
}

/* Agrandir le titre "Le témoignage de Viking!" */
.documentary-section .section-kicker {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em;
  color: #ead39b !important;
  text-align: center;
  margin-bottom: 1.2rem;
}

@media (max-width: 600px) {
  .documentary-section .section-kicker {
    font-size: 1.1rem !important;
  }
}

/* Agrandir "Le Coaching" sur téléphone */
@media (max-width: 600px) {
  #offres .offers-header .section-title {
    font-size: 2.6rem !important;
    line-height: 1.1;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .trust-grid {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .trust-item {
    min-height: 0 !important;
    height: auto !important;
    padding: 8px 10px !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  .trust-item strong {
    font-size: 0.9rem !important;
    line-height: 1 !important;
    margin: 0 !important;
  }

  .trust-item span {
    font-size: 0.5rem !important;
    line-height: 1 !important;
    margin: 4px 0 0 !important;
  }
}
/* Bordures dorées visibles immédiatement */
#offres .pack-card {
  border: 1px solid var(--gold) !important;
  box-shadow: 0 0 10px rgba(201, 164, 93, 0.18);
}

/* Effet au survol */
#offres .pack-card:hover {
  border-color: var(--gold-light) !important;
  box-shadow: 0 0 24px rgba(201, 164, 93, 0.45);
 
}

.hero-copy p {
  margin-bottom: 16px;
}

.hero-copy .gloire {
  margin-top: 30px;
  color: var(--gold-light);
  font-size: 2rem !important;
  font-weight: bold;
}

/* Traits équilibrés autour de Corps · Esprit · Âme */
#viking-video .eyebrow,
.hero-wrapper .eyebrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

#viking-video .eyebrow::before,
#viking-video .eyebrow::after,
.hero-wrapper .eyebrow::before,
.hero-wrapper .eyebrow::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  flex: 0 0 48px;
  background: var(--gold);
}

#viking-video .eyebrow::before,
.hero-wrapper .eyebrow::before {
  margin-right: 2px;
}

#viking-video .eyebrow::after,
.hero-wrapper .eyebrow::after {
  margin-left: 2px;
}

#viking-video .eyebrow,
.hero-wrapper .eyebrow {
  font-weight: 400 !important;
}

/* ==========================================================
   VIDÉOS PC / TÉLÉPHONE
   ========================================================== */

.bg-video--desktop,
.hero-bg-video--desktop,
.hero-background-video--desktop {
  display: block;
}

.bg-video--mobile,
.hero-bg-video--mobile,
.hero-background-video--mobile {
  display: none;
}

@media (max-width: 768px) {
  .bg-video--desktop,
  .hero-bg-video--desktop,
  .hero-background-video--desktop {
    display: none !important;
  }

  .bg-video--mobile,
  .hero-bg-video--mobile,
  .hero-background-video--mobile {
    display: block !important;
  }
}

#cadeau {
  position: relative;
  overflow: hidden;
}

#cadeau .hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#cadeau .book-capture-inner {
  position: relative;
  z-index: 1;}
  
  /* ==========================================================
   TRAIT DE SÉPARATION ENTRE TOUTES LES SECTIONS
   ========================================================== */

main > section {
  position: relative;
  border-top: 1px solid rgba(201, 162, 75, 0.55);
}

/* Effet lumineux discret au centre */
main > section::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 1100px);
  height: 1px;
  z-index: 10;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 162, 75, 0.35) 15%,
    #e4c477 50%,
    rgba(201, 162, 75, 0.35) 85%,
    transparent
  );

  box-shadow: 0 0 8px rgba(201, 162, 75, 0.3);
}

/* Pas de trait au-dessus de la première section */
main > section:first-child {
  border-top: none;
}

main > section:first-child::after {
  display: none;
  
  
}

/* =========================================================
   CORRECTION DU CHEVAUCHEMENT
   ========================================================= */

.packs-grid {
  align-items: stretch;
}

.pack-card,
.pack-card.is-featured {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 620px;
  overflow: visible;
}

/* Description */

.pack-tagline {
  min-height: 115px;
  height: auto;
}

/* Liste des avantages */

.pack-features,
.pack-card.is-featured .pack-features {
  position: static;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  height: auto;
  margin: 0 0 32px;
  padding: 0;
}

.pack-features li,
.pack-card.is-featured .pack-features li {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 11px 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* Bouton toujours placé après les textes */

.pack-cta,
.pack-card.is-featured .pack-cta {
  position: static;
  inset: auto;
  flex-shrink: 0;
  width: 100%;
  margin: auto 0 0;
  box-sizing: border-box;
  transform: none;
}

/* Tablette et téléphone */

@media (max-width: 950px) {
  .pack-card,
  .pack-card.is-featured {
    min-height: 0;
  }

  .pack-tagline {
    min-height: 0;
  }

  .pack-features {
    margin-bottom: 28px;
  }
}

.viking-player {
  position: relative;
  overflow: hidden;
}

.viking-player__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.viking-player__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent; /* important */
}

.viking-player__label {
  position: absolute;
  top: 275px;
  left: 50%;
  transform: translateX(-50%);

  color: #d8b15b;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
/* Gros titres */
h1,
.main-title,
.hero-title {
  font-family: "Skranji", cursive;
}

/* Titres */
h2,
.section-title {
  font-family: "Germania One", serif;
}

/* Sous-titres */
h3,
h4,
.subtitle,
.card-title {
  font-family: "Caesar Dressing", system-ui;
}

h1,
h2,
h3,
h4,
h5,
h6,
.main-title,
.hero-title,
.section-title,
.subtitle,
.card-title {
  font-family: "Skranji", cursive !important;}
  
  /* ==========================================================
   CARTES COACHING — VERSION PREMIUM
   ========================================================== */

#offres .packs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 30px);
  max-width: 1180px;
  margin: 45px auto 0;
}

/* Carte */
#offres .pack-card,
#offres .pack-card.is-featured {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  min-height: 620px;
  height: 100%;
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.5vw, 32px);

  color: #f7f1e6;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(225, 178, 83, 0.17),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #21170e 0%,
      #100d09 42%,
      #050505 100%
    );

  border: 1px solid rgba(218, 174, 83, 0.55) !important;
  border-radius: 18px;

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 235, 190, 0.12),
    inset 0 0 35px rgba(201, 164, 93, 0.035);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Reflet supérieur */
#offres .pack-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 10%;
  width: 80%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #f4d68e,
    transparent
  );

  box-shadow: 0 0 18px rgba(235, 190, 95, 0.75);
}

/* Halo décoratif */
#offres .pack-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -110px;
  bottom: -130px;
  width: 260px;
  height: 260px;
  border-radius: 50%;

  background: rgba(187, 121, 38, 0.11);
  filter: blur(25px);
  pointer-events: none;
}

#offres .pack-card:hover {
  transform: translateY(-10px);
  border-color: #ebc875 !important;

  box-shadow:
    0 32px 75px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(201, 164, 93, 0.2),
    inset 0 1px 0 rgba(255, 242, 209, 0.2);
}

/* Petit intitulé */
#offres .pack-eyebrow {
  min-height: 18px;
  margin-bottom: 8px;

  color: #d8ad57;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Titre */
#offres .pack-title {
  min-height: 54px;
  margin: 0 0 18px;

  color: #fffaf0;
  font-family: "Skranji", cursive;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

/* Description */
#offres .pack-desc {
  min-height: 125px;
  margin: 0 0 25px;

  color: rgba(245, 240, 230, 0.76);
  font-size: 0.86rem;
  line-height: 1.75;
}

/* Prix */
#offres .pack-price {
  min-height: 58px;
  margin: 0 0 22px;

  color: #f3d58d;
  font-family: "Skranji", cursive;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  text-shadow: 0 0 22px rgba(213, 166, 72, 0.22);
}

/* Caractéristiques */
#offres .pack-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

#offres .pack-features li {
  position: relative;
  padding: 12px 5px 12px 23px;

  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  line-height: 1.45;

  border-bottom: 1px solid rgba(218, 174, 83, 0.18);
}

#offres .pack-features li::before {
  content: "◆";
  position: absolute;
  top: 13px;
  left: 2px;

  color: #d6aa53;
  font-size: 0.55rem;
}

/* Boutons alignés en bas */
#offres .pack-cta {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  padding: 15px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #120e08 !important;
  background: linear-gradient(
    135deg,
    #f1d893 0%,
    #c7973e 48%,
    #f0d188 100%
  ) !important;

  border: 1px solid #efd58e !important;
  border-radius: 7px;

  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);

  transition:
    transform 0.3s ease,
    filter 0.3s ease,
    box-shadow 0.3s ease;
}

#offres .pack-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.48),
    0 0 22px rgba(219, 173, 79, 0.25);
}

/* Carte centrale légèrement mise en valeur */
#offres .pack-card:nth-child(2) {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(242, 196, 100, 0.25),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #2b1b0d 0%,
      #130e09 45%,
      #050505 100%
    );

  border-color: rgba(238, 198, 111, 0.82) !important;

  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.65),
    0 0 28px rgba(201, 164, 93, 0.14),
    inset 0 1px 0 rgba(255, 238, 193, 0.18);
}

/* Tablette */
@media (max-width: 950px) {
  #offres .packs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #offres .pack-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 560px);
    justify-self: center;
  }
}

/* Téléphone */
@media (max-width: 650px) {
  #offres .packs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 14px;
    margin-top: 30px;
  }

  #offres .pack-card,
  #offres .pack-card.is-featured,
  #offres .pack-card:last-child {
    grid-column: auto;
    width: 100%;
    min-height: auto;
    padding: 28px 22px;
    border-radius: 15px;
  }

  #offres .pack-title,
  #offres .pack-desc {
    min-height: 0;
  }

  #offres .pack-desc {
    margin-bottom: 25px;
  }

  #offres .pack-card:hover {
    transform: translateY(-4px);
  }
}

/* ==========================================================
   TRYPTIQUE — CARTES PREMIUM NOIR, BRUN ET OR
   ========================================================== */

#tryptique .premium-section,
#tryptique .premium-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(20px, 2.5vw, 32px);

  width: 100%;
  max-width: 1180px;
  margin: 42px auto 0;
  padding: 0 15px;
}

/* Carte principale */
#tryptique .premium-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 390px;
  padding: 9px 9px 34px;

  color: #f8f1e4;
  text-align: center;

  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(222, 171, 75, 0.16),
      transparent 38%
    ),
    linear-gradient(
      150deg,
      #2a1b10 0%,
      #12100c 48%,
      #060606 100%
    );

  border: 1px solid rgba(220, 177, 91, 0.58);
  border-radius: 18px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 241, 205, 0.15),
    inset 0 0 35px rgba(202, 158, 75, 0.05);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Ligne lumineuse supérieure */
#tryptique .premium-card::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 12%;

  width: 76%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #f5d994,
    transparent
  );

  box-shadow: 0 0 17px rgba(232, 188, 96, 0.65);
}

/* Halo décoratif */
#tryptique .premium-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: -100px;

  width: 220px;
  height: 220px;
  border-radius: 50%;

  background: rgba(191, 126, 37, 0.11);
  filter: blur(30px);
  pointer-events: none;
}

/* Effet au survol */
#tryptique .premium-card:hover {
  transform: translateY(-10px);
  border-color: #e9c775;

  box-shadow:
    0 34px 75px rgba(0, 0, 0, 0.68),
    0 0 28px rgba(211, 165, 75, 0.22),
    inset 0 1px 0 rgba(255, 244, 216, 0.2);
}

/* Image */
#tryptique .premium-card img {
  display: block;
  width: 100%;
  height: 210px;
  margin: 0;

  object-fit: cover;
  object-position: center;

  border-radius: 11px 11px 4px 4px;

  filter:
    saturate(0.86)
    contrast(1.06)
    brightness(0.9);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.48),
    0 1px 0 rgba(234, 193, 106, 0.3);

  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

#tryptique .premium-card:hover img {
  transform: scale(1.025);
  filter:
    saturate(1)
    contrast(1.08)
    brightness(0.98);
}

/* Numéro */
#tryptique .premium-number {
  position: relative;
  display: block;

  margin: 25px 0 11px;
  padding-bottom: 10px;

  color: #d3a550;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28em;
  text-align: center;
}

/* Petit trait sous le numéro */
#tryptique .premium-number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;

  width: 30px;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    #dcaf59,
    transparent
  );

  transform: translateX(-50%);
}

/* Titre */
#tryptique .premium-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 270px;
  min-height: 78px;
  margin: 0 auto;

  color: #f0c872;
  font-family: "Skranji", cursive;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.025em;
  text-align: center;
  text-transform: uppercase;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(221, 173, 75, 0.14);
}

/* Carte centrale légèrement valorisée */
#tryptique .premium-card:nth-child(2) {
  background:
    radial-gradient(
      circle at 50% 8%,
      rgba(239, 190, 91, 0.24),
      transparent 40%
    ),
    linear-gradient(
      150deg,
      #33200f 0%,
      #15100a 48%,
      #060606 100%
    );

  border-color: rgba(236, 194, 105, 0.8);

  box-shadow:
    0 30px 68px rgba(0, 0, 0, 0.65),
    0 0 28px rgba(201, 164, 93, 0.15),
    inset 0 1px 0 rgba(255, 241, 203, 0.18);
}

/* Suppression d'un éventuel lien positionné en bas */
#tryptique .premium-card a {
  position: static;
  width: auto;
  margin-top: 18px;

  color: white;
  text-decoration: none;
}

/* Tablette */
@media (max-width: 900px) {
  #tryptique .premium-section,
  #tryptique .premium-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #tryptique .premium-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 520px);
    justify-self: center;
  }
}

/* Téléphone */
@media (max-width: 620px) {
  #tryptique .premium-section,
  #tryptique .premium-cards {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 14px;
  }

  #tryptique .premium-card,
  #tryptique .premium-card:last-child {
    grid-column: auto;
    width: 100%;
    min-height: 0;
    padding: 8px 8px 30px;
    border-radius: 16px;
  }

  #tryptique .premium-card img {
    height: 230px;
  }

  #tryptique .premium-card h3 {
    min-height: 65px;
    font-size: 1.15rem;
  }

  #tryptique .premium-card:hover {
    transform: translateY(-4px);
  }
}
/* Alignement horizontal des tarifs */
@media (min-width: 951px) {
  #offres .pack-card {
    display: grid !important;
    grid-template-rows:
      auto       /* catégorie */
      auto       /* titre */
      190px      /* description */
      auto       /* tarif */
      1fr        /* avantages */
      auto;      /* bouton */

    height: 100%;
  }

  #offres .pack-desc {
    min-height: 0 !important;
    margin-bottom: 0;
    overflow: hidden;
  }

  #offres .pack-price {
    align-self: center;
    margin: 24px 0 !important;
  }

  #offres .pack-features {
    min-height: 190px;
    margin-bottom: 30px;
  }
}

/* Hauteurs naturelles sur téléphone et tablette */
@media (max-width: 950px) {
  #offres .pack-card {
    display: flex !important;
  }

  #offres .pack-desc,
  #offres .pack-features {
    min-height: 0;
  }
}

/* Remonter le contenu de la section supérieure */
#viking-video .hero-content {
  transform: translateY(30px);
}

@media (max-width: 768px) {
  #viking-video .hero-content {
    transform: translateY(60px);
  }
}

#viking-video .hero-copy {
  position: relative;
  top: -150px;
}

@media (max-width: 768px) {
  #viking-video .hero-copy {
    top: -150px;
  }
}
#viking-video {
  min-height: 0 !important;
  padding: 30px 16px !important;
}

#viking-video .hero-content {
  padding: 0 !important;
  margin: 0 auto;
}

#viking-video .hero-copy .gloire {
  font-family: "Skranji", cursive !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--gold-light);
}
.testimonials-section .section-kicker {
  color: #f5dca0 !important;
}
/* Uniquement la description, pas le texte "Coach diplômé" */
p.description-viking {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

/* Affichage PC */
.version-pc {
  display: block;
}

.version-mobile {
  display: none;
}

/* Affichage smartphone */
@media screen and (max-width: 768px) {
  .version-pc {
    display: none;
  }

  .version-mobile {
    display: block;
  }
}

#prochaine-legende-pc .cta-outline span,
#prochaine-legende-pc .cta-outline strong {
  white-space: nowrap;
}

#prochaine-legende-pc .cta-outline strong {
  display: inline-block;
  margin-top: 8px;
}

/* VIKING! centré et plus grand uniquement sur mobile */
@media screen and (max-width: 768px) {
  #prochaine-legende-mobile .quote .section-title {
    width: 100%;
    font-size: 3rem !important;
    line-height: 1.1;
  }
  
  
/* Section offres autonome : aucun sélecteur des anciennes classes pack-* n'est requis. */
.coach-section {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.5rem;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 4rem);
  color: #f8f1df;
  background: #17140f;
}

.coach-section__video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.coach-section__video--mobile {
  display: none;
}

.coach-section__overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 7, .68), rgba(10, 9, 7, .84));
  pointer-events: none;
}

.coach-section__header {
  display: grid;
  gap: .7rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.coach-section__kicker,
.coach-card__eyebrow {
  margin: 0;
  color: #d6a83c;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.coach-section__title,
.coach-card__title,
.coach-card__description,
.coach-card__features {
  margin-block: 0;
}

.coach-section__title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: .98;
  text-wrap: balance;
}

.coach-section__subtitle {
  margin: 0;
  color: rgba(248, 241, 223, .78);
  font-size: 1rem;
}

.coach-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2.4vw, 2rem);
  max-width: 84rem;
  width: 100%;
  margin: 0 auto;
}

.coach-card {
  display: flex;
  min-width: 0;
  border: 1px solid rgba(214, 168, 60, .48);
  background: rgba(20, 17, 12, .82);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, .22);
}

.coach-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

.coach-card__title {
  margin-top: .65rem;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.05;
  text-wrap: balance;
}

.coach-card__media {
  overflow: hidden;
  margin-top: 1.25rem;
  aspect-ratio: 16 / 10;
  background: #2a241b;
}

.coach-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-card__separator {
  width: 100%;
  margin: 1.25rem 0;
  border-top: 1px solid rgba(248, 241, 223, .24);
}

.coach-card__description {
  color: rgba(248, 241, 223, .86);
  font-size: .98rem;
  line-height: 1.65;
}

.coach-card__features {
  display: grid;
  gap: .7rem;
  padding: 0;
  margin-top: 1.25rem;
  list-style: none;
  color: rgba(248, 241, 223, .82);
  font-size: .9rem;
  line-height: 1.45;
}

.coach-card__features li {
  position: relative;
  padding-left: 1.25rem;
}

.coach-card__features li::before {
  position: absolute;
  top: .05em;
  left: 0;
  color: #d6a83c;
  content: "✦";
}

.coach-card__cta-wrap {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 1.75rem;
}

.coach-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid #d6a83c;
  border-radius: 999px;
  padding: .8rem 1.2rem;
  color: #17140f;
  background: #d6a83c;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.coach-card__cta:hover,
.coach-card__cta:focus-visible {
  color: #f8f1df;
  background: transparent;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .coach-section {
    gap: 2rem;
    padding: 4rem 1rem;
  }

  .coach-section__video--desktop {
    display: none;
  }

  .coach-section__video--mobile {
    display: block;
  }

  .coach-section__grid {
    grid-template-columns: 1fr;
  }
}

