/* ─── Variables & Reset ──────────────────────────────────────────────────── */

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

:root {
  --bg:        #0a0a0a;
  --bg2:       #0f0f0f;
  --gold:      #c9a84c;
  --gold-dim:  rgba(201,168,76,0.12);
  --gold-line: rgba(201,168,76,0.35);
  --cream:     #f5f0e8;
  --muted:     #8a8a8a;
  --border:    rgba(255,255,255,0.06);
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

/* Noise overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: .028;
  pointer-events: none;
  z-index: 10000;
}

/* ─── Custom Cursor ─────────────────────────────────────────────────────── */

#cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 10001;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--gold-line); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%);
}

/* ─── Navigation ────────────────────────────────────────────────────────── */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 4vw;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  transition: background .4s, backdrop-filter .4s, border-bottom .4s;
}
nav.scrolled {
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 400;
  letter-spacing: .28em; color: var(--cream);
  text-decoration: none; text-transform: uppercase;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2.4rem; list-style: none;
}
.nav-links a {
  font-family: var(--font-body); font-size: .68rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s cubic-bezier(.25,.46,.45,.94);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-18 { font-style: italic !important; font-size: .62rem !important; opacity: .5; }
.nav-ig {
  display: flex; align-items: center;
  color: var(--muted); text-decoration: none;
  opacity: .55; transition: opacity .25s;
}
.nav-ig svg { width: 16px; height: 16px; fill: currentColor; }
.nav-ig:hover { opacity: 1; }

.nav-back {
  display: flex; align-items: center; gap: .7rem;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .3s;
}
.nav-back:hover { color: var(--gold); }
.nav-back svg { width: 14px; height: 14px; }

.nav-breadcrumb {
  font-size: .6rem; letter-spacing: .15em; color: var(--muted); text-transform: uppercase;
  display: flex; align-items: center; gap: .6rem;
}
.nav-breadcrumb a { color: var(--muted); text-decoration: none; transition: color .3s; }
.nav-breadcrumb a:hover { color: var(--gold); }
.nav-breadcrumb span { opacity: .35; }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(12,12,12,.97); backdrop-filter: blur(20px);
  border: 1px solid var(--border); min-width: 140px;
  padding: .75rem 0 .5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: .5rem 1.2rem;
  font-size: .65rem; letter-spacing: .12em;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { color: var(--gold); background: var(--gold-dim); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; border: none; background: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px; background: var(--cream);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: rgba(10,10,10,.97); backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; opacity: 0; transition: opacity .4s;
}
.nav-mobile.open { opacity: 1; }
.nav-mobile a {
  font-family: var(--font-head); font-size: 2rem; font-weight: 300;
  color: var(--muted); text-decoration: none;
  letter-spacing: .12em; transition: color .3s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-label {
  font-size: .55rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); opacity: .6; margin-bottom: -.5rem;
}
.nav-mobile-18 { font-style: italic; opacity: .45 !important; font-size: 1.4rem !important; }
.nav-mobile-ig {
  display: flex; align-items: center; gap: .6rem;
  font-size: .55rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; opacity: .6; transition: opacity .25s;
}
.nav-mobile-ig svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.nav-mobile-ig:hover { opacity: 1; }
.nav-mobile-legal {
  font-size: .5rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; opacity: .35; transition: opacity .25s;
}
.nav-mobile-legal:hover { opacity: .7; }

/* ─── Animations ────────────────────────────────────────────────────────── */

.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity .85s ease, transform .85s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0; transform: translateX(-22px);
  transition: opacity .85s ease, transform .85s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

/* ─── HOME : Hero ───────────────────────────────────────────────────────── */

.hero {
  position: relative; height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-head);
  font-size: clamp(18vw, 28vw, 380px);
  font-weight: 500; color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.055);
  user-select: none; pointer-events: none; white-space: nowrap; z-index: 0;
  animation: bgTextBreathe 8s ease-in-out infinite;
}

@keyframes bgTextBreathe {
  0%, 100% { opacity: 1;    transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: .6;  transform: translate(-50%,-50%) scale(1.03); }
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; display: flex;
  flex-direction: column; align-items: center; gap: 1.6rem;
}
.hero-line        { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--gold)); }
.hero-line-bottom { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); }
.hero-logo {
  position: relative;
  margin: 0;
  line-height: 1;
}
.hero-logo-img {
  width: clamp(180px, 28vw, 420px);
  height: auto;
  display: block;
  animation: gdrReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: .1s;
}

