/* ════════════════════════════════════════════════════════════
   HOME — DESKTOP
   Page d'accueil version desktop (> 768px). Chargee uniquement
   par index/desktop/index.html.
   ════════════════════════════════════════════════════════════ */

.home {
  padding-top: 0; /* le hero passe sous la navbar fixe */
}

/* ─── HERO ─────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 68px);  /* hero + bande (68px) = exactement un ecran */
  min-height: 520px;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../../assets/images/homepage/hero.webp');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
}

/* Leger assombrissement haut + bas pour fondre la bande dessous */
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(16,16,16,0.45) 0%,
      rgba(16,16,16,0.15) 35%,
      rgba(16,16,16,0.30) 62%,
      rgba(16,16,16,0.96) 100%);
  pointer-events: none;
}

/* Contenu du hero (titre + sous-titre), aligne en bas a gauche */
.home-hero__content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 64px 22px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
}
/* Card titre + sous-titre, bordure orange */
.home-hero__card {
  background: rgba(10,10,10,0.55);
  border: 1px solid var(--sl-saffron);
  border-radius: 6px;
  padding: 26px 30px;
  backdrop-filter: blur(6px);
  margin-bottom: 22px;
}
.home-hero__title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--sl-gold);
  margin-bottom: 12px;
}
.home-hero__subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: #9a9a9a;
}
.home-hero__cta {
  align-self: center;   /* centre le CTA par rapport a la card */
}

/* ─── BANDE DECORATIVE (sous le hero) ───────────────────────
   Style premium discret : fond noir, 4 sections (2 de chaque cote
   de la pastille), separateurs fins noir-dore tres legers.
   ──────────────────────────────────────────────────────────── */
.home-band {
  position: relative;
  background: #080808;
  border-top: 1px solid rgba(179,138,71,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-band__inner {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Sections texte de chaque cote */
.home-band__item {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a9a9a;
  white-space: nowrap;
}

/* Separateur fin vertical, noir-dore juste legerement */
.home-band__sep {
  width: 1px;
  height: 16px;
  background: linear-gradient(to bottom,
    rgba(179,138,71,0) 0%,
    rgba(179,138,71,0.30) 50%,
    rgba(179,138,71,0) 100%);
}

/* Pastille de localisation centrale — discrete */
.home-band__pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #0f0f0f;
  border: 1px solid rgba(179,138,71,0.40);
  border-radius: 999px;
  color: var(--sl-saffron);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 0.25s, color 0.25s;
}
.home-band__pin:hover {
  color: var(--sl-green);
  border-color: var(--sl-green);
}

.home-band__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: currentColor;   /* suit la couleur du texte : vert, puis orange au hover */
}

/* ─── MORE THAN TRAINING ────────────────────────────────────
   Bloc tagline premium discret sur fond noir.
   ──────────────────────────────────────────────────────────── */
.home-mtt {
  background: var(--bg);
  text-align: center;
  padding: 90px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.home-mtt__title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.06em;
  color: var(--sl-saffron);
}

.home-mtt__divider {
  width: 560px;
  max-width: 80vw;
  height: 2px;
  background: var(--sl-green);
}

.home-mtt__sub {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9a9a;
}

/* ─── DEUX OCTOGONES + TEXTE CENTRAL ────────────────────────
   Octogone gauche (Private Classes, bleu) et droite (Camps, rouge),
   texte central "Your Journey" avec deux boutons.
   ──────────────────────────────────────────────────────────── */
.home-oct {
  background: var(--bg);
  padding: 40px 24px 100px;
}

.home-oct__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: center;
}

.home-oct__col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Octogone : image clippee + contour SVG */
.home-oct__shape {
  position: relative;
  width: 260px;
  height: 260px;
  margin-bottom: 26px;
}
.home-oct__shape svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.home-oct__img {
  position: absolute;
  inset: 14px;
  overflow: hidden;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.home-oct__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.home-oct__price {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sl-gold);
  margin-bottom: 8px;
}
.home-oct__title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 12px;
}
.home-oct__title--orange { color: var(--sl-saffron); }
.home-oct__title--green  { color: var(--sl-green); }
.home-oct__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #9a9a9a;
  max-width: 300px;
}

