/* ==========================================================
   Franck Labasse Pâtisserie · Pessac
   Maquette réalisée par M.Création · Proposition de refonte
   Direction : éditorial premium — inspiré des maisons Cédric Grolet,
   Yann Couvreur, Pierre Hermé.
   ========================================================== */

:root {
  /* PALETTE CHOCOLAT & PRALINÉ — chaleureux, gourmand, style Angelina/Dalloyau */
  --ink: #3E2A1F;              /* chocolat foncé (remplace le noir) */
  --ink-soft: #4E3826;         /* chocolat warm */
  --charcoal: #2A1B14;         /* chocolat très foncé pour titres */
  --gold: #B08650;             /* or cuivré chaud */
  --gold-soft: #D9BA8E;        /* praliné clair */
  --gold-dark: #85623A;        /* or profond */
  --gold-line: rgba(176, 134, 80, .3);
  --praline: #C8A785;          /* praliné */
  --praline-light: #E5D1B8;    /* praliné très clair */
  --cream: #F5E9D3;            /* crème chaude */
  --ivory: #FBF3E1;            /* ivoire chaud */
  --paper: #FEFAF0;            /* fond principal ivoire très clair */
  --copper: #A66E3C;           /* accent cuivre pour hover subtil */
  --rose: #E8CFCB;
  --mute: #8B7C6D;
  --line: #E8DFC9;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', -apple-system, 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 2px 12px rgba(62, 42, 31, .07);
  --shadow-md: 0 8px 32px rgba(62, 42, 31, .12);
  --shadow-lg: 0 20px 60px rgba(62, 42, 31, .20);
  --shadow-xl: 0 30px 90px rgba(62, 42, 31, .24);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 7.5vw, 6.2rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h3 { font-size: 1.75rem; font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }

p { color: var(--charcoal); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ---------- Typographie utilitaires ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.centered { justify-content: center; }

.italic-serif {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-dark);
}

.sec-head {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}
.sec-head .eyebrow { margin-bottom: 26px; }
.sec-head p {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 1.08rem;
  color: var(--mute);
  font-family: var(--serif);
  font-style: italic;
}

.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px auto;
}
.divider-vertical {
  width: 1px; height: 60px;
  background: var(--gold);
  margin: 24px auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 38px;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .4s var(--ease);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '→';
  transition: transform .35s var(--ease);
  font-size: 1rem;
  margin-left: 0;
}
.btn:hover::after { transform: translateX(6px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: all .4s var(--ease);
  background: transparent;
}
.header.scrolled {
  background: rgba(251, 246, 236, .96);
  backdrop-filter: blur(14px);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(20, 16, 14, .06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--paper);
  transition: color .4s var(--ease);
}
.header.scrolled .logo { color: var(--ink); }
.logo-mark {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  overflow: hidden;
  padding: 7px;
  transition: transform .4s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-8deg); }
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.logo-text .sub {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: .75;
}
.nav {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav a {
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .4s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header.scrolled .nav a { color: var(--ink); }
.nav a:hover { color: var(--gold-dark); }
.header .btn {
  padding: 13px 26px;
  font-size: .68rem;
}
.header .btn::after { display: none; }
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.burger span {
  display: block;
  width: 28px; height: 1.5px;
  background: var(--paper);
  transition: all .3s var(--ease);
}
.header.scrolled .burger span { background: var(--ink); }

/* ============================================================
   HERO — slider fade en cross-fade + Ken Burns
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  background: var(--ink);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 30s infinite;
  transform: scale(1.05);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(42, 27, 20, .84) 0%, rgba(62, 42, 31, .74) 60%, rgba(78, 56, 38, .62) 100%),
    radial-gradient(circle at 12% 25%, rgba(176, 134, 80, .22), transparent 55%);
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }

@keyframes heroFade {
  0%, 3% { opacity: 0; transform: scale(1.05); }
  6%, 20% { opacity: 1; transform: scale(1); }
  23%, 100% { opacity: 0; transform: scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 170px 0 130px;
  width: 100%;
}
.hero-content {
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .44em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--paper);
  margin: 24px 0 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-tag {
  font-size: 1.22rem;
  color: rgba(251, 246, 236, .88);
  font-weight: 300;
  max-width: 620px;
  margin-bottom: 52px;
  line-height: 1.7;
  font-family: var(--serif);
  font-style: italic;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-signature {
  position: absolute;
  bottom: 44px;
  right: 44px;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  opacity: .75;
  z-index: 3;
  text-align: right;
}
.hero-signature strong {
  display: block;
  font-family: var(--sans);
  font-size: .66rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 6px;
  color: rgba(251, 246, 236, .5);
}
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(251, 246, 236, .55);
  font-size: .66rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  z-index: 3;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 44px;
  background: rgba(251, 246, 236, .5);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(.6); opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   BANDEAU CITATION — un moment fort après le hero
   ============================================================ */
.quote-band {
  background: var(--cream);
  padding: 110px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.quote-band::before,
.quote-band::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, .08), transparent 70%);
  pointer-events: none;
}
.quote-band::before { top: -100px; left: -100px; }
.quote-band::after { bottom: -100px; right: -100px; }

