/* ============================================
   QUALIMATIC PRODUCTION — Charte visuelle
   Direction artistique : luxe, minimaliste, cinématographique
   ============================================ */

:root {
  --cream: #F5EFE8;
  --cream-soft: #EFE7DD;
  --ink: #1A1A1A;
  --ink-soft: #2A2A2A;
  --bordeaux: #5C1721;
  --bordeaux-deep: #4A0F19;
  --taupe: #A89888;
  --taupe-soft: #C7BBAB;

  --header-h: 84px;
  --header-h-compact: 64px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

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

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

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

::selection { background: var(--bordeaux); color: var(--cream); }

/* Typography helpers */
.serif { font-family: 'Playfair Display', Georgia, serif; }
.script { font-family: 'Allura', cursive; }

.italic-taupe {
  font-style: italic;
  color: var(--taupe);
  font-weight: 400;
}

.end-bordeaux { color: var(--bordeaux); }

.asterisk {
  color: var(--bordeaux);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  display: inline-block;
  margin-right: 0.5em;
  font-size: 0.85em;
  transform: translateY(-0.05em);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__icon {
  width: 96px;
  opacity: 0;
  animation: fadeIn 0.6s var(--ease-out) 0.1s forwards;
}

.preloader__icon img { width: 100%; }

.preloader__slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.02em;
  min-height: 1.5em;
  max-width: 90vw;
}

.preloader__cursor {
  display: inline-block;
  width: 1px;
  height: 1.05em;
  background: var(--bordeaux);
  margin-left: 2px;
  vertical-align: -0.15em;
  animation: blink 0.7s steps(1) infinite;
}

.preloader__line {
  width: 0;
  height: 1px;
  background: var(--bordeaux);
  animation: lineDraw 0.8s var(--ease-out) 1.4s forwards;
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes lineDraw {
  to { width: 120px; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  transition: padding 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out);
}

.header.is-scrolled {
  padding: 12px var(--gutter);
  background: rgba(245, 239, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.04), 0 8px 24px -16px rgba(26, 26, 26, 0.12);
}

.header__logo {
  justify-self: start;
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.header.is-scrolled .header__logo { transform: scale(0.78); transform-origin: left center; }

.header__logo img {
  height: 64px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.header__nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out);
}

.header__nav a:hover::after,
.header__nav a.active::after { transform: scaleX(1); }

.header__nav a.active { color: var(--bordeaux); }

.header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Pill button */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  z-index: 0;
}

.btn-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}

.btn-pill:hover {
  color: var(--cream);
  border-color: var(--bordeaux);
}

.btn-pill:hover::before { transform: scaleX(1); }

.btn-pill .arrow {
  transition: transform 0.4s var(--ease-out);
}

.btn-pill:hover .arrow {
  transform: translate(2px, -2px);
}

/* Lang selector */
.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink);
  padding: 8px 4px;
}

.lang button {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
  opacity: 0.45;
  transition: opacity 0.3s var(--ease-out);
  padding: 2px 4px;
}

.lang button.active {
  opacity: 1;
  color: var(--bordeaux);
}

.lang__sep {
  color: var(--ink);
  opacity: 0.3;
}

.lang .flag {
  font-size: 13px;
  margin-right: 3px;
}

/* Burger */
.burger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 110;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.menu-open .burger span { background: var(--cream); }
.menu-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--bordeaux);
  color: var(--cream);
  z-index: 105;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 100px var(--gutter) 40px;
  gap: 24px;
}

.menu-open .mobile-menu { transform: translateX(0); }

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding: 6px 0;
  border-bottom: 1px solid rgba(245, 239, 232, 0.12);
}

.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-menu .btn-pill {
  margin-top: 12px;
  border-color: var(--cream);
  color: var(--cream);
  align-self: flex-start;
}

.mobile-menu .btn-pill::before { background: var(--cream); }
.mobile-menu .btn-pill:hover { color: var(--bordeaux); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s var(--ease-in-out) infinite alternate;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.30) 35%, rgba(0,0,0,0.55) 100%);
}

@keyframes kenBurns {
  0% { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  padding: 140px var(--gutter) 120px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--cream);
  opacity: 0.6;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(40px, 7.2vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 32px;
}

.hero__title .italic-taupe {
  color: #D9CDBC;
  font-weight: 400;
}

.hero__title .end-bordeaux {
  color: #FFFFFF;
}

.hero__sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 14px;
}

.hero__sub em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #D9CDBC;
  font-weight: 400;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
}

