:root {
  --black: #050505;
  --white: #ffffff;
  --muted: #6f6f6f;
  --line: rgba(0, 0, 0, 0.12);
  --line-dark: rgba(5, 5, 5, 0.18);
  --cream: #f5f2ec;
  --soft: #f4f4f1;
  --header-height: 76px;
  --font-main: "Courier New", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  color: var(--black);
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.home-page .site-header {
  color: var(--white);
  background: transparent;
  border-bottom-color: transparent;
}
.home-page .site-header.theme-light { color: var(--black); }
.site-header.is-scrolled,
.home-page .site-header.is-scrolled {
  color: var(--black);
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(0,0,0,.08);
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
  backdrop-filter: blur(12px);
}
.logo {
  position: relative;
  z-index: 60;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.desktop-nav a { opacity: .74; transition: opacity .25s ease; }
.desktop-nav a:hover,
.desktop-nav a.is-active { opacity: 1; }
.burger {
  display: none;
  position: relative;
  z-index: 60;
  width: 34px;
  height: 24px;
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 11px; }
.burger span:nth-child(3) { top: 20px; }
body.menu-open .burger span:nth-child(1) { top: 11px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 11px; transform: rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 40px;
  background: var(--black);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease;
}
body.menu-open .mobile-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav a {
  font-size: clamp(30px, 10vw, 68px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

/* HERO GENERATIF */
.photo-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--black);
}
.photo-hero.theme-light { color: var(--black); background: var(--white); }
.hero-photo-layer {
  position: absolute;
  inset: -5vh -5vw;
  z-index: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  will-change: transform, opacity, filter;
  transition: opacity .75s ease, filter .75s ease;
  transform: scale(1.1);
}
.hero-photo-layer.is-active { opacity: 1; }
.hero-photo-layer.is-bw { filter: grayscale(1) contrast(1.08); }
.hero-photo-layer.is-color { filter: saturate(1.04) contrast(1.02); }
.hero-photo-layer.is-bw.is-active { filter: grayscale(1) contrast(1.12); }
.hero-photo-layer.motion-01 { animation: motionOne 5.8s ease-in-out forwards; }
.hero-photo-layer.motion-02 { animation: motionTwo 5.8s ease-in-out forwards; }
.hero-photo-layer.motion-03 { animation: motionThree 5.8s ease-in-out forwards; }
.hero-photo-layer.motion-04 { animation: motionFour 5.8s ease-in-out forwards; }
.hero-photo-layer.motion-05 { animation: motionFive 5.8s ease-in-out forwards; }
@keyframes motionOne { from { transform: scale(1.06) translate3d(-2%,1%,0) rotate(-.35deg); } to { transform: scale(1.2) translate3d(3%,-2%,0) rotate(.55deg); } }
@keyframes motionTwo { from { transform: scale(1.18) translate3d(2%,-2%,0) rotate(.4deg); } to { transform: scale(1.06) translate3d(-3%,2%,0) rotate(-.5deg); } }
@keyframes motionThree { from { transform: scale(1.08) translate3d(0,3%,0) rotate(.2deg); } to { transform: scale(1.22) translate3d(-2%,-3%,0) rotate(-.45deg); } }
@keyframes motionFour { from { transform: scale(1.12) translate3d(3%,2%,0) rotate(-.2deg); } to { transform: scale(1.24) translate3d(-3%,-1%,0) rotate(.35deg); } }
@keyframes motionFive { from { transform: scale(1.2) translate3d(-1%,-3%,0) rotate(.5deg); } to { transform: scale(1.08) translate3d(2%,3%,0) rotate(-.35deg); } }
.hero-auto-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.44));
  pointer-events: none;
  transition: background .45s ease;
}
.photo-hero.theme-light .hero-auto-veil {
  background: linear-gradient(to bottom, rgba(255,255,255,.16), rgba(255,255,255,.42));
}
.photo-hero.is-announcing .hero-auto-veil {
  background: rgba(0,0,0,.52);
}
.photo-hero.theme-light.is-announcing .hero-auto-veil {
  background: rgba(255,255,255,.58);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .16;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.4) .6px, transparent .6px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
  animation: grainMove 1.4s steps(2) infinite;
}
@keyframes grainMove { 0% { transform: translate3d(0,0,0); } 100% { transform: translate3d(3%,-2%,0); } }
.hero-content {
  position: relative;
  z-index: 8;
  width: min(920px, calc(100% - 40px));
  text-align: center;
  pointer-events: none;
}
.hero-kicker {
  margin-bottom: 18px;
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .72;
}
.hero-title {
  min-height: clamp(48px, 9vw, 130px);
  margin: 0;
  font-size: clamp(42px, 9vw, 132px);
  line-height: .88;
  letter-spacing: -.09em;
  font-weight: 400;
  text-transform: uppercase;
}
.hero-announcement {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  filter: blur(10px);
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}
.hero-announcement.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.hero-subtitle {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: clamp(13px, 1.4vw, 17px);
  line-height: 1.55;
  opacity: .78;
}
.dvd-keyword {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 0;
  padding: 8px 12px;
  border: 1px solid currentColor;
  color: currentColor;
  background: rgba(0,0,0,.06);
  backdrop-filter: blur(4px);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .58;
  will-change: transform;
  pointer-events: none;
}
.photo-hero.theme-light .dvd-keyword { background: rgba(255,255,255,.16); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: currentColor;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .82;
}
.scroll-line { width: 1px; height: 48px; background: currentColor; opacity: .42; overflow: hidden; position: relative; }
.scroll-line::after { content:""; position:absolute; top:-100%; left:0; width:100%; height:100%; background: currentColor; animation: scrollLine 1.7s infinite ease-in-out; }
.scroll-arrow { animation: arrowMove 1.4s infinite ease-in-out; }
@keyframes scrollLine { 100% { transform: translateY(200%); } }
@keyframes arrowMove { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* SECTIONS */
.split-section {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  color: var(--black);
}
.split-section.is-reverse .split-image { order: 2; }
.split-image {
  min-height: 620px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 110px);
}
.section-label {
  margin-bottom: 22px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3, p { margin-top: 0; }
.split-text h1,
.split-text h2,
.page-heading h1,
.section-intro h2,
.editorial-section h2,
.cta-band h2,
.contact-preview h2,
.serie-detail-text h1 {
  margin-bottom: 28px;
  font-size: clamp(36px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 400;
  text-transform: uppercase;
}
.split-text p,
.section-intro p,
.editorial-section p,
.cta-band p,
.contact-preview p,
.page-heading p,
.serie-detail-text p {
  max-width: 620px;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.68;
}
.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.quote-band {
  padding: clamp(70px, 10vw, 140px) clamp(24px, 8vw, 120px);
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.quote-band blockquote {
  max-width: 980px;
  margin: 0 auto 28px;
  font-size: clamp(32px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.07em;
}
.quote-band span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }
.section-intro,
.page-heading,
.editorial-section,
.markers-section {
  padding: calc(var(--header-height) + 60px) clamp(24px, 8vw, 120px) clamp(60px, 8vw, 120px);
}
.section-intro { padding-top: clamp(80px, 10vw, 140px); }
.section-intro h2,
.page-heading h1,
.editorial-section h2 { max-width: 980px; }
.series-stack .split-section { min-height: 72vh; }
.cta-band,
.contact-preview {
  padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 120px);
  background: var(--soft);
}
.cta-band h2, .contact-preview h2 { max-width: 980px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 20px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn:hover { background: var(--white); color: var(--black); }
.btn-outline { background: transparent; color: var(--black); }
.btn-light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }
.contact-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--black);
  color: var(--white);
}
.contact-preview .section-label { color: rgba(255,255,255,.58); }
.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 44px clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
}
.site-footer strong { letter-spacing: .1em; text-transform: uppercase; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 6px; }



