/* ===================================================================
   ADÉLIE BIJOUX — Template cinéma luxe (refonte radicale)
   Inspiration : Cartier / Messika / Boucheron
   Less is more : espace, typographie, animations longues
   =================================================================== */

/* ---------- 1. RESET & VARIABLES ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  --noir: #0a0a0a;
  --noir-soft: #1a1a1a;
  --noir-velours: #141414;
  --or: #c9a55a;
  --or-clair: #e8c674;
  --or-tres-clair: rgba(201, 165, 90, 0.4);
  --ivoire: #f5f0e8;
  --ivoire-doux: rgba(245, 240, 232, 0.85);
  --gris-muet: rgba(245, 240, 232, 0.5);
  --gris-faible: rgba(245, 240, 232, 0.25);
  --gris-tres-faible: rgba(245, 240, 232, 0.1);

  --hero-h: 100vh;
  --header-h: 80px;

  --transition-cine: 800ms cubic-bezier(0.65, 0, 0.35, 1);
  --transition-doux: 600ms cubic-bezier(0.86, 0, 0.07, 1);
  --transition-rapide: 300ms ease;

  --max-w: 1280px;
  --pad-x: 24px;

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.adelie-body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  background: var(--noir);
  color: var(--ivoire);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; cursor: pointer; font: inherit; padding: 0; }
input { font: inherit; color: inherit; }

::selection { background: var(--or); color: var(--noir); }

/* ---------- 2. HEADER MINIMALISTE ---------- */
.adelie-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  transition: background var(--transition-rapide), box-shadow var(--transition-rapide);
}
.adelie-header.is-scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 1px 0 var(--gris-tres-faible);
}
.adelie-header__inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.adelie-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.adelie-header__nav-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivoire-doux);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-rapide);
}
.adelie-header__nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--or);
  transition: width var(--transition-rapide);
}
.adelie-header__nav-link:hover { color: var(--ivoire); }
.adelie-header__nav-link:hover::after { width: 100%; }

.adelie-header__brand {
  text-align: center;
}
.adelie-header__logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--ivoire);
  line-height: 1;
}
.adelie-header__logo-img {
  height: 36px;
  width: auto;
  margin: 0 auto;
}

.adelie-header__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.adelie-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  color: var(--ivoire-doux);
  transition: color var(--transition-rapide);
}
.adelie-header__icon:hover { color: var(--or); }
.adelie-header__icon svg { width: 20px; height: 20px; }

/* Burger mobile */
.adelie-header__burger {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  color: var(--ivoire);
}
.adelie-header__burger span {
  display: block;
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
}
.adelie-header__burger span::before,
.adelie-header__burger span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
}
.adelie-header__burger span::before { top: -7px; }
.adelie-header__burger span::after  { top: 7px; }

.adelie-mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 32px var(--pad-x);
  border-top: 1px solid var(--gris-tres-faible);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-rapide), opacity var(--transition-rapide);
}
.adelie-mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.adelie-mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.02em;
  padding: 12px 0;
  color: var(--ivoire);
}

/* ---------- 3. HERO PLEIN ECRAN ---------- */
.adelie-hero {
  position: relative;
  height: var(--hero-h);
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}
.adelie-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.adelie-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: adelieKenburns 40s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}
@keyframes adelieKenburns {
  0%   { transform: scale(1.0)  translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1%, -1%, 0); }
}
.adelie-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
}

.adelie-hero__content {
  position: absolute;
  left: 0; right: 0;
  bottom: 20vh;
  z-index: 2;
  padding: 0 var(--pad-x);
  text-align: center;
  pointer-events: none;
}
.adelie-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 28px;
  padding-left: 0.5em;
}
.adelie-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 10vw, 120px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--ivoire);
}
.adelie-hero__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  opacity: 0.9;
  margin: 0;
  letter-spacing: 0.02em;
}