.quote-band .quote-text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-style: italic;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.quote-band .quote-text::before {
  content: '“';
  display: block;
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -30px;
  opacity: .5;
}
.quote-band .quote-author {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   CHIFFRES GÉANTS
   ============================================================ */
.stats-band {
  background: var(--paper);
  padding: 130px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat-item {
  padding: 20px 30px;
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.stat-num em {
  font-style: italic;
  color: var(--gold-dark);
}
.stat-num sup {
  font-size: .4em;
  color: var(--gold);
  font-style: italic;
  margin-left: 4px;
  vertical-align: top;
}
.stat-label {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ============================================================
   Sections génériques
   ============================================================ */
section { padding: 140px 0; position: relative; }
section.tight { padding: 100px 0; }
section.bg-cream { background: var(--cream); }
section.bg-paper { background: var(--paper); }
section.bg-ink {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
section.bg-ink::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(201, 169, 97, .10), transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(232, 207, 203, .04), transparent 50%);
  pointer-events: none;
}
section.bg-ink > .wrap { position: relative; z-index: 2; }
section.bg-ink p { color: rgba(251, 246, 236, .78); }
section.bg-ink h2 { color: var(--paper); }
section.bg-ink .sec-head p { color: rgba(251, 246, 236, .7); }

/* ============================================================
   SPLIT (chef signature) — logo watermark en filigrane
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 100px;
  align-items: center;
  position: relative;
}
.split-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.split-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.split-photo::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(201, 169, 97, .28);
  z-index: 2;
  pointer-events: none;
}
.split-photo.placeholder {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(20, 16, 14, .04) 14px, rgba(20, 16, 14, .04) 28px),
    linear-gradient(135deg, var(--gold-soft), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  padding: 32px;
  text-align: center;
}
.split-content h2 { margin-bottom: 30px; }
.split-content p { margin-bottom: 22px; font-size: 1.06rem; line-height: 1.78; }
.split-content .sig {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
}
.split-content .sig-logo {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}
.split-content .sig-logo img { width: 100%; height: 100%; object-fit: contain; }
.split-content .sig-text {
  display: flex;
  flex-direction: column;
}
.split-content .sig-text .name {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.35rem;
  font-weight: 500;
}
.split-content .sig-text .role {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

/* Watermark logo décoratif dans les sections */
.section-watermark {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  opacity: .04;
  pointer-events: none;
  z-index: 1;
}
.section-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.bg-ink .section-watermark { opacity: .06; }
section.bg-ink .section-watermark img { filter: brightness(2) sepia(1) saturate(2); }

/* ============================================================
   CREATIONS — grid avec numérotation éditoriale
   ============================================================ */
.creations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.creation-card {
  background: transparent;
  transition: all .5s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: default;
}
.creation-card .photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 26px;
}
.creation-card .photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
}
.creation-card:hover .photo { transform: scale(1.06); }
.creation-card .photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 16, 14, .35));
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: 1;
}
.creation-card:hover .photo-wrap::after { opacity: 1; }
.creation-card .number {
  position: absolute;
  top: 20px; left: 22px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(20, 16, 14, .4);
  opacity: .9;
}
.creation-card .photo.placeholder {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(20, 16, 14, .04) 10px, rgba(20, 16, 14, .04) 20px),
    linear-gradient(135deg, var(--gold-soft), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  padding: 18px;
  text-align: center;
}
.creation-card .cat {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.creation-card h3 {
  color: var(--ink);
  margin-bottom: 14px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  transition: color .3s var(--ease);
}
.creation-card:hover h3 { color: var(--gold-dark); }
.creation-card p {
  font-size: .96rem;
  color: var(--mute);
  line-height: 1.7;
}

/* ============================================================
   INGRÉDIENTS PREMIUM — chiffres romains éditoriaux
   ============================================================ */
.ingredients {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 30px;
}
.ingredient {
  text-align: center;
  padding: 20px 10px;
}
.ingredient-icon {
  width: 74px; height: 74px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  transition: all .4s var(--ease);
  letter-spacing: 0.05em;
}
.ingredient:hover .ingredient-icon {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(-6deg) scale(1.05);
  border-color: var(--gold);
}
.ingredient h4 {
  color: var(--paper);
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}
.ingredient p {
  font-size: .82rem;
  color: rgba(251, 246, 236, .62);
  line-height: 1.55;
}

/* ============================================================
   GALERIE ÉDITORIALE — grid asymétrique
   ============================================================ */
.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-editorial .g {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform .8s var(--ease);
}
.gallery-editorial .g::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 16, 14, .3));
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.gallery-editorial .g:hover { transform: scale(1.015); }
.gallery-editorial .g:hover::after { opacity: 1; }
.g-1 { grid-column: span 3; grid-row: span 2; }
.g-2 { grid-column: span 3; grid-row: span 1; }
.g-3 { grid-column: span 2; grid-row: span 1; }
.g-4 { grid-column: span 1; grid-row: span 1; }
.g-5 { grid-column: span 2; grid-row: span 2; }
.g-6 { grid-column: span 2; grid-row: span 1; }
.g-7 { grid-column: span 2; grid-row: span 1; }