/* HOME RESTAURÉE TYPE MAQUETTE V5 */
.feature-section {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  color: var(--black);
}
.feature-section.reverse .feature-image { order: 2; }
.feature-section.reverse .feature-text { order: 1; }
.feature-image {
  min-height: 620px;
  background-image: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.04)), var(--image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.feature-image.is-bw { filter: grayscale(1) contrast(1.08); }
.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 110px);
}
.feature-text h2,
.quote-section p,
.section-intro h2,
.cta-band h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 400;
  text-transform: uppercase;
}
.feature-text p,
.section-intro p,
.cta-band p,
.contact-copy p {
  max-width: 560px;
  margin: 34px 0 0;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.65;
}
.feature-text p + p { margin-top: 18px; }
.quote-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54vh;
  padding: clamp(60px, 9vw, 140px) 24px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.quote-section blockquote { width: min(1020px, 100%); margin: 0; }
.quote-section p { font-size: clamp(28px, 5vw, 76px); line-height: 1.04; }
.quote-section cite {
  display: block;
  margin-top: 30px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .62;
}
.home-page .section-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  padding: clamp(70px, 9vw, 140px) clamp(24px, 7vw, 110px);
  border-bottom: 1px solid var(--line-dark);
}
.home-page .section-intro p { margin: 0; max-width: 520px; }
.home-page .series-stack .feature-section { min-height: 72vh; }
.home-page .cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(62px, 8vw, 120px) clamp(24px, 7vw, 110px);
  background: var(--cream);
  color: var(--black);
}
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 22px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.button-link:hover { background: transparent; color: var(--black); }
.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  padding: clamp(72px, 9vw, 140px) clamp(24px, 7vw, 110px);
  background: var(--white);
}
.contact-copy p { max-width: 540px; }
.contact-direct a { border-bottom: 1px solid currentColor; }
.home-contact-section .contact-form input,
.home-contact-section .contact-form textarea {
  border: 1px solid var(--line-dark);
  border-radius: 0;
  padding: 14px;
  background: #fff;
  color: var(--black);
}
.home-contact-section .contact-form span { color: var(--black); opacity: .7; }
.home-contact-section .contact-form .btn { width: fit-content; }

