@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  /* Palette */
  --bg:            #f6f0e7;
  --bg-2:          #ede3d2;
  --bg-3:          #e4d9c6;
  --text:          #18130a;
  --muted:         #7a6b52;
  --card:          #ffffff;
  --card-2:        rgba(255,255,255,.75);

  --green:         #344026;
  --green-mid:     #4e5b3e;
  --green-light:   rgba(52,64,38,.08);
  --red:           #7c2626;
  --red-mid:       #9b3333;
  --red-soft:      rgba(124,38,38,.09);
  --gold:          #b8832a;
  --gold-light:    rgba(184,131,42,.10);

  --accent:        var(--red);
  --accent-text:   #ffffff;

  /* Shape */
  --radius:        16px;
  --radius-lg:     24px;
  --radius-xl:     36px;

  /* Shadows */
  --shadow-1:      0 4px 20px rgba(24,19,10,.08);
  --shadow-2:      0 12px 40px rgba(24,19,10,.13);
  --shadow-3:      0 24px 64px rgba(24,19,10,.16);

  /* Ring */
  --ring:          rgba(124,38,38,.18);

  /* Typography */
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'Instrument Sans', system-ui, -apple-system, sans-serif;

  /* Motion */
  --dur-1:         200ms;
  --dur-2:         480ms;
  --ease-out:      cubic-bezier(.22,.8,.2,1);
}

