/* ============================================
   NOUILLE TOI — DESIGN SYSTEM v2
   Izakaya nocturne · haut de gamme & familier
   2 typographies : Bebas Neue (titres, logo) + Montserrat (texte)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette charte + extensions chaleureuses tirées des photos */
  --rouge: #9F252A;
  --rouge-clair: #c1383d;
  --rouge-dark: #7d1c20;
  --noir: #202020;
  --noir-pur: #141312;
  --noir-warm: #1c1917;      /* charbon chaud (tiré des intérieurs) */
  --ivoire: #FAFAF7;
  --ivoire-warm: #f4f0e8;
  --beige: #E5C07B;
  --beige-dark: #c9a35f;
  --bois: #E2833E;
  --gris: #D9D9D9;
  --gris-warm: #a89e92;
  --texte-clair: rgba(250,250,247,0.78);

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(4rem, 9vw, 8.5rem);
  --maxw: 1400px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--noir);
  background: var(--noir-pur);
  overflow-x: hidden;
  cursor: none;
}

/* ---- Curseur personnalisé ---- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), background .3s, border-color .3s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--rouge); border-radius: 50%; }
.cursor-ring { width: 34px; height: 34px; border: 1px solid var(--beige); border-radius: 50%; }
body.cursor-hover .cursor-dot { width: 0; height: 0; }
body.cursor-hover .cursor-ring { width: 64px; height: 64px; border-color: var(--rouge); }
@media (max-width:1024px),(hover:none){ body{cursor:auto;} .cursor-dot,.cursor-ring{display:none;} }

h1,h2,h3,h4,h5,h6 { font-weight: normal; line-height: 1; }

.display {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--rouge); color: var(--ivoire); }

/* Utilitaire titres avec graisses Montserrat */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

/* ============================================
   BANDEAU ANNONCE
   ============================================ */
.banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--rouge);
  color: var(--ivoire);
  padding: 0.55rem var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.banner__dot { width: 6px; height: 6px; background: var(--beige); border-radius: 50%; animation: pulse 2s infinite; }
.banner__close {
  position: absolute; right: var(--gutter);
  background: none; border: none; color: var(--ivoire);
  cursor: pointer; font-size: 0.95rem; opacity: 0.7; transition: opacity .3s; line-height: 1;
}
.banner__close:hover { opacity: 1; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.banner.hidden { display: none; }
@media (max-width:768px){
  .banner{ font-size:0.56rem; letter-spacing:0.12em; padding:0.5rem 2.4rem; text-align:center; }
  .banner__close{ right:0.8rem; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: var(--banner-h, 32px); left: 0; right: 0; z-index: 100;
  padding: 1.3rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: top .4s var(--ease-out), background .4s var(--ease-out), padding .4s var(--ease-out), box-shadow .4s;
  background: transparent;
}
.header.scrolled {
  background: rgba(20,19,18,0.9);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 0.85rem var(--gutter);
  box-shadow: 0 1px 0 rgba(229,192,123,0.12);
}
.header__logo { display: flex; align-items: center; gap: 0.65rem; z-index: 10; }
.header__logo img { width: 42px; height: 42px; object-fit: contain; transition: transform .6s var(--ease-out); }
.header__logo:hover img { transform: rotate(-8deg) scale(1.08); }
.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem; letter-spacing: 0.14em;
  color: var(--ivoire); line-height: 1;
}
.header__nav { display: flex; gap: 2.3rem; align-items: center; }
.header__nav a {
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivoire); position: relative; padding: 0.4rem 0; transition: color .3s;
}
.header__nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--rouge); transition: width .4s var(--ease-out);
}
.header__nav a:hover::after, .header__nav a.active::after { width: 100%; }
.header__nav a.active { color: var(--beige); }