/* ============================================================
   SIGNATURE — grand bloc central avec logo
   ============================================================ */
.signature-block {
  text-align: center;
  padding: 60px 40px;
  position: relative;
}
.signature-block .logo-big {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-lg);
}
.signature-block .logo-big img { width: 100%; height: 100%; object-fit: contain; }
.signature-block .signature-name {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 400;
}
.signature-block .signature-role {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.signature-block .signature-quote {
  max-width: 640px;
  margin: 40px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--mute);
  line-height: 1.65;
}

/* ============================================================
   CHRONOLOGY — frise verticale avec photo qui change au hover
   Layout : timeline items à gauche · photo sticky à droite
   ============================================================ */
.chronology {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: start;
  position: relative;
}
.chronology-timeline {
  position: relative;
  padding-left: 40px;
}
.chronology-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
}
.timeline-item {
  position: relative;
  padding: 28px 26px 28px 0;
  cursor: default;
  transition: all .4s var(--ease);
  border-left: 3px solid transparent;
  padding-left: 26px;
  margin-left: -26px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 34px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
  transition: all .3s var(--ease);
  z-index: 2;
}
.timeline-item:hover::before,
.timeline-item.active::before {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(176, 134, 80, .15);
}
.timeline-item:hover,
.timeline-item.active {
  background: linear-gradient(90deg, rgba(176, 134, 80, .05), transparent);
  border-left-color: var(--gold);
}
.timeline-item .year {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.15rem;
  margin-bottom: 8px;
  transition: color .3s var(--ease);
}
.timeline-item:hover .year,
.timeline-item.active .year { color: var(--copper); }
.timeline-item h4 {
  color: var(--charcoal);
  margin-bottom: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
  transition: color .3s var(--ease);
}
.timeline-item:hover h4,
.timeline-item.active h4 { color: var(--ink); }
.timeline-item p {
  font-size: .96rem;
  color: var(--mute);
  line-height: 1.75;
}

/* Photo sticky à droite qui change au hover */
.chronology-photo {
  position: sticky;
  top: 130px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--gold);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}
.chronology-photo::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(176, 134, 80, .35);
  z-index: 3;
  pointer-events: none;
}
.chrono-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s var(--ease), transform 8s ease-out;
  transform: scale(1);
}
.chrono-slide.active {
  opacity: 1;
  transform: scale(1.05);
}
.chrono-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 27, 20, .35));
}
.chrono-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 4;
  color: var(--paper);
  opacity: 0;
  transform: translateY(10px);
  transition: all .5s var(--ease) .2s;
  pointer-events: none;
}
.chrono-caption.active {
  opacity: 1;
  transform: none;
}
.chrono-caption .cap-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.chrono-caption .cap-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

/* Placeholder chef élégant — vend le shooting portrait */
.chef-portrait-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ink) 0%, var(--chocolate-warm, var(--ink-soft)) 100%);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.chef-portrait-placeholder::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(176, 134, 80, .35);
  z-index: 1;
}
.chef-portrait-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(176, 134, 80, .12), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(200, 167, 133, .06), transparent 55%);
}
.chef-portrait-placeholder .inner {
  position: relative;
  z-index: 2;
}
.chef-portrait-placeholder .signature-mark {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold);
  padding: 12px;
  margin: 0 auto 32px;
}
.chef-portrait-placeholder .signature-mark img {
  width: 100%; height: 100%; object-fit: contain;
}
.chef-portrait-placeholder .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}
.chef-portrait-placeholder .eyebrow::before { background: var(--gold); }
.chef-portrait-placeholder .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--paper);
  margin-bottom: 26px;
  max-width: 320px;
}
.chef-portrait-placeholder .attribution {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.05rem;
  font-style: italic;
}
.chef-portrait-placeholder .note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(176, 134, 80, .3);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(216, 186, 142, .8);
  font-family: var(--sans);
}