/* Reveal lettre par lettre — opacity + translateY seulement (pas de filter) */
.hl {
  display: inline-block;
  animation: gdrReveal 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hl:nth-child(1) { animation-delay: .1s; }
.hl:nth-child(2) { animation-delay: .28s; }
.hl:nth-child(3) { animation-delay: .46s; }

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

/* Shimmer : overlay positionné qui glisse en mix-blend-mode */
.gdr-shimmer {
  position: absolute;
  inset: -0.2em -0.1em;
  background: linear-gradient(
    105deg,
    transparent          30%,
    rgba(255,230,120,.3) 47%,
    rgba(255,245,180,.5) 50%,
    rgba(255,230,120,.3) 53%,
    transparent          70%
  );
  background-size: 300% 100%;
  background-position: 200% 0;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: gdrShimmer 8s ease-in-out 1.8s infinite;
}

@keyframes gdrShimmer {
  0%        { background-position: 220% 0; }
  30%, 100% { background-position: -80% 0; }
}
.hero-sub {
  font-size: .65rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); opacity: .8;
}
.hero-tagline {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--muted); max-width: 520px; line-height: 1.5;
}
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem; z-index: 1;
}
.scroll-indicator span { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--cream); opacity: .75; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse {
  0%,100% { opacity: .2; transform: scaleY(.6) translateY(-10px); }
  50%     { opacity: .8; transform: scaleY(1) translateY(0); }
}

/* Particles */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; width: 1px; height: 1px;
  background: var(--gold); border-radius: 50%;
  animation: floatUp linear infinite; opacity: 0;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: .55; }
  90%  { opacity: .25; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}

/* ─── HOME : Series Grid ────────────────────────────────────────────────── */

.series-section { padding: 8rem 5vw; max-width: 1400px; margin: 0 auto; }

.section-label {
  display: flex; align-items: center; gap: 1.2rem; margin-bottom: 3rem;
}
.section-label span { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.section-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, var(--gold-line), transparent); }

.series-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px; gap: 12px;
}

.card { position: relative; overflow: hidden; cursor: none; }
.card-img {
  position: absolute; inset: 0;
  background-color: #111;
  background-size: cover; background-position: center;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.card:hover .card-img { transform: scale(1.05); }

.card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .6rem .8rem;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
}
.card-label-text {
  font-family: var(--font-head); font-size: clamp(.7rem, 1.2vw, .95rem);
  color: rgba(245,240,232,.5); letter-spacing: .06em;
}
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.2rem 1rem;
  opacity: 0; transition: opacity .4s;
}
.card:hover .card-overlay { opacity: 1; }
.card-border {
  position: absolute; inset: 0;
  border: 1px solid var(--gold);
  opacity: 0; transform: scale(.96);
  transition: opacity .4s, transform .4s;
}
.card:hover .card-border { opacity: .6; transform: scale(1); }
.card-num { font-size: .55rem; letter-spacing: .2em; color: var(--gold); opacity: .7; margin-bottom: .3rem; }
.card-title {
  font-family: var(--font-head); font-size: clamp(.9rem, 1.8vw, 1.4rem);
  font-weight: 400; color: var(--cream); letter-spacing: .04em;
  transform: translateY(8px); transition: transform .4s;
}
.card:hover .card-title { transform: translateY(0); }
.card-cat { font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); opacity: .7; margin-top: .3rem; }

/* ─── HOME : About teaser ───────────────────────────────────────────────── */

.about-section {
  padding: 10rem 5vw;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.about-section::before {
  content: '❧'; position: absolute; font-size: 18rem; font-family: serif;
  color: var(--gold); opacity: .02; top: 50%; left: 50%;
  transform: translate(-50%,-50%); pointer-events: none;
}
.about-quote {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--cream);
  max-width: 700px; margin: 0 auto 1.5rem;
  line-height: 1.5; position: relative; z-index: 1;
}
.about-quote::before {
  content: '\201C'; font-size: 4em; color: var(--gold); opacity: .3;
  position: absolute; top: -.3em; left: -.1em; line-height: 1;
}
.about-attr {
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3rem; position: relative; z-index: 1;
}

/* Buttons */
.btn-ghost {
  display: inline-block; font-size: .62rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  border: 1px solid var(--gold-line); padding: .9rem 2.2rem;
  position: relative; z-index: 1; overflow: hidden; transition: color .3s;
}
.btn-ghost::before {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: translateX(-100%); transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.btn-ghost:hover { color: var(--bg); }
.btn-ghost:hover::before { transform: translateX(0); }
.btn-ghost span { position: relative; z-index: 1; }

.btn-gold {
  display: inline-block; font-size: .62rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--bg); background: var(--gold);
  padding: .9rem 2.2rem; text-decoration: none; transition: opacity .3s;
}
.btn-gold:hover { opacity: .85; }

/* ─── SERIE : Hero ──────────────────────────────────────────────────────── */

