/* ============================================================
   BISTROT MISTRAL — MAGAZINE EDITORIAL · MATISSE NIÇOIS
   ============================================================ */

:root {
  --bleu-klein: #1A4FCA;
  --bleu-klein-dark: #133b96;
  --jaune-mimosa: #F5C944;
  --rouge-tomate: #D14127;
  --rouge-tomate-dark: #a8311e;
  --ocre: #D89B5A;
  --vert-basilic: #5A8C4A;
  --creme: #FAF6EB;
  --creme-deep: #F0E8D2;
  --bleu-nuit: #0E1F3D;
  --noir-encre: #181818;

  --font-display: 'DM Serif Display', 'Bodoni Moda', Georgia, serif;
  --font-body: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Italianno', 'Brush Script MT', cursive;

  --container: 1280px;
  --section-y: clamp(4rem, 9vw, 8rem);
  --gutter: clamp(1rem, 3vw, 2.5rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--creme);
  color: var(--bleu-nuit);
  line-height: 1.5;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em, i { font-style: italic; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--jaune-mimosa); color: var(--bleu-nuit); }

/* Custom cursor (desktop only) */
.cursor-dot {
  position: fixed;
  pointer-events: none;
  width: 28px; height: 28px;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease, transform .15s ease;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  body { cursor: default; }
  .cursor-dot.visible { opacity: 1; }
}

/* ============================================================
   MASTHEAD (navbar magazine)
============================================================ */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--creme);
  border-bottom: 1.5px solid var(--bleu-nuit);
}
.masthead-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: .9rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.masthead-left {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bleu-klein);
  display: flex; gap: .6rem; align-items: center;
}
.masthead-dot { color: var(--rouge-tomate); }
.masthead-logo {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--bleu-klein);
  text-align: center;
  letter-spacing: -.01em;
}
.masthead-nav {
  display: flex; justify-content: flex-end; gap: 1.6rem;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
}
.masthead-nav a {
  position: relative;
  padding: .3rem 0;
  transition: color .2s;
}
.masthead-nav a:hover { color: var(--rouge-tomate); }
.masthead-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--rouge-tomate);
  transition: width .25s ease;
}
.masthead-nav a:hover::after { width: 100%; }
.masthead-cta {
  background: var(--bleu-klein); color: var(--creme) !important;
  padding: .5rem 1rem !important; border-radius: 2px;
}
.masthead-cta:hover { background: var(--rouge-tomate); }
.masthead-cta::after { display: none; }

.masthead-ticker {
  background: var(--bleu-klein);
  color: var(--creme);
  overflow: hidden;
  border-top: 1px solid var(--bleu-nuit);
}
.ticker-track {
  display: inline-flex;
  gap: 2rem;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: .55rem 0;
  animation: tickerSlide 38s linear infinite;
  width: max-content;
}
.ticker-track span { padding: 0 .4rem; }
@keyframes tickerSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--creme);
  padding: 3rem var(--gutter) var(--section-y);
  border-bottom: 1.5px solid var(--bleu-nuit);
  position: relative;
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem 1.5rem;
}
.hero-headline { grid-column: 1 / span 12; }
.hero-image-wrap { grid-column: 1 / span 12; position: relative; }
.hero-edito { grid-column: 1 / span 12; }

@media (min-width: 900px) {
  .hero-headline { grid-column: 1 / span 7; }
  .hero-image-wrap { grid-column: 8 / span 5; grid-row: 1 / span 2; }
  .hero-edito { grid-column: 1 / span 6; margin-top: 2rem; }
}

.hero-kicker {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rouge-tomate);
  display: block;
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 12rem);
  line-height: .88;
  letter-spacing: -.03em;
  color: var(--bleu-klein);
  margin-bottom: 1rem;
}
.hero-title-line { display: block; }
.hero-title-italic {
  font-style: italic;
  color: var(--rouge-tomate);
  text-indent: clamp(2rem, 6vw, 5rem);
}
.hero-sign {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--vert-basilic);
  line-height: 1;
  margin: 1.2rem 0 2rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid var(--bleu-nuit);
  font-family: var(--font-ui);
  max-width: 520px;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-style: italic;
  color: var(--bleu-klein);
  line-height: 1;
}
.hero-stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .35rem;
  color: var(--bleu-nuit);
}