/* ============================================================
   AVIS / TESTIMONIALS
   ============================================================ */
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.testi {
  background: var(--paper);
  padding: 48px 38px;
  border: 1px solid var(--line);
  position: relative;
  transition: all .4s var(--ease);
}
.testi:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi::before {
  content: '“';
  position: absolute;
  top: -22px; left: 24px;
  font-family: var(--serif);
  font-size: 6.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .55;
}
.testi .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 5px;
  margin-bottom: 22px;
}
.testi .quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 30px;
}
.testi .author {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.testi .author strong {
  color: var(--ink);
  font-weight: 500;
}
.reviews-badge {
  text-align: center;
  margin-top: 70px;
  padding: 44px;
  background: var(--paper);
  border: 1px solid var(--gold);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-badge .stars {
  color: var(--gold);
  font-size: 1.7rem;
  letter-spacing: 7px;
  margin-bottom: 14px;
}
.reviews-badge strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--ink);
  font-weight: 500;
  display: block;
}
.reviews-badge span {
  display: block;
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 12px;
}
.reviews-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.review-mini a {
  display: block;
  transition: transform .3s var(--ease);
  padding: 8px;
}
.review-mini a:hover { transform: translateY(-4px); }
.review-mini .platform {
  font-size: .66rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.review-mini .score {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--ink);
  font-weight: 500;
}
.review-mini .count {
  font-size: .74rem;
  color: var(--gold-dark);
  margin-top: 3px;
  letter-spacing: .1em;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(201, 169, 97, .18), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(232, 207, 203, .06), transparent 50%);
}
.cta-band-inner {
  position: relative;
  z-index: 2;
}
.cta-band h2 { color: var(--paper); margin-bottom: 26px; }
.cta-band p {
  color: rgba(251, 246, 236, .85);
  font-size: 1.18rem;
  max-width: 620px;
  margin: 0 auto 48px;
  font-family: var(--serif);
  font-style: italic;
}

/* ============================================================
   CONTACT / HORAIRES
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-line {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.contact-line .ico {
  width: 52px; height: 52px;
  min-width: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: all .3s var(--ease);
}
.contact-line .ico .icon { width: 20px; height: 20px; }
.contact-line:hover .ico {
  background: var(--gold);
  color: var(--paper);
}
.contact-line .lbl {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}
.contact-line .val {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.4;
}
.contact-line .val a:hover { color: var(--gold-dark); }
.contact-map {
  aspect-ratio: 1/1;
  border: 1px solid var(--gold);
  overflow: hidden;
  position: relative;
  background: var(--cream);
  box-shadow: var(--shadow-md);
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.hours-table {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--gold-line);
  padding: 34px 38px;
  margin-top: 24px;
}
.hours-table .h-title {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gold-line);
}
.hours-table dl {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 14px;
  column-gap: 30px;
}
.hours-table dt {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
}
.hours-table dd {
  text-align: right;
  color: var(--mute);
  font-family: var(--serif);
  font-size: 1.08rem;
}
.hours-table dd.closed { color: var(--gold-dark); font-style: italic; }

/* ============================================================
   SUB-HERO (pages secondaires)
   ============================================================ */
.subhero {
  min-height: 60vh;
  color: var(--paper);
  display: flex;
  align-items: center;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.subhero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(42, 27, 20, .86), rgba(62, 42, 31, .80)),
    radial-gradient(circle at 70% 40%, rgba(176, 134, 80, .18), transparent 60%);
  z-index: 1;
}
.subhero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.subhero h1 { color: var(--paper); margin: 20px 0 26px; font-weight: 400; }
.subhero h1 em { color: var(--gold); font-style: italic; }
.subhero p {
  color: rgba(251, 246, 236, .88);
  font-size: 1.18rem;
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
}

/* ============================================================
   FORMULAIRE
   ============================================================ */
.form {
  display: grid;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form label {
  display: block;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, .1);
}
.form textarea { resize: vertical; min-height: 160px; }
.form button { margin-top: 12px; justify-self: start; }

/* ============================================================
   INTRO OVERLAY — rideaux qui s'ouvrent au chargement
   Session-once (n'apparaît qu'une fois par session)
   ============================================================ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.intro-overlay.locked { pointer-events: auto; }
.intro-panel {
  position: absolute;
  left: 0; right: 0;
  height: 50vh;
  background: linear-gradient(180deg, var(--charcoal), var(--ink));
  will-change: transform;
  transition: transform 1.15s cubic-bezier(0.77, 0, 0.175, 1);
}
.intro-panel-top { top: 0; transform: translateY(0); }
.intro-panel-bottom { bottom: 0; transform: translateY(0); }

.intro-overlay.opening .intro-panel-top { transform: translateY(-100%); }
.intro-overlay.opening .intro-panel-bottom { transform: translateY(100%); }

.intro-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}
.intro-overlay.reveal .intro-content {
  opacity: 1;
  transform: none;
}
.intro-overlay.opening .intro-content {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity .5s var(--ease),
    transform .8s var(--ease);
}
.intro-logo {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--paper);
  padding: 16px;
  border: 1px solid var(--gold);
  margin-bottom: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}
.intro-logo img { width: 100%; height: 100%; object-fit: contain; }
.intro-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.intro-tag {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, .7);
}
.intro-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 22px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .8s var(--ease) .3s;
}
.intro-overlay.reveal .intro-line { transform: scaleX(1); }

.intro-overlay.done {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .intro-panel { transition: none; }
  .intro-content { transition: none; opacity: 1; transform: none; }
  .intro-line { transition: none; transform: scaleX(1); }
}

/* ============================================================
   SIGNATURE FULL — sticky reveal
   La section est fixée au viewport pendant le scroll,
   la section suivante glisse par-dessus (z-index)
   ============================================================ */
