/* ==========================================================================
   IORI OTTMANN × WWGF — Landing page styles (v4)
   Document confidentiel
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONT FACES
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'ABC Pelikan';
  src: url('fonts/ABCPelikan-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Mono';
  src: url('fonts/GeistMono-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Mono';
  src: url('fonts/GeistMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Mono';
  src: url('fonts/GeistMono-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. CSS VARIABLES
   -------------------------------------------------------------------------- */

:root {
  --off-black: #0E0E0E;
  --base-grey: #939393;
  --off-white: #F1EFEA;
  --off-white-translucent: rgba(241, 239, 234, 0.92);

  /* Couleurs animation pavillon */
  --anim-bg-soft: rgba(14, 14, 14, 0.04);
  --anim-line: rgba(14, 14, 14, 0.55);
  --anim-line-soft: rgba(14, 14, 14, 0.28);
  --anim-floor: rgba(14, 14, 14, 0.06);

  --font-display: 'ABC Pelikan', Georgia, serif;
  --font-mono: 'Geist Mono', 'SF Mono', 'Courier New', monospace;

  /* Tailles typo (titres tous unifiés sur --fs-title) */
  --fs-title: clamp(1.875rem, 1rem + 3.5vw, 3.5rem);                /* 30 → 56px */
  --fs-overline: clamp(0.75rem, 0.68rem + 0.2vw, 0.875rem);          /* 12 → 14px */
  --fs-body: clamp(0.875rem, 0.8rem + 0.3vw, 0.9375rem);             /* 14-15px */
  --fs-caption: 0.6875rem;
  --fs-footer: 0.625rem;
  --fs-nav: 0.6875rem;
  --fs-cta: 0.8125rem;

  /* Specs V4 : plus petites */
  --fs-spec-value: clamp(1.625rem, 1rem + 1.8vw, 2.5rem);            /* 26 → 40px (V3 : 32-52px) */
  --fs-spec-label: 0.6875rem;

  --ls-mono-caps: 0.1em;
  --ls-mono-caps-loose: 0.14em;

  --lh-display: 1.05;
  --lh-display-loose: 1.1;
  --lh-body: 1.6;
  --lh-caption: 1.4;

  /* Espacements V4 : réduits ~25-30% par rapport à V3 */
  --space-section: clamp(3.5rem, 2.5rem + 5vw, 7rem);                /* 56 → 112px (V3: 80-160) */
  --space-section-lg: clamp(4.5rem, 3rem + 6vw, 8rem);               /* 72 → 128px (V3: 96-200) */
  --space-block: clamp(2rem, 1.25rem + 3vw, 4rem);                   /* 32 → 64px (V3: 40-80) */
  --space-half: clamp(1rem, 0.7rem + 1.5vw, 2rem);                   /* 16 → 32px */

  --max-width: 1600px;
  --max-width-narrow: 920px;
  --content-padding: clamp(1.5rem, 1rem + 3vw, 5rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 220ms;
  --t-base: 400ms;
  --t-slow: 800ms;
}

/* --------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; }

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

body {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--off-black);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

::selection { background-color: var(--off-black); color: var(--off-white); }

/* --------------------------------------------------------------------------
   4. CURSEUR PERSONNALISÉ
   -------------------------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #FFFFFF;
  pointer-events: none;
  z-index: 10000;
  transform: translate3d(-50%, -50%, 0);
  transition: width 280ms var(--ease-out),
              height 280ms var(--ease-out),
              opacity 280ms var(--ease-out);
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor.is-visible { opacity: 1; }

.cursor.is-hover {
  width: 50px;
  height: 50px;
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
  body, a, button { cursor: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor { transition: opacity 280ms ease; }
}

/* --------------------------------------------------------------------------
   5. NAVIGATION
   V4 : hover de la nav langue passe en opacity constante (pas de feedback couleur)
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.1rem, 0.7rem + 1vw, 1.75rem) var(--content-padding);
  background-color: transparent;
  transition: background-color var(--t-base) var(--ease-out),
              backdrop-filter var(--t-base) var(--ease-out),
              transform 0.32s var(--ease-out);
  pointer-events: none;
  will-change: transform;
}

.nav > * { pointer-events: auto; }

/* V8 : hide-on-scroll-down — nav remonte au scroll vers le bas */
.nav.is-hidden {
  transform: translateY(-100%);
}

.nav.is-scrolled {
  background-color: var(--off-white-translucent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--off-black);
}

.nav__logo {
  width: 18px;
  height: auto;
  transition: filter var(--t-base) var(--ease-out);
}

.nav:not(.is-scrolled) .nav__logo { filter: invert(1); }
.nav:not(.is-scrolled) .nav__brand { color: var(--off-white); }

.nav__name {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-nav);
  letter-spacing: var(--ls-mono-caps);
  text-transform: uppercase;
}