.hero-image-wrap {
  position: relative;
}
.hero-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 2px;
  filter: contrast(1.05) saturate(1.1);
}
.hero-image-caption {
  position: absolute;
  bottom: -28px; left: 0;
  font-family: var(--font-ui);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--bleu-nuit);
  opacity: .8;
}
.hero-image-stamp {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--jaune-mimosa);
  color: var(--bleu-nuit);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(8deg);
  border: 1.5px solid var(--bleu-nuit);
  box-shadow: 4px 4px 0 var(--bleu-nuit);
}
.hero-edito {
  background: var(--bleu-klein);
  color: var(--creme);
  padding: 2rem 2.2rem;
  position: relative;
  border-radius: 2px;
}
.hero-edito-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--jaune-mimosa);
  display: block;
  margin-bottom: 1rem;
}
.hero-edito-text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}
.hero-edito-sig {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--jaune-mimosa);
  margin-top: 1.2rem;
}

/* Drop caps */
.dropcap {
  float: left;
  font-family: var(--font-display);
  font-size: 5em;
  line-height: .85;
  padding: .08em .12em 0 0;
  color: var(--rouge-tomate);
  font-style: italic;
}
.dropcap-blue { color: var(--bleu-klein); }
.hero-edito-text .dropcap { color: var(--jaune-mimosa); }

/* ============================================================
   SECTION LABELS
============================================================ */
.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rouge-tomate);
  font-weight: 600;
  display: block;
  margin-bottom: 1.4rem;
}
.section-label-cream { color: var(--jaune-mimosa); }

/* ============================================================
   EDITO DE LA CHEFFE
============================================================ */
.edito {
  padding: var(--section-y) var(--gutter) 0;
  background: var(--creme);
}
.edito-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
}
.edito-left { grid-column: 1 / span 12; }
.edito-body { grid-column: 1 / span 12; }
@media (min-width: 900px) {
  .edito-left { grid-column: 1 / span 5; }
  .edito-body { grid-column: 7 / span 6; }
}

.edito-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: .95;
  color: var(--bleu-klein);
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
}
.edito-name {
  color: var(--rouge-tomate);
  font-style: italic;
}
.edito-portrait {
  position: relative;
  margin-top: 1rem;
}
.edito-portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.05) saturate(.95);
}
.edito-portrait figcaption {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .8rem;
  color: var(--bleu-nuit);
  opacity: .75;
}

.edito-body p {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  text-align: justify;
  hyphens: auto;
}
.edito-pullout {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  line-height: 1.15 !important;
  color: var(--bleu-klein) !important;
  text-align: center !important;
  margin: 2.2rem 0 !important;
  padding: 1.5rem 0;
  border-top: 1.5px solid var(--bleu-nuit);
  border-bottom: 1.5px solid var(--bleu-nuit);
}
.edito-signature-line {
  font-family: var(--font-ui);
  font-size: 14px !important;
  text-align: right !important;
  margin-top: 2rem;
}
.cursive-sig {
  font-family: var(--font-script);
  font-size: 2.2em;
  color: var(--rouge-tomate);
  line-height: 1;
  vertical-align: middle;
}

.edito-quote-band {
  margin-top: var(--section-y);
  background: var(--rouge-tomate);
  color: var(--creme);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.edito-quote-band blockquote {
  max-width: var(--container);
  margin: 0 auto;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -.01em;
  text-align: center;
}
.quote-accent {
  color: var(--jaune-mimosa);
  font-style: normal;
}

/* ============================================================
   CARTE DU JOUR
============================================================ */
.carte-jour {
  padding: var(--section-y) var(--gutter);
  background: var(--bleu-nuit);
  color: var(--creme);
  position: relative;
}
.carte-jour-header {
  max-width: var(--container);
  margin: 0 auto 3rem;
  text-align: center;
}
.carte-jour-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
  color: var(--jaune-mimosa);
  letter-spacing: -.02em;
  margin: 0 auto 1.5rem;
}
.carte-jour-title em {
  color: var(--creme);
}
.carte-jour-intro {
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--creme);
  opacity: .92;
}
#today-label { color: var(--jaune-mimosa); font-style: italic; }

