/* ================================================================
   RÉMI POZZO FILMS — SITE COMPLET
   Palette chaude CLAUDE.md : espresso, sable, ivoire, fond crème
   Typographies : Cormorant Garamond + DM Sans
   ================================================================ */

/* --- FONTS ---
   Chargées via <link> dans le <head> HTML (preconnect + display=swap).
   Ne PAS utiliser @import ici — il bloque le rendu.
   ---------------------------------------------------------------- */

/* ================================================================
   RESET & BASE
   ================================================================ */

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

:root {
  /* Palette — light luminous theme (Gordon-style) */
  --espresso:   #1E1410;
  --sable:      #B8A07A;
  --ivoire:     #2A2118;
  --fond:       #FDFBF8;    /* Blanc chaud — fond principal */
  --fond-light: #F5F0E8;    /* Sections alternées — crème chaud */
  --fond-card:  #FDFBF8;    /* Cards et encadrés */
  --texte:      #2A2118;    /* Brun foncé — texte principal sur fond clair */
  --texte-soft: rgba(42,33,24,0.72); /* Texte secondaire */
  --sable-dark: #7A6548;
  --border:     rgba(42,33,24,0.1); /* Bordures subtiles */

  /* Alias */
  --black:       var(--espresso);
  --black-light: #241A14;
  --black-mid:   #2C1F14;
  --gray-dark:   #3D2E24;
  --gray:        var(--sable-dark);
  --gray-text:   var(--sable-dark);
  --gray-light:  var(--texte);
  --white-off:   #FDFBF8;
  --white:       #FDFBF8;
  --gold:        var(--sable);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  --max-width: 1400px;
  --section-padding: clamp(70px, 8vw, 120px);
  --gutter: clamp(20px, 4vw, 60px);

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Lenis smooth scroll overrides */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--sable) #F5F0E8;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--fond);
  color: var(--texte);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 2.1;
  letter-spacing: 0.015em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain overlay — désactivé en thème lumineux */

/* Scrollbar light */
::-webkit-scrollbar-track { background: #F5F0E8; }
::-webkit-scrollbar-thumb { background: var(--sable); }
::-webkit-scrollbar-thumb:hover { background: var(--sable-dark); }

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

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

ul, ol { list-style: none; }

/* Scrollbar Webkit */
::-webkit-scrollbar { width: 5px; }

/* Selection */
::selection { background: var(--sable); color: #FDFBF8; }
::-moz-selection { background: var(--sable); color: #FDFBF8; }

/* ================================================================
   UTILITAIRES
   ================================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ================================================================
   TYPOGRAPHIE
   ================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ivoire);
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 6vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-align: center;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: none;
  text-align: center;
}

h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  letter-spacing: normal;
  line-height: 1.35;
  color: var(--ivoire);
}

h4 {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
  color: var(--sable);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.5;
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  color: var(--texte-soft);
  margin-bottom: 1.5em;
  letter-spacing: normal;
}

p:last-child { margin-bottom: 0; }

em, i {
  font-family: var(--font-accent);
  font-style: italic;
  color: inherit;
}

strong, b {
  font-weight: 500;
  color: var(--espresso);
}

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.7;
  color: var(--texte);
  border-left: 2px solid var(--sable);
  padding: 0 0 0 2rem;
  margin: 2rem 0;
  position: relative;
}

/* Guillemet decorative */
blockquote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--sable);
  position: absolute;
  left: -0.15em;
  top: -0.4em;
  opacity: 0.2;
  line-height: 1;
}

/* ================================================================
   LIGNE ROUGE DECORATIVE
   ================================================================ */

.red-line {
  width: 40px;
  height: 1px;
  background: var(--sable);
  border: none;
  margin: 2rem 0;
  opacity: 0.6;
}

.red-line--center {
  margin-left: auto;
  margin-right: auto;
}

.red-line--gradient {
  background: linear-gradient(90deg, transparent, var(--sable), transparent);
  max-width: 180px;
  width: 100%;
  margin: 3rem auto;
}

/* ================================================================
   BOUTONS
   ================================================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  color: var(--espresso);
  background: var(--sable);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--espresso);
  transition: left 0.4s var(--ease-out);
  z-index: -1;
}

.btn:hover::before { left: 0; }
.btn:hover {
  color: #FDFBF8;
  box-shadow: none;
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--sable);
  color: var(--espresso);
}
.btn--secondary::before { background: var(--sable); }
.btn--secondary:hover {
  color: var(--espresso);
  border-color: var(--sable);
  box-shadow: none;
}

.btn--white {
  background: var(--fond);
  border: none;
  color: var(--espresso);
}
.btn--white::before { background: var(--sable); }
.btn--white:hover { color: var(--espresso); box-shadow: none; }

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

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  background: rgba(253,251,248,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header--scrolled {
  background: rgba(253,251,248,0.97);
  border-bottom-color: var(--border);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 80px;
  transition: height 0.3s ease;
}

.header--scrolled .header__inner {
  height: 65px;
}

/* Logo */
.header__logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.header--scrolled .header__logo {
  color: var(--espresso);
}

.header__logo span {
  font-weight: 600;
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header__nav a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(42,33,24,0.7);
  position: relative;
  padding: 0.5em 0;
  transition: color 0.3s ease;
}

.header--scrolled .header__nav a {
  color: rgba(42,33,24,0.65);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1.5px;
  background: var(--sable);
  transition: width 0.4s var(--ease-out), left 0.4s var(--ease-out);
}

.header__nav a:hover { color: var(--espresso); }
.header--scrolled .header__nav a:hover { color: var(--espresso); }
.header__nav a:hover::after { width: 100%; left: 0; }
.header__nav a.active { color: var(--espresso); }
.header--scrolled .header__nav a.active { color: var(--espresso); }
.header__nav a.active::after { width: 100%; left: 0; }

/* Social header */
.header__social {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 2rem;
}

.header__social a {
  color: rgba(42,33,24,0.55);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.header--scrolled .header__social a {
  color: rgba(42,33,24,0.5);
}

.header__social a:hover { color: var(--sable); }
.header--scrolled .header__social a:hover { color: var(--sable); }

/* Burger mobile */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--espresso);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}

