/* Famille Géorgienne — feuille de style principale
   Palette validée par le propriétaire (2026-09-11) : ivoire clair, vert pistache, jaune chaud.
   Contrastes vérifiés WCAG AA (voir scripts/contrast-check.js). Remplace l'ancienne palette bordeaux. */

:root {
  --color-bg: #fffcf2;              /* fond ivoire très clair */
  --color-surface: #ffffff;         /* cartes, formulaires */
  --color-surface-alt: #dce8bf;     /* sections vert pistache */
  --color-accent: #b7ce87;          /* accents pistache (badges, bordures décoratives) */

  --color-primary: #35502b;         /* vert foncé : titres, liens, nav active — remplace le bordeaux */
  --color-primary-dark: #2e4320;    /* hover des liens/texte, fond du footer, focus */
  --color-primary-contrast: #fffcf2;/* texte clair sur fond vert foncé (footer) */

  --color-button-bg: #f3cf55;       /* jaune chaud : boutons principaux */
  --color-button-bg-hover: #e6be3c; /* jaune plus soutenu au survol */
  --color-button-text: #263326;     /* texte sombre sur les boutons jaunes */

  --color-accent-text: #8c6d1a;     /* or foncé : prix, étoiles remplies (lisible, pas le jaune bouton) */

  --color-text: #263326;            /* texte principal, vert très sombre presque noir */
  --color-text-muted: #4b5940;      /* texte secondaire */
  --color-border: #c9d9a8;          /* séparateurs décoratifs légers */
  --color-border-strong: #6b8a47;   /* bordures de champs/boutons (contraste UI ≥ 3:1) */
  --color-focus: #2e4320;           /* anneau de focus, visible sur tous les fonds du site */

  --color-success-bg: #e9f3da;
  --color-success-text: #2e4320;
  --color-error-bg: #fbeaea;
  --color-error-text: #7a1f1f;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 6px 24px rgba(38, 51, 38, 0.10);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", "Noto Sans Georgian",
    "Noto Sans JP", "Noto Sans SC", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Georgia, "Noto Serif Georgian", "PT Serif", "Times New Roman", serif;
  --max-width: 1120px;
}



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

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

img { max-width: 100%; display: block; }

a { color: var(--color-primary); }
a:hover { color: var(--color-primary-dark); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary-dark);
  color: var(--color-primary-contrast);
  padding: 0.75em 1.2em;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--color-text);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.main-nav a[aria-current="page"] {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.main-nav a.btn-reserve {
  background: var(--color-button-bg);
  color: var(--color-button-text);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border-bottom: none;
  font-weight: 700;
}
.main-nav a.btn-reserve:hover { background: var(--color-button-bg-hover); color: var(--color-button-text); }

.lang-switcher {
  position: relative;
}
.lang-switcher summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-text);
}
.lang-switcher summary::-webkit-details-marker { display: none; }
.lang-switcher[open] summary { background: var(--color-surface-alt); }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 0.15rem;
  min-width: 220px;
}
.lang-menu a {
  display: block;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.9rem;
}
.lang-menu a[aria-current="true"] { background: var(--color-surface-alt); color: var(--color-primary); font-weight: 700; }
.lang-menu a:hover { background: var(--color-surface-alt); }

@media (max-width: 780px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 68px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.9rem;
  }
  .main-nav.open { display: flex; }
  .lang-switcher { order: 99; }
}

/* Bandeau brouillon */
.draft-badge {
  background: var(--color-accent);
  color: var(--color-text);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--color-surface-alt), var(--color-bg));
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin: 0 0 0.6rem;
  color: var(--color-primary);
}
.hero p.subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-muted);
  max-width: 42em;
  margin: 0 auto 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-button-bg);
  color: var(--color-button-text);
  border-color: var(--color-button-bg);
}
.btn-primary:hover { background: var(--color-button-bg-hover); border-color: var(--color-button-bg-hover); }
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border-strong);
}
.btn-secondary:hover { background: var(--color-surface-alt); border-color: var(--color-primary); }

section { padding: 3.5rem 0; }
section.alt { background: var(--color-surface-alt); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--color-primary);
  margin: 0 0 0.5rem;
  text-align: center;
}
.section-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 40em;
  margin: 0 auto 2.5rem;
}

/* Story */
.story-grid {
  display: grid;
  gap: 1.4rem;
  max-width: 52em;
  margin: 0 auto;
}
.story-grid p { font-size: 1.05rem; }

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.location-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.location-card .tag {
  display: inline-block;
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  color: var(--color-accent-text);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
.location-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: var(--color-primary);
}
.location-card .addr { font-weight: 600; margin: 0.2rem 0; }
.location-card .hours { color: var(--color-text-muted); margin: 0.2rem 0 0.8rem; }
.location-card .hours.unverified { color: var(--color-accent-text); font-weight: 600; }
.location-card .desc { margin-bottom: 1.1rem; }
.location-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.location-actions .btn { padding: 0.55rem 1.1rem; font-size: 0.9rem; }

/* Dishes */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.dish-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
}
.dish-card h3 { font-family: var(--font-display); margin: 0 0 0.4rem; color: var(--color-primary); }
.dish-card p { color: var(--color-text-muted); margin: 0; font-size: 0.95rem; }
.dishes-cta { text-align: center; margin-top: 2rem; }

/* Carte page */
.menu-notice {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  color: var(--color-text);
  max-width: 46em;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}