/* Centre */
.home-oct__center {
  text-align: center;
  max-width: 360px;
}
.home-oct__center-sub {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sl-saffron);
  margin-bottom: 16px;
}
.home-oct__center-text {
  font-size: 14px;
  line-height: 1.8;
  color: #b5b5b5;
  margin-bottom: 28px;
}
.home-oct__btns {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
}
/* Boutons plus compacts dans le centre (cote a cote) */
.home-oct__btns .btn-cta,
.home-oct__btns .btn-outline {
  padding: 0.7rem 1.1rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* Bouton secondaire (contour) pour le centre */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: transparent;
  color: var(--text);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(179,138,71,0.45);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: var(--sl-gold);
  color: var(--sl-gold);
}

/* ─── WHY TRAIN WITH CEDRIC ─────────────────────────────────
   Titre + intro centres, puis 4 cartes sur une rangee.
   ──────────────────────────────────────────────────────────── */
.home-why {
  background: var(--bg);
  padding: 90px 24px 100px;
}
.home-why__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.home-why__title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.04em;
  color: var(--sl-gold);
  margin-bottom: 22px;
}
.home-why__intro {
  font-size: 16px;
  line-height: 1.8;
  color: #b5b5b5;
}

.home-why__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.home-why__card {
  background: #131313;
  border: 1px solid #222;
  border-top: 1px solid rgba(179,138,71,0.55);
  padding: 34px 28px 40px;
  transition: border-color 0.25s, transform 0.25s;
}
.home-why__card:hover {
  border-color: #2e2e2e;
  border-top-color: var(--sl-gold);
  transform: translateY(-3px);
}
.home-why__emoji {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 26px;
}
.home-why__card-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.home-why__card-text {
  font-size: 14px;
  line-height: 1.75;
  color: #9a9a9a;
}

/* ─── TARIFS ─────────────────────────────────────────────────
   Onglets de duree -> prix (USD + KIP) + grille "What's included".
   ──────────────────────────────────────────────────────────── */
.home-price {
  background: var(--bg);
  padding: 90px 24px 100px;
  text-align: center;
  border-top: 1px solid #161616;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-price__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sl-saffron);
  margin-bottom: 14px;
}
.home-price__title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: var(--sl-gold);
  margin-bottom: 34px;
}

.home-price__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.home-tab {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #c9c9c9;
  background: transparent;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 11px 22px;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.home-tab:hover { border-color: #3a3a3a; }
.home-tab.is-active {
  color: #fff;
  border-color: var(--sl-gold);
  background: #1a1a1a;
}

.home-price__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}
.home-price__usd {
  font-family: 'Cinzel Decorative', serif;
  font-size: 64px;
  line-height: 1;
  color: #fff;
  transition: opacity 0.25s ease;
}
.home-price__kip {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--sl-saffron);
  transition: opacity 0.25s ease;
}

.home-price__included {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 22px;
}
.home-price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 760px;
  margin-bottom: 44px;
}
.home-incl {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #e2e2e2;
  background: #161616;
  border: 1px solid #232323;
  border-radius: 4px;
  padding: 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: homeInclIn 0.4s ease both;
}
@keyframes homeInclIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .home-incl { animation: none; }
}

/* ─── CITATION — Cedric Training (reprise de selection.css) ── */
.selection-citation {
  background: var(--bg);
  padding: 4.5rem 1.5rem 3.5rem;
}
.selection-citation__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
  text-align: left;
}
.selection-citation__avatar {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(140deg, var(--sl-gold), var(--sl-crimson));
}
.selection-citation__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.selection-citation__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.selection-citation__text {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  line-height: 1.9;
  color: #e4e0d8;
  letter-spacing: 0.02em;
}
.selection-citation__text::before { content: '\201C'; }
.selection-citation__text::after  { content: '\201D'; }
.selection-citation__text::before,
.selection-citation__text::after {
  font-family: 'Cinzel Decorative', serif;
  color: var(--sl-gold);
  font-style: normal;
}
.selection-citation__name {
  font-family: 'Cinzel', serif;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sl-saffron);
}