.header--scrolled .burger span {
  background: var(--espresso);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--fond);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--espresso);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu .btn {
  font-size: 0.7rem;
  padding: 12px 28px;
  text-align: center;
  margin: 0.5rem auto 0;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu a:hover { color: var(--sable); }

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1) saturate(0.85);
  transform: scale(1.05);
  transition: transform 8s linear;
}

/* YouTube iframe hero background */
.hero__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  min-height: 100vh;
  min-width: 177.78vh; /* 100vh * 16/9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  filter: brightness(0.45) contrast(1.1) saturate(0.85);
}

/* Overlays cinematiques — hero standard (non-minimal) */
.hero:not(.hero--minimal) .hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(30,20,16,0.5) 0%,
    rgba(30,20,16,0.1) 30%,
    rgba(30,20,16,0.15) 55%,
    rgba(30,20,16,0.5) 80%,
    rgba(30,20,16,0.7) 100%
  );
  z-index: 1;
}

/* Vignetage cinema */
.hero__vignette {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(30,20,16,0.5) 100%);
  z-index: 1;
}

/* Letterbox bars — cinematic aspect ratio */
.hero__letterbox {
  position: absolute;
  left: 0; right: 0;
  height: clamp(40px, 8vh, 80px);
  background: var(--fond);
  z-index: 4;
}
.hero__letterbox--top { top: 0; }
.hero__letterbox--bottom { bottom: 0; }

/* Contenu hero */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 1000px;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sable-dark);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s 0.3s var(--ease-out) forwards;
}

/* --- (1) H1 MASK REVEAL — le titre se dévoile par un masque horizontal --- */
.hero__title {
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  clip-path: inset(0 100% 0 0);
  animation: maskReveal 1.4s 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Hero with dark background image — title stays light */
.hero:not(.hero--minimal) .hero__title {
  color: #EDE0CC;
  text-shadow: 0 2px 40px rgba(30,20,16,0.4);
}

@keyframes maskReveal {
  0%   { clip-path: inset(0 100% 0 0); opacity: 0.5; }
  30%  { opacity: 1; }
  100% { clip-path: inset(0 0% 0 0); opacity: 1; }
}

/* Mask reveal supprimé — GSAP gère l'animation du H1 */

.hero__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--sable-dark);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s 0.9s var(--ease-out) forwards;
}

.hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s 1.2s var(--ease-out) forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: heroFadeIn 1s 1.8s var(--ease-out) forwards;
}

.hero__scroll span {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(42,33,24,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(42,33,24,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.3); }
}