.hero-serie {
  position: relative; height: 70vh; min-height: 460px;
  display: flex; align-items: flex-end; overflow: hidden;
  padding-top: 0;
}
.hero-cover { position: absolute; inset: 0; background: #111; }
.hero-cover img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,.3) 50%, rgba(10,10,10,.1) 100%);
}
.hero-serie-content {
  position: relative; z-index: 1;
  padding: 0 6vw 4rem; max-width: 900px;
}
.hero-meta {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); opacity: .8; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1.2rem;
}
.hero-meta::before { content: ''; width: 32px; height: 1px; background: var(--gold-line); }
.hero-title {
  font-family: var(--font-head); font-weight: 300; line-height: .95;
  font-size: clamp(2.8rem, 7vw, 6rem); color: var(--cream); margin-bottom: 1.2rem;
}
.hero-desc {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem); color: var(--muted);
  max-width: 520px; line-height: 1.6;
}
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.stat { display: flex; flex-direction: column; gap: .3rem; }
.stat-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 300; color: var(--cream); }
.stat-label { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ─── SERIE : Gallery ───────────────────────────────────────────────────── */

/* ── Contexte de série ── */
.serie-context {
  padding: 4rem 0 2rem;
}

.serie-context-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.8rem 2rem;
  text-align: left;
  border: 1px solid rgba(201, 168, 76, .6);
  border-radius: 2px;
}

.serie-context-inner p {
  font-family: var(--font-serif);
  font-size: clamp(.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1.2em;
}

.serie-context-inner blockquote {
  border-left: none;
  margin: 2rem 0;
  padding: 0;
}

.serie-context-inner blockquote p,
.serie-context-inner blockquote cite {
  font-style: italic;
  color: var(--gold);
  font-size: clamp(.85rem, 1.5vw, 1rem);
}

.serie-context-inner cite {
  display: block;
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--gold);
  margin-top: .5rem;
  font-style: normal;
}

.serie-context-inner h2,
.serie-context-inner h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--cream);
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: .75rem;
}

/* Neutralise les classes Gutenberg qui injectent des fonds clairs */
.serie-context-inner [class*="has-background"],
.serie-context-inner [class*="has-"][class*="-background-color"] {
  background: transparent !important;
}
.serie-context-inner [class*="has-"][class*="-color"] {
  color: var(--silver) !important;
}
.serie-context-inner figure,
.serie-context-inner .wp-block-quote {
  background: transparent;
}

/* Séparateur doré fin avant la galerie */
.serie-context-inner::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 3rem 0 0;
  opacity: .5;
}

.serie-context-inner .message-perso {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-line);
  font-family: 'Caveat', cursive;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.3;
  color: var(--gold);
  text-align: center;
}

.gallery-section { padding: 5rem 3vw 8rem; max-width: 1600px; margin: 0 auto; }
.gallery-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1vw 2.5rem; flex-wrap: wrap; gap: 1rem;
}
.gallery-count { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

.gallery-grid { columns: 3; column-gap: 10px; }

.gallery-item {
  break-inside: avoid; margin-bottom: 10px;
  position: relative; overflow: hidden; cursor: none;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.gallery-item.visible { opacity: 1; transform: translateY(0); }
.gallery-item img {
  display: block; width: 100%; height: auto;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .5s;
  filter: brightness(.88) contrast(1.05);
}
.gallery-item:hover img { transform: scale(1.03); filter: brightness(1) contrast(1.1); }
.item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.48);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s;
}
.gallery-item:hover .item-overlay { opacity: 1; }
.item-overlay-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(.7); transition: transform .35s;
}
.gallery-item:hover .item-overlay-icon { transform: scale(1); }
.item-overlay-icon svg { width: 18px; height: 18px; }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--gold); opacity: 0; transform: scale(.97);
  transition: opacity .35s, transform .35s; pointer-events: none;
}
.gallery-item:hover::after { opacity: .5; transform: scale(1); }

/* ─── SERIE : Modèles liés ──────────────────────────────────────────────── */

.linked-modeles {
  padding: 4rem 5vw; border-top: 1px solid var(--border);
  max-width: 1300px; margin: 0 auto;
}
.linked-label {
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem;
}
.linked-grid { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.linked-card {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; padding: .8rem 1rem;
  border: 1px solid var(--border);
  transition: border-color .3s, background .3s;
}
.linked-card:hover { border-color: var(--gold-line); background: var(--gold-dim); }
.linked-thumb { width: 48px; height: 48px; overflow: hidden; flex-shrink: 0; }
.linked-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); }
.linked-name { font-family: var(--font-head); font-size: 1.1rem; color: var(--cream); }
.linked-series-count { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); opacity: .7; margin-top: .2rem; }

/* ─── Navigation série précédente / suivante ────────────────────────────── */