.carte-jour-tabs {
  max-width: var(--container);
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
}
.carte-tab {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .65rem 1.4rem;
  border: 1.5px solid var(--creme);
  color: var(--creme);
  border-radius: 999px;
  transition: all .25s;
}
.carte-tab:hover { background: var(--creme); color: var(--bleu-nuit); }
.carte-tab.active {
  background: var(--jaune-mimosa);
  color: var(--bleu-nuit);
  border-color: var(--jaune-mimosa);
}

.carte-jour-content {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  min-height: 480px;
}
.carte-day {
  display: none;
  animation: dayIn .55s cubic-bezier(.16,.84,.4,1) forwards;
}
.carte-day.active { display: block; }

@keyframes dayIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.carte-day-head {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1.5px solid rgba(250,246,235,.3);
  margin-bottom: 2rem;
  position: relative;
}
.carte-day-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--rouge-tomate);
  line-height: 1;
  display: block;
  margin-bottom: -.4em;
}
.carte-day-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--creme);
  font-style: italic;
  margin-bottom: .5rem;
}
.carte-day-head p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--jaune-mimosa);
  font-style: italic;
}
.carte-day-plats {
  list-style: none;
  display: grid;
  gap: 1.4rem;
}
.carte-day-plats li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 16px;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(250,246,235,.25);
}
.carte-day-plats li strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--creme);
}
.carte-day-plats li em {
  color: var(--creme);
  opacity: .75;
  font-size: 14px;
  margin-left: .5rem;
}
.carte-day-plats .dot { display: none; }
.carte-day-plats .prix {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--jaune-mimosa);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .carte-day-plats li {
    grid-template-columns: 1fr;
    gap: .2rem;
  }
  .carte-day-plats .prix { justify-self: start; }
  .carte-day-plats li em { margin-left: 0; display: block; }
}

/* ============================================================
   CARTE PERMANENTE
============================================================ */
.carte {
  padding: var(--section-y) var(--gutter);
  background: var(--creme);
}
.carte-header {
  max-width: var(--container);
  margin: 0 auto 4rem;
  text-align: center;
}
.carte-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
  color: var(--bleu-klein);
  letter-spacing: -.02em;
}
.carte-intro {
  max-width: 580px;
  margin: 1.5rem auto 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: var(--bleu-nuit);
}

.carte-block {
  max-width: var(--container);
  margin: 0 auto 4rem;
  padding: 3rem 0 2rem;
  border-top: 1.5px solid var(--bleu-nuit);
}
.carte-block-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.carte-block-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: .85;
}
.carte-block-head h3 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: -.02em;
}
.carte-block-head h3 em { color: var(--rouge-tomate); }
.carte-block-tomato .carte-block-num { color: var(--rouge-tomate); }
.carte-block-tomato .carte-block-head h3 { color: var(--bleu-klein); }
.carte-block-blue .carte-block-num { color: var(--bleu-klein); }
.carte-block-blue .carte-block-head h3 { color: var(--bleu-nuit); }
.carte-block-blue .carte-block-head h3 em { color: var(--bleu-klein); }
.carte-block-ochre .carte-block-num { color: var(--ocre); }
.carte-block-ochre .carte-block-head h3 { color: var(--bleu-nuit); }
.carte-block-ochre .carte-block-head h3 em { color: var(--ocre); }

.plats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .plats-grid { grid-template-columns: repeat(2, 1fr); }
  .plats-grid .plat-card-large { grid-column: span 2; }
}
@media (min-width: 1000px) {
  .plats-grid { grid-template-columns: repeat(3, 1fr); }
  .plats-grid .plat-card-large { grid-column: span 2; grid-row: span 2; }
  .plats-grid-3 { grid-template-columns: repeat(4, 1fr); }
}