/* --- LOADER POP-CORN --- */
.site-loader {
  position: fixed;
  inset: 0;
  background: var(--fond);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}
.site-loader img {
  width: 60px;
  height: 60px;
  animation: loaderPulse 1s ease-in-out infinite;
}
.site-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* --- BARBA.JS CINEMA TRANSITION OVERLAY --- */
.barba-overlay {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
}

/* Legacy class kept for compatibility */
.page-transition { display: none; }

/* Typewriter supprimé — animation épurée */

/* --- (4) LIGNE SABLE — se dessine au scroll --- */
.sable-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--sable);
  margin: 1.5rem auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sable-line.visible {
  transform: scaleX(1);
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================================================
   SECTIONS GÉNÉRIQUES
   ================================================================ */

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

.section--dark {
  background: var(--fond);
}

.section--darker {
  background: var(--fond-light);
}

.section--alt {
  background: var(--fond-light);
}

.section__header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

/* Section tag — editorial italic serif instead of tiny uppercase */
.section__tag {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--sable-dark);
  margin-bottom: 1.8rem;
  display: block;
}

/* ================================================================
   MANIFESTE / INTRO SECTION
   ================================================================ */

.manifesto {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.manifesto__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.06;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.manifesto__content {
  position: relative;
  z-index: 1;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

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

.manifesto__portrait img {
  width: 100%;
  filter: brightness(0.95) contrast(1.05) saturate(0.9);
  transition: transform 0.8s var(--ease-out);
}

.manifesto__portrait:hover img {
  transform: scale(1.03);
}

/* Cadre épuré — pas de bordure ornementale */

.manifesto__text h2 {
  margin-bottom: 0.5rem;
}

.manifesto__text h4 {
  margin-bottom: 2rem;
}

.manifesto__text p {
  margin-bottom: 1.8rem;
}

.manifesto__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sable-dark);
  margin-top: 2rem;
}

/* ================================================================
   SECTION MANIFESTE PLEIN ÉCRAN (comme Callènes)
   ================================================================ */

.manifesto-full {
  position: relative;
  padding: clamp(100px, 15vw, 220px) 0;
  text-align: center;
  overflow: hidden;
}

.manifesto-full__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.25);
}

.manifesto-full__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(30,20,16,0.6) 0%, rgba(30,20,16,0.9) 100%);
}

.manifesto-full__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.manifesto-full h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: #EDE0CC;
}

.manifesto-full__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(196,168,130,0.7);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.manifesto-full p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: rgba(196,168,130,0.75);
  margin-bottom: 2rem;
  line-height: 2;
}

.manifesto-full__closing {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: #EDE0CC;
  margin-top: 3rem;
  line-height: 1.5;
}

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

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

.testimonials__slider {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 2rem;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.testimonials__slider::-webkit-scrollbar { display: none; }

/* Indicateurs scroll */
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ivoire);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials__dot.active {
  background: var(--sable);
  transform: scale(1.3);
}

.testimonial {
  flex: 0 0 min(100%, 600px);
  scroll-snap-align: center;
  padding: clamp(2.5rem, 4vw, 4rem);
  border: none;
  border-left: 2px solid var(--sable);
  background: transparent;
  border-radius: 0;
  transition: border-color 0.4s ease;
}

.testimonial:hover {
  border-left-color: var(--ivoire);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.8;
  color: var(--texte);
  margin-bottom: 2rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.8);
}

.testimonial__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivoire);
}

.testimonial__role {
  font-size: 0.65rem;
  color: var(--sable-dark);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

/* ================================================================
   SECTION PARCOURS / ABOUT
   ================================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.about-grid--reverse {
  direction: rtl;
}

.about-grid--reverse > * {
  direction: ltr;
}

.about__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95) saturate(0.95);
  transition: transform 0.8s var(--ease-out);
}

.about__image:hover img {
  transform: scale(1.03);
}

/* ================================================================
   FORMULES / PRESTATIONS
   ================================================================ */

.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.formule-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  border-radius: 0;
  transition: border-color 0.3s ease;
  position: relative;
}

.formule-card:hover {
  border-top-color: var(--sable);
}

.formule-card.featured {
  border-top-color: var(--sable);
  border-top-width: 2px;
}

.formule-card__badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--sable);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 20px;
  white-space: nowrap;
}

.formule-card__name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sable-dark);
  margin-bottom: 1rem;
}

