/* Le Bette — maquette. Palette tirée de l'identité existante (Recoleta, sauge, pêche, crème, encre)
   avec Fraunces (axe SOFT) en écho à Recoleta. Le motif d'arche, présent dans la salle et sur le site actuel,
   structure les images et les blocs. */
:root {
  --cream: #efe6e2; --paper: #f8f3ef; --white: #fffdfb;
  --ink: #231f20; --ink-2: #4b4547; --muted: #7a7275;
  --sage: #aec0a4; --sage-2: #cbd6c4; --sage-deep: #6f8467; --sage-ink: #465a3f;
  --peach: #deaf9d; --peach-deep: #c48c74;
  --line: rgba(35, 31, 32, 0.14);
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --radius: 18px; --shadow: 0 18px 50px -24px rgba(35, 31, 32, 0.35);
  --wrap: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { margin: 0; font-family: var(--body); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--cream); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-variation-settings: "SOFT" 100, "opsz" 72; font-weight: 500; line-height: 1.05; margin: 0 0 18px; letter-spacing: -0.01em; text-wrap: balance; }
h1 { font-size: clamp(42px, 6.2vw, 78px); }
h2 { font-size: clamp(32px, 4.2vw, 52px); }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--sage-ink); }
p { margin: 0 0 16px; }
.wrap { width: min(var(--wrap), 100% - 40px); margin: 0 auto; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-ink); margin: 0 0 14px; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--sage-deep); outline-offset: 3px; }
.stars { color: var(--peach-deep); letter-spacing: 1px; }
.link { font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--peach); padding-bottom: 2px; }
.link:hover { border-color: var(--ink); }

/* ── Boutons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; text-decoration: none; white-space: nowrap; border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: #3a3435; }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--lg { padding: 16px 30px; font-size: 16px; }

/* ── Bandeau d'annonce & promo (contenu géré par le restaurateur) ── */
.announce { background: var(--ink); color: var(--cream); font-size: 14px; font-weight: 600; text-align: center; padding: 9px 0; }
.announce[hidden] { display: none; }
.announce a { color: var(--sage); text-decoration: none; font-weight: 700; margin-left: 6px; }
.promo { padding: 0 0 56px; }
.promo[hidden] { display: none; }
.promo__card { display: flex; align-items: center; justify-content: space-between; gap: 28px; background: var(--sage-2); border: 1px solid rgba(70, 90, 63, 0.18); border-radius: var(--radius); padding: 28px 32px; }
.promo__card h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
.promo__card p { margin: 0; color: var(--ink-2); max-width: 64ch; }
.hours__exc { list-style: none; margin: 4px 0 10px; padding: 0; font-size: 14px; }
.hours__exc li { padding: 6px 0; border-bottom: 1px dotted var(--line); color: var(--peach-deep); font-weight: 600; }
.hours__exc li span { color: var(--ink-2); font-weight: 400; }
.foot__admin { color: rgba(239, 230, 226, 0.45); text-decoration: none; font-size: 12px; }
.foot__admin:hover { color: var(--cream); }