/* ═══════════════════════════════════════
   BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, picture { display: block; }
img { max-width: 100%; height: auto; vertical-align: middle; }
figure { margin: 0; }

.container { width: min(1140px, 92%); margin: 0 auto; }
.muted { color: var(--muted); }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,240,231,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(24,19,10,.07);
  transition: box-shadow var(--dur-1) var(--ease-out);
}
.site-header.scrolled {
  box-shadow: var(--shadow-2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: var(--radius);
  background: linear-gradient(100deg, rgba(237,227,210,.8), rgba(124,38,38,.05));
  border: 1px solid rgba(24,19,10,.07);
  text-decoration: none;
  transition: opacity var(--dur-1);
}
.brand:hover { opacity: .88; }
.brand-logo, .custom-logo-link img {
  height: 62px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 6px 14px rgba(24,19,10,.12));
}
@media (min-width: 900px) {
  .brand-logo, .custom-logo-link img { height: 76px; }
}

.nav { display: block; }
.menu {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--dur-1), background var(--dur-1);
}
.menu a:hover { color: var(--text); background: rgba(24,19,10,.06); }

.header-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--dur-1) var(--ease-out),
    box-shadow var(--dur-1) var(--ease-out),
    background var(--dur-1),
    opacity var(--dur-1);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 3px 12px rgba(124,38,38,.28);
}
.btn-primary:hover { background: var(--red-mid); box-shadow: 0 8px 24px rgba(124,38,38,.36); }

.btn-secondary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 3px 12px rgba(52,64,38,.22);
}
.btn-secondary:hover { background: #2a3320; }

.btn-ghost {
  background: rgba(255,255,255,.65);
  color: var(--text);
  border-color: rgba(24,19,10,.12);
}
.btn-ghost:hover { background: rgba(246,240,231,.9); }

.btn-soon, .is-disabled { opacity: .65; pointer-events: none; }

/* ═══════════════════════════════════════
   BADGES & CHIPS
═══════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1px solid rgba(24,19,10,.10);
  background: rgba(255,255,255,.65);
  color: rgba(24,19,10,.75);
  white-space: nowrap;
}
.badge-opening {
  border-color: rgba(124,38,38,.20);
  background: rgba(124,38,38,.08);
  color: var(--red);
}
.hide-sm { display: inline-flex; }
@media (max-width: 860px) { .hide-sm { display: none; } }

.chip {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24,19,10,.10);
  background: rgba(255,255,255,.55);
  font-size: 13px;
  color: var(--muted);
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

/* ═══════════════════════════════════════
   KICKER / EYEBROW
═══════════════════════════════════════ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(24,19,10,.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
}
.kicker > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kicker .badge { margin-left: 6px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero { padding: 40px 0 8px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.07;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
}

.hero p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  max-width: 50ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}

/* Mini info grid */
.mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}
.mini-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(24,19,10,.07);
  transition: background var(--dur-1);
}
.mini-item:hover { background: rgba(255,255,255,.75); }
.mini-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  flex: 0 0 auto;
}
.mini-text { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.mini-text strong { font-weight: 600; font-size: 13px; color: var(--muted); }
.mini-link { text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.mini-muted { color: var(--muted); }

/* Hero media */
.hero-media { position: relative; }

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  border: 1px solid rgba(24,19,10,.08);
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
}
.hero-photo picture { display: block; line-height: 0; }
.hero-photo img {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.hero-photo:hover img { transform: scale(1.025); }

.hero-float-card {
  position: absolute;
  right: 16px;
  bottom: -18px;
  width: min(300px, 90%);
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  border: 1px solid rgba(24,19,10,.08);
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(8px);
}
.float-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text);
}
.float-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(24,19,10,.07);
}
.float-row:first-of-type { border-top: none; padding-top: 0; }
.float-label { color: var(--muted); font-size: 13px; }
.float-value { font-weight: 600; font-size: 14px; }
.opening-date {
  font-weight: 800;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════
   QUICK INFO
═══════════════════════════════════════ */
.quick-info { padding: 32px 0 40px; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-card {
  background: var(--card-2);
  border-radius: var(--radius-lg);
  padding: 0 0 18px;
  border: 1px solid rgba(24,19,10,.07);
  display: block;
  overflow: hidden;
  transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}
.quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }

.quick-thumb {
  overflow: hidden;
  margin: 0;
  line-height: 0;
}
.quick-thumb picture { display: block; line-height: 0; }
.quick-thumb img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.quick-card:hover .quick-thumb img { transform: scale(1.06); }

.quick-title {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  padding: 16px 18px 4px;
}
.quick-value {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  padding: 0 18px;
}
.quick-value strong {
  font-weight: 800;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.quick-cta {
  background: linear-gradient(160deg, rgba(124,38,38,.06), rgba(255,255,255,.9));
}
.quick-card.is-disabled { pointer-events: none; opacity: .70; filter: saturate(.8); }

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
.section {
  padding: 56px 0;
  scroll-margin-top: 90px;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.section p { margin: 0 0 16px; }
.section-head { max-width: 760px; margin-bottom: 20px; }
.section-head .hero-actions { margin-top: 14px; }

/* Section variants */
.section--paper {
  background: rgba(255,255,255,.60);
  border-top: 1px solid rgba(24,19,10,.05);
  border-bottom: 1px solid rgba(24,19,10,.05);
}
.section--warm { background: var(--bg-2); }
.section--green { background: rgba(52,64,38,.07); }
.section--contrast {
  background: linear-gradient(145deg, rgba(52,64,38,.90), rgba(124,38,38,.82));
  color: rgba(255,255,255,.92);
}
.section--contrast h2,
.section--contrast .muted { color: rgba(255,255,255,.88); }
.section--contrast .card { background: rgba(255,255,255,.88); color: var(--text); }

/* ═══════════════════════════════════════
   SPLIT
═══════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* ═══════════════════════════════════════
   CARDS
═══════════════════════════════════════ */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(24,19,10,.07);
  transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.card-title { font-weight: 700; margin-bottom: 10px; font-size: 15px; }
.card-big {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
}
.card-note { margin-top: 8px; }
.card-media { padding: 0; overflow: hidden; }
.card-media .card-photo picture { display: block; line-height: 0; }
.card-media .card-photo img {
  width: 100%; height: 220px;
  display: block; object-fit: cover;
}
.card-media .card-body { padding: 20px; }

.media-placeholder {
  background: var(--bg-2);
  border-radius: var(--radius);
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  border: 1px dashed rgba(24,19,10,.12);
}
.media-title { font-weight: 700; margin-bottom: 8px; font-size: 15px; }

/* Micro interactions générale */
.btn, .card, .quick-card, .hero-photo, .hero-float-card {
  will-change: transform;
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.section-gallery { padding-top: 8px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(24,19,10,.08);
  box-shadow: var(--shadow-1);
}
.gallery-item picture { display: block; line-height: 0; }
.gallery-item img {
  display: block;
  width: 100%; height: 260px; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) img { height: 320px; }
.gallery-item:nth-child(4) img { height: 320px; }

/* ═══════════════════════════════════════
   CALLOUTS
═══════════════════════════════════════ */
.callout {
  border-radius: var(--radius);
  padding: 16px 18px;
  border: 1px solid rgba(24,19,10,.08);
  background: rgba(255,255,255,.70);
  margin: 10px 0 14px;
}
.callout--opening {
  border-color: rgba(124,38,38,.22);
  background: var(--red-soft);
}
.callout-label {
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--muted);
  margin-bottom: 6px;
  font-size: 13px;
}
.callout-date {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--red);
  line-height: 1.1;
}
.callout-sub { margin-top: 8px; color: var(--muted); font-size: 14px; }

/* ═══════════════════════════════════════
   RESERVE CARD
═══════════════════════════════════════ */
.reserve-card { background: rgba(255,255,255,.80); }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0 16px;
}
.contact-card {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(24,19,10,.08);
}
.contact-label {
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 15px;
}
.contact-value { text-decoration: underline; text-underline-offset: 3px; font-size: 14px; }

/* ═══════════════════════════════════════
   NOTICE
═══════════════════════════════════════ */
.notice {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(24,19,10,.10);
  background: rgba(255,255,255,.65);
  margin: 10px 0 12px;
  font-size: 14px;
}
.notice--ok { border-color: rgba(52,64,38,.35); background: rgba(52,64,38,.07); }
.notice--err { border-color: rgba(124,38,38,.35); background: rgba(124,38,38,.06); }

/* ═══════════════════════════════════════
   FORM
═══════════════════════════════════════ */
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(24,19,10,.08);
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}
.form input, .form textarea {
  font: inherit;
  font-size: 15px;
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(24,19,10,.12);
  background: rgba(255,255,255,.88);
  outline: none;
  transition: border-color var(--dur-1), box-shadow var(--dur-1);
}
.form input:focus, .form textarea:focus {
  border-color: rgba(124,38,38,.55);
  box-shadow: 0 0 0 4px var(--ring);
  background: #fff;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ═══════════════════════════════════════
   MAP
═══════════════════════════════════════ */
.map-card .map-title { font-weight: 700; margin-bottom: 12px; font-size: 15px; }
.map-embed {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(24,19,10,.08);
}
.map-embed iframe {
  width: 100%; height: 280px;
  border: 0; display: block;
  filter: saturate(.85);
}
.map-btn { margin-top: 12px; width: 100%; }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta { background: linear-gradient(180deg, rgba(24,19,10,.03), transparent); }
.cta-inner { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* ═══════════════════════════════════════
   CONTENT / POSTS
═══════════════════════════════════════ */
.content-wrap { padding: 48px 0; }
.page-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 44px);
  margin: 0 0 14px;
  letter-spacing: -.02em;
}
.content :is(p, ul, ol) { max-width: 70ch; }
.content a { text-decoration: underline; text-underline-offset: 3px; }
.post-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24,19,10,.07);
  padding: 20px;
  margin-bottom: 14px;
}
.post-title { margin: 0 0 6px; font-family: var(--font-display); font-size: 24px; }
.post-title a { text-decoration: none; }
.posts-nav { margin-top: 18px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,.88);
  padding: 48px 0 32px;
  border-top: none;
}
.site-footer a { color: rgba(255,255,255,.88); transition: opacity var(--dur-1); }
.site-footer a:hover { opacity: .75; }

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-meta {
  color: rgba(255,255,255,.80);
  line-height: 1.6;
  max-width: 380px;
}
.footer-brand {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}
.site-footer address { font-style: normal; margin: 0 0 10px; font-size: 14px; }
.footer-link { text-decoration: underline; text-underline-offset: 3px; }
.footer-title {
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(255,255,255,.60);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-menu { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; margin: 0; }
.footer-menu a { font-size: 14px; }
.footer-pdf { margin-top: 10px; }
.footer-pdf a { text-decoration: underline; text-underline-offset: 3px; font-size: 14px; }
.footer-copy { margin-top: 18px; color: rgba(255,255,255,.45); font-size: 13px; }

/* ═══════════════════════════════════════
   MENU CARTE (page-carte)
═══════════════════════════════════════ */
.menu-layout { display: block; }
.menu-layout--pdf-only .menu-side { width: 100%; }
.menu-layout--pdf-only .pdf-card { max-width: 900px; margin: 0 auto; }
.menu-layout--pdf-only .pdf-frame iframe { height: 780px; }

.menu-accordion details {
  border: 1px solid rgba(24,19,10,.10);
  background: rgba(255,255,255,.50);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-1);
  margin: 12px 0;
}
.menu-accordion summary {
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  list-style: none;
}
.menu-accordion summary::-webkit-details-marker { display: none; }
.menu-accordion summary::after { content: '＋'; font-weight: 800; color: var(--red); }
.menu-accordion details[open] summary::after { content: '－'; }