.btn-cta {
  background: var(--rouge); color: var(--ivoire) !important;
  padding: 0.8rem 1.6rem !important; font-size: 0.7rem !important;
  letter-spacing: 0.2em !important; font-weight: 600 !important;
  position: relative; overflow: hidden; z-index: 1;
  transition: all .4s var(--ease-out);
}
.btn-cta::after { display: none !important; }
.btn-cta::before {
  content: ''; position: absolute; inset: 0; background: var(--beige);
  transform: translateY(101%); transition: transform .4s var(--ease-out); z-index: -1;
}
.btn-cta:hover { color: var(--noir) !important; }
.btn-cta:hover::before { transform: translateY(0); }

.header__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 10; }
.header__burger span { width: 24px; height: 1.5px; background: var(--ivoire); transition: all .3s; }
.header__burger.open span:nth-child(1){ transform: rotate(45deg) translate(5px,5px); }
.header__burger.open span:nth-child(2){ opacity:0; }
.header__burger.open span:nth-child(3){ transform: rotate(-45deg) translate(4px,-4px); }

@media (max-width:900px){
  .header__burger{ display:flex; }
  .header__nav{
    position: fixed; inset: 0; background: var(--noir-warm);
    flex-direction: column; justify-content: center; gap: 2.4rem;
    transform: translateX(100%); transition: transform .5s var(--ease-out);
  }
  .header__nav.open{ transform: translateX(0); }
  .header__nav a{ font-size: 1.6rem; }
  .btn-cta{ font-size: 1rem !important; padding: 1rem 2rem !important; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
  color: var(--ivoire);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); animation: zoomOut 9s var(--ease-out) forwards;
}
@keyframes zoomOut { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,19,18,0.55) 0%, rgba(20,19,18,0.15) 30%, rgba(20,19,18,0.55) 65%, rgba(20,19,18,0.95) 100%);
}
.hero__content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem,9vw,7rem);
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3rem;
}
.hero__eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--beige); margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 1s var(--ease-out) .3s forwards;
  display: flex; align-items: center; gap: 1rem;
}
.hero__eyebrow::before { content:''; width: 36px; height: 1px; background: var(--beige); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 12rem); line-height: 0.82; letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1.2s var(--ease-out) .5s forwards;
}
.hero__title small {
  display: block; font-size: 0.32em; letter-spacing: 0.05em; color: var(--rouge-clair);
  margin-bottom: 0.2em; font-weight: 400;
}
.hero__tagline {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(1rem,1.6vw,1.3rem); line-height: 1.6; max-width: 440px;
  color: var(--texte-clair);
  opacity: 0; animation: fadeUp 1s var(--ease-out) .8s forwards;
}
.hero__cta-wrap { opacity: 0; animation: fadeUp 1s var(--ease-out) 1.1s forwards; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--rouge); color: var(--ivoire);
  padding: 1.25rem 2.4rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: all .4s var(--ease-out);
}
.btn-primary::before {
  content:''; position: absolute; inset: 0; background: var(--noir-pur);
  transform: translateY(101%); transition: transform .5s var(--ease-out);
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span, .btn-primary .arrow { position: relative; z-index: 1; }
.arrow { width: 24px; height: 1px; background: currentColor; transition: width .3s; }
.arrow::after { content:''; position:absolute; right:0; top:-3px; width:7px; height:7px; border-top:1px solid currentColor; border-right:1px solid currentColor; transform: rotate(45deg); }
.btn-primary:hover .arrow { width: 36px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 1rem;
  border: 1px solid var(--beige); color: var(--beige);
  padding: 1.2rem 2.3rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  cursor: pointer; transition: all .4s var(--ease-out);
}
.btn-ghost:hover { background: var(--beige); color: var(--noir); }

@keyframes fadeUp { from{opacity:0; transform: translateY(40px);} to{opacity:1; transform:none;} }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.6rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--texte-clair); display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 1.5s forwards;
}
.hero__scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom,var(--rouge) 50%,transparent 50%); background-size: 1px 11px; animation: scrollDown 2s linear infinite; }
@keyframes scrollDown { from{background-position:0 -11px;} to{background-position:0 11px;} }

@media (max-width:768px){
  .hero__content{ grid-template-columns:1fr; }
  .hero__scroll{ display:none; }
  .btn-primary{ width:100%; justify-content:center; }
}