.formule-card__price {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--ivoire);
  margin-bottom: 2rem;
  line-height: 1;
}

.formule-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.formule-card__list li {
  font-size: 0.85rem;
  color: var(--texte-soft);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.2rem;
  position: relative;
}

.formule-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sable);
  font-size: 0.75rem;
}

.formule-card__note {
  font-size: 0.75rem;
  color: var(--sable-dark);
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.addon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.addon:hover {
  border-color: var(--sable);
}

.addon__name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--texte);
}

.addon__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivoire);
  white-space: nowrap;
  margin-left: 1rem;
}

.addon__detail {
  font-size: 0.7rem;
  color: var(--sable-dark);
  display: block;
  margin-top: 0.2rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1E1410;
  color: #EDE0CC;
  padding: 1rem var(--gutter);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(237,224,204,0.8);
}

.cookie-banner a {
  color: var(--sable);
  text-decoration: underline;
}

.cookie-banner__btn {
  background: var(--sable);
  color: var(--espresso);
  border: none;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.8rem;
}

.cookie-banner__btn--refuse {
  background: transparent;
  border: 1px solid rgba(196,168,130,0.3);
  color: rgba(237,224,204,0.7);
}

.cookie-banner__btn:hover {
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .formules-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .formules-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .addons-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ================================================================
   EXPERIENCE / PROCESSUS
   ================================================================ */

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.process__step {
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  counter-increment: step;
  transition: border-color 0.4s ease;
}

.process__step:hover {
  border-color: var(--sable);
}

.process__step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(196, 168, 130, 0.15);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}

.process__step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.process__step p {
  font-size: 0.88rem;
  color: var(--sable-dark);
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */

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

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

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.8rem 3rem 1.8rem 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  color: var(--ivoire);
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s ease;
}

.faq-item__question:hover {
  color: var(--sable);
}

/* Icone + / - */
.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 200;
  color: var(--sable);
  transition: transform 0.4s ease;
}

.faq-item.active .faq-item__question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-item__answer p {
  font-size: 0.92rem;
  color: var(--sable-dark);
  line-height: 1.9;
}

/* ================================================================
   FORMULAIRE DE CONTACT
   ================================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sable-dark);
  margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--fond);
  border: 1px solid var(--border);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  padding: 14px 18px;
  transition: border-color 0.4s ease;
  -webkit-appearance: none;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sable);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(42,33,24,0.3);
}

.contact-info__item {
  margin-bottom: 2.5rem;
}

.contact-info__item h4 {
  margin-bottom: 0.8rem;
}

.contact-info__item p,
.contact-info__item a {
  color: var(--sable-dark);
  font-size: 0.92rem;
}

.contact-info__item a:hover {
  color: var(--sable);
}

/* ================================================================
   FULL-WIDTH IMAGE BREAK
   ================================================================ */

.image-break {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.image-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1) saturate(0.8);
}

.image-break__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(253,251,248,1) 0%,
    transparent 15%,
    transparent 85%,
    rgba(253,251,248,1) 100%
  );
}

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

.footer {
  background: #1E1410;
  border-top: none;
  padding: clamp(60px, 8vw, 120px) 0 40px;
  margin-top: 0;
  color: #EDE0CC;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand h3 {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #EDE0CC;
}

.footer__brand p {
  font-size: 0.8rem;
  color: rgba(196,168,130,0.6);
  max-width: 350px;
}

.footer__col h4 {
  margin-bottom: 1.5rem;
  color: var(--sable);
}

.footer__col a {
  display: block;
  font-size: 0.78rem;
  color: rgba(196,168,130,0.5);
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer__col a:hover { color: var(--sable); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(196,168,130,0.15);
}

.footer__bottom p {
  font-size: 0.65rem;
  color: rgba(196,168,130,0.4);
  letter-spacing: 0.1em;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social a {
  color: rgba(196,168,130,0.4);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer__social a:hover { color: var(--sable); }

/* ================================================================
   CTA BAND (bande d'appel à l'action)
   ================================================================ */

.cta-band {
  padding: clamp(60px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.2) saturate(0.5);
}

.cta-band__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,20,16,0.7);
}

.cta-band__content {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin-bottom: 1.5rem;
  color: #EDE0CC;
}

.cta-band p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: rgba(196,168,130,0.7);
}

/* ================================================================
   ANIMATIONS AU SCROLL (IntersectionObserver)
   ================================================================ */