.next-section {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.next-card {
  position: relative; overflow: hidden; height: 260px;
  display: flex; align-items: flex-end;
  text-decoration: none; padding: 2rem;
}
.next-card--empty { background: var(--bg2); }
.next-card-bg {
  position: absolute; inset: 0; background: #111;
  background-size: cover; background-position: center;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.next-card:hover .next-card-bg { transform: scale(1.04); }
.next-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.1));
}
.next-card-content { position: relative; z-index: 1; }
.next-label { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.next-title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 300; color: var(--cream); }

/* ─── MODÈLE : Hero triptyque ───────────────────────────────────────────── */

.hero--modele {
  align-items: flex-end;
  flex-direction: row;
  justify-content: unset;
}
.hero-triptych {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1.2fr 1fr .8fr;
}
.triptych-panel { position: relative; overflow: hidden; }
.triptych-panel img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.45) contrast(1.1) saturate(.8);
  transition: transform 8s ease, filter 1s;
}
.triptych-panel img.loaded { transform: scale(1.03); }
.triptych-panel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, rgba(10,10,10,.5));
}
.triptych-panel:nth-child(2)::after { background: rgba(10,10,10,.25); }
.triptych-panel:nth-child(3)::after { background: linear-gradient(to left, transparent, rgba(10,10,10,.5)); }

.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(10,10,10,.97) 0%, transparent 70%),
    radial-gradient(ellipse 100% 40% at 50% 0%,  rgba(10,10,10,.7) 0%, transparent 60%);
}
.hero--modele .hero-content {
  position: relative; z-index: 3;
  width: 100%; padding: 0 6vw 5rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-direction: row; text-align: left;
  gap: 3rem; flex-wrap: wrap;
}
.hero-left-content { flex: 1; min-width: 280px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold-line); }
.hero-name {
  font-family: var(--font-head); font-weight: 300; line-height: .9;
  font-size: clamp(4rem, 10vw, 9rem); color: var(--cream); letter-spacing: -.02em;
}
.hero-name-watermark {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: clamp(8vw, 14vw, 200px); font-weight: 500;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.04);
  white-space: nowrap; user-select: none; pointer-events: none; z-index: 2;
}
.hero-meta-col { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-end; text-align: right; }
.hero-stat { display: flex; flex-direction: column; gap: .2rem; }
.hero-stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 300; color: var(--cream); line-height: 1; }
.hero-stat-label { font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 3; }
.hero-scroll span { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); opacity: .4; }

/* ─── MODÈLE : Profil ───────────────────────────────────────────────────── */

.profil-section {
  padding: 8rem 5vw; max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 6vw; align-items: start;
}
.profil-portrait { position: sticky; top: 6rem; }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.portrait-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.85) contrast(1.05) saturate(.9);
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.portrait-frame:hover img { transform: scale(1.03); }
.portrait-frame::before {
  content: ''; position: absolute;
  top: 1rem; left: 1rem; right: -1rem; bottom: -1rem;
  border: 1px solid var(--gold-line); z-index: -1;
  transition: transform .4s;
}
.portrait-frame:hover::before { transform: translate(4px,4px); }
.portrait-caption {
  margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.portrait-caption-name { font-family: var(--font-head); font-size: 1.1rem; color: var(--cream); }
.portrait-caption-tag { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

.tags-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.tag {
  font-size: .58rem; letter-spacing: .15em; text-transform: uppercase;
  border: 1px solid var(--border); padding: .35rem .8rem; color: var(--muted);
  transition: color .3s, border-color .3s;
}
.tag.active, .tag:hover { color: var(--gold); border-color: var(--gold-line); }

.profil-quick-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.quick-item { aspect-ratio: 2/3; overflow: hidden; position: relative; cursor: none; }
.quick-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.75) saturate(.8);
  transition: transform .6s cubic-bezier(.25,.46,.45,.94), filter .4s;
}
.quick-item:hover img { transform: scale(1.07); filter: brightness(1) saturate(1); }
.quick-item::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid transparent; transition: border-color .3s;
}
.quick-item:hover::after { border-color: var(--gold-line); }

.profil-text { display: flex; flex-direction: column; gap: 3rem; }
.profil-intro {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.55; color: var(--cream);
  border-left: 1px solid var(--gold-line); padding-left: 1.8rem;
}
.profil-bio { font-size: .82rem; line-height: 1.95; color: var(--muted); }
.profil-bio p + p { margin-top: 1.1em; }