.signature-full {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  z-index: 1;
}
.signature-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.signature-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20, 15, 10, .84) 0%, rgba(42, 27, 20, .72) 55%, rgba(62, 42, 31, .58) 100%),
    radial-gradient(circle at 25% 40%, rgba(176, 134, 80, .18), transparent 60%);
  z-index: 1;
}
.signature-full-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0;
}

/* Wrapper qui contient le sticky reveal — libère la sticky après la 2e section */
.reveal-stage {
  position: relative;
}
/* Section qui glisse par-dessus le sticky (dans le wrapper) */
.signature-block-section {
  position: relative;
  z-index: 2;
  background: var(--paper);
}
/* Le sticky ne fonctionne pas si un ancêtre a overflow hidden.
   On garde overflow-x hidden au niveau html seulement, body visible. */
html { overflow-x: hidden; }
body { overflow-x: visible !important; overflow-y: visible; }
.signature-full-content h2 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  margin: 24px 0 48px;
  font-weight: 400;
}
.signature-full-content h2 em {
  font-style: italic;
  color: var(--gold);
}
.signature-full-content .fq {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: rgba(251, 246, 236, .92);
  max-width: 780px;
  margin: 0 auto 34px;
  line-height: 1.55;
}
.signature-full-content .fq::before {
  content: '“';
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -20px;
  opacity: .6;
}
.signature-full-content .signature-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 40px auto 24px;
}
.signature-full-content .signature-name {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.35rem;
}
.signature-full-content .signature-role {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, .55);
  margin-top: 8px;
}

/* ============================================================
   SCROLL PROGRESS BAR — fine ligne or en haut
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 200;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: transform .08s linear;
  box-shadow: 0 0 12px rgba(176, 134, 80, .4);
}

/* ============================================================
   CUSTOM CURSOR — desktop uniquement, non-touch
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  html:not(.no-cursor) body { cursor: none; }
  html:not(.no-cursor) a,
  html:not(.no-cursor) button,
  html:not(.no-cursor) input,
  html:not(.no-cursor) textarea,
  html:not(.no-cursor) select,
  html:not(.no-cursor) label { cursor: none; }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform, width, height, opacity;
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    transition: opacity .2s ease, background .2s ease;
    box-shadow: 0 0 8px rgba(176, 134, 80, .5);
  }
  .cursor-ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(176, 134, 80, .5);
    transition:
      opacity .3s ease,
      width .35s var(--ease),
      height .35s var(--ease),
      border-color .3s ease,
      background .3s ease;
  }
  .cursor-ring.hover-link {
    width: 56px; height: 56px;
    background: rgba(176, 134, 80, .12);
    border-color: var(--gold);
  }
  .cursor-ring.hover-media {
    width: 80px; height: 80px;
    background: rgba(20, 15, 10, .12);
    border-color: rgba(255, 250, 230, .8);
    mix-blend-mode: difference;
  }
  .cursor-ring.hover-media::after {
    content: 'voir';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--sans);
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--paper);
    mix-blend-mode: normal;
  }
  .cursor-ring.hidden,
  .cursor-dot.hidden { opacity: 0; }
}
@media not (hover: hover), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ============================================================
   ICONS SVG — remplacent les emojis Unicode
   ============================================================ */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .4s var(--ease);
}
.icon-lg { width: 26px; height: 26px; }
.icon-xl { width: 36px; height: 36px; stroke-width: 1.2; }

/* Signature 3D legacy — désactivée, remplacée par .signature-full */
.signature-3d { display: none; }

/* ============================================================
   SIGNATURE 3D (LEGACY, MASQUÉE)
   ============================================================ */
.signature-3d {
  padding: 160px 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
  perspective: 2000px;
  min-height: 700px;
}
.signature-3d::before,
.signature-3d::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.signature-3d::before {
  top: -100px; left: -150px;
  background: radial-gradient(circle, rgba(176, 134, 80, .18), transparent);
}
.signature-3d::after {
  bottom: -100px; right: -150px;
  background: radial-gradient(circle, rgba(200, 167, 133, .12), transparent);
}