.adelie-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 60px;
  overflow: hidden;
}
.adelie-hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--or) 50%, transparent 100%);
  animation: adelieScrollLine 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes adelieScrollLine {
  0%   { transform: translateY(-100%); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ---------- 4. SECTIONS COMMUNES ---------- */
.adelie-main {
  position: relative;
}
.adelie-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section.adelie-manifesto,
section.adelie-collection,
section.adelie-art,
section.adelie-voix,
section.adelie-invitation {
  position: relative;
  padding: 200px 0;
}

.adelie-section__roman {
  position: absolute;
  top: 80px;
  left: 6vw;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 200px;
  line-height: 1;
  color: var(--ivoire);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.adelie-section__head {
  text-align: center;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}
.adelie-section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ivoire);
}
.adelie-section__subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  font-weight: 300;
  opacity: 0.7;
  letter-spacing: 0.04em;
  margin: 0;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-cine), transform var(--transition-cine);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Mask reveal pour images IV */
[data-mask-reveal] {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s cubic-bezier(0.86, 0, 0.07, 1);
}
[data-mask-reveal].is-revealed {
  clip-path: inset(0 0 0 0);
}

/* ---------- 5. II. MANIFESTO ---------- */
.adelie-manifesto {
  text-align: center;
}
.adelie-manifesto__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  z-index: 1;
}
.adelie-manifesto__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.45;
  margin: 0 0 36px;
  color: var(--ivoire);
}
.adelie-manifesto__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ivoire-doux);
  background-image: linear-gradient(90deg, var(--or), var(--or));
  background-position: bottom left;
  background-size: 0 1px;
  background-repeat: no-repeat;
  padding-bottom: 4px;
  transition: background-size var(--transition-rapide), color var(--transition-rapide);
}
.adelie-manifesto__link:hover {
  color: var(--or);
  background-size: 100% 1px;
}

/* ---------- 6. III. COLLECTION (BENTO) ---------- */
.adelie-collection {
  background: var(--noir);
}
.adelie-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  position: relative;
  z-index: 1;
}
/* Layout bento asymétrique sur les enfants */
.adelie-bento > *:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.adelie-bento > *:nth-child(2),
.adelie-bento > *:nth-child(3),
.adelie-bento > *:nth-child(4),
.adelie-bento > *:nth-child(5),
.adelie-bento > *:nth-child(6),
.adelie-bento > *:nth-child(7) {
  grid-column: span 1;
  grid-row: span 1;
}
.adelie-bento > *:nth-child(8) {
  grid-column: span 2;
  grid-row: span 1;
}

/* Card produit luxe */
.nouveaute-card,
.adelie-bento > a {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--noir-velours);
  color: var(--ivoire);
  border-radius: 0;
  transition: transform var(--transition-doux);
}
.adelie-bento > a > div.aspect-square,
.adelie-bento > a > div:first-child {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
}
.adelie-bento > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.adelie-bento > a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  opacity: 0.6;
  transition: opacity var(--transition-doux);
  pointer-events: none;
  z-index: 1;
}
.adelie-bento > a:hover::after { opacity: 0.85; }
.adelie-bento > a:hover img { transform: scale(1.05); }

/* Conteneur texte (compatible avec injection SSR) */
.adelie-bento > a > div:last-child {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 20px 20px 18px;
  z-index: 2;
  color: var(--ivoire);
}
.adelie-bento > a h3 {
  font-family: var(--font-body) !important;
  font-weight: 400;
  font-size: 13px !important;
  line-height: 1.4;
  margin: 0 0 4px !important;
  color: var(--ivoire) !important;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.95;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.adelie-bento > a p {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: var(--or) !important;
  margin: 0 !important;
  opacity: 0.85;
  letter-spacing: 0.04em;
  transition: opacity var(--transition-rapide);
}
/* Cacher le bloc Club agressif sur la home cinema */
.adelie-bento > a p span[onclick] { display: none !important; }

.adelie-collection__cta {
  text-align: center;
  margin-top: 80px;
}
.adelie-link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivoire-doux);
  padding: 4px 0;
  background-image: linear-gradient(90deg, var(--or), var(--or));
  background-position: bottom left;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size var(--transition-rapide), color var(--transition-rapide);
}
.adelie-link-quiet:hover {
  color: var(--or);
  background-size: 100% 1px;
}
.adelie-arrow {
  display: inline-block;
  transition: transform var(--transition-rapide);
}
.adelie-link-quiet:hover .adelie-arrow { transform: translateX(4px); }