.profil-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}
.pstat { background: var(--bg); padding: 1.5rem 1.2rem; display: flex; flex-direction: column; gap: .4rem; }
.pstat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 300; color: var(--cream); line-height: 1; }
.pstat-label { font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ─── MODÈLE : Series list ──────────────────────────────────────────────── */

.series-header {
  max-width: 1300px; margin: 0 auto 3.5rem;
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.series-label { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 1rem; }
.series-label::before { content: ''; width: 24px; height: 1px; background: var(--gold-line); }
.series-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--cream); }
.series-all { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); text-decoration: none; border-bottom: 1px solid transparent; transition: color .3s, border-color .3s; }
.series-all:hover { color: var(--gold); border-color: var(--gold-line); }

.series-list { max-width: 1300px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.serie-row {
  display: grid; grid-template-columns: 80px 1fr 180px 100px;
  align-items: center; gap: 2rem; padding: 1.8rem 1.5rem;
  background: var(--bg2); border: 1px solid transparent;
  text-decoration: none;
  transition: background .3s, border-color .3s;
  position: relative; overflow: hidden; cursor: none;
}
.serie-row:hover { background: #131313; border-color: var(--border); }
.serie-thumb { width: 80px; height: 60px; overflow: hidden; }
.serie-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.65) saturate(.65);
  transition: filter .4s, transform .5s;
}
.serie-row:hover .serie-thumb img { filter: brightness(.95) saturate(1); transform: scale(1.08); }
.serie-info { display: flex; flex-direction: column; gap: .35rem; }
.serie-num { font-size: .55rem; letter-spacing: .2em; color: var(--gold); opacity: .6; }
.serie-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 400; color: var(--cream); transition: color .3s; }
.serie-row:hover .serie-name { color: var(--gold); }
.serie-desc { font-size: .72rem; color: var(--muted); }
.serie-cat { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); padding: .3rem .8rem; text-align: center; width: fit-content; }
.serie-count { font-family: var(--font-head); font-size: 1.1rem; color: var(--muted); text-align: right; }
.serie-arrow { position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%) translateX(8px); opacity: 0; transition: opacity .3s, transform .3s; color: var(--gold); }
.serie-row:hover .serie-arrow { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ─── MODÈLE : Autres modèles ───────────────────────────────────────────── */

.other-section { padding: 6rem 5vw 8rem; border-top: 1px solid var(--border); }
.other-inner { max-width: 1300px; margin: 0 auto; }
.other-label { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 3rem; display: flex; align-items: center; gap: 1rem; }
.other-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, var(--gold-line), transparent); }

.other-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 12px; }
.other-card { position: relative; overflow: hidden; text-decoration: none; cursor: none; aspect-ratio: 2/3; }
.other-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(.7); transition: filter .5s, transform .6s cubic-bezier(.25,.46,.45,.94); }
.other-card:hover img { filter: brightness(.85) saturate(1); transform: scale(1.04); }
.other-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem .8rem; }
.other-card-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 300; color: var(--cream); }
.other-card-count { font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); opacity: .7; }
.other-card::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--gold); opacity: 0; transform: scale(.97); transition: opacity .3s, transform .3s; }
.other-card:hover::after { opacity: .4; transform: scale(1); }

/* ─── À PROPOS ──────────────────────────────────────────────────────────── */

.hero--about {
  height: auto; min-height: 100dvh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h); flex-direction: unset;
  align-items: unset;
}
.hero-left {
  position: sticky; top: var(--nav-h);
  height: calc(100dvh - var(--nav-h)); overflow: hidden;
}
.hero-left img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75) contrast(1.1); transform: scale(1.03); transition: transform 8s ease; }
.hero-left img.loaded { transform: scale(1); }
.hero-left--logo { display: flex; align-items: center; justify-content: center; background: var(--bg); }
.hero-left-logo-img { width: clamp(160px, 55%, 300px); height: auto; object-fit: unset; filter: none; transform: none; transition: none; opacity: .9; }
.hero-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--bg) 100%),
              linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 40%);
}
.hero-left-num {
  position: absolute; bottom: 2rem; left: 2rem;
  font-family: var(--font-head); font-size: 5rem; font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.15);
  line-height: 1; user-select: none;
}
.hero-right { padding: 8rem 5vw 8rem 4vw; display: flex; flex-direction: column; justify-content: center; }
.section-eye { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; }
.section-eye::before { content: ''; width: 24px; height: 1px; background: var(--gold-line); }
.hero-name { font-family: var(--font-head); font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; line-height: 1; color: var(--cream); margin-bottom: .5rem; }
.hero-name em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-city { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: 3.5rem; }
.hero-intro { font-family: var(--font-head); font-style: italic; font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 300; line-height: 1.65; color: var(--cream); opacity: .85; margin-bottom: 3rem; border-left: 1px solid var(--gold-line); padding-left: 1.5rem; }
.hero-body { font-size: 1.08rem; line-height: 1.9; color: var(--muted); max-width: 480px; margin-bottom: 3rem; }
.hero-body p + p { margin-top: 1.2em; }