.menu-list {
  list-style: none;
  padding: 6px 0 2px;
  margin: 8px 0 0;
  display: grid;
  gap: 10px;
}
.menu-item {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(24,19,10,.07);
}
.menu-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.menu-item-title { font-weight: 700; }
.menu-item-price { font-weight: 800; color: var(--red); white-space: nowrap; }
.menu-item-desc { margin-top: 4px; font-size: 0.9rem; color: var(--muted); }
.menu-sep { height: 1px; background: rgba(24,19,10,.10); border-radius: 1px; margin: 6px 0; }
.menu-note {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--green-light);
  border: 1px solid rgba(52,64,38,.18);
  color: rgba(24,19,10,.80);
  display: grid; gap: 4px;
}
.menu-note-title { font-weight: 800; color: var(--green-mid); }
.menu-note-text { font-size: 0.9rem; color: var(--muted); }
.menu-side { display: grid; gap: 14px; }

.pdf-card .muted.small { font-size: 0.9rem; }
.pdf-frame {
  margin-top: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(24,19,10,.10);
  background: #fff;
}
.pdf-frame iframe { width: 100%; height: 560px; border: 0; display: block; }
.footer-pdf { margin-top: 10px; }

/* ── Carte (page-carte) ── */
.carte-page { padding: 48px 0 80px; }