/* ---------- 7. IV. L'ART DU DIAMANT ---------- */
.adelie-art {
  background: var(--noir);
}
.adelie-art__head {
  text-align: center;
  margin: 0 auto 120px;
  max-width: 720px;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}
.adelie-art__chapters {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}
.adelie-art__chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 160px;
}
.adelie-art__chapter:last-child { margin-bottom: 0; }
.adelie-art__chapter--reverse {
  direction: rtl;
}
.adelie-art__chapter--reverse > * {
  direction: ltr;
}

.adelie-art__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.adelie-art__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adelie-art__body {
  padding: 0 12px;
}
.adelie-art__letter {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 96px;
  line-height: 1;
  color: var(--or);
  opacity: 0.85;
  margin: 0 0 16px;
}
.adelie-art__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--ivoire);
}
.adelie-art__subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin: 0 0 24px;
}
.adelie-art__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ivoire-doux);
  margin: 0;
}

/* ---------- 8. V. VOIX (carousel cinema) ---------- */
.adelie-voix {
  background: var(--noir);
  overflow: hidden;
}
.adelie-voix__head {
  text-align: center;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}
.adelie-voix__carousel {
  display: flex;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-x: auto;
  overflow-y: hidden;
}
.adelie-voix__carousel::-webkit-scrollbar { display: none; }

.adelie-voix__slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 40px var(--pad-x);
  min-height: 500px;
}
.adelie-voix__avatar {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--noir-velours);
  filter: grayscale(1);
}
.adelie-voix__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.adelie-voix__body {
  max-width: 480px;
}
.adelie-voix__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--ivoire);
  margin: 0 0 28px;
}
.adelie-voix__author {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0;
}

.adelie-voix__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
}
.adelie-voix__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gris-faible);
  transition: background var(--transition-rapide), transform var(--transition-rapide);
  cursor: pointer;
}
.adelie-voix__dot.is-active {
  background: var(--or);
  transform: scale(1.4);
}

/* ---------- 9. VI. INVITATION ---------- */
.adelie-invitation {
  background: var(--noir-velours);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.adelie-invitation::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(201,165,90,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(201,165,90,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.adelie-invitation__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  z-index: 1;
}
.adelie-invitation__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--ivoire);
}
.adelie-invitation__subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  opacity: 0.85;
  margin: 0 0 56px;
}

.adelie-invitation__form {
  display: flex;
  align-items: stretch;
  gap: 16px;
  border-bottom: 1px solid var(--gris-faible);
  padding-bottom: 4px;
  margin-bottom: 24px;
  transition: border-color var(--transition-rapide);
}
.adelie-invitation__form:focus-within {
  border-bottom-color: var(--or);
}
.adelie-invitation__input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--ivoire);
  padding: 14px 4px;
  letter-spacing: 0.02em;
}
.adelie-invitation__input::placeholder {
  color: var(--gris-muet);
  font-style: italic;
}
.adelie-invitation__btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivoire);
  padding: 14px 4px;
  transition: color var(--transition-rapide);
  white-space: nowrap;
}
.adelie-invitation__btn:hover { color: var(--or); }
.adelie-invitation__btn .adelie-arrow { margin-left: 8px; }

.adelie-invitation__disclaimer {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  opacity: 0.5;
  letter-spacing: 0.04em;
  margin: 0;
}

.adelie-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--noir-velours);
  color: var(--ivoire);
  border: 1px solid var(--gris-tres-faible);
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-rapide), transform var(--transition-rapide);
  z-index: 200;
}
.adelie-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

/* ---------- 10. FOOTER MINIMALISTE ---------- */
.adelie-footer {
  background: var(--noir);
  text-align: center;
  padding: 120px 0 80px;
  border-top: 1px solid var(--gris-tres-faible);
  position: relative;
}
.adelie-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.adelie-footer__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--ivoire);
  margin: 0 0 28px;
  display: block;
}
.adelie-footer__separator {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--or);
  margin: 0 auto 36px;
  border: 0;
}
.adelie-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 40px;
}
.adelie-footer__nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivoire-doux);
  transition: color var(--transition-rapide);
  position: relative;
}
.adelie-footer__nav-link::before {
  content: '·';
  position: absolute;
  left: -18px;
  color: var(--gris-faible);
}
.adelie-footer__nav-link:first-child::before { display: none; }
.adelie-footer__nav-link:hover { color: var(--or); }