.nav__lang { display: inline-flex; align-items: center; gap: 0.5em; }

.nav__lang-btn {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-nav);
  letter-spacing: var(--ls-mono-caps);
  text-transform: uppercase;
  padding: 0.25rem 0;
  position: relative;
  opacity: 0.55;
}
.nav__lang-btn.is-active { opacity: 1; }
.nav__lang-btn.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background-color: currentColor;
}
/* V4 : pas de changement d'opacity au hover — le curseur grossit, c'est suffisant */

.nav__lang-sep {
  font-family: var(--font-mono);
  font-size: var(--fs-nav);
  opacity: 0.45;
}

.nav:not(.is-scrolled) .nav__lang-btn,
.nav:not(.is-scrolled) .nav__lang-sep { color: var(--off-white); }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  color: var(--off-white);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.18) 30%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0.40) 100%
  );
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  padding: clamp(22vh, 18vh + 4vw, 30vh) var(--content-padding) 0;
  text-align: left;
  animation: heroFadeUp 1200ms var(--ease-out) 200ms both;
}

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

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-title);
  line-height: var(--lh-display);
  letter-spacing: -0.005em;
  text-transform: lowercase;
  max-width: 22ch;
}

.hero__subtitle {
  margin-top: clamp(1.25rem, 0.6rem + 1.6vw, 2rem);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7rem + 0.3vw, 1rem);
  letter-spacing: 0.05em;
  text-transform: none;
  line-height: 1.55;
  opacity: 0.95;
  max-width: 50ch;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: clamp(1.5rem, 1rem + 2vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--off-white);
  padding: 0.5rem 1rem;
  opacity: 0.85;
}

.scroll-indicator__mouse {
  width: 22px;
  height: 36px;
  overflow: visible;
}

.scroll-indicator__dot {
  animation: mouseScrollDot 2s var(--ease-in-out) infinite;
  transform-origin: center;
}

@keyframes mouseScrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.3; }
}

.scroll-indicator__chevron {
  width: 14px;
  height: 8px;
  animation: chevronPulse 2s var(--ease-in-out) infinite;
}

@keyframes chevronPulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(3px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   7. SECTIONS — wrapper + surtitres
   -------------------------------------------------------------------------- */

.section {
  width: 100%;
  padding: var(--space-section-lg) 0;
  position: relative;
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section__inner--narrow { max-width: var(--max-width-narrow); }

.section__overline {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fs-overline);
  letter-spacing: var(--ls-mono-caps-loose);
  text-transform: uppercase;
  color: var(--off-black);
  margin-bottom: var(--space-block);
}

.bullet {
  display: inline-block;
  font-size: 0.9em;
  transform: translateY(-0.05em);
}

/* --------------------------------------------------------------------------
   8. [2] LE PAVILLON — V8 : padding-top et overline margin-bottom alignés
                              sur la grille de base, comme les autres sections.
                              Sticky-zone : uniquement le SVG (V6 maintenu).
                              Logo W&W en N&B (V6 maintenu).
   -------------------------------------------------------------------------- */

/* Pas d'override de padding-top ni d'overline margin-bottom : la section
   hérite de `.section { padding: var(--space-section-lg) 0 }` et de
   `.section__overline { margin-bottom: var(--space-block) }`, comme
   architect, uses, next. Cohérence de la grille sur tout le site. */

/* Animation scroll-driven en plein largeur */
.pavillon__scroll-zone {
  position: relative;
  width: 100%;
  height: 280vh; /* zone de scroll pour l'animation */
  margin-bottom: var(--space-section);
}

/* V6/V7 : sticky simplifié — flex center, ne contient QUE le SVG */
.pavillon__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* V7 : padding-top juste pour clear la nav (~50-70px), pas plus */
  padding: clamp(3rem, 2.5rem + 1vw, 4rem) var(--content-padding) 1.5rem;
}