/* ── Header ── */
.top { position: sticky; top: 0; z-index: 50; background: rgba(239, 230, 226, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.top__row { display: flex; align-items: center; gap: 28px; min-height: 76px; }
.brand { display: inline-flex; }
.brand img { height: 30px; width: auto; }
.nav { display: flex; gap: 22px; }
.nav a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.nav a:hover { color: var(--ink); }
.top__cta { margin-left: auto; display: flex; gap: 10px; }
.burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; margin: 6px 0; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Arches ── */
.arch { border-radius: 999px 999px var(--radius) var(--radius); overflow: hidden; }
.arch--photo { margin: 0; aspect-ratio: 3 / 4; box-shadow: var(--shadow); background: var(--sage-2); }
.arch--photo img { width: 100%; height: 100%; object-fit: cover; }
.arch--shadow { position: absolute; inset: 0; background: var(--sage); transform: translate(26px, 26px); z-index: 0; }
.arch--sm { aspect-ratio: 4 / 5; }

/* ── Hero ── */
.hero { padding: 56px 0 72px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); max-width: 54ch; margin: 22px 0 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero__proof { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.status { display: inline-flex; align-items: center; gap: 9px; margin: 0; font-size: 14px; font-weight: 700; padding: 8px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); }
.status .dot { width: 9px; height: 9px; border-radius: 50%; background: #4fa96b; box-shadow: 0 0 0 4px rgba(79, 169, 107, 0.2); }
.status.is-closed .dot { background: var(--peach-deep); box-shadow: 0 0 0 4px rgba(196, 140, 116, 0.25); }
.rating { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.rating strong { font-family: var(--display); font-size: 28px; line-height: 1; color: var(--ink); }
.hero__media { position: relative; padding: 0 26px 26px 0; }
.hero__media .arch--photo { position: relative; z-index: 1; }
.hero__caption { position: absolute; left: -12px; bottom: 60px; z-index: 2; margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; font-size: 13px; box-shadow: var(--shadow); }
.hero__caption span { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-ink); }

/* ── Valeurs ── */
.values { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 44px 0; }
.value svg { width: 40px; height: 40px; fill: none; stroke: var(--sage-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }
.value h3 { font-size: 22px; margin-bottom: 8px; }
.value p { color: var(--ink-2); font-size: 15px; margin: 0; }

/* ── Sections génériques ── */
section { scroll-margin-top: 80px; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.section-lede { color: var(--ink-2); font-size: 18px; }

/* ── Menus ── */
.menus { padding: 88px 0; }
.tabs { display: flex; gap: 8px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.tab { background: transparent; border: 0; border-bottom: 3px solid transparent; margin-bottom: -1px; padding: 12px 18px; font: inherit; font-weight: 700; font-size: 15px; color: var(--muted); cursor: pointer; }
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--ink); border-color: var(--ink); }
.menu-panel[hidden] { display: none; }
.carte { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 56px; }
.carte__h { font-size: 26px; margin: 26px 0 12px; display: flex; align-items: baseline; gap: 12px; }
.carte__h:first-child { margin-top: 0; }
.tag { font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-ink); background: var(--sage-2); padding: 3px 9px; border-radius: 999px; }
.dishes { list-style: none; margin: 0; padding: 0; }
.dishes li { display: flex; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px dotted var(--line); }
.dish { flex: 1; }
.dish b { font-weight: 700; }
.dish small { display: block; font-size: 14px; color: var(--ink-2); line-height: 1.45; }
.price { font-family: var(--display); font-variation-settings: "SOFT" 100; font-size: 20px; font-variant-numeric: tabular-nums; }
.carte__note { margin-top: 26px; font-size: 14px; color: var(--muted); }
.carte__intro { font-size: 18px; max-width: 64ch; margin-bottom: 28px; }
.formules { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.formule { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.formule h4 { margin-bottom: 8px; }
.formule p { font-size: 15px; color: var(--ink-2); margin: 0; }

/* ── Signature ── */
.signature { background: var(--ink); color: var(--cream); padding: 80px 0; }
.signature__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.signature .eyebrow { color: var(--sage); }
.signature blockquote { font-family: var(--display); font-variation-settings: "SOFT" 100, "opsz" 72; font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; font-style: italic; line-height: 1.15; margin: 0 0 20px; color: var(--white); text-wrap: balance; }
.signature p { color: rgba(239, 230, 226, 0.82); max-width: 56ch; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip { font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(239, 230, 226, 0.3); }
.chip b { color: var(--sage); margin-left: 4px; }
.chips__note { font-size: 12px; color: rgba(239, 230, 226, 0.55); margin: 10px 0 0; }

/* ── Split (boutique, terrasse) ── */
.split { padding: 88px 0; }
.split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev { background: var(--paper); }
.split__media { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__text p { color: var(--ink-2); max-width: 54ch; }
.ticks { list-style: none; padding: 0; margin: 0 0 26px; }
.ticks li { position: relative; padding-left: 28px; margin-bottom: 8px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2.5px solid var(--sage-deep); border-bottom: 2.5px solid var(--sage-deep); transform: rotate(-45deg); }

/* ── Club de vin ── */
.club { background: var(--sage); color: var(--ink); padding: 80px 0; position: relative; overflow: hidden; }
.club::before { content: ""; position: absolute; right: -120px; top: -80px; width: 460px; height: 620px; background: var(--sage-2); border-radius: 999px 999px 0 0; opacity: 0.7; pointer-events: none; }
.club__grid { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.club .eyebrow { color: var(--sage-ink); }
.club h2 em { color: var(--ink); }
.club p { max-width: 52ch; color: var(--ink-2); }
.dates { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.dates li { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 16px; background: var(--white); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow); }
.dates__d { font-family: var(--display); font-variation-settings: "SOFT" 100; font-size: 40px; line-height: 1; }
.dates__m { font-weight: 700; text-transform: capitalize; }
.dates__w { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-ink); }

/* ── Galerie ── */
.gallery { padding: 88px 0 72px; }
.masonry { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.masonry__item { display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 4; background: var(--sage-2); }
.masonry__item.is-wide { grid-column: span 2; aspect-ratio: 3 / 2; }
.masonry__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.masonry__item:hover img { transform: scale(1.03); }

/* ── Avis ── */
.reviews { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 72px 0; }
.reviews__head { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 48px; margin-bottom: 32px; }
.reviews__score { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-2); font-weight: 600; }
.reviews__score strong { font-family: var(--display); font-size: 56px; line-height: 1; color: var(--ink); }
.reviews__head p { font-family: var(--display); font-variation-settings: "SOFT" 100; font-style: italic; font-size: 24px; margin: 0; max-width: 34ch; }
.reviews__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.review { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.review p { font-size: 15px; margin-bottom: 14px; }
.review footer { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── Groupes ── */
.groups { padding: 88px 0; }
.groups__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.groups__text p { color: var(--ink-2); max-width: 54ch; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0; }
.facts div { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.facts dt { font-family: var(--display); font-variation-settings: "SOFT" 100; font-size: 44px; line-height: 1; margin-bottom: 6px; }
.facts dd { margin: 0; font-size: 14px; color: var(--ink-2); }

/* ── Contact ── */
.contact { background: var(--paper); border-top: 1px solid var(--line); padding: 88px 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.hours { width: 100%; border-collapse: collapse; margin: 18px 0 8px; font-size: 15px; }
.hours th { text-align: left; font-weight: 600; padding: 9px 0; width: 34%; border-bottom: 1px dotted var(--line); }
.hours td { padding: 9px 0; border-bottom: 1px dotted var(--line); font-variant-numeric: tabular-nums; }
.hours .closed { color: var(--muted); }
.hours .is-today th, .hours .is-today td { color: var(--sage-ink); font-weight: 700; }
.hours__note { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
address { font-style: normal; line-height: 1.6; margin-bottom: 20px; }
.contact__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 480px; background: var(--sage-2); }
.contact__map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; }

/* ── Pied ── */
.foot { background: var(--ink); color: rgba(239, 230, 226, 0.8); padding: 64px 0 96px; }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot__logo { height: 34px; width: auto; filter: invert(1) brightness(1.1); }
.foot__tag { margin: 16px 0 6px; font-size: 14px; max-width: 40ch; }
.foot__owners { font-size: 13px; color: rgba(239, 230, 226, 0.55); }
.foot h3 { color: var(--cream); font-size: 18px; margin-bottom: 8px; }
.foot a { color: var(--cream); }
.foot__social a { margin-right: 16px; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--sage); }
.foot__legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(239, 230, 226, 0.12); font-size: 13px; color: rgba(239, 230, 226, 0.55); }
.foot__credit a { color: var(--sage); text-decoration: none; }

/* ── Barre mobile & lightbox ── */
.mobilebar { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(35, 31, 32, 0.92); display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 12px; }
.lightbox__close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--cream); color: var(--ink); font-size: 26px; cursor: pointer; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--cream); padding: 8px 20px 16px; border-bottom: 1px solid var(--line); }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .top__cta { display: none; }
  .burger { display: block; }
  .hero__grid, .signature__grid, .split__grid, .club__grid, .groups__grid, .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split__media { order: -1; }
  .hero__media { max-width: 520px; }
  .values__grid { grid-template-columns: 1fr; gap: 24px; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { padding: 36px 0 56px; }
  .hero__caption { left: 8px; bottom: 40px; }
  .carte { grid-template-columns: 1fr; }
  .tabs { overflow-x: auto; }
  .reviews__grid, .facts, .foot__grid { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: 1fr 1fr; gap: 10px; }
  .menus, .split, .groups, .contact, .gallery, .club, .signature { padding: 60px 0; }
  .promo__card { flex-direction: column; align-items: flex-start; padding: 22px; }
  .mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 6px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: rgba(239, 230, 226, 0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
  .mobilebar a { display: flex; align-items: center; justify-content: center; padding: 12px 6px; border-radius: 12px; font-weight: 700; font-size: 14px; text-decoration: none; color: var(--ink); border: 1px solid var(--line); background: var(--white); }
  .mobilebar__main { background: var(--ink) !important; color: var(--cream) !important; border-color: var(--ink) !important; }
  .foot { padding-bottom: 120px; }
}

/* ── Réservation en ligne ── */
.bk { position: fixed; inset: 0; z-index: 80; background: rgba(35, 31, 32, 0.55); display: flex; align-items: flex-end; justify-content: center; padding: 0; }
.bk[hidden] { display: none; }
.bk__panel { position: relative; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; background: var(--white); border-radius: 22px 22px 0 0; padding: 28px 24px 32px; box-shadow: var(--shadow); }
.bk__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--cream); font-size: 24px; cursor: pointer; }
.bk h3 { font-size: 28px; margin: 4px 0 14px; }
.bk__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk label { display: block; font-size: 13px; font-weight: 700; margin: 8px 0; }
.bk__hint { font-weight: 400; color: var(--muted); }
.bk input, .bk select { display: block; width: 100%; margin-top: 5px; font: inherit; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); }
.bk__msg { font-size: 14px; color: var(--ink-2); margin: 14px 0 8px; min-height: 20px; }
.bk__slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 8px; }
.bk__slot { font: inherit; font-weight: 700; font-size: 14px; padding: 10px 6px; border: 1.5px solid var(--ink); border-radius: 10px; background: var(--white); color: var(--ink); cursor: pointer; }
.bk__slot:hover { background: var(--ink); color: var(--cream); }
.bk__slot:disabled { border-color: var(--line); color: var(--muted); text-decoration: line-through; cursor: default; background: var(--paper); }
.bk__foot { font-size: 13px; color: var(--muted); margin: 16px 0 0; }
.bk__back { background: transparent; border: 0; font: inherit; font-weight: 700; color: var(--sage-ink); cursor: pointer; padding: 0; margin-bottom: 8px; }
.bk__summary { font-weight: 700; color: var(--sage-ink); margin: 0 0 6px; }
.bk__consent { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 500 !important; font-size: 13px !important; color: var(--ink-2); }
.bk__consent input { width: 18px !important; height: 18px; margin: 2px 0 0 !important; }
.bk__error { color: #b4472f; font-size: 14px; font-weight: 600; min-height: 20px; margin: 6px 0 10px; }
@media (min-width: 640px) { .bk { align-items: center; padding: 24px; } .bk__panel { border-radius: 22px; padding: 32px; } }