.adelie-footer__social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 0 48px;
}
.adelie-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  color: var(--ivoire-doux);
  transition: color var(--transition-rapide);
}
.adelie-footer__social a:hover { color: var(--or); }
.adelie-footer__social svg { width: 20px; height: 20px; }

.adelie-footer__copyright {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  opacity: 0.4;
  margin: 0;
}

/* ---------- 11. CURSOR CINEMA ---------- */
.adelie-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--or);
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: transform 200ms cubic-bezier(0.65, 0, 0.35, 1), width 200ms ease, height 200ms ease, background 200ms ease;
  z-index: 9999;
  mix-blend-mode: difference;
}
.adelie-cursor.is-active {
  transform: translate3d(-50%, -50%, 0) scale(1);
}
.adelie-cursor.is-hover {
  width: 48px; height: 48px;
  background: rgba(201, 165, 90, 0.1);
}

/* ---------- 12. SCROLL PROGRESS ---------- */
.adelie-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--or);
  z-index: 101;
  transition: width 100ms linear;
}

/* ---------- 13. SCROLL SNAP DOUX ---------- */
@media (min-width: 1024px) {
  .adelie-main {
    scroll-snap-type: y proximity;
  }
  .adelie-main > section {
    scroll-snap-align: start;
  }
}

/* ---------- 14. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .adelie-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
  }
  .adelie-bento > *:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .adelie-bento > *:nth-child(2),
  .adelie-bento > *:nth-child(3),
  .adelie-bento > *:nth-child(4),
  .adelie-bento > *:nth-child(5),
  .adelie-bento > *:nth-child(6),
  .adelie-bento > *:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .adelie-bento > *:nth-child(8) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .adelie-art__chapter {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  :root {
    --hero-h: 80vh;
    --pad-x: 16px;
  }
  section.adelie-manifesto,
  section.adelie-collection,
  section.adelie-art,
  section.adelie-voix,
  section.adelie-invitation {
    padding: 100px 0;
  }
  .adelie-section__roman { display: none; }

  .adelie-header__nav { display: none; }
  .adelie-header__burger { display: inline-flex; }
  .adelie-mobile-nav { display: block; }
  .adelie-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .adelie-header__icons { gap: 16px; }

  .adelie-hero__content {
    bottom: 14vh;
  }
  .adelie-hero__eyebrow {
    letter-spacing: 0.35em;
    margin-bottom: 18px;
  }

  .adelie-manifesto__text { font-size: 20px; }

  .adelie-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .adelie-art__chapter {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 100px;
  }
  .adelie-art__chapter--reverse { direction: ltr; }
  .adelie-art__body { padding: 0; }
  .adelie-art__letter { font-size: 72px; }

  .adelie-voix__slide {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 20px var(--pad-x);
  }
  .adelie-voix__avatar { width: 200px; height: 200px; }
  .adelie-voix__quote { font-size: 20px; }

  .adelie-invitation__form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .adelie-invitation__btn {
    padding: 16px 0;
    border-top: 1px solid var(--gris-faible);
  }

  .adelie-footer { padding: 80px 0 60px; }
  .adelie-footer__nav { gap: 24px; }
  .adelie-footer__nav-link::before { left: -14px; }

  /* Cursor cinema hors mobile */
  .adelie-cursor { display: none; }
}

/* ---------- 15. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .adelie-hero__img { animation: none; }
  .adelie-hero__scroll-line { animation: none; opacity: 0.5; }
  [data-reveal] { opacity: 1; transform: none; }
  [data-mask-reveal] { clip-path: inset(0); }
}

/* ---------- 16. PRINT ---------- */
@media print {
  .adelie-header, .adelie-cursor, .adelie-progress, .adelie-toast { display: none !important; }
  .adelie-hero { height: auto; min-height: auto; }
}