/* Hero sous-page */
.hero-sub { min-height: 72vh; align-items: center; text-align: center; }
.hero-sub .hero__content { grid-template-columns: 1fr; justify-items: center; padding-bottom: 0; }
.hero-sub .hero__eyebrow { justify-content: center; }
.hero-sub .hero__title { font-size: clamp(3rem,9vw,8.5rem); }
.hero-sub .hero__tagline { margin: 0 auto; text-align: center; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-y) var(--gutter); position: relative; }
.section__inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }

.section--dark { background: var(--noir-pur); color: var(--ivoire); }
.section--charbon { background: var(--noir-warm); color: var(--ivoire); }
.section--ivoire { background: var(--ivoire); color: var(--noir); }
.section--ivoire-warm { background: var(--ivoire-warm); color: var(--noir); }

/* Motif koï en fond de section claire */
.section--koi { position: relative; }
.section--koi::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url('assets/img/koi-pattern.png');
  background-size: 600px; background-repeat: repeat;
  opacity: 0.5; pointer-events: none;
}

/* Numéro de section géant */
.section__num {
  position: absolute; top: clamp(2rem,5vw,4rem); right: var(--gutter);
  font-family: var(--font-display);
  font-size: clamp(7rem,16vw,16rem); line-height: 1;
  color: currentColor; opacity: 0.05; pointer-events: none; z-index: 1;
}
.section--ivoire .section__num, .section--ivoire-warm .section__num { color: var(--rouge); opacity: 0.07; }

.section__head { margin-bottom: clamp(2.5rem,5vw,4.5rem); position: relative; z-index: 2; }
.section__eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--rouge); display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
}
.section--dark .section__eyebrow, .section--charbon .section__eyebrow { color: var(--beige); }
.section__eyebrow::before { content:''; width: 36px; height: 1px; background: currentColor; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem,6vw,5.2rem); line-height: 0.92; letter-spacing: 0.01em; max-width: 16ch;
}
.section__title .accent { color: var(--rouge); }
.section--dark .section__title .accent, .section--charbon .section__title .accent { color: var(--beige); }
.section__head--center { text-align: center; }
.section__head--center .section__eyebrow { justify-content: center; }
.section__head--center .section__title { max-width: none; margin: 0 auto; }

/* ============================================
   ÉDITO 2 colonnes
   ============================================ */
.edito { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5.5rem); align-items: center; position: relative; z-index: 2; }
.edito__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.edito__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-out); }
.edito__media:hover img { transform: scale(1.05); }
.edito__media-badge {
  position: absolute; bottom: 0; left: 0; background: var(--rouge); color: var(--ivoire);
  padding: 1rem 1.5rem; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.05em;
}
.edito__text { display: flex; flex-direction: column; gap: 1.4rem; }
.edito__text h3 { font-family: var(--font-display); font-size: clamp(2.2rem,4.5vw,3.6rem); line-height: 0.95; }
.edito__text h3 .accent { color: var(--rouge); }
.edito__lead { font-weight: 500; font-size: 1.2rem; line-height: 1.55; color: inherit; }
.edito__text p { font-weight: 300; font-size: 1rem; line-height: 1.9; opacity: 0.85; }
.edito__text p strong { font-weight: 600; opacity: 1; }
@media (max-width:768px){ .edito{ grid-template-columns:1fr; } }

/* ============================================
   PLATS / CARTES
   ============================================ */