.menu-category { max-width: 46em; margin: 0 auto 2.5rem; }
.menu-category h2 {
  font-family: var(--font-display);
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0.4rem;
  font-size: 1.4rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--color-border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info h3 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.menu-item-info p { margin: 0; color: var(--color-text-muted); font-size: 0.9rem; }
.menu-item-price {
  white-space: nowrap;
  font-weight: 700;
  color: var(--color-accent-text);
  align-self: center;
}
.menu-full-note {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 40em;
  margin: 2rem auto 0;
  font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.9rem;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

/* Reviews */
.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
}
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.review-card .stars { color: var(--color-accent-text); font-size: 1.1rem; letter-spacing: 0.1em; }
.review-card .who { font-weight: 700; margin-top: 0.4rem; color: var(--color-primary); }
.review-card .where { color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
.review-card .comment { margin: 0; }
.reviews-empty { text-align: center; color: var(--color-text-muted); }

.review-form, .reservation-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  max-width: 42em;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-weight: 700; margin-bottom: 0.35rem; font-size: 0.92rem; color: var(--color-text); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg);
  color: var(--color-text);
  font: inherit;
}
.form-row textarea { min-height: 6rem; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-grid-2 { grid-template-columns: 1fr; } }

.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.15rem; }
.star-rating input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-rating label {
  font-size: 1.7rem;
  color: var(--color-border-strong);
  cursor: pointer;
  margin: 0;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--color-accent-text); }
.star-rating input:focus-visible + label { outline: 2px solid var(--color-focus); }

.form-notice {
  background: var(--color-surface-alt);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}
.form-feedback { border-radius: var(--radius-sm); padding: 0.8rem 1rem; margin-top: 1rem; font-weight: 600; display: none; }
.form-feedback.success { display: flex; align-items: center; gap: 0.5rem; background: var(--color-success-bg); color: var(--color-success-text); border: 1px solid var(--color-success-text); }
.form-feedback.success::before { content: "✓"; font-weight: 900; }
.form-feedback.error { display: flex; align-items: center; gap: 0.5rem; background: var(--color-error-bg); color: var(--color-error-text); border: 1px solid var(--color-error-text); }
.form-feedback.error::before { content: "⚠"; font-weight: 900; }

/* Social */
.social-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  background: var(--color-surface);
}
.social-links a:hover { background: var(--color-surface-alt); }

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: var(--color-primary-contrast);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.site-footer a { color: var(--color-primary-contrast); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h3 { font-family: var(--font-display); margin-top: 0; }
.footer-grid address { font-style: normal; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,252,242,0.3);
  padding-top: 1.2rem;
  font-size: 0.85rem;
  opacity: 0.9;
  text-align: center;
}

/* Alternative reservation box */
.alt-box {
  max-width: 42em;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--color-text-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ---------- Carte dynamique (menu-list, alimenté par /api/menu) ---------- */
.menu-list { max-width: 46em; margin: 0 auto; }

/* ---------- Pages "Découvrir" (éditoriales, longues, défilement naturel) ---------- */
.discover-page { padding-top: 0.5rem; }
.discover-content { max-width: 42em; margin: 0 auto 3rem; }
.discover-content h2 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-top: 2.4rem;
  font-size: 1.4rem;
  scroll-margin-top: 5.5rem;
}
.discover-content h2:first-child { margin-top: 0.5rem; }
.discover-content p { line-height: 1.75; margin: 0 0 1.2rem; }
.discover-content blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  background: var(--color-surface-alt);
  border-left: 4px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.discover-content blockquote p { margin: 0; }