.hero__meta span { display: flex; align-items: center; gap: 18px; }
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--cream); opacity: 0.6; }

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}

.scroll-cue__label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}

.scroll-cue__line {
  width: 1px;
  height: 56px;
  background: rgba(243, 230, 206, 0.18);
  position: relative;
  overflow: hidden;
}

.scroll-cue__line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(243, 230, 206, 0.7) 50%, transparent 100%);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* Minimal variant — used on index hero */
.scroll-cue--minimal {
  gap: 10px;
}

.scroll-cue--minimal .scroll-cue__line {
  height: 44px;
}

.scroll-cue--minimal .scroll-cue__label {
  font-size: 9px;
  letter-spacing: 0.4em;
  opacity: 0.55;
}

/* ============================================
   INTRO STRIP (under hero)
   ============================================ */
.intro {
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 9vw, 120px);
  position: relative;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.intro__signature {
  font-family: 'Allura', cursive;
  font-size: clamp(44px, 5.6vw, 76px);
  color: var(--bordeaux);
  line-height: 1;
  margin-bottom: 18px;
}

.intro__name {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}

.intro__role {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--taupe);
}

.intro__lede {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: pretty;
}

.intro__lede em {
  font-style: italic;
  color: var(--taupe);
  font-weight: 400;
}

.intro__lede .end-bordeaux {
  color: var(--bordeaux);
  font-style: italic;
}

.intro__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,26,26,0.18) 50%, transparent);
  margin: clamp(60px, 8vw, 100px) 0 0;
}

/* ============================================
   UNIVERS SECTION
   ============================================ */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-head__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  flex-wrap: wrap;
}

.section-head__title em {
  font-style: italic;
  color: var(--taupe);
  font-weight: 400;
}

.section-head__title .end-bordeaux {
  color: var(--bordeaux);
  font-style: italic;
}

.section-head__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head__meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  text-align: right;
  font-weight: 400;
}

.section-head__meta strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.univers {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 140px);
}

.univers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

.univers-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.55s var(--ease-out);
  display: block;
  color: inherit;
}

.univers-card:hover { transform: translateY(-8px); }

.univers-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-soft) 0%, var(--taupe-soft) 100%);
  border: 1px solid transparent;
  transition: border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.univers-card:hover .univers-card__media {
  border-color: var(--bordeaux);
  box-shadow: 0 24px 60px -28px rgba(92, 23, 33, 0.4);
}

.univers-card__media img,
.univers-card__media .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.univers-card:hover .univers-card__media img,
.univers-card:hover .univers-card__media .placeholder {
  transform: scale(1.05);
}

.univers-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.univers-card__index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.univers-card__index::before {
  content: "✻";
  color: #FFFFFF;
  margin-right: 8px;
}

.univers-card__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 239, 232, 0.18);
  border: 1px solid rgba(245, 239, 232, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 14px;
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.univers-card:hover .univers-card__arrow {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  transform: translate(2px, -2px);
}

.univers-card__caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--cream);
}

.univers-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin-bottom: 8px;
}

.univers-card__title em { font-style: italic; color: #D9CDBC; }

.univers-card__desc {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(245, 239, 232, 0.85);
  max-width: 30ch;
  line-height: 1.5;
}

/* Placeholder */
.placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      var(--cream-soft) 0 24px,
      var(--taupe-soft) 24px 25px
    );
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder__label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(26, 26, 26, 0.55);
  background: var(--cream);
  padding: 10px 16px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   APPROACH STRIP (visual rhythm)
   ============================================ */
.approach {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

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

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

.approach__copy .section-head__title {
  color: var(--cream);
}

.approach__copy .section-head__title em { color: var(--taupe-soft); }
.approach__copy .section-head__title .end-bordeaux { color: #FFFFFF; }

.approach__lede {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 36px;
  text-wrap: pretty;
}

.approach__lede em { font-style: italic; color: var(--taupe-soft); }

.approach__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 48px;
}

.approach__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 239, 232, 0.16);
}

.approach__num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--taupe);
  letter-spacing: 0.06em;
}

.approach__item h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 6px;
}

.approach__item h4 em { font-style: italic; color: var(--taupe-soft); }

.approach__item p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 239, 232, 0.7);
  line-height: 1.55;
  max-width: 46ch;
}

/* ============================================
   FILMS / SAMPLE STRIP
   ============================================ */
.films {
  padding: clamp(80px, 10vw, 140px) 0;
}

.films__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: clamp(20px, 2.4vw, 32px);
}

.film-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.55s var(--ease-out);
}

.film-card:hover { transform: translateY(-6px); }