.carte-header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(24,19,10,.10);
}
.carte-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -.02em;
  margin: 0 0 8px;
  color: var(--text);
  font-weight: 600;
}
.carte-subtitle {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  font-style: italic;
}

.carte-menus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.carte-menu-box {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--dur-1), transform var(--dur-1) var(--ease-out);
}
.carte-menu-box:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.menu-terroir { border-color: var(--red); }
.menu-pitchoun { border-color: var(--green-mid); }
.carte-menu-box h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(24,19,10,.08);
}
.menu-terroir h2 { color: var(--red); }
.menu-pitchoun h2 { color: var(--green-mid); }

.menu-section { margin-bottom: 14px; }
.menu-section h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin: 0 0 6px;
  font-weight: 700;
}
.menu-section ul {
  margin: 0;
  padding-left: 16px;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.7;
}
.menu-section ul li { margin-bottom: 2px; }
.ou { font-size: .78rem; color: var(--muted); font-style: italic; }
.menu-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  text-align: right;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(24,19,10,.08);
}
.menu-pitchoun .menu-price { color: var(--green-mid); }

.carte-section { margin-bottom: 52px; }
.carte-category-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.carte-category-sub {
  font-size: .85rem;
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
}
.carte-accompagnements {
  font-size: .88rem;
  color: var(--muted);
  margin: 0 0 20px;
  padding: 10px 14px;
  background: rgba(24,19,10,.04);
  border-radius: var(--radius-sm, 8px);
}
.carte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.carte-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 18px;
  border: 1px solid rgba(24,19,10,.07);
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}
.carte-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.carte-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;
}
.carte-item-name { font-weight: 700; font-size: .95rem; line-height: 1.3; }
.carte-item-price { font-weight: 800; font-size: 1.05rem; color: var(--red); white-space: nowrap; flex-shrink: 0; }
.carte-item-desc { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.5; }
.carte-desserts {
  text-align: center;
  padding: 36px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24,19,10,.07);
  box-shadow: var(--shadow-1);
}
.carte-desserts .carte-category-title { justify-content: center; margin-bottom: 10px; }
.carte-desserts .carte-item-desc { font-size: 1rem; font-style: italic; }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
html.js .reveal, html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}
html.js .reveal.is-visible, html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--dur-2) var(--ease-out) var(--delay, 0ms),
    transform var(--dur-2) var(--ease-out) var(--delay, 0ms);
}
html.js .reveal.reveal--scale { transform: scale(.98); }
html.js .reveal.reveal--scale.is-visible { transform: scale(1); }
html.js .reveal.reveal--left { transform: translateX(-18px); }
html.js .reveal.reveal--left.is-visible { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .card, .quick-card, .hero-photo, .hero-float-card, .site-header, .menu a { transition: none !important; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-float-card { position: relative; right: auto; bottom: auto; margin-top: 14px; width: 100%; }
  .hero-copy { text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .kicker { width: 100%; justify-content: center; flex-wrap: wrap; }
  .kicker .badge { margin-left: 0; }
  .mini-grid { max-width: 540px; margin-left: auto; margin-right: auto; }
  .mini-item { flex-direction: column; align-items: center; text-align: center; }
  .mini-text { align-items: center; }
  .float-row { flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
  .hero-float-card { text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img, .gallery-item:nth-child(1) img, .gallery-item:nth-child(4) img { height: 240px; }
  .quick-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .carte-menus-row { grid-template-columns: 1fr; }
  .carte-grid { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; justify-content: center; }
  .brand { flex: 1 1 220px; justify-content: center; }
  .site-nav { width: 100%; order: 3; }
  .menu { justify-content: center; flex-wrap: wrap; }
  .header-ctas { width: 100%; justify-content: center; order: 4; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .header-ctas .btn { padding: 10px 14px; }
  .brand-logo, .custom-logo-link img { height: 54px; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 24px; }
  .pdf-frame iframe { height: 500px; }
  .menu-layout--pdf-only .pdf-frame iframe { height: 500px; }
  .header-ctas .btn { width: 100%; }
  .menu { gap: 10px; }
}

/* Anti-débordement */
.site-header, .site-main, .site-footer { overflow-x: hidden; }

/* ── Menu HTML ─────────────────────────────────────────── */
.menu-html {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}
.menu-section { margin-bottom: 2rem; }
.menu-cat {
  font-family: var(--font-display, serif);
  font-size: 1.25rem;
  color: var(--red, #8b2e2e);
  border-bottom: 1px solid var(--border, #e0d5c5);
  padding-bottom: 6px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.menu-cat em { font-size: 0.8rem; font-style: italic; font-weight: 400; text-transform: none; display: block; color: var(--muted); }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  margin-bottom: 1rem;
}
.menu-name { font-weight: 700; font-size: 0.95rem; grid-column: 1; }
.menu-price { font-weight: 800; color: var(--red, #8b2e2e); white-space: nowrap; grid-column: 2; grid-row: 1; }
.menu-desc { font-size: 0.85rem; color: var(--muted); grid-column: 1 / -1; margin-top: 2px; font-style: italic; }
.menu-note { font-size: 0.85rem; color: var(--muted); font-style: italic; margin-bottom: 1rem; }
.menu-formule {
  background: var(--paper, #faf7f2);
  border: 1px solid var(--border, #e0d5c5);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.menu-formule-price {
  font-family: var(--font-display, serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red, #8b2e2e);
  margin: 0.25rem 0 0.75rem;
}
.menu-formule-detail { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 1024px) {
  .menu-html { grid-template-columns: 1fr 1fr; }
  .menu-col--menus { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .menu-col--menus .menu-section { margin-bottom: 0; }
}
@media (max-width: 640px) {
  .menu-html { grid-template-columns: 1fr; }
  .menu-col--menus { grid-column: 1; display: block; }
}