.pavillon__anim {
  width: 100%;
  max-width: 1500px;
  height: 100%;
  display: block;
}

/* V6 : logo Watches and Wonders en NOIR ET BLANC (filter brightness 0)
   Le PNG original est doré ; le filter le rend en noir pur tout en
   préservant la transparence du fond. */
.pavillon__anim image {
  filter: brightness(0);
}

/* 2-col detail : image gauche + titre/texte droite
   align-items: start (top-aligned comme la section L'Architecte) */
.pavillon__detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-block);
  align-items: start;
}

@media (min-width: 900px) {
  .pavillon__detail {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 1rem + 4vw, 5.5rem);
  }
}

.pavillon__detail-image {
  width: 100%;
  overflow: hidden;
}

.pavillon__detail-image img,
.pavillon__detail-image picture {
  width: 100%;
  height: auto;
  display: block;
}

.pavillon__detail-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-block);
}

.pavillon__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-title);
  line-height: var(--lh-display);
  letter-spacing: -0.005em;
  text-transform: lowercase;
}

.pavillon__body {
  display: flex;
  flex-direction: column;
  gap: 1.4em;
  color: var(--off-black);
  max-width: 50ch;
}

.pavillon__body p {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* --------------------------------------------------------------------------
   9. [3] L'ARCHITECTE
   -------------------------------------------------------------------------- */

.section--architect { background-color: var(--off-white); }

.architect__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-block);
  margin-bottom: var(--space-section);
  align-items: start;
}

@media (min-width: 900px) {
  .architect__head {
    grid-template-columns: 5fr 6fr;
    gap: clamp(2rem, 1rem + 5vw, 6rem);
  }
}

.architect__portrait {
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}

.architect__portrait img {
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(1.02);
}

.architect__intro { padding-top: clamp(0.5rem, 0.2rem + 1vw, 1.5rem); }

.architect__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-title);
  line-height: var(--lh-display);
  letter-spacing: -0.005em;
  text-transform: lowercase;
  margin-bottom: var(--space-half);
}

.architect__body {
  display: flex;
  flex-direction: column;
  gap: 1.4em;
  max-width: 50ch;
}

.architect__body p {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.architect__mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 0.8rem + 2vw, 2.5rem);
}

@media (min-width: 640px) {
  .architect__mosaic { grid-template-columns: repeat(3, 1fr); }
}

.architect__mosaic figure { margin: 0; }

.architect__mosaic picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.architect__mosaic figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-mono-caps);
  text-transform: uppercase;
  color: var(--base-grey);
  line-height: var(--lh-caption);
}

/* --------------------------------------------------------------------------
   10. [4] LES USAGES — V4 : nouveaux specs, plus discrets, narrower
   -------------------------------------------------------------------------- */

.section--uses .section__inner { text-align: left; }

.uses__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-title);
  line-height: var(--lh-display);
  letter-spacing: -0.005em;
  text-transform: lowercase;
  margin-bottom: var(--space-block);
  max-width: 18ch;
}

.uses__body {
  display: flex;
  flex-direction: column;
  gap: 1.4em;
  max-width: 60ch;
  margin-bottom: var(--space-block);
}

.uses__body p {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* V4 : specs plus petits + narrower (max-width 680px) + bordures plus fines */
.uses__specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 0.6rem + 1.5vw, 2.5rem);
  padding: clamp(1.5rem, 1rem + 1.2vw, 2.25rem) 0;
  max-width: 680px;
  border-top: 1px solid rgba(14, 14, 14, 0.12);
  border-bottom: 1px solid rgba(14, 14, 14, 0.12);
  text-align: left;
  margin-top: var(--space-half);
}

@media (max-width: 640px) {
  .uses__specs-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
  }
}

.uses__spec {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.uses__spec-value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-spec-value);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--off-black);
  display: flex;
  align-items: baseline;
}

.uses__spec-unit {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.65em;
  margin-left: 0.05em;
  color: var(--off-black);
}