.plat-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bleu-nuit);
  aspect-ratio: 4/5;
  cursor: pointer;
}
.plat-card-large { aspect-ratio: auto; min-height: 360px; }
.plat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,.84,.4,1), filter .4s;
  filter: contrast(1.05) saturate(1.1);
}
.plat-card:hover img { transform: scale(1.06); filter: contrast(1.1) saturate(1.2); }
.plat-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(transparent, rgba(14,31,61,.85) 40%, rgba(14,31,61,.95));
  color: var(--creme);
}
.plat-meta h4 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.1;
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.plat-meta h4 em { color: var(--jaune-mimosa); }
.plat-meta p {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
  opacity: .9;
  margin-bottom: .5rem;
}
.plat-prix {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--jaune-mimosa);
}

/* Plats list (Plats principaux) */
.plats-list {
  display: grid;
  gap: 1.2rem;
}
.plat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--creme-deep);
  border-radius: 2px;
  transition: background .3s;
}
.plat-row:hover { background: var(--jaune-mimosa); }
.plat-row-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.plat-row-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.16,.84,.4,1);
}
.plat-row:hover .plat-row-img img { transform: scale(1.08); }
.plat-row-body {
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
  padding: .5rem 0;
}
.plat-row-body h4 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.05;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
  color: var(--bleu-nuit);
}
.plat-row-body h4 .acc { color: var(--rouge-tomate); font-style: italic; }
.plat-row-body h4 .acc-green { color: var(--vert-basilic); font-style: italic; }
.plat-row-body p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--bleu-nuit);
  opacity: .85;
}
.plat-row-prix {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--bleu-klein);
  margin-top: .6rem;
}

@media (min-width: 800px) {
  .plat-row {
    grid-template-columns: 220px 1fr;
    gap: 1.6rem;
    align-items: center;
  }
  .plat-row-img { aspect-ratio: 4/3; }
}

/* Menu déjeuner */
.menu-dej {
  max-width: var(--container);
  margin: 4rem auto 0;
  background: var(--jaune-mimosa);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  align-items: center;
  border: 1.5px solid var(--bleu-nuit);
  position: relative;
}
.menu-dej-tag {
  position: absolute;
  top: -16px; left: 32px;
  background: var(--bleu-klein);
  color: var(--creme);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .4rem .9rem;
}
.menu-dej-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--bleu-nuit);
  line-height: 1;
  margin-bottom: .5rem;
}
.prix-big {
  font-size: 1.2em;
  color: var(--rouge-tomate);
  font-style: normal;
}
.menu-dej-detail {
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 1.2rem;
  color: var(--bleu-nuit);
  opacity: .85;
}
.menu-dej ul {
  list-style: none;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--bleu-nuit);
}
.menu-dej ul li::before {
  content: '·';
  color: var(--rouge-tomate);
  font-weight: 700;
  margin-right: .5em;
}

/* ============================================================
   PULL QUOTE XL
============================================================ */
.pull-quote {
  background: var(--creme);
  padding: var(--section-y) var(--gutter);
  position: relative;
}
.pull-quote::before, .pull-quote::after {
  content: ''; position: absolute;
  height: 1.5px; background: var(--bleu-nuit);
  left: var(--gutter); right: var(--gutter);
}
.pull-quote::before { top: 0; }
.pull-quote::after { bottom: 0; }
.pull-quote-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pull-quote-mark {
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 18rem);
  line-height: .5;
  color: var(--jaune-mimosa);
  display: block;
  margin-bottom: -.1em;
  font-style: italic;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--bleu-klein);
  margin-bottom: 2rem;
}
.pull-quote em { color: var(--rouge-tomate); }
.pq-accent {
  background: var(--jaune-mimosa);
  padding: 0 .15em;
  font-style: italic;
}
.pull-quote cite {
  font-family: var(--font-ui);
  font-size: 13px;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rouge-tomate);
}