/* ─── STARTER PACK ───────────────────────────────────────────
   Octogone slideshow (handwraps + ankle support) + texte/prix/CTA.
   ──────────────────────────────────────────────────────────── */
.home-spack {
  background: var(--bg);
  padding: 90px 24px 110px;
  border-top: 1px solid #161616;
}
.home-spack__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

/* Octogone + slideshow 2 images */
.home-spack__oct {
  position: relative;
  width: 320px;
  height: 320px;
  flex: 0 0 auto;
}
.home-spack__oct svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(26,79,160,0.28));
}
.home-spack__oct-img {
  position: absolute;
  inset: 0;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  overflow: hidden;
  background: #0d0d0d;
}
.home-spack__slideshow {
  display: flex;
  width: 200%;
  height: 100%;
  animation: homeSpackSlide 7s infinite;
}
.home-spack__slideshow img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
@keyframes homeSpackSlide {
  0%, 42%  { transform: translateX(0); }
  50%, 92% { transform: translateX(-50%); }
  100%     { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .home-spack__slideshow { animation: none; }
}

/* Texte */
.home-spack__text {
  text-align: left;
}
.home-spack__eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sl-saffron);
  margin-bottom: 14px;
}
.home-spack__title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sl-gold);
  margin-bottom: 12px;
}
.home-spack__subtitle {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9c9c9;
  margin-bottom: 26px;
}
.home-spack__diamond {
  margin: 0 0.55em;
  font-size: 10px;
  color: var(--sl-green);
  vertical-align: middle;
}
.home-spack__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.home-spack__price-lkr {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--sl-saffron);
}
.home-spack__price-usd {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #8a8a8a;
}

/* ─── THE ARCHIVE — FAQ ──────────────────────────────────────
   Repris de la v1, couleurs adaptees au root (or / safran / vert).
   ──────────────────────────────────────────────────────────── */
.home-archive {
  background: var(--bg);
  padding: 90px 24px 110px;
  text-align: center;
  border-top: 1px solid #161616;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-archive__title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.04em;
  color: var(--sl-gold);
  margin-bottom: 18px;
}
.home-archive__text {
  font-size: 15px;
  line-height: 1.8;
  color: #b5b5b5;
  max-width: 560px;
  margin-bottom: 30px;
}
.home-archive__divider {
  width: 50%;
  height: 2px;
  margin: 26px 0;
  background: linear-gradient(to right,
    rgba(26,79,160,0) 0%,
    rgba(26,79,160,0.7) 50%,
    rgba(26,79,160,0) 100%);
}
.home-archive__topics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px 0;
}
.home-archive__topics li {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cfcfcf;
}
.home-archive__dot {
  color: var(--sl-green) !important;
  font-size: 11px;
}
.home-archive__cta {
  margin-top: 34px;
}

/* ─── STARTER PACK (v1 : items · octogone slideshow · selection) ───
   3 colonnes : items a gauche, octogone (crossfade 3 photos) au centre,
   "My Selection" + citation + bouton a droite.
   ──────────────────────────────────────────────────────────── */
.home-starter {
  background: var(--bg);
  padding: 90px 24px 110px;
  border-top: 1px solid #161616;
}
.home-starter__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