.dishes { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,2.5vw,2rem); position: relative; z-index: 2; }
.dish { cursor: pointer; display: flex; flex-direction: column; }
.dish__media { aspect-ratio: 1/1; overflow: hidden; position: relative; margin-bottom: 1.2rem; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.dish__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,transparent 55%,rgba(159,37,42,0.85));
  opacity: 0; transition: opacity .5s;
}
.dish:hover .dish__media img { transform: scale(1.08); }
.dish:hover .dish__media::after { opacity: 1; }
.dish__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(20,19,18,0.7); backdrop-filter: blur(6px);
  color: var(--beige); font-family: var(--font-body); font-weight: 600;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.4rem 0.8rem;
}
.dish__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish__name { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.03em; line-height: 1; }
.dish__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--rouge); letter-spacing: 0.02em; flex-shrink: 0; }
.section--dark .dish__price, .section--charbon .dish__price { color: var(--beige); }
.dish__desc { font-weight: 300; font-size: 0.88rem; line-height: 1.6; opacity: 0.7; margin-top: 0.5rem; }
@media (max-width:768px){ .dishes{ grid-template-columns:1fr; gap: 2.5rem; } }

/* ============================================
   BANDEAU CITATION
   ============================================ */
.quote {
  position: relative; padding: clamp(5rem,12vw,9rem) var(--gutter);
  text-align: center; overflow: hidden;
  background: var(--noir-pur); color: var(--ivoire);
}
.quote__bg { position: absolute; inset: 0; z-index: 0; }
.quote__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; filter: grayscale(20%); }
.quote__inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.quote__mark { font-family: var(--font-display); font-size: 5rem; color: var(--rouge); line-height: 0.5; margin-bottom: 1.5rem; }
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,4.5vw,3.6rem); line-height: 1.08; letter-spacing: 0.01em;
}
.quote__text .accent { color: var(--beige); }
.quote__attr { margin-top: 2rem; font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--texte-clair); }

/* ============================================
   PILIERS / PHILOSOPHIE
   ============================================ */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(2rem,4vw,3.5rem); position: relative; z-index: 2; }
.pillar { padding: 2.5rem 2rem; border: 1px solid; border-color: rgba(229,192,123,0.18); transition: all .5s var(--ease-out); position: relative; overflow: hidden; }
.section--ivoire .pillar, .section--ivoire-warm .pillar { border-color: rgba(159,37,42,0.15); background: rgba(255,255,255,0.5); }
.pillar:hover { border-color: var(--rouge); transform: translateY(-6px); }
.pillar__num { font-family: var(--font-display); font-size: 2.4rem; color: var(--rouge); line-height: 1; margin-bottom: 1rem; }
.section--dark .pillar__num, .section--charbon .pillar__num { color: var(--beige); }
.pillar__icon { width: 44px; height: 44px; color: var(--rouge); margin-bottom: 1.2rem; }
.section--dark .pillar__icon, .section--charbon .pillar__icon { color: var(--beige); }
.pillar__icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.2; fill: none; }
.pillar__title { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: 0.03em; margin-bottom: 0.9rem; }
.pillar__text { font-weight: 300; font-size: 0.95rem; line-height: 1.8; opacity: 0.78; }
@media (max-width:768px){ .pillars{ grid-template-columns:1fr; } }

/* ============================================
   GALERIE
   ============================================ */
.gallery { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: clamp(90px,11vw,150px); gap: 0.6rem; position: relative; z-index: 2; }
.gallery__item { overflow: hidden; position: relative; cursor: pointer; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out), filter .5s; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: rgba(159,37,42,0); transition: background .4s; }
.gallery__item:hover::after { background: rgba(159,37,42,0.25); }
.g1{ grid-column: span 5; grid-row: span 3; }
.g2{ grid-column: span 4; grid-row: span 2; }
.g3{ grid-column: span 3; grid-row: span 2; }
.g4{ grid-column: span 4; grid-row: span 2; }
.g5{ grid-column: span 3; grid-row: span 3; }
.g6{ grid-column: span 5; grid-row: span 2; }
@media (max-width:768px){
  .gallery{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
  .g1,.g2,.g3,.g4,.g5,.g6{ grid-column: span 1; grid-row: span 1; }
  .g1{ grid-column: span 2; }
}

/* ============================================
   STORY (Le restaurant)
   ============================================ */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5.5rem); position: relative; z-index: 2; }