/* ============================================================
   MARCHÉ FORVILLE
============================================================ */
.marche {
  padding: var(--section-y) var(--gutter);
  background: var(--bleu-klein);
  color: var(--creme);
}
.marche-head {
  max-width: var(--container);
  margin: 0 auto 4rem;
  text-align: center;
}
.marche-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--creme);
}
.marche-title em { color: var(--jaune-mimosa); }
.marche-intro {
  max-width: 660px;
  margin: 1.5rem auto 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--creme);
  opacity: .92;
}

.marche-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1000px) {
  .marche-grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
}
.marche-map-wrap {
  background: var(--creme);
  padding: 1.5rem;
  border-radius: 2px;
  position: relative;
}
.marche-map {
  width: 100%;
  height: auto;
}
.map-pin {
  cursor: pointer;
  transition: transform .25s;
}
.map-pin:hover { transform: scale(1.25); transform-origin: center; }
.map-pin circle {
  transition: stroke-width .2s;
}
.map-pin.glow circle {
  stroke-width: 4;
  filter: drop-shadow(0 0 6px var(--jaune-mimosa));
}

.marche-fournisseurs {
  display: grid;
  gap: 1.2rem;
}
.fournisseur {
  background: var(--creme);
  color: var(--bleu-nuit);
  padding: 1.4rem 1.6rem;
  position: relative;
  border-left: 4px solid var(--jaune-mimosa);
  transition: transform .25s, box-shadow .25s;
}
.fournisseur:nth-child(2) { border-left-color: var(--bleu-klein); }
.fournisseur:nth-child(3) { border-left-color: var(--ocre); }
.fournisseur:nth-child(4) { border-left-color: var(--rouge-tomate); }
.fournisseur:nth-child(5) { border-left-color: var(--vert-basilic); }
.fournisseur:hover {
  transform: translateX(6px);
  box-shadow: -10px 10px 0 rgba(14,31,61,.15);
}
.fournisseur-num {
  position: absolute;
  top: 1.1rem; right: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--rouge-tomate);
  line-height: 1;
}
.fournisseur h4 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  letter-spacing: -.01em;
  margin-bottom: .4rem;
  padding-right: 3rem;
}
.fournisseur h4 em {
  color: var(--rouge-tomate);
  font-size: .75em;
  font-weight: 400;
}
.fournisseur p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--bleu-nuit);
  opacity: .85;
}

/* ============================================================
   VINS
============================================================ */
.vins {
  padding: var(--section-y) var(--gutter);
  background: var(--creme);
}
.vins-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .vins-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.vins-text { display: flex; flex-direction: column; justify-content: center; }
.vins-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: .95;
  color: var(--bleu-klein);
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
}
.vins-title em { color: var(--rouge-tomate); font-style: italic; }
.vins-text p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  text-align: justify;
}
.vins-text p strong { color: var(--bleu-klein); }

.vins-prix {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid var(--bleu-nuit);
  font-family: var(--font-ui);
}
.vins-prix > div { display: flex; flex-direction: column; }
.vins-prix strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--rouge-tomate);
  line-height: 1;
}
.vins-prix span {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .3rem;
}

.vins-cuvees {
  background: var(--bleu-nuit);
  color: var(--creme);
  padding: 2.2rem;
  position: relative;
}
.vins-cuvees-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--jaune-mimosa);
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(250,246,235,.25);
}
.vins-cuvees ul {
  list-style: none;
  display: grid;
  gap: .9rem;
  margin-bottom: 2rem;
}
.vins-cuvees ul li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  padding-bottom: .8rem;
  border-bottom: 1px dashed rgba(250,246,235,.2);
}
.vins-cuvees ul li strong {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--creme);
  display: block;
  margin-bottom: .15rem;
}
.vins-cuvees ul li span {
  color: var(--jaune-mimosa);
  font-style: italic;
  font-size: 14px;
  opacity: .9;
}
.vins-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 2px;
}
.vins-photo figcaption {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .7rem;
  color: var(--jaune-mimosa);
  opacity: .8;
}

