/* ============================================================
   LA TABLE DE JORDI — style.css
   Diseño editorial de alta gama · Versión Hostinger
   ============================================================ */

/* ── Variables ── */
:root {
  --terra:       #6D331C;
  --ruby:        #4A1820;
  --copper:      #8C4A2E;
  --ivoire:      #FAF6EE;
  --bone:        #F2EBE0;
  --stone-light: #C5BEB3;
  --stone:       #8A847C;
  --stone-dark:  #4A453F;
  --charcoal:    #1C1815;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;

  --max-wide:    1200px;
  --max-text:    680px;
  --header-h:    64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone-dark);
  background: var(--ivoire);
  -webkit-font-smoothing: antialiased;
}
iframe { max-width: 100%; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}
h1 { font-size: clamp(3.2rem, 7vw, 6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); letter-spacing: -0.01em; }

.label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--stone);
  margin-bottom: 1rem;
}
.label--ruby { color: var(--ruby); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone-dark);
  transition: gap .2s, color .2s;
  margin-top: 1.5rem;
}
.arrow-link::after { content: '→'; font-size: 14px; }
.arrow-link:hover { gap: 14px; color: var(--ruby); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 14px 28px;
  border: 1.5px solid currentColor;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn::after { content: '→'; }
.btn-ruby {
  background: var(--ruby);
  color: var(--ivoire);
  border-color: var(--ruby);
}
.btn-ruby:hover { background: var(--terra); border-color: var(--terra); }
.btn-outline {
  background: transparent;
  color: var(--ivoire);
  border-color: rgba(250,246,238,.5);
}
.btn-outline:hover { background: rgba(250,246,238,.1); border-color: var(--ivoire); }
.btn-outline-dark {
  background: transparent;
  color: var(--stone-dark);
  border-color: var(--stone-light);
}
.btn-outline-dark:hover { border-color: var(--stone-dark); color: var(--charcoal); }

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s, box-shadow .35s;
}
#site-header.scrolled,
body.header-solid #site-header {
  background: var(--charcoal);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

/* ── Image placeholders: solo visibles en modo editor ── */
.img-placeholder .ph-icon,
.img-placeholder > span {
  display: none;
}
body.editor-active .img-placeholder .ph-icon,
body.editor-active .img-placeholder > span {
  display: block;
}
.header-inner {
  max-width: var(--max-wide);
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ivoire);
  white-space: nowrap;
  text-decoration: none;
}
.header-logo-img {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(250,246,238,.75);
  transition: color .2s;
}
.header-nav a:hover { color: var(--ivoire); }
.header-nav .btn-ruby {
  padding: 10px 20px;
  font-size: 10px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-switch {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(250,246,238,.5);
}
.header-lock {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(250,246,238,.3);
  padding: 4px;
  transition: color .2s;
  display: flex;
}
.header-lock:hover { color: rgba(250,246,238,.7); }
.header-lock svg { width: 14px; height: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ivoire); transition: .3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 100px;
  background: var(--charcoal);
  background-image: url('images/banyuls-sur-mer.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Capa marrón para legibilidad del texto (más densa a la izquierda) */
  background:
    linear-gradient(
      to right,
      rgba(28,24,21,.85) 0%,
      rgba(28,24,21,.62) 45%,
      rgba(28,24,21,.35) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(74,24,32,.25) 0%,
      rgba(28,24,21,.15) 100%
    );
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-wide);
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}
/* H1 pequeño (SEO) encima del nombre grande */
.hero-h1-small {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(250,246,238,.85);
  margin: 0 0 0.6rem;
  line-height: 1.4;
}
/* Nombre grande del restaurante (foco visual) */
.hero-title-big {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ivoire);
  max-width: 620px;
  margin-bottom: 1.4rem;
}
.hero-claim {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(250,246,238,.85);
  margin: 1rem 0 2rem;
  max-width: 420px;
}
.hero-sub {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(197,190,179,.8);
  margin-bottom: 2rem;
  display: block;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(197,190,179,.5);
  z-index: 1;
}