.story__media { position: sticky; top: 110px; height: fit-content; aspect-ratio: 3/4; overflow: hidden; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__text { display: flex; flex-direction: column; gap: 1.8rem; }
.story__text p { font-weight: 300; font-size: 1rem; line-height: 1.95; opacity: 0.85; }
.story__text p:first-of-type { font-weight: 400; font-size: 1.15rem; line-height: 1.7; opacity: 1; }
.story__pull {
  font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem); line-height: 1.1;
  color: var(--rouge); padding: 1.5rem 0; border-top: 1px solid var(--gris); border-bottom: 1px solid var(--gris);
}
.section--dark .story__pull, .section--charbon .story__pull { color: var(--beige); border-color: rgba(229,192,123,0.2); }
@media (max-width:768px){ .story{ grid-template-columns:1fr; } .story__media{ position: relative; top: 0; } }

/* TIMELINE */
.timeline { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.timeline::before { content: ''; position: absolute; left: 26px; top: 8px; bottom: 8px; width: 1px; background: rgba(229,192,123,0.25); }
.tl { display: grid; grid-template-columns: 70px 1fr; gap: 2rem; margin-bottom: 3rem; position: relative; }
.tl::before { content: ''; position: absolute; left: 20px; top: 6px; width: 14px; height: 14px; background: var(--rouge); border-radius: 50%; border: 3px solid var(--noir-warm); }
.tl__year { font-family: var(--font-display); font-size: 1.6rem; color: var(--beige); }
.tl__title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.tl__text { font-weight: 300; font-size: 0.95rem; line-height: 1.7; opacity: 0.75; }

/* CHEF */
.chef { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,6vw,5rem); align-items: center; position: relative; z-index: 2; }
.chef__media { aspect-ratio: 3/4; overflow: hidden; }
.chef__media img { width: 100%; height: 100%; object-fit: cover; }
.chef__role { font-family: var(--font-body); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rouge); margin: 0.4rem 0 1.8rem; }
.section--dark .chef__role, .section--charbon .chef__role { color: var(--beige); }
.chef__text h3 { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,4rem); line-height: 0.95; }
.chef__text p { font-weight: 300; font-size: 1rem; line-height: 1.9; opacity: 0.85; margin-bottom: 1.3rem; }
@media (max-width:768px){ .chef{ grid-template-columns:1fr; } }

/* ============================================
   CARTE / MENU
   ============================================ */
.menu-nav {
  position: sticky; top: calc(var(--banner-h,0px) + 60px); z-index: 50;
  background: rgba(20,19,18,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,192,123,0.15);
  padding: 1rem var(--gutter); display: flex; gap: clamp(1rem,3vw,2.5rem); justify-content: center; overflow-x: auto; scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav a {
  font-family: var(--font-body); font-weight: 500; color: var(--ivoire);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 0; border-bottom: 1.5px solid transparent; transition: all .3s; white-space: nowrap;
}
.menu-nav a:hover, .menu-nav a.active { color: var(--beige); border-color: var(--beige); }

.menu-cat { padding: clamp(3.5rem,7vw,6rem) var(--gutter); }
.menu-cat__head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem,5vw,4rem); display: flex; align-items: center; gap: 1.5rem; }
.menu-cat__num { font-family: var(--font-display); font-size: 2rem; color: var(--rouge); }
.menu-cat__title { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,4rem); letter-spacing: 0.03em; line-height: 1; }
.menu-cat__line { flex: 1; height: 1px; background: currentColor; opacity: 0.18; }