/* ============================================================
   GALERIE BENTO
============================================================ */
.galerie {
  padding: var(--section-y) var(--gutter);
  background: var(--ocre);
}
.galerie-head {
  max-width: var(--container);
  margin: 0 auto 3rem;
  text-align: center;
}
.galerie-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--bleu-nuit);
}
.galerie-title em { color: var(--bleu-klein); }
.galerie-intro {
  max-width: 540px;
  margin: 1.2rem auto 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  color: var(--bleu-nuit);
  opacity: .85;
}

.bento {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
}
@media (min-width: 700px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
}
@media (min-width: 1100px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 16px; }
}
.bento figure {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bleu-nuit);
}
.bento figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,.84,.4,1), filter .4s;
  filter: contrast(1.05) saturate(1.1);
}
.bento figure:hover img { transform: scale(1.08); }
.bento figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .8rem 1rem;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--creme);
  background: linear-gradient(transparent, rgba(14,31,61,.9));
}
/* Bento layout */
.b1 { grid-column: span 2; grid-row: span 2; }
.b2 { grid-column: span 1; grid-row: span 1; }
.b3 { grid-column: span 1; grid-row: span 2; }
.b4 { grid-column: span 2; grid-row: span 1; }
.b5 { grid-column: span 1; grid-row: span 1; }
.b6 { grid-column: span 1; grid-row: span 1; }
.b7 { grid-column: span 1; grid-row: span 1; }
.b8 { grid-column: span 1; grid-row: span 2; }
.b9 { grid-column: span 2; grid-row: span 1; }
.b10 { grid-column: span 1; grid-row: span 1; }
.b11 { grid-column: span 1; grid-row: span 1; }
.b12 { grid-column: span 1; grid-row: span 1; }

@media (max-width: 700px) {
  .b1, .b2, .b3, .b4, .b5, .b6, .b7, .b8, .b9, .b10, .b11, .b12 {
    grid-column: span 1; grid-row: span 1;
  }
  .b1, .b8 { grid-column: span 2; grid-row: span 2; }
}

/* ============================================================
   PRESSE
============================================================ */
.presse {
  padding: var(--section-y) var(--gutter);
  background: var(--bleu-nuit);
  color: var(--creme);
}
.presse-head {
  max-width: var(--container);
  margin: 0 auto 3rem;
  text-align: center;
}
.presse-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--creme);
}
.presse-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 800px) {
  .presse-grid { grid-template-columns: repeat(3, 1fr); }
}
.presse-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1.5px solid rgba(250,246,235,.25);
}
.presse-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--jaune-mimosa);
  margin-bottom: 1.4rem;
  display: flex; flex-direction: column;
  align-items: center; gap: .2rem;
}
.presse-year {
  font-family: var(--font-ui);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: .7;
}
.presse-card blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--creme);
}
.presse-card blockquote em {
  background: var(--rouge-tomate);
  padding: 0 .2em;
  font-style: italic;
}

/* ============================================================
   RÉSERVATION
============================================================ */
.reservation {
  padding: var(--section-y) var(--gutter);
  background: var(--creme);
}
.reservation-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .reservation-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
}
.reservation-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: .95;
  color: var(--bleu-klein);
  letter-spacing: -.02em;
}
.reservation-title em { color: var(--rouge-tomate); }
.reservation-intro {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  margin: 1.5rem 0 2rem;
  max-width: 480px;
}
.reservation-phone {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--rouge-tomate);
  margin-bottom: .8rem;
  transition: color .2s;
}
.reservation-phone:hover { color: var(--bleu-klein); }
.reservation-mail {
  display: block;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--bleu-klein);
  text-decoration: underline;
  margin-bottom: 2rem;
}
.reservation-note {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--bleu-nuit);
  opacity: .8;
  max-width: 380px;
  padding-top: 1.2rem;
  border-top: 1px solid var(--bleu-nuit);
}