.stats-row { display: flex; gap: 2.5rem; flex-wrap: wrap; padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 3rem; }
.contact-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.philo-section { padding: 10rem 5vw; background: var(--bg2); border-top: 1px solid var(--border); }
.philo-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 6vw; align-items: start; }
.philo-left { position: sticky; top: 5rem; }
.philo-label { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.philo-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.1; color: var(--cream); }
.philo-title em { font-style: italic; color: var(--muted); }
.philo-right { display: flex; flex-direction: column; gap: 3rem; }
.philo-block { border-left: 1px solid var(--border); padding-left: 2rem; }
.philo-block-num { font-family: var(--font-head); font-size: .9rem; color: var(--gold); opacity: .6; margin-bottom: .8rem; }
.philo-block-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 400; color: var(--cream); margin-bottom: .8rem; }
.philo-block-text { font-size: .8rem; line-height: 1.9; color: var(--muted); }

.collab-section { padding: 8rem 5vw; border-top: 1px solid var(--border); max-width: 1200px; margin: 0 auto; }
.collab-label { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 3rem; display: flex; align-items: center; gap: 1rem; }
.collab-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, var(--gold-line), transparent); }
.collab-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1px; background: var(--border); }
.collab-item { background: var(--bg); padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; transition: background .3s; text-decoration: none; }
.collab-item:hover { background: var(--bg2); }
.collab-item--cta { border: 1px solid var(--gold-line); background: var(--gold-dim); }
.collab-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 400; color: var(--cream); }
.collab-item--cta .collab-name { color: var(--gold); }
.collab-role { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.collab-count { font-family: var(--font-head); font-size: .9rem; color: var(--gold); opacity: .6; margin-top: .3rem; text-decoration: none; }

.cta-section { padding: 10rem 5vw; text-align: center; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.cta-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-head); font-size: clamp(10vw, 18vw, 260px); font-weight: 500; color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.04); pointer-events: none; white-space: nowrap; user-select: none; }
.cta-label { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.cta-title { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 4rem); font-weight: 300; color: var(--cream); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.cta-sub { font-family: var(--font-head); font-style: italic; font-size: clamp(1rem, 1.8vw, 1.4rem); color: var(--muted); margin-bottom: 3rem; position: relative; z-index: 1; }
.cta-email { font-family: var(--font-head); font-size: clamp(1.2rem, 2.5vw, 2rem); color: var(--gold); text-decoration: none; letter-spacing: .05em; border-bottom: 1px solid var(--gold-line); padding-bottom: .2rem; transition: color .3s, border-color .3s; position: relative; z-index: 1; }
.cta-email:hover { color: var(--cream); border-color: var(--cream); }

/* ─── Lightbox ──────────────────────────────────────────────────────────── */

#lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-img-wrap { position: relative; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
#lb-img { max-width: 88vw; max-height: 88vh; object-fit: contain; opacity: 0; transform: scale(.97); transition: opacity .4s, transform .4s; }
#lb-img.show { opacity: 1; transform: scale(1); }
.lb-close { position: fixed; top: 1.5rem; right: 2rem; background: none; border: none; cursor: none; color: var(--muted); font-size: 1.5rem; line-height: 1; transition: color .3s; z-index: 10; }
.lb-close:hover { color: var(--gold); }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); background: none; border: 1px solid var(--border); width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: none; transition: border-color .3s, background .3s; z-index: 10; }
.lb-nav:hover { border-color: var(--gold-line); background: var(--gold-dim); }
.lb-nav svg { width: 18px; height: 18px; fill: none; stroke: var(--cream); stroke-width: 1.5; transition: stroke .3s; }
.lb-nav:hover svg { stroke: var(--gold); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-counter { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); font-size: .6rem; letter-spacing: .25em; color: var(--muted); }
.lb-counter span { color: var(--gold); }
.kb-hint { position: fixed; bottom: 2rem; right: 2rem; font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); opacity: .4; display: flex; gap: .8rem; align-items: center; }
.kb-key { border: 1px solid rgba(255,255,255,.15); padding: .2rem .5rem; font-size: .55rem; }

/* ─── Footer ────────────────────────────────────────────────────────────── */

footer { padding: 3.5rem 5vw; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; letter-spacing: .25em; color: var(--muted); text-transform: uppercase; }
.footer-copy { font-size: .6rem; letter-spacing: .15em; color: var(--muted); opacity: .45; }
.footer-right { display: flex; align-items: center; gap: 1.5rem; }
.footer-ig { color: var(--muted); text-decoration: none; transition: color .3s; display: flex; align-items: center; gap: .5rem; font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-ig:hover { color: var(--gold); }
.footer-ig svg { width: 16px; height: 16px; fill: currentColor; }
.back-top { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); text-decoration: none; border-bottom: 1px solid transparent; transition: color .3s, border-color .3s; }
.back-top:hover { color: var(--gold); border-color: var(--gold-line); }
.footer-link { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .3s; }
.footer-link:hover { color: var(--gold); }