/* Reveal classes — GSAP handles animation, CSS sets initial state only */
.reveal {
  will-change: transform, opacity;
}

/* Legacy .visible class for non-JS fallback */
.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Loader supprimé — accès direct au contenu */

/* Custom cursor supprimé — curseur natif */

/* ================================================================
   PAGE HERO (pages internes)
   ================================================================ */

.page-hero {
  padding: 160px 0 70px;
  text-align: center;
  position: relative;
  background: var(--fond-light);
}

.page-hero h1 { color: var(--espresso); }
.page-hero p { color: var(--texte-soft); }
.page-hero .section__tag { color: var(--sable); }

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,168,130,0.3), transparent);
}

/* ================================================================
   FILM POSTERS (portfolio cinema style)
   ================================================================ */

/* Legacy grid (homepage posters etc.) */
.film-posters {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  max-width: 100%;
}

.film-posters .film-poster {
  aspect-ratio: 2/3;
  flex: 1 1 0;
  min-width: 0;
  max-width: 25%;
}

/* Grille 2x2 pour la page portfolio */
.film-posters--grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1100px;
  margin: 0 auto;
}
.film-posters--grid .film-poster {
  flex: 0 0 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
}

.film-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2/3;
  border-radius: 2px;
}

.film-poster__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1) saturate(1);
  transition: transform 1s cubic-bezier(0.25, 0, 0.15, 1), filter 0.8s ease;
  will-change: transform;
}

.film-poster:hover .film-poster__img {
  transform: scale(1.05);
  filter: brightness(0.55) saturate(0.85);
}

.film-poster__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(30,20,16,0.3), transparent 30%, transparent 60%, rgba(30,20,16,0.6));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.film-poster:hover .film-poster__overlay {
  opacity: 1;
}

.film-poster__couple-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(237,224,204,0.8);
}

.film-poster__info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  width: 85%;
}

.film-poster__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: #EDE0CC;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(30,20,16,0.5);
}

.film-poster__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  text-align: center;
  z-index: 2;
}

.film-poster__brand {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sable);
  margin-bottom: 0.6rem;
}

.film-poster__lieu {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(196,168,130,0.5);
}

/* --- (5) PLAY BUTTON — apparition cinématique au hover --- */
.film-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 3rem)) scale(0.5);
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(196,168,130,0);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.5s ease;
  z-index: 3;
  backdrop-filter: blur(4px);
  background: rgba(30,20,16,0.3);
}

.film-poster__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%) scale(0.8);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--sable);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s;
}

.film-poster:hover .film-poster__play {
  opacity: 1;
  transform: translate(-50%, calc(-50% + 3rem)) scale(1);
  border-color: rgba(196,168,130,0.6);
}

.film-poster:hover .film-poster__play::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Texte "Voir le film" sous le play */
.film-poster__play-label {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,168,130,0);
  white-space: nowrap;
  transition: color 0.4s ease 0.15s;
}

.film-poster:hover .film-poster__play-label {
  color: rgba(196,168,130,0.7);
}

/* ================================================================
   CINEMATIC TITLE (massive centered)
   ================================================================ */

.title-cinema {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-align: center;
  color: var(--espresso);
  line-height: 0.9;
  margin-bottom: 2rem;
}

.title-cinema--hero {
  font-size: clamp(4rem, 12vw, 12rem);
  letter-spacing: 0.35em;
}

/* ================================================================
   QUOTE BOX (golden border)
   ================================================================ */

.quote-box {
  border: none;
  border-left: 2px solid var(--sable);
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem);
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.quote-box__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--ivoire);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quote-box__author {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sable-dark);
}

/* ================================================================
   BTN LINE (text + underline, The Line style)
   ================================================================ */

.btn-line {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sable-dark);
  background: none;
  border: none;
  padding: 0.5rem 0;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-line::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--sable-dark);
  transition: width 0.4s var(--ease-out);
}

.btn-line:hover {
  color: var(--espresso);
}

.btn-line:hover::after {
  background: var(--espresso);
}

/* ================================================================
   FORMULE SHOWCASE (homepage — image left + title right)
   ================================================================ */

.formule-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(6rem, 10vw, 10rem);
}

.formule-showcase__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  position: relative;
}

/* Alternate layout: odd items image left, even items image right */
.formule-showcase__item:nth-child(even) {
  direction: rtl;
}
.formule-showcase__item:nth-child(even) > * {
  direction: ltr;
}