/* ── QUOTE SECTION ── */
.section-quote {
  padding: 100px 0;
  background: var(--ivoire);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.quote-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.quote-sig {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-sig::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--stone-light);
}
.quote-right p {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.85;
  max-width: 400px;
  margin-bottom: 1.2rem;
}

/* ── ABOUT / HISTOIRE ── */
.section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-image {
  background: var(--bone);
  background-image: url('images/chef-zoe.webp');
  background-size: cover;
  background-position: center;
  min-height: 500px;
}
.about-text {
  background: var(--ivoire);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--stone); font-size: 14px; line-height: 1.85; max-width: 380px; margin-bottom: 1rem; }

/* ── DISHES GRID ── */
.section-dishes {
  padding: 100px 0;
  background: var(--ivoire);
}
.dishes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dish-card { }
.dish-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bone);
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(28,24,21,.16);
  transition: transform .3s ease, box-shadow .3s ease;
}
.dish-card:hover .dish-photo {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(28,24,21,.22);
}
.dish-photo.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--stone-light);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  aspect-ratio: 1;
  border: none;
}
.dish-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
  display: block;
  margin-bottom: .3rem;
}
.dish-desc { font-size: 12px; color: var(--stone); line-height: 1.6; }

/* ── DOMAINE SECTION ── */
.section-domaine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.domaine-left {
  background: #2a2018;
  background-image: url('images/vignes.webp');
  background-size: cover;
  background-position: center;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.domaine-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,18,10,.75) 0%, rgba(28,18,10,.2) 60%);
}
.domaine-left-content { position: relative; z-index: 1; }
.domaine-left h2 { color: var(--ivoire); font-size: clamp(2rem, 3.5vw, 3rem); }
.domaine-left .label { color: rgba(197,190,179,.6); }
.domaine-left .arrow-link { color: rgba(250,246,238,.8); }
.domaine-left .arrow-link:hover { color: var(--ivoire); }
.domaine-right {
  background: var(--bone);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.domaine-right p { color: var(--stone); font-size: 14px; line-height: 1.85; max-width: 380px; margin-bottom: 1rem; }

/* ── WINE CAROUSEL ── */
.wine-carr {
  display: flex;
  gap: 32px;
  align-items: center;
  height: 100%;
}
.wine-carr-text {
  flex: 1;
  min-width: 0;
}
.wine-carr-static {
  color: var(--stone);
  font-size: 13.5px;
  line-height: 1.85;
  margin-bottom: 28px;
}
.wine-carr-info {
  min-height: 110px;
  transition: opacity .3s ease;
}
.wine-carr-info.fading { opacity: 0; }
.wine-carr-appellation {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--copper);
  display: block;
  margin-bottom: .5rem;
}
.wine-carr-name {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: .6rem;
  line-height: 1.1;
}
.wine-carr-desc {
  font-size: 12.5px;
  color: var(--stone);
  line-height: 1.7;
}
.wine-carr-dots {
  display: flex;
  gap: 6px;
  margin-top: 24px;
  margin-bottom: 20px;
}
.wine-dot {
  width: 18px;
  height: 2px;
  background: var(--stone-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width .25s, background .25s;
}
.wine-dot.active {
  width: 32px;
  background: var(--ruby);
}

/* Bottle shapes */
.wine-carr-bottles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  flex-shrink: 0;
}
/* Cada botella: solo la imagen, sin caja de color.
   background-size 'auto 100%' fuerza que TODAS se escalen a la misma altura. */
.wcb {
  position: relative;
  width: 64px;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 100%;
  cursor: pointer;
  opacity: 0.45;
  filter: grayscale(35%);
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease, filter .35s ease;
}
.wcb:hover { opacity: 0.8; }
.wcb.active {
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1.12);
  transform-origin: center bottom;
}
.wine-carr-year {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--stone);
  text-align: center;
  margin-top: 14px;
}