/* Octogone + slideshow */
.home-starter__oct {
  position: relative;
  width: 320px;
  height: 320px;
  flex: 0 0 auto;
}
.home-starter__oct svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(179,138,71,0.20));
}
.home-starter__oct-img {
  position: absolute;
  inset: 0;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  overflow: hidden;
  background: #0d0d0d;
}
.home-starter__slideshow { position: absolute; inset: 0; }
.home-starter__slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: starterFade 12s infinite;
}
.home-starter__slideshow img:nth-child(1) { animation-delay: 0s; }
.home-starter__slideshow img:nth-child(2) { animation-delay: 4s; }
.home-starter__slideshow img:nth-child(3) { animation-delay: 8s; }
@keyframes starterFade {
  0%       { opacity: 0; }
  4%, 29%  { opacity: 1; }
  33%, 100%{ opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .home-starter__slideshow img { animation: none; }
  .home-starter__slideshow img:nth-child(1) { opacity: 1; }
}

/* Colonne gauche : titre + items */
.home-starter__col--left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: right;
  align-items: flex-end;
}
.home-starter__title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}
.home-starter__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.home-starter__items li {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8c4bc;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.home-starter__dia { color: var(--red); font-size: 0.5rem; }

/* Colonne droite : selection + citation + bouton */
.home-starter__col--right {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
}
.home-starter__subtitle {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.home-starter__text {
  font-size: 0.85rem;
  line-height: 1.9;
  color: #9a9a9a;
}

@media (max-width: 900px) {
  .home-starter__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 2.5rem;
  }
  .home-starter__col--left { text-align: center; align-items: center; }
  .home-starter__col--right { align-items: center; text-align: center; }
  .home-starter__items li { justify-content: center; }
}

/* ─── FEATURED PRODUCT (v1) ─────────────────────────────────
   Octogone a bordure degradee (bleu -> rouge) + crossfade 3 photos,
   texte produit a droite.
   ──────────────────────────────────────────────────────────── */
.home-featured {
  background: var(--bg);
  padding: 90px 24px 110px;
  border-top: 1px solid #161616;
}
.home-featured__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.home-featured__oct {
  width: 320px;
  height: 320px;
  flex: 0 0 auto;
  padding: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--red));
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.home-featured__oct-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #161616;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.home-featured__oct-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: starterFade 12s infinite;
}
.home-featured__oct-inner img:nth-child(1) { animation-delay: 0s; }
.home-featured__oct-inner img:nth-child(2) { animation-delay: 4s; }
.home-featured__oct-inner img:nth-child(3) { animation-delay: 8s; }
@media (prefers-reduced-motion: reduce) {
  .home-featured__oct-inner img { animation: none; }
  .home-featured__oct-inner img:nth-child(1) { opacity: 1; }
}
.home-featured__text {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
  max-width: 360px;
}
.home-featured__badge {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.home-featured__title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--text);
}
.home-featured__subtitle {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #c8c4bc;
}
.home-featured__desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #9a9a9a;
}
.home-featured__price {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.6rem;
  color: var(--gold);
}
.home-featured__kip {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #888;
  margin-top: -0.5rem;
}
@media (max-width: 900px) {
  .home-featured__inner { flex-direction: column; text-align: center; gap: 2.2rem; }
  .home-featured__text { align-items: center; }
}

/* ─── CTA FINAL (v1) ─────────────────────────────────────────
   Section pleine largeur, photo de fond (v2) avec voile,
   titre + texte + 2 boutons + note.
   ──────────────────────────────────────────────────────────── */
.home-final {
  position: relative;
  overflow: hidden;
  padding: 6rem 4vw 6rem 50%;
  text-align: left;
  border-top: 1px solid #161616;
  background: #0a0a0a;
}
.home-final__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  pointer-events: none;
}
.home-final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.85) 60%,
    #0a0a0a 100%);
  pointer-events: none;
}
.home-final__inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.home-final__title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.home-final__text {
  font-size: 0.9rem;
  color: #c8c4bc;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.home-final__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.home-final__note {
  font-size: 0.72rem;
  color: #888;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .home-final {
    padding: 4rem 1.5rem;
    text-align: center;
  }
  .home-final__inner { max-width: 100%; }
  .home-final__overlay {
    background: linear-gradient(180deg,
      rgba(10,10,10,0.40) 0%,
      rgba(10,10,10,0.85) 100%);
  }
  .home-final__actions { justify-content: center; }
}