.formule-showcase__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.formule-showcase__visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.95) saturate(0.95);
  transition: transform 0.8s var(--ease-out), filter 0.8s ease;
}

.formule-showcase__item:hover .formule-showcase__visual img {
  transform: scale(1.03);
  filter: brightness(1) saturate(1);
}

.formule-showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.formule-showcase__badge {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--sable);
  padding: 5px 16px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.formule-showcase__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ivoire);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.formule-showcase__desc {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--texte-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.formule-showcase__price {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 400;
  color: var(--sable);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {

  .header__nav { display: none; }
  .header__social { display: none; }
  .burger { display: flex; }
  .film-posters { flex-wrap: wrap; gap: 0.75rem; }
  .film-posters .film-poster { flex: 0 0 calc(50% - 0.375rem); max-width: calc(50% - 0.375rem); }
  .formule-showcase__item { grid-template-columns: 1fr; gap: 2rem; }
  .formule-showcase__item:nth-child(even) { direction: ltr; }
  .formule-showcase__content { text-align: center; align-items: center; }
  .formule-showcase__name { font-size: clamp(2.5rem, 10vw, 4rem); }
  .title-cinema { letter-spacing: 0.15em; }
  .title-cinema--hero { letter-spacing: 0.2em; }
  .quote-box { padding: 2rem; }

  .header__inner { height: 65px; }
  .header--scrolled .header__inner { height: 55px; }

  .hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: 0.08em;
  }

  .hero__subtitle { font-size: 0.9rem; }

  .manifesto__grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid--reverse { direction: ltr; }
  .process { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .section {
    padding: clamp(50px, 8vw, 80px) 0;
  }

  .manifesto-full__bg,
  .cta-band__bg {
    background-attachment: scroll;
  }

  .page-hero {
    padding: 120px 0 50px;
  }

  .image-break { height: 40vh; }
}

@media (max-width: 480px) {
  .hero__scroll { display: none; }

  .btn {
    padding: 13px 30px;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }

  .testimonial { padding: 2rem; flex: 0 0 85vw; }
}

/* ================================================================
   BLOG
   ================================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--fond-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  border-color: var(--sable);
  transform: translateY(-4px);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

.blog-card:hover .blog-card__img {
  filter: brightness(1);
}

.blog-card__body {
  padding: 1.8rem;
}

.blog-card__tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sable-dark);
  margin-bottom: 0.8rem;
  display: block;
}

.blog-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ivoire);
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--sable-dark);
  line-height: 1.6;
}

/* Blog article */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.article__header {
  text-align: center;
  padding: 160px 0 60px;
}

.article__tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sable-dark);
  margin-bottom: 1.5rem;
  display: block;
}

.article__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--texte);
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.article__meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--sable-dark);
  letter-spacing: 0.05em;
}

.article__hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.article__content {
  padding-bottom: 4rem;
}

.article__content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--texte);
  letter-spacing: 0.03em;
  margin: 3rem 0 1.2rem;
}

.article__content h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--sable);
  margin: 2rem 0 0.8rem;
}

.article__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--texte);
  margin-bottom: 1.2rem;
}

.article__content blockquote {
  border-left: 2px solid var(--sable);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--sable);
  line-height: 1.6;
}

.article__content ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.article__content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--texte);
  line-height: 1.7;
}

.article__content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sable);
}

.article__content a {
  color: var(--sable);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article__content a:hover {
  color: var(--ivoire);
}

.article__img {
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--border);
  margin: 2rem 0;
  display: block;
}

.article__cta {
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.article__cta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--texte);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.article__cta p {
  font-size: 0.9rem;
  color: var(--sable-dark);
  margin-bottom: 2rem;
}

.article__nav {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0 4rem;
  border-top: 1px solid var(--border);
}

.article__nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--sable-dark);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.article__nav a:hover {
  color: var(--sable);
}

/* Film page photo gallery */
.film-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.film-gallery img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) saturate(0.95);
  transition: filter 0.4s ease;
}