/* PAGES INTERNES */
.inner-page main { padding-top: var(--header-height); }
.inner-first { min-height: calc(100vh - var(--header-height)); }
.editorial-section { max-width: 1120px; }
.editorial-section p { max-width: 820px; font-size: clamp(16px, 1.7vw, 24px); line-height: 1.55; }
.markers-section { background: var(--soft); }
.markers-section h2 { font-size: clamp(30px, 5vw, 72px); line-height: 1; letter-spacing: -.06em; font-weight: 400; text-transform: uppercase; }
.markers-list { max-width: 980px; border-top: 1px solid var(--line); }
.marker-item { display: grid; grid-template-columns: 160px 1fr; gap: 28px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.marker-item strong { font-size: 20px; }
.marker-item span { line-height: 1.6; }
.bio-cta { background: var(--white); border-top: 1px solid var(--line); }
.contact-form-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(70px, 8vw, 120px) clamp(24px, 8vw, 120px);
  background: var(--black);
  color: var(--white);
}
.contact-form-intro h2,
.contact-side-note h2 { font-size: clamp(30px, 5vw, 66px); line-height: .95; letter-spacing: -.06em; font-weight: 400; text-transform: uppercase; }
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form label,
.admin-form label,
.login-box label { display: grid; gap: 8px; }
.contact-form span,
.admin-form span,
.login-box span {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .7;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  border-radius: 0;
  padding: 14px 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  outline: none;
}
.contact-form textarea { resize: vertical; }
.contact-lines { display: grid; gap: 8px; margin-top: 30px; font-size: 13px; letter-spacing: .04em; }
.contact-side-note { align-self: start; }
.social-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.social-list a { border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding: 0 clamp(24px, 6vw, 80px) clamp(80px, 10vw, 140px);
}
.series-card { background: var(--white); }
.series-card-image { aspect-ratio: 4 / 3; background-size: cover; background-position: center; filter: saturate(.92); transition: filter .25s ease, transform .25s ease; }
.series-card a:hover .series-card-image { filter: saturate(1.1); }
.series-card-content { padding: 30px; }
.series-card-content span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.series-card-content h2 { margin: 16px 0; font-size: clamp(28px, 4vw, 50px); line-height: 1; letter-spacing: -.06em; font-weight: 400; text-transform: uppercase; }
.series-card-content p { line-height: 1.55; }
.serie-detail-hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: calc(100vh - var(--header-height));
}
.serie-detail-image { background-size: cover; background-position: center; }
.serie-detail-text { display: flex; flex-direction: column; justify-content: center; padding: clamp(44px, 7vw, 100px); }