.film-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.film-card--portrait .film-card__media { aspect-ratio: 4 / 5; }

.film-card__media img,
.film-card__media .placeholder {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.film-card:hover .film-card__media img,
.film-card:hover .film-card__media .placeholder { transform: scale(1.05); }

.film-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.6) 100%);
}

.film-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(245, 239, 232, 0.16);
  border: 1px solid rgba(245, 239, 232, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--cream);
  z-index: 2;
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.film-card:hover .film-card__play {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  transform: translate(-50%, -50%) scale(1.06);
}

.film-card__play svg { width: 18px; height: 18px; margin-left: 3px; }

.film-card__meta {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 2;
  color: var(--cream);
}

.film-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.film-card__title em { font-style: italic; color: #D9CDBC; }

.film-card__sub {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 239, 232, 0.7);
  margin-top: 6px;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-soft);
  position: relative;
}

.testimonial__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}

.testimonial__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  line-height: 1;
  color: var(--bordeaux);
  opacity: 0.4;
  margin-bottom: -28px;
  font-style: italic;
}

.testimonial__quote {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 36px;
  text-wrap: pretty;
}

.testimonial__quote em {
  font-style: italic;
  color: var(--taupe);
}

.testimonial__quote .end-bordeaux {
  color: var(--bordeaux);
  font-style: italic;
}

.testimonial__author {
  font-family: 'Allura', cursive;
  font-size: 36px;
  color: var(--bordeaux);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial__loc {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta {
  padding: clamp(100px, 14vw, 200px) 0;
  text-align: center;
  position: relative;
}

.cta__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 20px;
  text-wrap: balance;
}

.cta__title em {
  font-style: italic;
  color: var(--taupe);
}

.cta__title .end-bordeaux {
  color: var(--bordeaux);
  font-style: italic;
}

.cta__sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.7;
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

.cta__sub em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--taupe);
  font-weight: 400;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 44px;
  background: var(--bordeaux);
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out);
  z-index: 0;
}

.cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}

.cta__btn:hover::before { transform: scaleX(1); }
.cta__btn:hover { color: var(--cream); }
.cta__btn .arrow { transition: transform 0.4s var(--ease-out); }
.cta__btn:hover .arrow { transform: translate(3px, -3px); }

.cta__sig {
  font-family: 'Allura', cursive;
  font-size: 40px;
  color: var(--bordeaux);
  margin-top: 64px;
  line-height: 1;
  display: block;
}

.cta__sig-meta {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 8px;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bordeaux);
  color: var(--cream);
  padding: clamp(72px, 9vw, 120px) 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(60px, 7vw, 88px);
}

.footer__brand .footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
}

.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(245, 239, 232, 0.85);
  max-width: 32ch;
}

.footer__col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 239, 232, 0.55);
  margin-bottom: 22px;
}

.footer__col h5::before {
  content: "✻ ";
  color: #FFFFFF;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a, .footer__col p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  line-height: 1.5;
}

.footer__col a {
  transition: color 0.3s var(--ease-out);
}

.footer__col a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out);
}

.footer__col a:hover::after { transform: scaleX(1); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 239, 232, 0.16);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 232, 0.65);
}

.footer__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(245, 239, 232, 0.65);
  text-transform: uppercase;
}

.footer__legal a:hover { color: var(--cream); }

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.18);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.whatsapp-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 36px -8px rgba(37, 211, 102, 0.6), 0 6px 16px rgba(0,0,0,0.2);
}

.whatsapp-fab svg { width: 28px; height: 28px; }

.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wpPulse 2.2s ease-out infinite;
}

@keyframes wpPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ============================================
   FADE-IN OBSERVER
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .header__nav { gap: 22px; }
  .header__nav a { font-size: 12px; letter-spacing: 0.14em; }
  .approach__grid { grid-template-columns: 1fr; gap: 48px; }
  .approach__media { aspect-ratio: 4 / 3; max-width: 600px; }
  .films__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header { padding: 16px var(--gutter); grid-template-columns: 1fr auto; }
  .header__nav { display: none; }
  .header__right > .btn-pill { display: none; }
  .header__right { gap: 12px; }
  .burger { display: flex; }
  .header__logo img { height: 48px; }

  .intro__grid { grid-template-columns: 1fr; gap: 32px; }
  .univers__grid { grid-template-columns: 1fr; }
  .films__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .hero__title { font-size: clamp(34px, 11vw, 64px); }
  .hero__inner { padding: 120px var(--gutter) 100px; }

  .whatsapp-fab { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