.film-gallery img:hover {
  filter: brightness(1) saturate(1);
}

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

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

  .article__nav {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .film-gallery {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   GORDON-STYLE COMPONENTS
   ================================================================ */

/* --- HERO MINIMAL (text-only on dark bg) --- */
.hero--minimal {
  background: var(--espresso);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh; /* 16:9 ratio */
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

#hero-yt-player {
  width: 100%;
  height: 100%;
}

.hero__video iframe,
#hero-yt-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.hero__fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero__fallback {
    background-image: url('../img/photos/mariages/blandine-cedric-5.webp') !important;
    opacity: 1 !important;
    display: block !important;
  }
  .hero__video {
    display: none !important;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 16, 0.45);
  z-index: 1;
}

.hero--minimal .hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 1000px;
}

.hero--minimal .hero__tag,
.hero--minimal .hero__title,
.hero--minimal .hero__subtitle,
.hero--minimal .hero__location {
  color: #EDE0CC;
}

.hero--minimal .hero__tag {
  color: var(--sable);
}

.hero--minimal .hero__scroll span,
.hero--minimal .hero__scroll-line {
  color: rgba(237, 224, 204, 0.5);
  background: rgba(237, 224, 204, 0.3);
}

.hero__location {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sable-dark);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s 1.2s var(--ease-out) forwards;
}

/* --- INTRO STATEMENT --- */
.intro-statement {
  padding: 2rem 0;
}

.intro-statement h2 {
  text-align: left;
}

/* --- FILM COMPARE (Storytelling vs Classique) --- */
.film-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .film-compare {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- PORTFOLIO GRID (card-based, 2x2) --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.portfolio-card {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.4s ease;
}

.portfolio-card:hover {
  border-color: var(--sable);
}

.portfolio-card__img {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.95) saturate(0.95);
  transition: transform 0.8s var(--ease-out), filter 0.6s ease;
}

.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

.portfolio-card__info {
  padding: 1.5rem 1.8rem;
  background: var(--fond-card);
}

.portfolio-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ivoire);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.portfolio-card__info p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--sable-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

/* --- PHOTO SCROLL (horizontal gallery) --- */
.photo-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 4px;
  padding: 0;
  background: var(--fond);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.photo-scroll::-webkit-scrollbar {
  display: none;
}

.photo-scroll img {
  height: 45vh;
  min-height: 300px;
  max-height: 500px;
  width: auto;
  object-fit: cover;
  scroll-snap-align: start;
  flex-shrink: 0;
  filter: brightness(0.95) saturate(0.9);
  transition: filter 0.4s ease;
}

.photo-scroll img:hover {
  filter: brightness(1) saturate(1);
}

/* --- SERVICES PREVIEW (3 columns) --- */
.services-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-col {
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.4s ease;
}

.service-col:hover {
  border-color: var(--sable);
}

.service-col--featured {
  border-color: var(--sable);
  position: relative;
}

.service-col__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--sable);
  padding: 4px 16px;
  white-space: nowrap;
}

.service-col h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ivoire);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.service-col p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--texte-soft);
}

.service-col__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--sable);
  margin-top: 1.5rem;
  margin-bottom: 0 !important;
}

/* --- BRAND QUOTE (centered, no border) --- */
.brand-quote {
  text-align: center;
  padding: 2rem 0;
}

.brand-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.7;
  color: var(--ivoire);
  margin-bottom: 1.5rem;
}

.brand-quote span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sable-dark);
}

/* --- TRUST BAR (inline stats) --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.trust-bar__item {
  text-align: center;
}

.trust-bar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--sable);
  letter-spacing: 0.03em;
}

.trust-bar__item span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sable-dark);
}

/* --- RELATED FILMS (3-column) --- */
.related-films {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.related-films .portfolio-card__img {
  aspect-ratio: 16 / 10;
}

/* --- FILM STORY (narrative text on film pages) --- */
.film-story {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.film-story p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 2;
  color: var(--texte-soft);
  margin-bottom: 2em;
}

/* --- FILM NAV (prev/next between films) --- */
.film-nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem var(--gutter);
  border-top: 1px solid var(--border);
}

.film-nav a {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: color 0.3s ease;
}

.film-nav a:hover {
  color: var(--sable);
}

.film-nav__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sable-dark);
}

.film-nav__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivoire);
}

.film-nav__next {
  text-align: right;
}

/* --- RESPONSIVE: GORDON-STYLE COMPONENTS --- */
@media (max-width: 968px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-preview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .related-films {
    grid-template-columns: 1fr;
  }
  .manifesto__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .trust-bar {
    gap: 2rem;
  }
  .trust-bar__item {
    flex: 0 0 40%;
  }
  .film-nav {
    flex-direction: column;
  }
  .film-nav__next {
    text-align: left;
  }
  .header__social {
    display: none;
  }
}