.reservation-form {
  background: var(--bleu-nuit);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--creme);
  display: grid; gap: 1rem;
}
.reservation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.reservation-form label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--jaune-mimosa);
}
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  margin-top: .4rem;
  padding: .8rem 1rem;
  background: var(--creme);
  color: var(--bleu-nuit);
  border: 1.5px solid var(--creme);
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 2px;
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--jaune-mimosa);
}
.form-submit {
  background: var(--jaune-mimosa);
  color: var(--bleu-nuit);
  padding: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  border-radius: 2px;
  transition: background .25s, transform .15s;
  margin-top: .6rem;
}
.form-submit:hover { background: var(--rouge-tomate); color: var(--creme); }
.form-submit:active { transform: scale(.98); }
.reservation-form small {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--jaune-mimosa);
  opacity: .7;
  text-align: center;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: var(--section-y) var(--gutter);
  background: var(--ocre);
  color: var(--bleu-nuit);
}
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-block h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--bleu-klein);
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1.5px solid var(--bleu-nuit);
}
.contact-block a,
.contact-block ul {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  list-style: none;
}
.contact-block a { transition: color .2s; }
.contact-block a:hover { color: var(--rouge-tomate); }
.contact-block em {
  display: block;
  margin-top: .3rem;
  color: var(--rouge-tomate);
  font-size: 14px;
}
.contact-block ul li.closed,
.contact-block ul li.closed-year {
  margin-top: .8rem;
  font-style: italic;
  font-size: 14px;
  opacity: .8;
}
.contact-block ul li.closed { color: var(--rouge-tomate); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bleu-klein);
  color: var(--creme);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 1.5rem;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid rgba(250,246,235,.25);
}
@media (min-width: 800px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--jaune-mimosa);
  margin-bottom: .6rem;
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  opacity: .9;
}
.footer-nav,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
}
.footer-nav a,
.footer-meta a {
  position: relative;
  transition: color .2s;
  width: max-content;
}
.footer-nav a:hover,
.footer-meta a:hover { color: var(--jaune-mimosa); }

.footer-bella {
  text-align: center;
  margin: 1rem 0;
  position: relative;
}
.bella-line {
  font-family: var(--font-script);
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 1;
  color: var(--jaune-mimosa);
  letter-spacing: -.01em;
  display: inline-block;
  transform: rotate(-2deg);
  text-shadow: 4px 4px 0 var(--rouge-tomate);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 1.5rem;
  border-top: 1.5px solid rgba(250,246,235,.25);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.16,.84,.4,1),
              transform .9s cubic-bezier(.16,.84,.4,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-left.in { transform: translateX(0); }
.reveal-right {
  transform: translateX(40px);
}
.reveal-right.in { transform: translateX(0); }

/* ============================================================
   RESPONSIVE NAV
============================================================ */
@media (max-width: 800px) {
  .masthead-bar {
    grid-template-columns: 1fr;
    text-align: center;
    gap: .6rem;
  }
  .masthead-left, .masthead-nav { justify-content: center; }
  .masthead-nav { flex-wrap: wrap; gap: .8rem 1.1rem; font-size: 12px; }
}
@media (max-width: 500px) {
  .masthead-nav a:not(.masthead-cta) { display: none; }
  .masthead-cta { display: inline-block; }
  .ticker-track { font-size: 10px; }
}

/* Print-safe */
@media print {
  .masthead, .masthead-ticker, .reservation-form, .cursor-dot { display: none; }
  body { background: #fff; color: #000; }
}

/* === Vidéos en remplacement d'images (auto-ajouté 2026-05-20) === */
video.hero-video, video.hero-img, video.hero-image, video.cave-video,
video.parallax-img, video.dj-video, video.transats-video, video.cucina-video,
video.vins-video, video.bento-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (prefers-reduced-motion: reduce) {
  video.hero-video, video.hero-img, video.hero-image, video.cave-video,
  video.parallax-img, video.dj-video, video.transats-video, video.cucina-video,
  video.vins-video, video.bento-video { display: none; }
  video.hero-video + img, video.hero-img + img, video.hero-image + img,
  video.cave-video + img, video.parallax-img + img, video.dj-video + img,
  video.transats-video + img, video.cucina-video + img, video.vins-video + img,
  video.bento-video + img { display: block; width: 100%; height: 100%; object-fit: cover; }
}