.sig3d-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Stage : perspective wrapper + float animation continue */
.sig3d-stage {
  position: relative;
  aspect-ratio: 1/1;
  min-height: 480px;
  transform-style: preserve-3d;
  animation: floatY 7s ease-in-out infinite alternate;
}
@keyframes floatY {
  0% { transform: translateY(-14px); }
  100% { transform: translateY(14px); }
}

/* Halo lumineux sous l'assiette */
.sig3d-halo {
  position: absolute;
  top: 45%; left: 10%;
  right: 10%; bottom: 15%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(176, 134, 80, .18), transparent 65%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

/* Ombre projetée dynamique */
.sig3d-shadow {
  position: absolute;
  bottom: 2%; left: 15%;
  right: 15%; height: 40px;
  background: radial-gradient(ellipse, rgba(42, 27, 20, .45), transparent 65%);
  filter: blur(24px);
  border-radius: 50%;
  z-index: 0;
  transform: scaleX(1);
  transition: transform .1s linear;
}

/* Tilt wrapper : rotateX/rotateY selon souris */
.sig3d-tilt {
  position: absolute;
  inset: 6%;
  transform-style: preserve-3d;
  transform:
    perspective(1400px)
    rotateX(var(--tiltX, 0deg))
    rotateY(var(--tiltY, 0deg));
  transition: transform .35s var(--ease);
  z-index: 1;
}

/* Spin wrapper : rotation Y selon scroll */
.sig3d-spin {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateY(var(--rot, 0deg));
  transition: transform .18s ease-out;
}

/* Face avant : photo pâtisserie */
.sig3d-front,
.sig3d-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow:
    0 25px 55px rgba(42, 27, 20, .35),
    0 12px 28px rgba(42, 27, 20, .25),
    inset 0 0 80px rgba(20, 15, 10, .3);
  border: 12px solid var(--paper);
}
.sig3d-front { background-size: cover; background-position: center; }

/* Face arrière : monogramme chef en or sur chocolat foncé */
.sig3d-back {
  transform: rotateY(180deg);
  background: radial-gradient(circle at 35% 35%, var(--chocolate-warm, #4E3826), var(--chocolate-dark, #241611) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--gold);
  padding: 40px;
  text-align: center;
}
.sig3d-back .monogram {
  font-family: var(--serif);
  font-style: italic;
  font-size: 6rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(176, 134, 80, .4);
}
.sig3d-back .mono-label {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(217, 186, 142, .7);
  margin-top: 8px;
}
.sig3d-back .mono-line {
  width: 40px;
  height: 1px;
  background: rgba(176, 134, 80, .5);
  margin: 22px 0;
}

/* Reflet doré subtil qui balaye la face */
.sig3d-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 40%,
    rgba(255, 250, 230, .12) 50%,
    transparent 60%);
  pointer-events: none;
  opacity: .6;
}

/* Texte à droite */
.sig3d-text { padding: 20px 0; }
.sig3d-text h2 { margin-bottom: 28px; }
.sig3d-text p {
  font-size: 1.06rem;
  line-height: 1.8;
  margin-bottom: 22px;
}
.sig3d-text .accent {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-dark);
  line-height: 1.5;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.sig3d-text .hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 24px;
}
.sig3d-text .hint svg { width: 16px; height: 16px; stroke: var(--gold); }

/* Fallback anciens .parallax-slow (au cas où utilisé ailleurs) */
.parallax-slow { transform: translate3d(0, var(--py, 0), 0); }

/* Reduce-motion respect */
@media (prefers-reduced-motion: reduce) {
  .sig3d-stage { animation: none; }
  .sig3d-spin { transform: none !important; }
  .sig3d-tilt { transform: perspective(1400px); transition: none; }
  .sig3d-back { display: none; }
}

/* ============================================================
   COMPOSITE 3D — legacy (backup fallback, non utilisé) — hidden
   ============================================================ */
.composite-section { display: none; }

/* ============================================================
   INFO BAND — adresse / horaires / téléphone en 1 coup d'œil
   Placé après hero pour les visiteurs pressés
   ============================================================ */
.info-band {
  background: var(--cream);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 32px 0;
}
.info-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 20px;
  position: relative;
}
.info-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--gold-line);
}
.info-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: all .3s var(--ease);
}
.info-icon .icon { width: 18px; height: 18px; }
.info-item:hover .info-icon {
  background: var(--gold);
  color: var(--paper);
}
.info-content {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.info-lbl {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 4px;
}
.info-val {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.3;
}
.info-val a { transition: color .3s var(--ease); }
.info-val a:hover { color: var(--gold-dark); }
.info-val .status-open {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6BA368;
  margin-right: 8px;
  box-shadow: 0 0 0 3px rgba(107, 163, 104, .18);
  vertical-align: middle;
}
.info-val .status-closed {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--copper);
  margin-right: 8px;
  vertical-align: middle;
}