/* ── LIEU SECTION ── */
.section-lieu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 460px;
  margin-top: 10px;
}
.lieu-photo {
  background: var(--bone);
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.lieu-text {
  background: var(--ivoire);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lieu-text h2 { margin-bottom: 1rem; font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
.lieu-text p { color: var(--stone); font-size: 14px; line-height: 1.85; margin-bottom: 1rem; }

/* ── BOTTOM GRID (Carte + Réservation) ── */
.section-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 360px;
  margin-top: 10px;
}
.bottom-carte {
  background: var(--bone);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bottom-carte .label { margin-bottom: 2rem; }
.bottom-carte-item {
  padding: 18px 0;
  border-top: 1px solid var(--stone-light);
}
.bottom-carte-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: .2rem;
}
.bottom-book {
  background: var(--stone-dark);
  background-image: url('images/book-cover.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-book-placeholder {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(250,246,238,.4);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.6;
}
.bottom-reserve {
  background: var(--ruby);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bottom-reserve .label { color: rgba(250,246,238,.5); }
.bottom-reserve h3 {
  color: var(--ivoire);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.bottom-reserve .btn-outline { margin-bottom: 20px; }
.bottom-reserve-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(250,246,238,.8);
  margin-top: 16px;
}
.bottom-reserve-phone::before { content: '☎'; font-size: 12px; }
.bottom-reserve-info {
  font-size: 10.5px;
  color: rgba(250,246,238,.45);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 40px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(197,190,179,.1);
}
.footer-address {
  font-size: 11.5px;
  color: var(--stone);
  line-height: 1.7;
}
.footer-address strong { color: rgba(250,246,238,.6); font-weight: 500; }
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(197,190,179,.5);
  transition: color .2s;
}
.footer-nav a:hover { color: rgba(250,246,238,.8); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}
.footer-social a {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(197,190,179,.45);
  transition: color .2s;
}
.footer-social a:hover { color: rgba(250,246,238,.7); }
.footer-copy {
  padding-top: 20px;
  font-size: 10.5px;
  color: rgba(197,190,179,.3);
}
.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(197,190,179,.1);
}
.footer-hours, .footer-contact, .footer-social {
  font-size: 11.5px;
  color: var(--stone);
}
.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
  background: var(--bone);
  border: 1px dashed rgba(197,190,179,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--stone-light);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 20px;
}
.img-placeholder .ph-icon { font-size: 1.4rem; opacity: .4; }

/* ── SECTION (generic) ── */
.section { padding: 80px 0; }
.section--dark { background: var(--charcoal); }
.section--bone { background: var(--bone); }

/* ── TAGLINE (alias for .label) ── */
.tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--stone);
  margin-bottom: 1rem;
}

/* ── BUTTON ALIASES ── */
.btn-primary { background: var(--ruby); color: var(--ivoire); border-color: var(--ruby); }
.btn-primary:hover { background: var(--terra); border-color: var(--terra); }
.btn-cancel { background: transparent; color: var(--stone); border-color: rgba(197,190,179,.25); }
.btn-cancel:hover { border-color: var(--stone); color: var(--charcoal); }

/* ── MENU ITEM INFO ── */
.menu-item-info { display: flex; flex-direction: column; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: calc(var(--header-h) + 72px) 0 72px;
}
.page-hero .container { text-align: center; }
.page-hero h1 { color: var(--ivoire); font-size: clamp(2.2rem, 5vw, 3.8rem); }
.page-hero .label,
.page-hero .tagline { color: var(--stone); justify-content: center; display: flex; }

/* ── INTERNAL LINKS ── */
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--stone-light);
}
.internal-links a {
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--stone);
  padding: 8px 16px;
  border: 1px solid var(--stone-light);
  transition: all .2s;
}
.internal-links a:hover { border-color: var(--terra); color: var(--terra); }