@media (max-width: 480px) {
  .photo-scroll img {
    height: 35vh;
    min-height: 220px;
  }
  .service-col {
    padding: 2rem 1.5rem;
  }
}

/* ===== FILM PAGE COMPONENTS ===== */

.film-hero {
  background: var(--fond);
  padding: 160px 24px 60px;
  text-align: center;
}
.film-hero__presents {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--sable-dark);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.film-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: var(--espresso);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.film-hero__couple {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sable);
  margin-bottom: 0.75rem;
}
.film-hero__lieu {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--texte-soft);
}

.film-video {
  background: var(--fond);
  padding: 0 24px 80px;
}
.film-video__wrap {
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.film-video__wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.film-info {
  background: var(--fond);
  padding: 0 24px 80px;
}
.film-info__inner {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}
.film-info__label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sable-dark);
  margin-bottom: 8px;
}
.film-info__value {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--texte);
}

.film-story {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.film-gallery--large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--fond);
  padding: 0 4px;
}
.film-gallery--large img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  filter: brightness(0.95) saturate(0.9);
  transition: filter 0.4s ease;
}
.film-gallery--large img:hover {
  filter: brightness(1) saturate(1);
}
.film-gallery--large img.full-width {
  grid-column: 1 / -1;
}

.film-section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--texte);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .film-info__inner {
    gap: 30px;
  }
  .film-gallery--large {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .film-hero {
    padding: 140px 20px 40px;
  }
  .film-video {
    padding: 0 12px 60px;
  }
  .film-info {
    padding: 0 20px 60px;
  }
}

/* ================================================================
   PHOTO MASONRY (photographie.html)
   ================================================================ */

.photo-masonry {
  columns: 3;
  column-gap: 4px;
}

.photo-masonry img {
  width: 100%;
  margin-bottom: 4px;
  display: block;
}

@media (max-width: 768px) {
  .photo-masonry {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .photo-masonry {
    columns: 1;
  }
}

/* ================================================================
   CUSTOM CURSOR (desktop)
   ================================================================ */

.custom-cursor {
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--sable);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, background 0.3s ease;
}

.custom-cursor.active {
  width: 12px;
  height: 12px;
  top: -6px;
  left: -6px;
  background: var(--sable);
}

.custom-cursor__follower {
  position: fixed;
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--sable);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  opacity: 0.4;
  transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.custom-cursor__follower.active {
  width: 50px;
  height: 50px;
  top: -25px;
  left: -25px;
  opacity: 0.6;
  border-color: var(--sable);
}

.custom-cursor__follower.poster-hover {
  width: 80px;
  height: 80px;
  top: -40px;
  left: -40px;
  opacity: 0.8;
  background: rgba(184, 160, 122, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.custom-cursor__follower.poster-hover::after {
  content: 'Voir';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sable);
}

/* Hide default cursor when custom cursor is active */
@media (hover: hover) and (pointer: fine) {
  body:has(.custom-cursor) {
    cursor: none;
  }
  body:has(.custom-cursor) a,
  body:has(.custom-cursor) button,
  body:has(.custom-cursor) .film-poster,
  body:has(.custom-cursor) .film-player {
    cursor: none;
  }
}

/* ================================================================
   HERO TITLE MASK REVEAL
   ================================================================ */

.hero-title-mask {
  overflow: hidden;
}

.hero-title-inner {
  display: inline;
}

.hero-char {
  display: inline-block;
  will-change: transform, opacity;
}

/* ================================================================
   BARBA CONTAINER
   ================================================================ */

[data-barba="container"] {
  will-change: opacity, transform;
}

/* ================================================================
   HORIZONTAL MARQUEE
   ================================================================ */

.marquee {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--sable);
  opacity: 0.15;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-content span.marquee-dot {
  font-size: 0.5em;
  opacity: 0.3;
}

/* ================================================================
   IMAGE CLIP REVEAL
   ================================================================ */

.about__image img,
.image-break img {
  will-change: clip-path;
}

/* ================================================================
   MAGNETIC BUTTON STYLES
   ================================================================ */

.btn, .btn-line, .btn--secondary {
  will-change: transform;
}

/* ================================================================
   SMOOTH PAGE LOADER SPINNER
   ================================================================ */

@keyframes spin {
  to { transform: rotate(360deg); }
}