.discover-content blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--color-text-muted);
}
.discover-content figure { margin: 1.5rem 0; }
.discover-content figure img { border-radius: var(--radius); width: 100%; height: auto; display: block; }
.discover-content figcaption { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 0.4rem; }
.discover-sources { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.discover-sources h2 { margin-top: 0; font-size: 1.05rem; }
.discover-sources ul { padding-left: 1.2rem; }
.discover-sources li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.discover-fallback-notice {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ---------- Réservation : karaoké + bandeau garantie ---------- */
.form-row-checkbox label { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.form-row-checkbox input[type="checkbox"] { width: auto; }
.guarantee-banner {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  background: var(--color-surface-alt);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  margin: -0.4rem 0 1.2rem;
}

/* ---------- Page garantie (client, mode démo) ---------- */
.demo-mode-badge {
  background: #fbeaea;
  color: var(--color-error-text);
  border: 1px solid var(--color-error-text);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.terms-text {
  white-space: pre-wrap;
  background: var(--color-surface-alt);
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.9rem;
  max-height: 16rem;
  overflow-y: auto;
  margin-bottom: 1rem;
}

/* ---------- Choix de l'établissement (réservation) ---------- */
.restaurant-choice { border: 0; padding: 0; margin: 0 0 1.2rem; }
.restaurant-choice legend { font-weight: 700; font-size: 0.92rem; margin-bottom: 0.3rem; padding: 0; }
.restaurant-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.9rem; margin-top: 0.6rem; }
.restaurant-choice-card {
  display: block;
  border: 2px solid var(--color-border-strong);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  cursor: pointer;
  background: var(--color-surface);
  transition: border-color .15s, box-shadow .15s;
}
.restaurant-choice-card input[type="radio"] { position: absolute; opacity: 0; width: 1px; height: 1px; }
.restaurant-choice-card .rcc-body { display: block; }
.restaurant-choice-card strong { display: block; margin: 0.3rem 0 0.2rem; font-family: var(--font-display); font-size: 1.05rem; }
.restaurant-choice-card .rcc-addr { display: block; font-size: 0.9rem; color: var(--color-text-muted); }
.restaurant-choice-card .rcc-hours { display: block; font-size: 0.85rem; color: var(--color-text-muted); margin-top: 0.2rem; }
.restaurant-choice-card .rcc-hours.unverified { font-style: italic; }
.restaurant-choice-card:hover { border-color: var(--color-primary); }
.restaurant-choice-card.selected { border-color: var(--color-primary-dark); box-shadow: 0 0 0 2px var(--color-primary-dark) inset; background: var(--color-surface-alt); }
.restaurant-choice-card:has(input:focus-visible) { outline: 3px solid var(--color-focus); outline-offset: 2px; }
.restaurant-summary {
  background: var(--color-surface-alt);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
}
.muted-hint { color: var(--color-text-muted); font-size: 0.85rem; }
.reservation-tracking {
  margin-top: 1rem;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.reservation-tracking p { margin: 0.4rem 0; }

:root { color-scheme:light; }
.hero {padding:0;background:var(--color-bg);text-align:left;}
.hero-layout {display:grid;grid-template-columns:1fr 1.12fr;min-height:600px;align-items:stretch;max-width:1600px;margin:auto;}
.hero-copy {padding:clamp(2rem,6vw,6rem);align-self:center;}
.hero h1 {font-size:clamp(2.6rem,5.2vw,5.5rem);line-height:1.04;letter-spacing:-.04em;max-width:10ch;margin:0 0 1.4rem;}
.hero .subtitle {font-size:1.16rem;line-height:1.7;margin:1.5rem 0;max-width:32rem;}
.hero-ctas {justify-content:flex-start;}
.hero-photo {width:100%;height:100%;min-height:440px;object-fit:cover;display:block;}
.hero-kicker {font-size:.85rem;letter-spacing:.16em;text-transform:uppercase;margin-bottom:1.5rem;}
section {scroll-margin-top:90px;}
.gallery-grid {grid-template-columns:repeat(2,minmax(0,1fr));gap:1.2rem;}
.gallery-grid img {width:100%;height:auto;aspect-ratio:1.6;object-fit:cover;}
.media-gallery {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.5rem;}
.media-gallery figure {margin:0;min-width:0;}
.media-gallery video,.media-gallery iframe,.media-gallery img {width:100%;aspect-ratio:16/9;object-fit:cover;border:0;border-radius:var(--radius);background:var(--color-surface-alt);}
.media-gallery figcaption {padding:.7rem 0;font-size:.95rem;}
.video-consent {padding:2rem;background:var(--color-surface-alt);border-radius:var(--radius);min-height:200px;display:grid;place-content:center;gap:1rem;}
@media(max-width:780px){.hero-layout{grid-template-columns:1fr;}.hero-photo{min-height:0;max-height:400px;aspect-ratio:1.4;}.hero-copy{padding:2.5rem 1.25rem;}.hero h1{max-width:12ch;}.media-gallery{grid-template-columns:1fr;}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}*{animation:none!important;transition:none!important}}
@media(max-width:780px){
 .main-nav{max-height:calc(100dvh - 100px);overflow-y:auto;}
 .main-nav .lang-menu{position:static;min-width:0;width:100%;margin-top:.5rem;box-shadow:none;grid-template-columns:1fr;}
 .main-nav .lang-switcher{width:100%;}
 .main-nav .lang-menu a{padding:.7rem;}
}

.header-language{margin-left:auto}.header-language select{max-width:145px;padding:.55rem;border:1px solid var(--color-border-strong);border-radius:8px;background:var(--color-bg);color:var(--color-text);font:inherit;font-size:.9rem}.site-header>.container{gap:.65rem}.main-nav>.lang-switcher:not(.discover-switcher){display:none}@media(max-width:520px){.brand{font-size:1.02rem}.header-language select{max-width:112px}.site-header>.container{padding-left:.8rem;padding-right:.8rem}}

[hidden]{display:none!important}

/* Editorial composition: immersive photography, generous rhythm, approved palette. */
.hero{position:relative;background:#182219;color:#fffdf4;isolation:isolate;text-align:center}
.hero-layout{position:relative;display:grid;grid-template-columns:1fr;min-height:680px;max-width:none;align-items:center}
.hero-photo{position:absolute;inset:0;width:100%;height:100%;max-height:none;min-height:0;object-fit:cover;z-index:-2}
.hero-layout:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(14,24,17,.76),rgba(14,24,17,.59),rgba(14,24,17,.72));z-index:-1}
.hero-copy{padding:90px 24px;max-width:1080px;margin:auto;width:100%}
.hero-kicker{color:#f3cf55;font-size:.75rem;letter-spacing:.22em;font-weight:600}
.hero h1{font-size:clamp(2.8rem,5.8vw,5.4rem);font-weight:400;line-height:1.12;letter-spacing:-.035em;max-width:none;color:#fffdf4;margin:24px auto}
.hero h1 em{color:#f3cf55;font-weight:400}
.hero .subtitle{color:#fffdf4;max-width:650px;margin:28px auto;font-size:1.13rem;line-height:1.8}
.hero-ctas{justify-content:center;gap:14px;margin-top:32px}
.btn{border-radius:min(var(--radius),5px);padding:.9rem 1.5rem;letter-spacing:.025em}
.hero .btn-secondary{border-color:#fffdf4;color:#fffdf4;background:transparent}
.hero .btn-secondary:hover{background:#fffdf4;color:#263326}
.hero :focus-visible{outline-color:#fffdf4}
.hero-addresses{position:relative;display:flex;justify-content:center;gap:60px;padding:20px 24px;border-top:1px solid #ffffff30;background:#182219;font-size:.82rem;letter-spacing:.03em}
.hero-addresses a{color:#fffdf4;text-decoration:none}.hero-addresses span{color:#f3cf55;margin-left:15px}
main>section:not(.hero){padding-top:100px;padding-bottom:100px}
.section-title{font-size:clamp(2rem,3.7vw,3.3rem);font-weight:400;letter-spacing:-.025em;line-height:1.2;margin-bottom:30px}
.story-layout{display:grid;grid-template-columns:1.05fr 1fr;gap:90px;align-items:center}
.story-photos{position:relative;padding:0 45px 80px 0}
.story-photos img:first-child{width:100%;height:430px;object-fit:cover;border-radius:2px}
.story-photos img:last-child{position:absolute;bottom:0;right:0;width:64%;height:230px;object-fit:cover;border:8px solid var(--color-bg)}
.story-copy .section-title{text-align:left}.story-grid{display:block}.story-grid p{font-size:1rem;line-height:1.9;margin-bottom:20px}
.editorial-kicker{text-transform:uppercase;letter-spacing:.18em;font-size:.7rem;font-weight:700;color:var(--color-text-muted)}
.editorial-link{display:inline-block;margin-top:16px;padding-bottom:7px;border-bottom:1px solid currentColor;text-decoration:none;font-weight:600}.editorial-link span{margin-left:20px}
.addresses-section{background:var(--color-surface-alt)}
.locations-grid{gap:40px}.location-card{background:transparent;border:0;border-top:1px solid var(--color-border-strong);border-radius:0;box-shadow:none;padding:32px 0 0}
.location-card h3{font-size:2rem;font-weight:400}.location-card .tag{background:transparent;padding:0;letter-spacing:.15em;text-transform:uppercase;font-size:.72rem}
.signature-section .dishes-grid{gap:0;border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border)}
.dish-card{background:transparent;box-shadow:none;border:0;border-radius:0;padding:32px 26px;border-right:1px solid var(--color-border)}.dish-card:last-child{border-right:0}.dish-card h3{font-weight:400;font-size:1.6rem}
.gallery-section{background:var(--color-surface-alt)}
.gallery-category{margin-bottom:2.5rem}.gallery-category:last-child{margin-bottom:0}.gallery-category-title{font-size:1.05rem;font-weight:600;letter-spacing:.02em;margin:0 0 1rem}.gallery-more-btn{display:block;margin:1.1rem auto 0}
.gallery-grid{gap:20px;align-items:start}.gallery-grid img{border-radius:2px;aspect-ratio:1.25;object-fit:cover}.gallery-grid img:nth-child(even){margin-top:55px}
.review-form{border-radius:5px;box-shadow:none}.site-footer{padding-top:65px;padding-bottom:35px}
@media(max-width:780px){
 .hero-layout{min-height:620px}.hero-copy{padding:64px 22px}.hero h1{font-size:clamp(2.5rem,8vw,4rem);max-width:none}.hero .subtitle{font-size:1rem}.hero-kicker{font-size:.65rem;line-height:1.8}.hero-photo{aspect-ratio:auto}
 .hero-addresses{gap:12px;flex-direction:column;padding:18px}
 main>section:not(.hero){padding-top:64px;padding-bottom:64px}
 .story-layout{grid-template-columns:1fr;gap:40px}.story-photos{max-width:540px;margin:auto;width:100%;padding-bottom:65px}.story-photos img:first-child{height:340px}.story-photos img:last-child{height:180px}
 .locations-grid{gap:38px}.dish-card{border-right:0;border-bottom:1px solid var(--color-border);padding:25px 0}.dish-card:last-child{border-bottom:0}
 .gallery-grid{gap:12px}.gallery-grid img:nth-child(even){margin-top:28px}
}
.hero p.subtitle{color:#fffdf4}
.wine-editorial{background:var(--color-surface-alt)}.wine-layout{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}.wine-layout .section-title{text-align:left}.wine-layout p{line-height:1.9}.wine-layout>img{width:100%;height:540px;object-fit:cover;border-radius:2px}.discover-cover{width:100%;height:440px;object-fit:cover;margin:0 auto 50px;max-width:900px}@media(max-width:780px){.wine-layout{grid-template-columns:1fr;gap:32px}.wine-layout>img{height:400px}.discover-cover{height:320px}}

/* Deeper pistachio and ochre, requested by owner. */
:root{--color-bg:#eee5ce;--color-surface:#f5efdf;--color-surface-alt:#a3b47b;--color-button-bg:#d5ac38;--color-text:#1e2b20;--color-text-muted:#384631;--color-border:#899b64;--color-primary-dark:#1e3022}
.site-header{background:var(--color-bg)}.brand{display:flex;align-items:center;gap:12px}.brand img{width:46px;height:46px;flex-shrink:0}.hero-kicker,.hero h1 em{color:#e7bf4c}.media-gallery{grid-template-columns:1fr}.media-gallery figure{max-width:960px;width:100%;margin:auto}.media-gallery video{max-height:620px;object-fit:contain}.video-feature{padding-top:75px;padding-bottom:75px}
@media(max-width:520px){.brand img{width:32px;height:32px}.brand{gap:6px}.brand{font-size:.88rem}}

.menu-dish-photo{width:120px;height:100px;object-fit:cover;border-radius:6px;flex-shrink:0}.menu-item{gap:20px;align-items:center}.menu-item-info{flex:1;min-width:0}@media(max-width:520px){.menu-dish-photo{width:85px;height:85px}.menu-item{gap:12px}.menu-item-price{white-space:nowrap}}

.official-menu-frame{width:100%;height:85vh;min-height:620px;border:1px solid var(--color-border);border-radius:8px;background:#fff}.official-menu-link{text-align:center;margin-bottom:22px}

/* Discover: clear vertical reading order on every screen. */
.discover-switcher .lang-menu{grid-template-columns:1fr;min-width:260px;padding:8px;gap:0;background:var(--color-bg)}
.discover-switcher .lang-menu a{padding:14px 16px;border-radius:0;white-space:normal;border-bottom:1px solid var(--color-border);line-height:1.45}
.discover-switcher .lang-menu a:last-child{border-bottom:0}
.discover-switcher .lang-menu a:hover,.discover-switcher .lang-menu a[aria-current="page"]{background:var(--color-surface-alt)}
@media(max-width:780px){.discover-switcher .lang-menu{min-width:0;width:100%}}

/* Clearly separated drink lists. */
.menu-drink-category { margin-bottom: 2.5rem; padding: 0 1.25rem 1rem; border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; }
.menu-drink-category > h2 { margin: 0 -1.25rem .5rem; padding: 1rem 1.25rem; background: #a3b47b; color: #1e2b20; border-bottom: 3px solid #d5ac38; font-size: 1.5rem; }
.menu-drink-category .menu-item { padding: .9rem 0; }

.menu-drinks-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.5rem;max-width:70rem;margin:2rem auto;align-items:start}.menu-drinks-grid .menu-drink-category{width:100%;box-sizing:border-box;margin:0;min-width:0}.menu-item-price small{font-weight:400;color:var(--color-text-muted);margin-right:.75rem}.menu-item-price>div+div{margin-top:.4rem}@media(max-width:760px){.menu-drinks-grid{grid-template-columns:1fr}}

/* Printed drinks menu: warm paper, dark ink, calligraphic headings. */
.menu-paper{
  --menu-ink:#302c24;
  color:var(--menu-ink);padding:3rem 2.5rem;gap:2rem 3rem;
  background-color:#d8cfb7;
  background-image:radial-gradient(ellipse at 20% 30%,#f3ecd366,transparent 45%),radial-gradient(ellipse at 85% 75%,#8f80662b,transparent 55%),repeating-linear-gradient(12deg,#ffffff08 0px,#ffffff08 1px,#4a3e2d06 2px,transparent 4px);
  border:10px solid #292b25;border-radius:5px;
  box-shadow:inset 0 0 45px #67553840,0 3px 14px #0002;
}
.menu-paper .menu-drink-category{border:0;border-radius:0;background:none;padding:0;overflow:visible;color:var(--menu-ink)}
.menu-paper .menu-drink-category>h2{font-family:"Apple Chancery","URW Chancery L","Brush Script MT",cursive;font-style:italic;font-weight:400;font-size:clamp(2rem,3.7vw,3.4rem);line-height:1.15;color:var(--menu-ink);background:none;border:0;padding:0;margin:0 0 1.3rem;text-align:center;overflow-wrap:anywhere}
.menu-paper .menu-item{padding:.55rem 0;border:0;gap:1rem;align-items:start}
.menu-paper .menu-item-info h3{font-family:Baskerville,"Palatino Linotype",Georgia,serif;font-size:1.35rem;font-style:italic;font-weight:600;line-height:1.3;color:var(--menu-ink)}
.menu-paper .menu-item-info p{font-family:Baskerville,Georgia,serif;font-size:1rem;font-style:italic;color:var(--menu-ink)}
.menu-paper .menu-item-price{font-family:Baskerville,Georgia,serif;font-size:1.05rem;font-weight:400;color:var(--menu-ink)}
.menu-paper .menu-item-price small{color:var(--menu-ink);font-size:.85rem}
.menu-paper [data-category="vin_jarre_rouge"]{grid-column:1;grid-row:1}
.menu-paper [data-category="vin_jarre_blanc"]{grid-column:2;grid-row:1}
.menu-paper [data-category="vin_rouge"]{grid-column:1;grid-row:2}
.menu-paper [data-category="vin_blanc"]{grid-column:2;grid-row:2}
.menu-paper [data-category="vin_rose"]{grid-column:1;grid-row:3}
.menu-paper-bonne [data-category="cocktails"]{grid-column:1;grid-row:4}
.menu-paper-bonne [data-category="bieres"]{grid-column:2;grid-row:4}
.menu-paper-bonne [data-category="cocktails_signature"]{grid-column:1;grid-row:5}
.menu-paper-bonne [data-category="spiritueux"]{grid-column:2;grid-row:5}
.menu-paper-bonne [data-category="cafes"]{grid-column:1;grid-row:6}
.menu-paper-bonne [data-category="boissons"]{grid-column:2;grid-row:6}
html[lang="ka"] .menu-paper h2{font-family:"Noto Serif Georgian",Georgia,serif;font-size:1.8rem}
@media(max-width:760px){.menu-paper{padding:2rem 1.1rem;border-width:5px;gap:2rem}.menu-paper .menu-drink-category{grid-column:auto;grid-row:auto}.menu-paper .menu-item-info h3{font-size:1.2rem}}

/* Site-wide typography matching the approved printed menu. */
:root {
  --font-body: Baskerville, "Palatino Linotype", "Noto Serif Georgian", "Noto Serif JP", "Noto Serif SC", Georgia, serif;
  --font-display: "Apple Chancery", "URW Chancery L", "Brush Script MT", Baskerville, Georgia, cursive;
}
html:lang(ka),html:lang(ru),html:lang(ja),html:lang(zh) {
  --font-display: "Noto Serif Georgian", "Noto Serif", "Noto Serif JP", "Noto Serif SC", Georgia, serif;
}
body { font-family: var(--font-body); }
h1,h2,h3,h4,.section-title,.hero h1,.discover-hero h1 {
  font-family: var(--font-display); font-style: italic; font-weight: 400; line-height: 1.3;
}
p,li { line-height: 1.7; }
.menu-item-info h3 { font-family: var(--font-body); font-style: italic; font-weight: 600; }
nav,.btn,button,input,select,textarea,label { font-family: var(--font-body); }
input,select,textarea { font-size: max(1rem,16px); font-style: normal; }

#gallery-grid>a{display:block;overflow:hidden;border-radius:10px}#gallery-grid>a img{width:100%;height:100%;object-fit:cover;transition:transform .25s}#gallery-grid>a:hover img{transform:scale(1.025)}#gallery-grid>a:focus-visible{outline:3px solid #d5ac38;outline-offset:4px}

.story-photos:empty{display:none}.story-layout:has(.story-photos:empty),.wine-layout:not(:has(img)){grid-template-columns:1fr}

/* Larger reading size and a lighter drinks menu. */
html{font-size:18px}
.menu-paper{background:#faf6ec;background-image:none;border:0;border-radius:8px;box-shadow:none;padding:2.5rem 2rem;gap:2.75rem 3rem}
.menu-paper .menu-drink-category>h2{font-family:var(--font-display);font-size:clamp(1.8rem,3vw,2.5rem);text-align:left;line-height:1.3;margin:0 0 1.2rem;padding-bottom:.65rem;border-bottom:1px solid #b9aa82;overflow-wrap:normal}
.menu-paper .menu-item{padding:.8rem 0;border-bottom:1px solid #e3dccb;gap:1.2rem}
.menu-paper .menu-item:last-child{border-bottom:0}
.menu-paper .menu-item-info h3{font-family:var(--font-body);font-style:normal;font-size:1.15rem;font-weight:600;line-height:1.45}
.menu-paper .menu-item-info p{font-style:normal;font-size:1rem;line-height:1.65}
.menu-paper .menu-item-price{font-size:1.05rem;font-variant-numeric:tabular-nums;line-height:1.5;text-align:right;flex-shrink:0}
.menu-paper .menu-item-price>div{display:grid;grid-template-columns:3.2rem 4.7rem;gap:.5rem;align-items:baseline}
.menu-paper .menu-item-price small{font-size:.9rem;margin:0;text-align:left}
@media(max-width:900px){.menu-paper{grid-template-columns:1fr;padding:1.5rem;gap:2.25rem}.menu-paper .menu-drink-category{grid-column:auto;grid-row:auto}}
@media(max-width:520px){.menu-paper{padding:1rem .75rem}.menu-paper .menu-item{gap:.65rem}.menu-paper .menu-item-info h3{font-size:1.05rem}.menu-paper .menu-item-price>div{grid-template-columns:2.7rem 4.1rem;gap:.25rem}.menu-paper .menu-item-price{font-size:1rem}.brand{font-size:1rem}.hero-kicker{font-size:.8rem}}

.story-photo-single{padding:0}.story-photo-single img:first-child:last-child{position:static;width:100%;height:460px;object-fit:cover;margin:0;transform:none}@media(max-width:780px){.story-photo-single img:first-child:last-child{height:360px}}

.menu-photo-open{position:relative;border:0;background:none;padding:0;cursor:zoom-in;flex-shrink:0;border-radius:6px}.menu-photo-open .menu-dish-photo{display:block}.photo-zoom-mark{position:absolute;right:4px;bottom:4px;background:#fff;color:#222;border-radius:50%;width:24px;height:24px;line-height:24px}.menu-photo-open:focus-visible{outline:3px solid #916e16;outline-offset:4px}.dish-photo-dialog{border:0;border-radius:10px;background:#f5efdf;padding:16px;max-width:94vw;max-height:94vh;text-align:center}.dish-photo-dialog::backdrop{background:#000c}.dish-photo-dialog img{display:block;max-width:85vw;max-height:75vh;width:auto;height:auto;object-fit:contain;margin:auto}.dish-photo-dialog p{margin:.5rem 0 0}.photo-close{display:block;margin:0 0 12px auto;cursor:pointer;padding:9px 18px;font-size:1rem}

/* Larger dish previews, with room for names and prices on phones. */
.menu-photo-open .menu-dish-photo{width:180px;height:150px}
@media(max-width:600px){.menu-photo-open .menu-dish-photo{width:120px;height:110px}}
@media(max-width:400px){.menu-photo-open .menu-dish-photo{width:100px;height:100px}}

/* Dedicated karaoke booking window */
#open-karaoke { margin: 1.25rem 0; }
#karaoke-dialog { width:min(720px,94vw); max-height:90vh; overflow:auto; padding:clamp(20px,4vw,40px); border:1px solid #a3b47b; border-radius:18px; background:#faf6ec; color:#1e2b20; }
#karaoke-dialog::backdrop { background:rgba(15,25,15,.65); }
#close-karaoke { float:right; font-size:32px; background:transparent; border:0; cursor:pointer; }
#karaoke-dialog .reservation-form { margin-top:1rem; }

.karaoke-supra-photo { display:block; width:100%; height:clamp(240px,42vw,360px); object-fit:cover; object-position:center 65%; border-radius:12px; margin:1.25rem 0; }
.karaoke-package { padding:1.25rem; border:1px solid #a3b47b; border-radius:12px; background:#eee5ce; margin-bottom:1.5rem; }
.karaoke-package h3 { margin-top:0; }
.karaoke-package li { margin:.5rem 0; }

/* Illustrated discovery stories */
.discover-page { background:radial-gradient(ellipse at top left,rgba(163,180,123,.27),transparent 60%),linear-gradient(135deg,#f4eddc,#e9dec5); padding:3rem 0 5rem; }
.discover-page > .container { max-width:1060px; }
.discover-page > .container > .section-title { text-align:center; margin-bottom:2rem; }
.discover-photo { margin:0 0 2rem; }
.discover-photo img { width:100%; height:clamp(260px,45vw,490px); object-fit:cover; object-position:center; display:block; border-radius:18px; box-shadow:0 14px 35px rgba(30,43,32,.13); }
.discover-photo figcaption { font-size:.75rem; margin-top:.5rem; text-align:right; }
.discover-content { background:#faf7ef; border:1px solid rgba(125,141,86,.22); border-radius:18px; padding:clamp(24px,5vw,64px); box-shadow:0 12px 35px rgba(30,43,32,.05); }
.discover-content h2 { margin-top:2.2rem; color:#42512e; }
.discover-content h2:first-child { margin-top:0; }
.discover-content p { line-height:1.85; max-width:70ch; }

/* Header controls and typography. Layout is defined once below. */
.header-socials{display:flex;align-items:center;gap:6px}
.header-socials a{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;color:var(--color-text)}
.header-socials a:hover{background:#a3b47b}
.header-socials svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8}
.site-header .brand{font-size:0}
.site-header .main-nav,.site-header .main-nav a,.site-header summary,.site-header select,.site-header .nav-toggle{font-family:Arial,'Noto Sans Georgian',sans-serif;font-style:normal;font-weight:500}

/* Compact karaoke reservation, without photography */
#karaoke-dialog { width:min(680px,94vw); padding:clamp(22px,4vw,38px); border:0; box-shadow:0 24px 80px #0004; }
#karaoke-dialog h2 { font-size:clamp(1.5rem,4vw,2rem); padding-right:32px; margin:0 0 .6rem; }
#karaoke-dialog > p { font-size:.9rem; opacity:.8; margin-bottom:1.5rem; }
#close-karaoke { position:absolute; right:16px; top:12px; width:44px; height:44px; border-radius:50%; }
#close-karaoke:hover { background:#e5e7d5; }
#karaoke-dialog .karaoke-package { background:#263c2d; color:#faf6ec; border:0; padding:24px; border-radius:14px; }
#karaoke-dialog .karaoke-price { font:600 1.65rem/1.3 Arial,sans-serif; color:#ecd18b; margin:0 0 14px; }
#karaoke-dialog .karaoke-package h3 { color:inherit; font-size:1.15rem; margin:0 0 16px; }
#karaoke-dialog .karaoke-package ul { padding:0; margin:0; list-style:none; }
#karaoke-dialog .karaoke-package li { line-height:1.6; margin:8px 0; }
#karaoke-dialog .karaoke-package li span { color:#c1d39b; margin-right:6px; }
#karaoke-dialog #restaurant-summary,#karaoke-dialog .guarantee-banner { display:none; }
#karaoke-dialog .reservation-form { border:0; padding:0; background:transparent; box-shadow:none; }
#karaoke-dialog input,#karaoke-dialog textarea { background:#fffdf8; border:1px solid #c9cbbb; border-radius:8px; padding:12px; }
#karaoke-dialog button[type=submit] { width:100%; margin-top:12px; border-radius:8px; }

/* Ordered gallery: full-width categories and aligned photo rows. */
#gallery-grid.gallery-categories { display:block; }
.gallery-category { width:100%; margin-bottom:3rem; }
.gallery-category-title { font-size:1.35rem; padding-bottom:.7rem; border-bottom:1px solid #a3b47b; margin-bottom:1.2rem; }
.gallery-category > .gallery-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; align-items:stretch; }
.gallery-category .gallery-photo { display:block; aspect-ratio:4/5; overflow:hidden; border-radius:10px; background:#e6dfcd; }
.gallery-category .gallery-photo[hidden] { display:none; }
.gallery-category .gallery-photo img,.gallery-category .gallery-photo img:nth-child(even) { display:block; width:100%; height:100%; aspect-ratio:auto; margin:0; object-fit:cover; border-radius:0; transition:transform .2s; }
.gallery-category .gallery-photo:hover img { transform:scale(1.025); }
@media(max-width:800px) { .gallery-category > .gallery-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; } }
@media(max-width:420px) { .gallery-category > .gallery-grid { gap:8px; } }

.booking-options { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin:2rem 0; }
.booking-option,#open-karaoke.booking-option { margin:0; padding:28px 24px; border:1px solid #a3b47b; border-radius:14px; background:#faf6ec; color:#263c2d; text-align:left; display:flex; flex-direction:column; gap:14px; font:inherit; cursor:pointer; }
.booking-option[hidden] { display:none!important; }
.booking-option strong { font-size:1.2rem; }
.booking-option > span { font-size:.95rem; }
.booking-option .booking-option-action { margin-top:auto; padding-top:18px; font-weight:600; }
.booking-option:hover { background:#e4e9d5; border-color:#526a40; }
#karaoke-dialog[data-mode="standard"] .guarantee-banner { display:block; }
#karaoke-dialog .karaoke-package[hidden],#reservation-form[hidden] { display:none; }
@media(max-width:760px) { .booking-options { grid-template-columns:1fr; } }

.gallery-creator-credit { margin:-.5rem 0 1.25rem; color:#42512e; line-height:1.6; }

/* ---------- Boutique de vin ---------- */
.wine-shop-closed { padding: 2rem 0; }
.wine-shop-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: start; }
@media (max-width: 860px) { .wine-shop-layout { grid-template-columns: 1fr; } }
.wine-catalog { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.4rem; }
.wine-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.wine-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 0.4rem; }
.wine-card h3 { margin: 0; font-size: 1.05rem; }
.wine-meta { margin: 0; font-size: 0.85rem; color: var(--color-text-muted); }
.wine-desc { margin: 0.2rem 0 0; font-size: 0.88rem; color: var(--color-text); }
.wine-price { margin: 0.4rem 0 0; font-weight: 700; color: var(--color-accent-text); }
.wine-outofstock { margin: 0.4rem 0 0; color: var(--color-error-text); font-weight: 600; font-size: 0.85rem; }
.wine-add { display: flex; gap: 0.5rem; margin-top: 0.4rem; }
.wine-qty-input { width: 4rem; padding: 0.4rem; border-radius: var(--radius-sm); border: 1px solid var(--color-border-strong); background: var(--color-bg); color: var(--color-text); }
.wine-cart { background: var(--color-surface-alt); border-radius: var(--radius); padding: 1.2rem; position: sticky; top: 1rem; }
.wine-cart h2 { margin: 0 0 0.8rem; font-size: 1.1rem; }
.wine-cart-line { display: grid; grid-template-columns: 1fr auto auto auto; gap: 0.5rem; align-items: center; margin-bottom: 0.6rem; font-size: 0.88rem; }
.wine-cart-qty { width: 3.5rem; padding: 0.3rem; border-radius: var(--radius-sm); border: 1px solid var(--color-border-strong); background: var(--color-bg); color: var(--color-text); }
.wine-cart-row { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.92rem; }
.wine-cart-total { font-weight: 700; border-top: 1px solid var(--color-border); margin-top: 0.4rem; padding-top: 0.6rem; }
.wine-checkout { max-width: 620px; }
.wine-success { max-width: 620px; text-align: center; background: var(--color-success-bg); color: var(--color-success-text); border-radius: var(--radius); padding: 2rem; }
.wine-tracking { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--color-border); max-width: 620px; }
.wine-tracking form { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.wine-tracking input[type="text"] { flex: 1; min-width: 220px; padding: 0.6rem; border-radius: var(--radius-sm); border: 1px solid var(--color-border-strong); background: var(--color-bg); color: var(--color-text); }

/* Restaurant stories and owner-managed updates. */
.restaurant-updates-page{padding-block:3rem 5rem;max-width:1100px}
.restaurant-updates-page h1{font-size:clamp(1.8rem,4vw,3rem);overflow-wrap:anywhere}
.updates-intro{font-size:1.15rem;max-width:65ch}
.restaurant-about-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.5rem;margin:2rem 0 3rem}
.restaurant-about-card,.restaurant-update{padding:clamp(1.2rem,3vw,2.5rem);border:1px solid var(--color-border);border-radius:16px;background:var(--color-surface)}
.updates-list{display:grid;gap:2rem;margin:1.5rem 0}.update-meta{font-size:.9rem;color:var(--color-primary)}
.update-body{white-space:pre-wrap;overflow-wrap:anywhere}.restaurant-update h2{overflow-wrap:anywhere}
.update-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin-top:1.5rem}
.update-gallery img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:8px}.update-gallery a:only-child{grid-column:1/-1}
@media(max-width:600px){.restaurant-about-grid,.update-gallery{grid-template-columns:1fr}}


.restaurant-section-links{display:flex;flex-wrap:wrap;gap:1rem;margin:2rem 0}.restaurant-section-links a{padding:1rem;border:1px solid var(--color-border);border-radius:10px;background:var(--color-surface);text-decoration:none}.restaurant-section{scroll-margin-top:180px;margin:3rem 0;padding:clamp(1rem,3vw,2rem);border:1px solid var(--color-border);border-radius:16px;background:var(--color-surface)}.restaurant-section+.restaurant-section{border-top:5px solid var(--color-primary)}.restaurant-section-heading h2{font-size:clamp(1.4rem,3vw,2.2rem);overflow-wrap:anywhere}.restaurant-updates-feed{margin-top:2rem;padding-top:1rem;border-top:1px solid var(--color-border)}

/* Owner layout: brand left, language above socials right, menu below. */
.site-header>.container{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);gap:4px 20px;max-width:none;width:100%;padding:12px clamp(12px,3vw,48px)}
.site-header .brand{grid-column:1;grid-row:1/3;justify-self:start;align-self:center;margin:0}
.site-header .brand img{width:62px;height:62px}
.site-header .header-language{grid-column:3;grid-row:1;justify-self:end;margin:0}
.site-header .header-socials{grid-column:3;grid-row:2;justify-self:end;margin:0}
.site-header .main-nav{grid-column:1/-1;grid-row:3;justify-content:center;flex-wrap:wrap;margin:0;padding-bottom:0}
.main-nav>.discover-switcher{order:0}
@media(max-width:780px){
 .site-header>.container{gap:4px 8px;padding-block:8px}
 .site-header .brand img{width:48px;height:48px}
 .site-header .nav-toggle{grid-column:2;grid-row:1/3;justify-self:center;align-self:center;margin:0}
 .site-header .header-language select{max-width:105px}
 .site-header .header-socials{gap:0}
 .site-header .header-socials a{width:32px;height:32px}
 .site-header .main-nav{top:100%;max-height:calc(100dvh - 150px);flex-wrap:nowrap;justify-content:flex-start;padding:1rem 1.25rem 1.5rem}
}

/* Launch review: readable language control and comfortable footer tap targets. */
@media(max-width:780px){.site-header .header-language select{width:130px;min-width:130px;max-width:130px}.site-footer a{display:inline-flex;align-items:center;min-height:44px;padding-block:.35rem}}