/* ─── Mentions légales ──────────────────────────────────────────────────── */

.legal-section {
  padding: calc(var(--nav-h) + 5rem) 5vw 6rem;
  max-width: 760px;
  margin: 0 auto;
}
.legal-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 3.5rem;
  letter-spacing: .05em;
}
.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.legal-block p {
  font-size: .9rem;
  line-height: 1.9;
  color: var(--silver);
}
.legal-block a { color: var(--cream); text-decoration: none; border-bottom: 1px solid var(--gold-line); transition: border-color .2s; }
.legal-block a:hover { border-color: var(--gold); }

/* ─── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero--about { grid-template-columns: 1fr; min-height: unset; }
  .hero-left { position: relative; top: 0; height: 60vw; max-height: 420px; }
  .philo-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philo-left { position: relative; top: 0; }
  .profil-section { grid-template-columns: 1fr; gap: 4rem; }
  .profil-portrait { position: relative; top: 0; max-width: 420px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .series-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .card { grid-column: span 1 !important; grid-row: span 2 !important; }
  .gallery-grid { columns: 2; }
  .hero-triptych { grid-template-columns: 1fr; }
  .triptych-panel:nth-child(2), .triptych-panel:nth-child(3) { display: none; }
  .hero-meta-col { display: none; }
  .serie-row { grid-template-columns: 60px 1fr; }
  .serie-cat, .serie-count, .serie-arrow { display: none; }
  .next-section { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .series-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-grid { columns: 1; }
  .profil-quick-gallery { grid-template-columns: repeat(2, 1fr); }
  .other-grid { grid-template-columns: repeat(2, 1fr); }
  .profil-stats { grid-template-columns: repeat(2, 1fr); }
  footer { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   AGE GATE
   ═══════════════════════════════════════════════════════════════ */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .6s ease;
}

.age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-bg {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, .96);
  backdrop-filter: blur(12px);
}

.age-gate-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 540px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  animation: gateIn .7s cubic-bezier(0.4,0,0.2,1) both;
}

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

.age-gate-eye {
  font-size: .65rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
}

.age-gate-title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin: 0;
  letter-spacing: .1em;
}

.age-gate-text {
  color: var(--silver);
  font-size: .88rem;
  line-height: 1.8;
  max-width: 40ch;
}

.age-gate-text strong {
  color: var(--cream);
  font-weight: 500;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-items: center;
  width: 100%;
  max-width: 280px;
}

.age-gate-yes {
  width: 100%;
  text-align: center;
  font-size: .75rem;
  letter-spacing: .2em;
  border: none;
  cursor: pointer;
}

.age-gate-no {
  font-size: .7rem;
  opacity: .5;
  transition: opacity .2s;
}
.age-gate-no:hover { opacity: 1; }

.age-gate-legal {
  font-size: .6rem;
  color: rgba(138,138,138,.5);
  letter-spacing: .05em;
  margin-top: .5rem;
}

/* Champs date de naissance */
.age-gate-dob { width: 100%; }

.dob-fields {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: .4rem;
}

.dob-field {
  display: flex;
  flex-direction: column-reverse;
  gap: .35rem;
  flex: 1;
  max-width: 80px;
}

.dob-field--year { max-width: 110px; }

.dob-field label {
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver);
  text-align: center;
  transition: color .2s;
}

.dob-field input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
  padding: .5rem .2rem;
  border-radius: 0;
  outline: none;
  transition: border-color .2s;
  -moz-appearance: textfield;
}

.dob-field input::-webkit-outer-spin-button,
.dob-field input::-webkit-inner-spin-button { -webkit-appearance: none; }

.dob-field input:focus {
  border-color: var(--gold);
}

.dob-field input:focus + label { color: var(--gold); }

.dob-sep {
  color: var(--border);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  padding-bottom: .5rem;
  user-select: none;
}

.age-gate-error {
  min-height: 1.4em;
  margin-top: .75rem;
  font-size: .75rem;
  letter-spacing: .05em;
  color: #c0392b;
  text-align: center;
  transition: opacity .2s;
}

/* séparateur doré sous le titre */
.age-gate-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
}

/* ═══════════════════════════════════════════════════════════════
   RGPD BANNER
   ═══════════════════════════════════════════════════════════════ */

.rgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: rgba(8, 8, 8, .97);
  border-top: 1px solid rgba(201, 168, 76, .25);
  backdrop-filter: blur(16px);
  transform: translateY(0);
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1), opacity .5s;
  opacity: 1;
}