/* ── MENU PAGE ── */
.menu-section { padding: 80px 0; }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; }
.menu-category { margin-bottom: 56px; }
.menu-category-title {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ruby);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stone-light);
}
.menu-item { padding: 14px 0; border-bottom: 1px solid rgba(197,190,179,.4); }
.menu-item:last-child { border-bottom: none; }
.menu-item-row { display: flex; justify-content: space-between; gap: 20px; }
.menu-item-name { font-family: var(--font-serif); font-size: 1rem; color: var(--charcoal); font-weight: 400; }
.menu-item-price { font-size: 13px; color: var(--stone); white-space: nowrap; }
.menu-item-desc { font-size: 12px; color: var(--stone); margin-top: .25rem; line-height: 1.55; max-width: 360px; }

/* ── MENU SECTION CARDS (notre-carte landing) ── */
.menu-section-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}
.menu-section-card {
  background: var(--bone);
  padding: 40px 36px;
  border-top: 3px solid transparent;
  text-decoration: none;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(0);
}
.menu-section-card:hover {
  border-top-color: var(--ruby);
  background: var(--ivoire);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}
.msc-num {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone-light);
  margin-bottom: 1.2rem;
}
.msc-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: .8rem;
}
.msc-desc {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.65;
  flex: 1;
  margin-bottom: .5rem;
}
.msc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
  margin-top: 1.5rem;
  transition: gap .2s, color .2s;
}
.msc-arrow::after { content: '→'; }
.menu-section-card:hover .msc-arrow { gap: 14px; color: var(--ruby); }

/* ── MENU TABS ── */
.menu-tabs-wrap { margin-top: 80px; padding-top: 60px; border-top: 1px solid var(--stone-light); }
.menu-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--stone-light);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 0;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs-nav::-webkit-scrollbar { display: none; }
.menu-tab-btn {
  white-space: nowrap;
  padding: 16px 24px;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  flex-shrink: 0;
}
.menu-tab-btn:hover { color: var(--charcoal); }
.menu-tab-btn.active { color: var(--charcoal); border-bottom-color: var(--ruby); }
.menu-tabs-viewport { overflow: hidden; }
.menu-tabs-track {
  display: flex;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.menu-tab-panel {
  min-width: 100%;
  flex-shrink: 0;
  padding: 56px 0 20px;
}

/* ── WINE PAGE ── */
.wine-section { padding: 80px 0; }
.wine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.wine-card {
  background: var(--bone);
  padding: 36px 32px;
  border-top: 2px solid transparent;
  transition: border-color .2s;
}
.wine-card:hover { border-color: var(--ruby); }
.wine-appellation { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--copper); margin-bottom: .5rem; display: block; }
.wine-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 300; color: var(--terra); display: block; margin-bottom: .6rem; }
.wine-desc { font-size: 12.5px; color: var(--stone); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--stone); margin-bottom: .4rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bone);
  border: 1px solid var(--stone-light);
  border-bottom: 1px solid var(--stone-dark);
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--stone-dark);
  outline: none;
  background: transparent;
  border-width: 0 0 1px 0;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--terra); }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-info-block,
.contact-info-item { padding: 28px 0; border-bottom: 1px solid var(--stone-light); }
.contact-info-block:first-child,
.contact-info-item:first-child { border-top: 1px solid var(--stone-light); }
.map-placeholder { width: 100%; height: 300px; background: var(--bone); margin-top: 60px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--stone-light); font-size: 11px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.14em; }
.contact-info-label { font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--stone); margin-bottom: .5rem; display: block; }
.contact-info-value { font-size: 14px; color: var(--stone-dark); line-height: 1.7; }
.contact-info-value a:hover { color: var(--terra); }
.map-embed { width: 100%; height: 300px; background: var(--bone); margin-top: 60px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--stone-light); font-size: 11px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.14em; }