/* ADMIN */
.login-body,
.admin-body { background: #f6f6f3; color: var(--black); }
.login-box {
  width: min(440px, calc(100% - 40px));
  margin: 12vh auto;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}
.login-box h1 { font-size: 52px; line-height: .9; letter-spacing: -.07em; font-weight: 400; text-transform: uppercase; }
.admin-body { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  background: var(--black);
  color: var(--white);
}
.admin-brand { display: block; margin-bottom: 34px; text-transform: uppercase; letter-spacing: .12em; }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar a { padding: 10px 0; opacity: .68; }
.admin-sidebar a.is-active,
.admin-sidebar a:hover { opacity: 1; }
.admin-main { padding: 34px clamp(24px, 5vw, 70px); }
.admin-top h1 { font-size: clamp(38px, 6vw, 78px); line-height: .9; letter-spacing: -.07em; font-weight: 400; text-transform: uppercase; }
.admin-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; }
.admin-card,
.admin-panel,
.admin-list-item,
.admin-message {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
}
.admin-card { display: grid; gap: 10px; min-height: 140px; }
.admin-card strong { font-size: 22px; }
.admin-card span { color: var(--muted); }
.admin-form { display: grid; gap: 22px; max-width: 1160px; }
.admin-panel { display: grid; gap: 16px; }
.admin-panel h2 { margin-bottom: 6px; font-size: 28px; font-weight: 400; text-transform: uppercase; letter-spacing: -.03em; }
.admin-panel h3 { margin: 10px 0 0; font-weight: 400; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; }
.admin-form input,
.admin-form textarea,
.admin-form select,
.login-box input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--black);
  font: inherit;
}
.admin-row,
.admin-slide-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; align-items: end; }
.admin-slide-row { grid-template-columns: 1fr 2.2fr .7fr .7fr; margin-bottom: 10px; }
.checkbox-label { display: flex !important; align-items: center; gap: 10px; }
.checkbox-label input { width: auto; }
.admin-actions { margin: 0 0 24px; }
.admin-list { display: grid; gap: 14px; }
.admin-list-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-list-item div:first-child { display: grid; gap: 6px; }
.admin-list-item span,
.admin-list-item em,
.admin-message span,
.admin-message em { color: var(--muted); font-size: 13px; }
.admin-item-actions { display: flex; align-items: center; gap: 16px; }
.admin-item-actions button { border: 0; background: none; color: var(--black); border-bottom: 1px solid currentColor; font: inherit; cursor: pointer; }
.admin-notice { margin-bottom: 20px; padding: 14px 18px; background: #e9f6e9; border: 1px solid #b7d8b7; }
.admin-error { margin: 10px 0; padding: 12px; background: #fff0f0; border: 1px solid #e4b2b2; }
.admin-message { display: grid; gap: 10px; }
code { background: rgba(0,0,0,.08); padding: 2px 4px; }

@media (max-width: 900px) {
  .site-header { padding: 0 22px; }
  .desktop-nav { display: none; }
  .burger { display: block; }
  .photo-hero { min-height: 680px; }
  .hero-title { font-size: clamp(48px, 17vw, 96px); }
  .hero-subtitle { width: min(440px, 90vw); }
  .dvd-keyword { font-size: 9px; padding: 6px 9px; }

  .feature-section,
  .feature-section.reverse,
  .contact-section,
  .home-page .section-intro {
    grid-template-columns: 1fr;
  }
  .feature-section.reverse .feature-image,
  .feature-section.reverse .feature-text {
    order: initial;
  }
  .feature-image {
    min-height: 54vh;
  }
  .feature-text {
    padding: 54px 24px 70px;
  }
  .home-page .section-intro,
  .contact-section {
    padding: 64px 24px;
  }
  .home-page .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 58px 24px;
  }

  .split-section,
  .split-section.is-reverse,
  .serie-detail-hero,
  .contact-form-section,
  .site-footer { grid-template-columns: 1fr; }
  .split-section.is-reverse .split-image { order: 0; }
  .split-image { min-height: 56vh; }
  .split-text { padding: 54px 24px 70px; }
  .section-intro,
  .page-heading,
  .editorial-section,
  .markers-section,
  .cta-band,
  .contact-preview,
  .contact-form-section { padding-left: 24px; padding-right: 24px; }
  .contact-preview { align-items: flex-start; flex-direction: column; }
  .marker-item { grid-template-columns: 1fr; gap: 8px; }
  .series-grid { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
  .serie-detail-image { min-height: 56vh; }
  .site-footer { gap: 20px; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-row,
  .admin-slide-row { grid-template-columns: 1fr; }
  .admin-list-item { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .dvd-keyword { transform: none !important; }
}


/* Overrides placés en fin de fichier pour préserver le formulaire clair de la home. */
.home-contact-section .contact-form input,
.home-contact-section .contact-form textarea {
  border: 1px solid var(--line-dark);
  border-radius: 0;
  padding: 14px;
  background: #fff;
  color: var(--black);
}
.home-contact-section .contact-form span { color: var(--black); opacity: .7; }
.home-contact-section .contact-form .btn { width: fit-content; }

/* HOME V3 — BLOC INSTAGRAM */
.instagram-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
  padding: clamp(72px, 9vw, 140px) clamp(24px, 7vw, 110px);
  background: var(--cream);
  color: var(--black);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.instagram-copy h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 400;
  text-transform: uppercase;
}

.instagram-copy p {
  max-width: 560px;
  margin: 34px 0 0;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.65;
}

.instagram-embed-wrap {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line-dark);
  overflow: hidden;
}

.instagram-embed-wrap .instagram-media {
  margin: 0 auto !important;
}

@media (max-width: 900px) {
  .instagram-section {
    grid-template-columns: 1fr;
    padding: 58px 24px;
  }

  .instagram-embed-wrap {
    min-height: 360px;
    padding: 16px;
  }
}

/* V4 — champs image admin : upload local ou lien externe */
.admin-help {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.admin-image-field {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px dashed var(--line);
  background: #fafafa;
}
.admin-field-title {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .7;
}
.admin-current-image {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
}
.admin-current-image.compact {
  grid-template-columns: 84px 1fr;
  margin-bottom: 10px;
}
.admin-current-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
}
.admin-current-image code {
  word-break: break-all;
  line-height: 1.4;
}
.admin-image-actions {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 10px;
}
.admin-choice-button,
.admin-choice-link {
  display: grid !important;
  gap: 8px;
  align-content: start;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.admin-choice-button strong,
.admin-choice-link strong {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
}
.admin-choice-button input[type="file"] {
  padding: 9px;
  font-size: 13px;
}
.admin-slide-upload-row {
  grid-template-columns: .75fr 2.2fr .55fr .55fr;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.admin-slide-image,
.admin-gallery-image-zone { min-width: 0; }
.compact-actions { grid-template-columns: .85fr 1.15fr; }
.admin-gallery-list { display: grid; gap: 16px; }
.admin-gallery-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr .25fr;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

/* Page détail série — layouts verrouillés */
.serie-intro-text { padding-bottom: clamp(46px, 7vw, 90px); }
.serie-gallery {
  padding: 0 clamp(24px, 7vw, 100px) clamp(80px, 10vw, 140px);
}
.serie-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.serie-gallery-editorial {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
  background: var(--white);
}
.serie-gallery-item {
  margin: 0;
  background: var(--white);
}
.serie-gallery-grid .serie-gallery-item { background: var(--white); }
.serie-gallery-editorial .serie-gallery-item { grid-column: span 3; }
.serie-gallery-editorial .serie-gallery-item.is-large { grid-column: span 6; }
.serie-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.serie-gallery-grid .serie-gallery-item img { aspect-ratio: 4 / 5; min-height: 0; }
.serie-gallery-editorial .serie-gallery-item:not(.is-large) img { aspect-ratio: 4 / 5; min-height: 0; }
.serie-gallery-editorial .serie-gallery-item.is-large img { aspect-ratio: 16 / 9; min-height: 420px; }
.serie-gallery-item figcaption {
  padding: 10px 0 0;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.serie-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(60px, 8vw, 110px) clamp(24px, 7vw, 100px);
  border-top: 1px solid var(--line);
  background: var(--soft);
}
.serie-detail-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(30px, 5vw, 70px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .admin-image-actions,
  .compact-actions,
  .admin-slide-upload-row,
  .admin-gallery-row,
  .admin-current-image { grid-template-columns: 1fr; }
  .serie-gallery-grid,
  .serie-gallery-editorial { grid-template-columns: 1fr; }
  .serie-gallery-editorial .serie-gallery-item,
  .serie-gallery-editorial .serie-gallery-item.is-large { grid-column: auto; }
  .serie-gallery-editorial .serie-gallery-item.is-large img,
  .serie-gallery-item img { aspect-ratio: 4 / 5; min-height: 0; }
  .serie-detail-cta { flex-direction: column; align-items: flex-start; }
}

/* V5 — HOME : 4 séries puis voir plus */
.series-block.is-hidden-by-home { display: none; }
.series-home-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: clamp(36px, 6vw, 76px) 24px clamp(66px, 8vw, 110px);
  background: var(--white);
  border-top: 1px solid var(--line-dark);
}
.text-link.as-button {
  margin-top: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 6px;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.series-home-actions .text-link { margin-top: 0; }

/* V5 — page liste séries sans fond gris */
.series-page .page-heading { background: var(--white); }
.series-page .series-grid {
  gap: clamp(24px, 4vw, 52px);
  background: var(--white);
}
.series-page .series-card {
  background: var(--white);
  border-top: 1px solid var(--line);
}

/* V5 — page détail série : entrée directe, sans hero */
.serie-detail-page main { background: var(--white); }
.serie-detail-intro {
  padding: calc(var(--header-height) + clamp(42px, 7vw, 90px)) clamp(24px, 8vw, 120px) clamp(34px, 5vw, 70px);
  background: var(--white);
}
.serie-detail-intro h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(48px, 10vw, 150px);
  line-height: .86;
  letter-spacing: -.09em;
  font-weight: 400;
  text-transform: uppercase;
}
.serie-detail-lead {
  max-width: 760px;
  margin: clamp(28px, 4vw, 50px) 0 0;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.55;
}
.serie-detail-textblock {
  max-width: 980px;
  padding: 0 clamp(24px, 8vw, 120px) clamp(56px, 8vw, 110px);
}
.serie-detail-textblock p {
  max-width: 820px;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.75;
}
.serie-detail-textblock p + p { margin-top: 22px; }

/* V5 — galerie série : 4 modèles verrouillés */
.serie-gallery { background: var(--white); }
.serie-gallery-item button,
.lightbox-trigger {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  display: block;
  font: inherit;
}
.serie-gallery-item button:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
}

.serie-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(10px, 1.4vw, 20px);
}
.serie-gallery-mosaic .serie-gallery-item { grid-column: span 4; }
.serie-gallery-mosaic .serie-gallery-item.is-wide { grid-column: span 8; }
.serie-gallery-mosaic .serie-gallery-item.is-tall { grid-row: span 2; }
.serie-gallery-mosaic .serie-gallery-item img { aspect-ratio: 4 / 5; min-height: 0; }
.serie-gallery-mosaic .serie-gallery-item.is-wide img { aspect-ratio: 16 / 9; }
.serie-gallery-mosaic .serie-gallery-item.is-tall img { aspect-ratio: 3 / 5; }

.serie-gallery-story {
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.serie-gallery-story .serie-gallery-item img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  min-height: 0;
  object-fit: contain;
  background: var(--white);
}
.serie-gallery-story .serie-gallery-item:nth-child(even) {
  width: min(760px, 100%);
  margin-left: auto;
}
.serie-gallery-story .serie-gallery-item:nth-child(odd) {
  width: min(960px, 100%);
}

/* V5 — formulaire tirage rapide */
.serie-print-contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
  padding: clamp(62px, 8vw, 120px) clamp(24px, 8vw, 120px);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}