.rgpd-banner.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.rgpd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 4vw;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.rgpd-text { flex: 1; }

.rgpd-title {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}

.rgpd-body {
  font-size: .72rem;
  color: var(--silver);
  line-height: 1.6;
  max-width: 70ch;
}

.rgpd-link {
  color: var(--gold);
  opacity: .7;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,.3);
  transition: opacity .2s;
}
.rgpd-link:hover { opacity: 1; }

.rgpd-actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}

.rgpd-btn {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: opacity .2s, background .2s;
  font-family: var(--font-sans);
}

.rgpd-btn--accept {
  background: var(--gold);
  color: var(--bg);
}
.rgpd-btn--accept:hover { opacity: .85; }

.rgpd-btn--refuse {
  background: transparent;
  color: var(--silver);
  border: 1px solid rgba(138,138,138,.3);
}
.rgpd-btn--refuse:hover { color: var(--cream); border-color: rgba(138,138,138,.6); }

@media (max-width: 640px) {
  .rgpd-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .rgpd-actions { width: 100%; }
  .rgpd-btn { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE —18 — Hero photo + grille séries
   ═══════════════════════════════════════════════════════════════ */

.hero--18 { position: relative; }

.hero18-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(.45) saturate(.7);
  transform: scale(1.06);
}

.hero18-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.4) 0%, rgba(0,0,0,.75) 100%);
}

/* Hero catégorie thématique */
.hero--cat { position: relative; }

.hero-cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(.35) saturate(.6);
  transform: scale(1.05);
}

.hero-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.3) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.8) 100%
  );
}

.modele-cat-intro {
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE MODÈLES — Hero mosaïque + grille cartes
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.modeles-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modeles-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.mosaic-panel {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #111;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.6) 100%);
  transition: background 0.4s;
}

.mosaic-name {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  color: rgba(201,168,76,0);
  font-family: var(--font-serif);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s;
  pointer-events: none;
}

.mosaic-panel:hover .mosaic-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,.3) 100%);
}

.mosaic-panel:hover .mosaic-name {
  color: var(--gold);
}

/* Contenu centré par-dessus la mosaïque */
.modeles-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.modeles-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin: .5rem 0;
  text-shadow: 0 2px 40px rgba(0,0,0,.8);
}

.modeles-hero-title em {
  color: var(--gold);
  font-style: italic;
}

.modeles-hero-content .section-eye {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.modeles-hero-sub {
  color: var(--silver);
  font-size: .85rem;
  letter-spacing: .15em;
  margin-top: .75rem;
}

/* Scroll indicator */
.modeles-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--silver);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.modeles-hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ── Grille modèles ── */
.modeles-grid-section {
  padding: 5rem 2rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.modeles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 360px;
  gap: 3px;
}

.modele-card {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background: #111;
}

.modele-card--tall {
  grid-row: span 2;
}

.modele-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s;
  filter: brightness(.85) saturate(.9);
}

.modele-card-placeholder {
  background: linear-gradient(135deg, #1a1a1a, #2a2020);
}

/* Footer toujours visible */
.modele-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem .8rem;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: .05em;
  transition: opacity 0.3s;
}

.modele-card-footer-count {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .1em;
}

.modele-card-footer-cta {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* Overlay au hover */
.modele-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s;
}

.modele-card-strip {
  display: flex;
  height: 90px;
  gap: 2px;
  margin-bottom: auto;
  margin-top: auto;
  flex-shrink: 0;
}

.strip-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  opacity: .7;
}

.modele-card-info {
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,.95), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.modele-card-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  font-weight: 300;
}

.modele-card-count {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .1em;
}

/* Hover state */
.modele-card:hover .modele-card-img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}

/* overlay texte désactivé — footer permanent suffit */

/* footer reste visible au hover */

/* Gold border on hover */
.modele-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
  z-index: 3;
}

.modele-card:hover::after {
  border-color: var(--gold);
}

/* CTA card */
.modele-card--cta {
  background: #0f0f0f;
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}

.modele-card--cta:hover {
  background: #151510;
  border-color: var(--gold);
}

.modele-card--cta::after { display: none; }

.modele-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.modele-cta-vous {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
}

.modele-cta-sub {
  color: var(--silver);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.modele-cta-arrow {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .1em;
  margin-top: .3rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .modeles-mosaic { grid-template-columns: repeat(4, 1fr); }
  .modeles-mosaic .mosaic-panel:nth-child(n+5) { display: none; }
  .modeles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .modeles-mosaic { grid-template-columns: repeat(2, 1fr); }
  .modeles-mosaic .mosaic-panel:nth-child(n+3) { display: none; }
  .modeles-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .modele-card--tall { grid-row: span 1; }
  .modele-card-strip { height: 60px; }
}