/* ── EDITOR ── */
.editor-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28,24,21,.9);
  display: flex; align-items: center; justify-content: center;
}
.editor-modal.hidden { display: none; }
.editor-modal-box {
  background: var(--charcoal);
  border: 1px solid rgba(197,190,179,.12);
  padding: 48px 40px;
  width: 100%; max-width: 380px;
  text-align: center;
}
.editor-modal-title { color: var(--ivoire); font-weight: 300; margin-bottom: .5rem; font-size: 1.5rem; }
.editor-modal-box p { font-size: 12px; color: var(--stone); margin: 0 auto 1.5rem; }
.editor-modal-box input {
  width: 100%; background: rgba(250,246,238,.05);
  border: 0; border-bottom: 1px solid rgba(197,190,179,.3);
  padding: 12px 0; font-size: 15px; color: var(--ivoire);
  text-align: center; letter-spacing: 0.15em; outline: none;
  margin-bottom: 20px; font-family: var(--font-sans);
  transition: border-color .2s;
}
.editor-modal-box input:focus { border-color: var(--copper); }
.editor-modal-error { font-size: 12px; color: #e05555; margin-top: 10px; display: none; }
.editor-toolbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--charcoal); border-top: 1px solid rgba(197,190,179,.1);
  padding: 14px 48px; display: flex; align-items: center; justify-content: space-between;
}
.editor-toolbar.hidden { display: none; }
.editor-toolbar-info { font-size: 11.5px; color: var(--stone); }
.editor-toolbar-info span { color: var(--copper); }
.editor-toolbar-actions { display: flex; gap: 12px; }
.editor-toolbar .btn { font-size: 11px; padding: 10px 24px; }
.btn-save { background: var(--copper); color: var(--ivoire); border-color: var(--copper); }
.btn-save:hover { background: var(--terra); border-color: var(--terra); }
.btn-cancel-editor { background: transparent; color: var(--stone); border-color: rgba(197,190,179,.25); }
.btn-cancel-editor:hover { border-color: var(--stone); color: var(--ivoire); }
.editor-active [data-editable] { outline: 1.5px dashed rgba(140,74,46,.4); outline-offset: 3px; cursor: text; }
.editor-active [data-editable]:focus { outline-color: var(--copper); background: rgba(140,74,46,.03); }

/* ── Plateaux cards ── */
.plateaux-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.plateau-card { background: var(--charcoal); padding: 40px 32px; border-top: 2px solid var(--ruby); }
.plateau-card .cap-name { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ivoire); display: block; margin-bottom: .6rem; font-weight: 300; }
.plateau-card p { font-size: 12.5px; color: var(--stone); line-height: 1.65; }

/* ── Menu Carousel (Tabs) ── */
.menu-carousel-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--stone-light);
  padding-bottom: 24px;
}

.menu-carousel-tab {
  background: transparent;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone);
  cursor: pointer;
  transition: color .3s, border-bottom .3s;
  border-bottom: 2px solid transparent;
  position: relative;
  bottom: -25px;
}

.menu-carousel-tab:hover {
  color: var(--copper);
}

.menu-carousel-tab.active {
  color: var(--terra);
  border-bottom-color: var(--terra);
}

.menu-carousel {
  position: relative;
  width: 100%;
}

.menu-carousel-section {
  display: none;
  opacity: 0;
  transition: opacity .4s ease-in-out;
  max-width: var(--max-text);
  margin: 0 auto;
}