.serie-print-copy h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(36px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 400;
  text-transform: uppercase;
}
.serie-print-copy p {
  max-width: 560px;
  margin: 30px 0 0;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.65;
}
.serie-fast-form .btn { width: fit-content; }

/* V5 — lightbox */
body.lightbox-open { overflow: hidden; }
.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0,0,0,.92);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.site-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.site-lightbox-inner {
  width: min(1180px, 100%);
  max-height: 92vh;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.site-lightbox-image {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
}
.site-lightbox-caption {
  margin: 0;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .72;
  text-align: center;
}
.site-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 205;
  border: 0;
  background: none;
  color: var(--white);
  font: inherit;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .series-home-actions {
    justify-content: flex-start;
    padding-left: 24px;
    padding-right: 24px;
  }
  .serie-detail-intro {
    padding-left: 24px;
    padding-right: 24px;
  }
  .serie-detail-textblock {
    padding-left: 24px;
    padding-right: 24px;
  }
  .serie-gallery-mosaic { grid-template-columns: 1fr; }
  .serie-gallery-mosaic .serie-gallery-item,
  .serie-gallery-mosaic .serie-gallery-item.is-wide,
  .serie-gallery-mosaic .serie-gallery-item.is-tall { grid-column: auto; grid-row: auto; }
  .serie-print-contact { grid-template-columns: 1fr; padding: 58px 24px; }
}