.uses__spec-label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-spec-label);
  letter-spacing: var(--ls-mono-caps-loose);
  text-transform: uppercase;
  color: var(--base-grey);
  margin-top: 0.4rem;
}

.uses__cinemascope {
  width: 100%;
  margin-top: var(--space-section-lg);
  overflow: hidden;
}

.uses__cinemascope img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   11. [5] PROCHAINE ÉTAPE
   V4 : CTA pill conserve son hover (légère translation de la flèche),
   mais plus de fond noir → transparent à transparent → noir
   -------------------------------------------------------------------------- */

.section--next {
  text-align: center;
  padding-bottom: var(--space-section);
}

.section--next .section__inner--narrow { text-align: center; }

.next__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-title);
  line-height: var(--lh-display-loose);
  letter-spacing: -0.005em;
  text-transform: lowercase;
  max-width: 26ch;
  margin: 0 auto var(--space-block);
  text-align: center;
}

.next__signature {
  position: relative;
  height: clamp(90px, 6rem + 6vw, 160px);
  margin: var(--space-block) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
}

.signature {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: 90%;
  object-fit: contain;
  opacity: 0;
  /* V4 : transition plus rapide pour rotation 1/sec */
  transition: opacity 250ms var(--ease-in-out);
  filter: invert(1);
  pointer-events: none;
}

.signature.is-active { opacity: 1; }

.next__cta-wrap {
  display: flex;
  justify-content: center;
  /* V5 : espace supplémentaire entre signature et bouton (cf. demande client) */
  margin-top: var(--space-section);
}

/* V4 : retire le changement de couleur au hover (curseur grossit déjà) */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625em;
  padding: 0.95rem 1.75rem;
  border: 1px solid var(--off-black);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: var(--fs-cta);
  letter-spacing: var(--ls-mono-caps);
  text-transform: uppercase;
  color: var(--off-black);
  background-color: transparent;
}

.cta-pill__arrow { display: inline-block; }

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */

.footer {
  width: 100%;
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem) 0;
  /* V10 : ligne de séparation retirée */
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__text {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: var(--fs-footer);
  letter-spacing: 0.02em;
  color: var(--base-grey);
  line-height: 1.6;
}

.footer__logo {
  width: 24px;
  height: auto;
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   13. REVEAL ON SCROLL
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--ease-out),
              transform 900ms var(--ease-out);
}

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

/* --------------------------------------------------------------------------
   14. ANIMATION PAVILLON — styles SVG
   -------------------------------------------------------------------------- */

.pavillon__anim .face {
  fill: var(--anim-bg-soft);
  fill-opacity: 0.7;
  stroke: var(--anim-line);
  stroke-width: 1;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pavillon__anim .face.container-face {
  fill: var(--anim-bg-soft);
  fill-opacity: 1;
}

.pavillon__anim .face.floor {
  fill: var(--anim-floor);
  fill-opacity: 1;
}

.pavillon__anim .pavilion-lattice {
  fill: none;
  stroke: var(--anim-line);
  stroke-width: 0.6;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  .hero__title { max-width: 14ch; }
  .hero__subtitle { font-size: 0.875rem; }
  .hero__content { padding-top: clamp(20vh, 16vh + 4vw, 26vh); }

  /* Animation pavillon : scroll-zone réduit + padding sticky adapté pour mobile */
  .pavillon__scroll-zone { height: 240vh; }
  .pavillon__sticky {
    padding: clamp(3rem, 2.5rem + 1vw, 4rem) var(--content-padding) 1rem;
  }

  .architect__portrait { max-width: 320px; }
  .footer__inner { flex-direction: column-reverse; text-align: center; gap: 1rem; }
  .footer__text { text-align: center; }
}

@media (max-width: 480px) {
  .pavillon__scroll-zone { height: 220vh; }
}

/* --------------------------------------------------------------------------
   16. PRINT
   -------------------------------------------------------------------------- */

@media print {
  .nav, .hero__scroll-indicator, .next__cta-wrap, .cursor { display: none; }
  .pavillon__scroll-zone { height: auto; }
  .pavillon__sticky { position: static; height: auto; padding: 1rem 0; }
  .pavillon__anim { height: 50vh; }
  .hero { height: auto; min-height: 0; page-break-after: always; }
  body { background: white; color: black; cursor: auto; }
}