.menu-carousel-section.active {
  display: block;
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .header-inner { padding: 0 32px; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .wine-grid { grid-template-columns: repeat(2, 1fr); }
  .section-bottom { grid-template-columns: 1fr 1fr; }
  .bottom-book { display: none; }
  .menu-section-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--charcoal); align-items: center; justify-content: center;
    gap: 28px; z-index: 99;
  }
  .header-nav.open a { font-size: .9rem; }
  .nav-toggle { display: flex; z-index: 100; }
  .lang-switch { display: none; }
  .hero-title-big { font-size: 3.2rem; }
  .quote-grid, .about-text { padding: 56px 28px; }
  .section-about, .section-domaine, .section-lieu { grid-template-columns: 1fr; }
  .domaine-left { min-height: 320px; padding: 48px 24px; }
  .domaine-right { padding: 48px 24px; }
  .wine-carr { flex-direction: column; gap: 24px; }
  .wine-carr-text { width: 100%; }
  .wine-carr-static, .wine-carr-info, .wine-carr-desc, .wine-carr-appellation { max-width: 100%; }
  .wine-carr-visual { width: 100%; overflow: hidden; }
  .wine-carr-bottles { justify-content: center; gap: 10px; flex-wrap: nowrap; }
  .wcb { width: 48px; height: 150px; }
  .wcb.active { transform: translateY(0) scale(1.08); }
  .menu-section-cards { grid-template-columns: 1fr; }
  .menu-carousel-tabs { gap: 6px; flex-wrap: wrap; }
  .menu-carousel-tab { padding: 9px 14px; font-size: 11px; }
  .lieu-text { padding: 56px 28px; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .dishes-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .section-bottom { grid-template-columns: 1fr; }
  .menu-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .plateaux-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { flex-direction: column; gap: 28px; text-align: center; }
  .footer-social { text-align: center; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-bottom-grid { flex-direction: column; gap: 12px; }
  .footer-nav { flex-direction: column; gap: 8px; justify-content: center; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .hero-title-big { font-size: 2.6rem; }
  .dishes-grid { grid-template-columns: 1fr; }
  .plateaux-grid { grid-template-columns: 1fr; }
  .wine-grid { grid-template-columns: 1fr; }
  .wine-carr-bottles { gap: 8px; }
  .wcb { width: 42px; height: 130px; }
}

/* ── Image Editor Overlay ── */
[data-image] { position: relative; }
.img-edit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,24,21,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .25s;
  cursor: pointer;
  z-index: 10;
}
body.editor-active [data-image]:hover .img-edit-overlay { opacity: 1; }
.img-edit-btn {
  background: var(--ivoire);
  color: var(--charcoal);
  border: none;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  transition: background .2s;
  pointer-events: auto;
}
.img-edit-btn:hover { background: #fff; }
.img-edit-label {
  font-size: 10px;
  color: rgba(250,246,238,.75);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.img-edit-spinner {
  width: 22px; height: 22px;
  border: 2px solid rgba(250,246,238,.3);
  border-top-color: var(--ivoire);
  border-radius: 50%;
  animation: img-spin .7s linear infinite;
}
@keyframes img-spin { to { transform: rotate(360deg); } }

/* ── Bandeau de consentement cookies ── */
#cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - 40px);
  max-width: 880px;
  background: var(--charcoal);
  color: var(--ivoire);
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  padding: 22px 26px;
  z-index: 300;
  display: none;
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
#cookie-banner.show { display: block; opacity: 1; transform: translateX(-50%) translateY(0); }
#cookie-banner .cb-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
#cookie-banner .cb-text { flex: 1; min-width: 240px; font-size: 12.5px; line-height: 1.65; color: rgba(250,246,238,.82); }
#cookie-banner .cb-text strong { color: var(--ivoire); display:block; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 4px; }
#cookie-banner .cb-text a { color: var(--copper); text-decoration: underline; text-underline-offset: 2px; }
#cookie-banner .cb-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
#cookie-banner button {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  padding: 12px 20px; border-radius: 3px; cursor: pointer; border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.cb-accept { background: var(--ivoire); color: var(--charcoal); border-color: var(--ivoire); }
.cb-accept:hover { background: #fff; }
.cb-refuse { background: transparent; color: rgba(250,246,238,.85); border-color: rgba(250,246,238,.4); }
.cb-refuse:hover { border-color: var(--ivoire); color: var(--ivoire); }
@media (max-width: 600px) {
  #cookie-banner .cb-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  #cookie-banner .cb-actions button { flex: 1; }
}