/* V5 — suppression des fonds gris résiduels dans les grilles publiques */
.serie-gallery-grid {
  gap: clamp(12px, 2vw, 28px);
  background: var(--white);
}

.form-status {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid currentColor;
  font-size: 13px;
  line-height: 1.5;
}

.form-status-ok {
  background: rgba(0, 0, 0, 0.04);
}

.form-status-error {
  background: rgba(0, 0, 0, 0.08);
}

.contact-lines a,
.footer-contact a {
  color: inherit;
  text-decoration: none;
}

/* V7 — paramètres globaux admin */
.admin-color-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.admin-color-field {
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
}
.admin-color-field span {
  grid-column: 1 / -1;
}
.admin-color-field input[type="color"] {
  width: 52px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line-dark);
  background: transparent;
}
.admin-color-field code {
  font-size: 12px;
  color: var(--muted);
}
.admin-current-settings {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 13px;
}
.admin-current-settings strong {
  font-weight: 400;
}
.admin-help a {
  border-bottom: 1px solid currentColor;
}
@media (max-width: 900px) {
  .admin-color-grid { grid-template-columns: 1fr; }
  .admin-color-field { grid-template-columns: 1fr auto; }
}

/* V9 — home séries : image + titre cliquables vers la page détail */
.series-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.series-image-link:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 6px;
}
.series-title-link {
  color: inherit;
  text-decoration: none;
}
.series-title-link:hover,
.series-title-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: .12em;
  text-decoration-thickness: 1px;
}