.menu-item { max-width: var(--maxw); margin: 0 auto clamp(3rem,5vw,5rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.menu-item--rev { direction: rtl; }
.menu-item--rev > * { direction: ltr; }
.menu-item__media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.menu-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.menu-item:hover .menu-item__media img { transform: scale(1.05); }
.menu-item__name { font-family: var(--font-display); font-size: clamp(1.9rem,3.5vw,2.9rem); letter-spacing: 0.03em; line-height: 1; margin-bottom: 0.5rem; }
.menu-item__sub { font-family: var(--font-body); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rouge); margin-bottom: 1.3rem; }
.section--dark .menu-item__sub, .section--charbon .menu-item__sub { color: var(--beige); }
.menu-item__desc { font-weight: 300; font-size: 1rem; line-height: 1.85; opacity: 0.82; margin-bottom: 1.8rem; }
.menu-item__meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1.4rem; border-top: 1px solid; border-color: rgba(128,128,128,0.2); gap: 1rem; }
.menu-item__tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.menu-item__tag { font-family: var(--font-body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.35rem 0.7rem; border: 1px solid; border-color: rgba(128,128,128,0.35); opacity: 0.85; }
.menu-item__tag--veg { border-color: #5a8a5f; color: #5a8a5f; }
.menu-item__tag--spicy { border-color: var(--rouge); color: var(--rouge); }
.menu-item__price { font-family: var(--font-display); font-size: 2.1rem; color: var(--rouge); flex-shrink: 0; }
.section--dark .menu-item__price, .section--charbon .menu-item__price { color: var(--beige); }
@media (max-width:768px){ .menu-item, .menu-item--rev{ grid-template-columns:1fr; direction: ltr; } }

.menu-foot { text-align: center; padding: 3.5rem var(--gutter) clamp(4rem,8vw,6rem); }

/* ============================================
   FORMULAIRES
   ============================================ */
.reservation { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(2rem,6vw,5rem); padding: clamp(3rem,6vw,5rem) var(--gutter); }
.form { display: flex; flex-direction: column; gap: 1.8rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form__row--1 { grid-template-columns: 1fr; }
.form__field label { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.6; margin-bottom: 0.6rem; }
.form__field input, .form__field select, .form__field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid currentColor;
  padding: 0.7rem 0; font-family: var(--font-body); font-size: 1rem; font-weight: 400; color: inherit; outline: none;
  transition: border-color .4s, border-width .2s;
}
.form__field input::placeholder, .form__field textarea::placeholder { color: currentColor; opacity: 0.35; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { border-bottom: 2px solid var(--rouge); }
.form__field textarea { resize: vertical; min-height: 100px; }
.form__field select { appearance: none; cursor: pointer; }
.section--dark .form__field option, .section--charbon .form__field option { background: var(--noir-warm); }
.form__submit {
  align-self: flex-start; background: var(--rouge); color: var(--ivoire); border: none;
  padding: 1.25rem 2.6rem; font-family: var(--font-body); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; cursor: pointer; transition: all .4s var(--ease-out);
}
.form__submit:hover { background: var(--beige); color: var(--noir); letter-spacing: 0.3em; }

.info-card { background: var(--noir-pur); color: var(--ivoire); padding: clamp(2rem,4vw,3rem); display: flex; flex-direction: column; gap: 2rem; height: fit-content; border-top: 3px solid var(--rouge); }
.section--dark .info-card, .section--charbon .info-card { background: rgba(255,255,255,0.04); }
.info-card h4 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.04em; }
.info-row { display: flex; gap: 1rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(229,192,123,0.15); }
.info-row:last-child { border: none; padding-bottom: 0; }
.info-row__icon { width: 26px; flex-shrink: 0; color: var(--beige); }
.info-row__icon svg { width: 100%; stroke: currentColor; stroke-width: 1.3; fill: none; }
.info-row h5 { font-family: var(--font-body); font-weight: 600; font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--beige); margin-bottom: 0.4rem; }
.info-row p { font-weight: 300; font-size: 0.95rem; line-height: 1.6; color: var(--texte-clair); }
.info-row p strong { font-weight: 600; color: var(--ivoire); }
@media (max-width:900px){ .reservation{ grid-template-columns:1fr; } .form__row{ grid-template-columns:1fr; } }

.privat { background: var(--noir-pur); color: var(--ivoire); text-align: center; padding: clamp(3.5rem,7vw,6rem) var(--gutter); position: relative; overflow: hidden; }
.privat__bg { position: absolute; inset: 0; z-index: 0; }
.privat__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.privat__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.privat h3 { font-family: var(--font-display); font-size: clamp(2.2rem,4.5vw,3.5rem); letter-spacing: 0.03em; margin-bottom: 1.2rem; }
.privat h3 .accent { color: var(--beige); }
.privat p { font-weight: 300; font-size: 1.1rem; line-height: 1.7; color: var(--texte-clair); margin-bottom: 2rem; }

.map-frame { width: 100%; height: 460px; border: none; filter: grayscale(85%) contrast(0.95) brightness(0.95); }

/* CONTACT */
.contact-hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(8rem,14vw,12rem) var(--gutter) clamp(3rem,6vw,5rem); }
.contact-hero .section__eyebrow { color: var(--rouge); }
.contact-hero h1 { font-family: var(--font-display); font-size: clamp(3.2rem,10vw,8rem); line-height: 0.85; margin: 1.2rem 0; }
.contact-hero h1 .accent { color: var(--rouge); }
.contact-hero p { font-weight: 300; font-size: 1.2rem; line-height: 1.6; max-width: 560px; opacity: 0.8; }
.contact-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) clamp(3rem,6vw,5rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5rem); }
.contact-info { display: flex; flex-direction: column; gap: 2.4rem; }
.contact-block h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--rouge); margin-bottom: 0.7rem; }
.contact-block a, .contact-block p { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: 0.02em; line-height: 1.2; transition: color .3s; }
.contact-block a:hover { color: var(--rouge); }
.hours { width: 100%; border-collapse: collapse; }
.hours tr { border-bottom: 1px solid rgba(128,128,128,0.18); }
.hours tr:last-child { border: none; }
.hours td { padding: 0.95rem 0; font-weight: 300; font-size: 0.95rem; }
.hours td:first-child { font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.hours td:last-child { text-align: right; }
.hours .closed { color: var(--rouge); font-weight: 500; }
@media (max-width:768px){ .contact-grid{ grid-template-columns:1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--noir-pur); color: var(--ivoire); padding: clamp(4rem,8vw,6rem) var(--gutter) 2rem; position: relative; overflow: hidden; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem; padding-bottom: 3rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(229,192,123,0.15); }
.footer__brand { display: flex; flex-direction: column; gap: 1.1rem; }
.footer__brand img { width: 76px; height: 76px; object-fit: contain; }
.footer__brand h4 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.1em; }
.footer__brand p { font-weight: 300; font-size: 0.95rem; line-height: 1.7; color: var(--texte-clair); max-width: 34ch; }
.footer__col h5 { font-family: var(--font-body); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--beige); margin-bottom: 1.4rem; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.7rem; }
.footer__col a, .footer__col p { font-weight: 300; font-size: 0.92rem; color: var(--texte-clair); transition: color .3s; line-height: 1.8; }
.footer__col a:hover { color: var(--beige); }
.footer__news { display: flex; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 0.5rem; margin-top: 1rem; }
.footer__news input { flex: 1; background: transparent; border: none; color: var(--ivoire); font-family: var(--font-body); font-size: 0.85rem; padding: 0.5rem 0; outline: none; }
.footer__news input::placeholder { color: rgba(250,250,247,0.4); }
.footer__news button { background: none; border: none; color: var(--beige); font-family: var(--font-body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; padding-left: 1rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,250,247,0.4); }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { width: 38px; height: 38px; border: 1px solid rgba(229,192,123,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--texte-clair); transition: all .4s var(--ease-out); }
.footer__social a:hover { background: var(--rouge); border-color: var(--rouge); color: var(--ivoire); transform: translateY(-3px); }
.footer__social svg { width: 15px; height: 15px; }
@media (max-width:900px){ .footer__grid{ grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width:540px){ .footer__grid{ grid-template-columns: 1fr; } .footer__bottom{ flex-direction: column; text-align: center; } }

/* ============================================
   REVEAL & MISC
   ============================================ */
.reveal { opacity: 1; transform: none; transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.js-ready .reveal { opacity: 0; transform: translateY(45px); }
.js-ready .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .js-ready .reveal{ opacity:1!important; transform:none!important; } *{ animation-duration:.01ms!important; } }