/* ============================================================
   FOOTER — refonte, ornement central au lieu de ligne dorée
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(251, 246, 236, .72);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background:
    linear-gradient(180deg, var(--ink) 0%, transparent 100%);
  opacity: .5;
}

/* Ornement décoratif en haut du footer */
.footer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
  color: var(--gold);
}
.footer-ornament .line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.footer-ornament .line-r {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-ornament .dot {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  opacity: .8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}
.footer .logo { color: var(--paper); margin-bottom: 26px; }
.footer .logo-mark { background: var(--paper); }
.footer .brand-desc {
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(251, 246, 236, .58);
  margin-top: 8px;
  max-width: 340px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  font-weight: 400;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(176, 134, 80, .2);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 13px; }
.footer-col a {
  font-size: .93rem;
  transition: all .3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a::before {
  content: '›';
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all .3s var(--ease);
  font-size: 1.1rem;
  line-height: 1;
}
.footer-col a:hover { color: var(--gold); padding-left: 2px; }
.footer-col a:hover::before { opacity: 1; transform: translateX(0); }
.footer-col p { font-size: .93rem; margin-bottom: 8px; color: rgba(251, 246, 236, .62); line-height: 1.65; }
.footer-col p a { display: inline; }
.footer-col p a::before { display: none; }

.footer-bottom {
  border-top: 1px solid rgba(251, 246, 236, .1);
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: rgba(251, 246, 236, .48);
  gap: 20px;
}
.footer-bottom .credit { font-style: italic; }
.footer-bottom .credit strong { color: var(--gold); font-weight: 400; font-style: normal; }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .4s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav ul {
  list-style: none;
  text-align: center;
}
.mobile-nav li { margin: 22px 0; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--paper);
  font-weight: 400;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn {
  margin-top: 30px;
  font-family: var(--sans);
  font-size: .78rem;
}

/* ============================================================
   ANIMATIONS AU DÉFILEMENT
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-46px); }
.reveal-left.in { transform: none; }
.reveal-right { transform: translateX(46px); }
.reveal-right.in { transform: none; }
.reveal-scale { transform: scale(0.96) translateY(20px); }
.reveal-scale.in { transform: none; }

.creations-grid .creation-card.reveal:nth-child(2),
.testis .testi.reveal:nth-child(2),
.ingredients .ingredient.reveal:nth-child(2),
.stats-grid .stat-item.reveal:nth-child(2) { transition-delay: .1s; }
.creations-grid .creation-card.reveal:nth-child(3),
.testis .testi.reveal:nth-child(3),
.ingredients .ingredient.reveal:nth-child(3),
.stats-grid .stat-item.reveal:nth-child(3) { transition-delay: .2s; }
.creations-grid .creation-card.reveal:nth-child(4),
.ingredients .ingredient.reveal:nth-child(4),
.stats-grid .stat-item.reveal:nth-child(4) { transition-delay: .3s; }
.creations-grid .creation-card.reveal:nth-child(5),
.ingredients .ingredient.reveal:nth-child(5) { transition-delay: .4s; }
.creations-grid .creation-card.reveal:nth-child(6) { transition-delay: .1s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-slide { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-slide:not(:first-child) { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1050px) {
  .creations-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 60px; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 60px; }
  .testis { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-editorial { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .g-1 { grid-column: span 4; grid-row: span 2; }
  .g-2 { grid-column: span 4; }
  .g-3 { grid-column: span 2; }
  .g-4 { grid-column: span 2; }
  .g-5 { grid-column: span 4; grid-row: span 2; }
  .g-6 { grid-column: span 2; }
  .g-7 { grid-column: span 2; }
}
@media (max-width: 900px) {
  section { padding: 90px 0; }
  section.tight { padding: 70px 0; }
  .signature-3d { padding: 100px 0; }
  .sig3d-wrap { grid-template-columns: 1fr; gap: 60px; }
  .sig3d-stage { max-width: 480px; margin: 0 auto; }
  .nav, .header .btn { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split-photo { aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .hero-signature, .hero-scroll { display: none; }
  .hero-inner { padding: 140px 0 100px; }
  .chronology { grid-template-columns: 1fr; gap: 40px; }
  .chronology-photo { position: relative; top: 0; max-width: 520px; margin: 0 auto; aspect-ratio: 4/3; }
  .chef-portrait-placeholder { max-width: 520px; margin: 0 auto; }
  /* Info band mobile : empilé vertical */
  .info-band-grid { grid-template-columns: 1fr; gap: 8px; }
  .info-item { padding: 12px 20px; }
  .info-item:not(:last-child)::after {
    right: 20%; left: 20%; top: auto; bottom: 0;
    width: auto; height: 1px;
  }
  /* Chef portrait mobile plus haut */
  .chef-portrait-placeholder { aspect-ratio: 3/4; padding: 40px 30px; }
  .chef-portrait-placeholder .signature-mark { width: 70px; height: 70px; margin-bottom: 22px; }
  .chef-portrait-placeholder .quote { font-size: 1.05rem; }
  /* CTAs full-width mobile pour bon touch target */
  .hero-ctas .btn { justify-content: center; }
  /* Padding vertical réduit sur mobile */
  .hero h1 { font-size: clamp(2.6rem, 9vw, 4.4rem); }
  .subhero { min-height: 50vh; padding: 140px 0 80px; }
  .subhero h1 { font-size: clamp(2.4rem, 8vw, 3.8rem); }
  /* Timeline mobile */
  .chronology-timeline { padding-left: 30px; }
  .chronology-timeline::before { left: 8px; }
  .timeline-item::before { left: -29px; }
  .timeline-item { padding: 22px 16px; padding-left: 16px; margin-left: -16px; }
  .timeline-item h4 { font-size: 1.3rem; }
  /* Footer amélioré mobile */
  .footer { padding: 80px 0 34px; }
  .footer-ornament { margin-bottom: 50px; }
  .footer-grid { gap: 45px; }
  /* Boutons plus grands pour touch */
  .btn { padding: 16px 28px; font-size: .72rem; }
  /* CTA band espacement */
  .cta-band { padding: 100px 0; }
  .cta-band h2 { font-size: clamp(2rem, 6vw, 2.8rem); }
}
@media (max-width: 600px) {
  .wrap, .wrap-narrow, .wrap-wide { padding: 0 22px; }
  section { padding: 70px 0; }
  section.tight { padding: 50px 0; }
  .creations-grid { grid-template-columns: 1fr; gap: 30px; }
  .ingredients { grid-template-columns: 1fr; gap: 24px; }
  .ingredient { display: flex; align-items: center; gap: 20px; text-align: left; padding: 12px 6px; }
  .ingredient-icon { margin: 0; min-width: 56px; width: 56px; height: 56px; }
  .ingredient h4 { margin-bottom: 4px; text-align: left; }
  .ingredient p { text-align: left; }
  .stats-grid { grid-template-columns: 1fr; row-gap: 34px; }
  .stat-item::after { display: none !important; }
  .stat-item { border-bottom: 1px solid var(--line); padding: 30px 20px; }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-col h5 { padding-bottom: 10px; }
  .stat-num { font-size: 2.8rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .quote-band { padding: 80px 0; }
  .quote-band .quote-text { font-size: 1.35rem; }
  .quote-band .quote-text::before { font-size: 4.5rem; margin-bottom: -20px; }
  .signature-block .logo-big { width: 100px; height: 100px; padding: 14px; margin-bottom: 30px; }
  .signature-block .signature-name { font-size: 2rem; }
  .signature-block .signature-quote { font-size: 1.05rem; margin-top: 30px; }
  .gallery-editorial { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .g-1, .g-5 { grid-column: span 2; grid-row: span 2; }
  .g-2, .g-3, .g-4, .g-6, .g-7 { grid-column: span 1; grid-row: span 1; }
  .hero-tag { font-size: 1.05rem; margin-bottom: 34px; }
  .testi { padding: 38px 28px; }
  .testi .quote { font-size: 1.02rem; }
  .reviews-badge { padding: 32px 20px; margin-top: 50px; }
  .reviews-badge strong { font-size: 1.7rem; }
  .reviews-badges-grid { grid-template-columns: 1fr; gap: 14px; padding-top: 22px; }
  .split-content h2 { margin-bottom: 20px; }
  .split-content .sig { flex-direction: column; align-items: flex-start; gap: 14px; }
  .split-content .sig-logo { width: 54px; height: 54px; }
  .contact-line { gap: 16px; }
  .contact-line .ico { width: 44px; height: 44px; min-width: 44px; font-size: 1.05rem; }
  .contact-line .val { font-size: 1.1rem; }
  .hours-table { padding: 26px 22px; }
  .hours-table dl { grid-template-columns: 1fr; row-gap: 8px; }
  .hours-table dt { padding-top: 10px; border-top: 1px dashed var(--gold-line); }
  .hours-table dt:first-child { padding-top: 0; border-top: none; }
  .hours-table dd { text-align: left; padding-bottom: 10px; }
  .creation-card .photo-wrap { aspect-ratio: 4/3; }
  .creation-card h3 { font-size: 1.4rem; }
  .footer-ornament { gap: 14px; margin-bottom: 40px; }
  .footer-ornament .line { width: 50px; }
  .footer-bottom { font-size: .68rem; }
}
