/* =================================================================
   LE JARDIN — Restaurant gastronomique
   Charte Flipster : ardoise #2d3b47 · crème · bleu acier · pêche
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Flipster palette */
  --ardoise:      #2d3b47;
  --ardoise-soft: #3a4b58;
  --ardoise-deep: #232e38;
  --creme:        #f4efe7;
  --creme-pure:   #faf7f1;
  --creme-card:   #fbf8f3;
  --acier:        #5a7d94;  /* bleu acier accent */
  --acier-dark:   #486678;
  --peche:        #e0a987;  /* touche pêche */
  --peche-soft:   #ecc7ad;
  --line:         #e3dccf;
  --line-soft:    #ece5d8;
  --ink:          #2d3b47;
  --ink-soft:     #5d6b75;
  --ink-faint:    #8a949c;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'Space Mono', monospace;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --shadow-sm: 0 2px 12px rgba(45,59,71,.06);
  --shadow-md: 0 18px 50px rgba(45,59,71,.12);
  --shadow-lg: 0 30px 80px rgba(35,46,56,.22);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--creme);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* ---- mono eyebrow label ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--acier);
  font-weight: 400;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--peche); }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,239,231,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, border-color .3s;
}
.nav-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 18px var(--gut);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .name {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  letter-spacing: .01em; color: var(--ardoise);
}
.brand .sub {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .32em;
  text-transform: uppercase; color: var(--acier); margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 14.5px; color: var(--ink-soft); position: relative;
  padding: 6px 0; transition: color .2s; letter-spacing: .01em;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--acier); transition: width .26s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ardoise); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 18px; }

/* language switch */
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 100px; overflow: hidden;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
}
.lang-switch button {
  border: none; background: transparent; color: var(--ink-faint);
  padding: 6px 12px; transition: all .2s;
}
.lang-switch button.active { background: var(--ardoise); color: var(--creme-pure); }

.btn {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: .02em; border: none; border-radius: 100px;
  padding: 12px 26px; transition: transform .2s, box-shadow .2s, background .2s;
  display: inline-flex; align-items: center; gap: 9px;
}
.btn-primary { background: var(--ardoise); color: var(--creme-pure); }
.btn-primary:hover { background: var(--ardoise-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--acier); color: #fff; }
.btn-accent:hover { background: var(--acier-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ardoise); border: 1px solid var(--ardoise); }
.btn-ghost:hover { background: var(--ardoise); color: var(--creme-pure); }
.btn-lg { padding: 16px 36px; font-size: 15px; }

.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ardoise); transition: .3s; }

/* =================================================================
   IMAGE PLACEHOLDERS (striped + mono caption)
   ================================================================= */
.ph {
  position: relative; overflow: hidden;
  background-color: #e9e2d5;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 9px,
    rgba(45,59,71,.045) 9px, rgba(45,59,71,.045) 10px);
  display: flex; align-items: center; justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-faint);
  padding: 6px 12px; background: rgba(251,248,243,.78);
  border: 1px solid var(--line); border-radius: 2px;
  text-align: center; max-width: 78%;
}
.ph.dark {
  background-color: #313e49;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 9px,
    rgba(255,255,255,.04) 9px, rgba(255,255,255,.04) 10px);
}
.ph.dark::after { color: rgba(244,239,231,.6); background: rgba(35,46,56,.6); border-color: rgba(255,255,255,.1); }
/* real photo fills the placeholder; striped caption stays behind as fallback */
.ph > img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; transition: opacity .6s ease;
}
.ph > img.loaded { opacity: 1; }

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; }
.hero-media { position: relative; height: clamp(560px, 86vh, 880px); }
.hero-media .ph { position: absolute; inset: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(35,46,56,.28) 0%, rgba(35,46,56,.16) 40%, rgba(35,46,56,.68) 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  max-width: var(--maxw); margin-inline: auto;
  padding: 0 var(--gut) clamp(56px, 8vh, 96px);
}
.hero-content .eyebrow { color: var(--peche); margin-bottom: 22px; }
.hero h1 {
  color: var(--creme-pure);
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 500; line-height: .96; max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--peche-soft); }
.hero-sub {
  color: rgba(244,239,231,.9); font-size: clamp(17px, 1.6vw, 21px);
  max-width: 48ch; margin-top: 26px; line-height: 1.6; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero-actions .btn-primary { background: var(--creme-pure); color: var(--ardoise); }
.hero-actions .btn-primary:hover { background: #fff; }
.hero-actions .btn-ghost { color: var(--creme-pure); border-color: rgba(244,239,231,.5); }
.hero-actions .btn-ghost:hover { background: var(--creme-pure); color: var(--ardoise); }

.hero-meta {
  position: absolute; top: 0; right: var(--gut); z-index: 3;
  display: flex; flex-direction: column; gap: 2px; align-items: flex-end;
  padding-top: 40px; color: rgba(244,239,231,.85);
}
.hero-meta .mono { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; }

/* =================================================================
   SECTIONS
   ================================================================= */
.section { padding: clamp(72px, 11vh, 140px) 0; }
.section.tight { padding: clamp(56px, 8vh, 96px) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vh, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(34px, 5vw, 62px); color: var(--ardoise); }
.section-head p { margin-top: 20px; color: var(--ink-soft); font-size: 18px; font-weight: 300; }

.bg-dark { background: var(--ardoise); color: var(--creme); }
.bg-dark h2, .bg-dark h3 { color: var(--creme-pure); }
.bg-cream { background: var(--creme-pure); }

/* ---- signature dishes ---- */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.dish-card { display: flex; flex-direction: column; }
.dish-card .ph { aspect-ratio: 4/5; border-radius: var(--radius); }
.dish-card .row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-top: 22px; }
.dish-card h3 { font-size: 27px; color: var(--ardoise); }
.dish-card .price { font-family: var(--mono); font-size: 15px; color: var(--acier); white-space: nowrap; }
.dish-card .desc { color: var(--ink-soft); font-size: 15px; margin-top: 8px; font-weight: 300; line-height: 1.55; }
.dish-card .tag { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--peche); margin-top: 12px; }

/* =================================================================
   AVIS GOOGLE (option live)
   ================================================================= */
.google-head { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 44px; }
.g-logo {
  font-family: var(--sans); font-weight: 500; font-size: 22px; letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: 2px;
}
.g-logo .b{color:#4285F4}.g-logo .r{color:#EA4335}.g-logo .y{color:#FBBC05}.g-logo .g{color:#34A853}
.g-score { display: flex; align-items: center; gap: 14px; }
.g-score .num { font-family: var(--serif); font-size: 52px; font-weight: 600; color: var(--ardoise); line-height: 1; }
.g-stars { color: #f5b32d; font-size: 19px; letter-spacing: 2px; }
.g-count { font-size: 14px; color: var(--ink-soft); }
.g-divider { width: 1px; height: 52px; background: var(--line); }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--creme-card); border: 1px solid var(--line);
  border-radius: 8px; padding: 28px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.review .top { display: flex; align-items: center; gap: 13px; }
.review .ava {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 500; color: #fff; font-size: 16px;
}
.review .who { line-height: 1.2; }
.review .who .nm { font-weight: 500; font-size: 15px; color: var(--ardoise); }
.review .who .dt { font-size: 12px; color: var(--ink-faint); margin-top: 2px; }
.review .stars { color: #f5b32d; font-size: 13px; letter-spacing: 1.5px; }
.review p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; font-weight: 300; }
.review .gicon { margin-left: auto; opacity: .6; font-size: 12px; }

/* =================================================================
   HISTOIRE TEASER / SPLIT
   ================================================================= */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.split.flip > .split-media { order: 2; }
.split-media .ph { aspect-ratio: 5/6; border-radius: var(--radius); }
.split-body h2 { font-size: clamp(32px, 4.4vw, 56px); color: var(--ardoise); }
.split-body .lead { font-size: 19px; margin: 24px 0; color: var(--ink-soft); font-weight: 300; }
.split-body p + p { margin-top: 16px; }
.quote-sig { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ardoise); margin-top: 28px; }
.quote-sig small { display: block; font-family: var(--mono); font-style: normal; font-size: 11px; letter-spacing: .2em; color: var(--acier); margin-top: 6px; text-transform: uppercase; }

/* ---- info strip ---- */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(244,239,231,.16); }
.strip .cell { padding: 44px 36px; border-right: 1px solid rgba(244,239,231,.16); }
.strip .cell:last-child { border-right: none; }
.strip .cell .eyebrow { color: var(--peche); margin-bottom: 14px; }
.strip .cell h3 { font-size: 24px; color: var(--creme-pure); margin-bottom: 8px; }
.strip .cell p { color: rgba(244,239,231,.72); font-size: 15px; font-weight: 300; }

/* =================================================================
   MENU INTERACTIF (option live)
   ================================================================= */
.menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.menu-tab {
  font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--line); color: var(--ink-soft);
  padding: 11px 22px; border-radius: 100px; transition: all .22s;
}
.menu-tab:hover { border-color: var(--acier); color: var(--acier); }
.menu-tab.active { background: var(--ardoise); border-color: var(--ardoise); color: var(--creme-pure); }

.menu-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; align-items: center; margin-bottom: 56px; }
.menu-filters .flabel { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-right: 4px; }
.filter-chip {
  font-size: 13px; background: var(--creme-card); border: 1px solid var(--line);
  color: var(--ink-soft); padding: 7px 15px; border-radius: 100px; transition: all .2s;
  display: inline-flex; align-items: center; gap: 7px;
}
.filter-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--peche); }
.filter-chip.active { background: var(--peche); border-color: var(--peche); color: var(--ardoise-deep); }
.filter-chip.active .dot { background: var(--ardoise-deep); }

.menu-list { max-width: 880px; margin-inline: auto; }
.menu-group { margin-bottom: 12px; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 24px;
  padding: 26px 4px; border-bottom: 1px solid var(--line);
  transition: opacity .3s, transform .3s;
}
.menu-item .mi-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.menu-item h3 { font-size: 25px; color: var(--ardoise); }
.menu-item .price { font-family: var(--mono); font-size: 17px; color: var(--acier); white-space: nowrap; align-self: center; }
.menu-item .desc { grid-column: 1 / -1; color: var(--ink-soft); font-size: 15px; font-weight: 300; max-width: 60ch; margin-top: 4px; }
.menu-item .allergens { display: flex; gap: 6px; margin-top: 10px; grid-column: 1/-1; }
.allergen-pill {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint); border: 1px solid var(--line); padding: 3px 8px; border-radius: 100px;
}
.menu-item .mi-flags { display: flex; gap: 8px; }
.mi-flag { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--peche); align-self: center; }
.menu-item.hidden { display: none; }
.menu-item.dim { opacity: .26; }

.menu-qr {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  background: var(--ardoise); border-radius: 12px; padding: 36px 40px;
  max-width: 880px; margin: 64px auto 0; color: var(--creme);
}
.qr-box {
  width: 104px; height: 104px; background: #fff; border-radius: 8px; padding: 10px; flex: none;
  display: grid; grid-template-columns: repeat(7,1fr); grid-template-rows: repeat(7,1fr); gap: 2px;
}
.qr-box i { background: var(--ardoise-deep); border-radius: 1px; }
.qr-box i.off { background: transparent; }
.menu-qr .qr-text h3 { color: var(--creme-pure); font-size: 26px; }
.menu-qr .qr-text p { color: rgba(244,239,231,.72); font-size: 14.5px; margin-top: 6px; font-weight: 300; }
.menu-qr .eyebrow { color: var(--peche); margin-bottom: 10px; }

/* =================================================================
   TIMELINE / EQUIPE / VALEURS  (Histoire)
   ================================================================= */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 52px 56px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .dot { position: absolute; left: 4px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--creme); border: 2px solid var(--acier); }
.tl-item:first-child .dot { background: var(--acier); }
.tl-item .yr { font-family: var(--mono); font-size: 13px; letter-spacing: .18em; color: var(--acier); }
.tl-item h3 { font-size: 28px; color: var(--ardoise); margin: 6px 0 10px; }
.tl-item p { color: var(--ink-soft); font-weight: 300; font-size: 15.5px; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.team-card .ph { aspect-ratio: 1/1; border-radius: var(--radius); }
.team-card .nm { font-family: var(--serif); font-size: 24px; color: var(--ardoise); margin-top: 18px; }
.team-card .ro { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--acier); margin-top: 4px; }
.team-card .bio { font-size: 14.5px; color: var(--ink-soft); margin-top: 12px; font-weight: 300; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.value-cell { background: var(--creme-pure); padding: 40px 34px; }
.value-cell .num { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; color: var(--peche); }
.value-cell h3 { font-size: 26px; color: var(--ardoise); margin: 14px 0 10px; }
.value-cell p { color: var(--ink-soft); font-size: 15px; font-weight: 300; }

/* =================================================================
   PLAN DE SALLE (option live) + FORM
   ================================================================= */
.reserve-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: start; }

.floorplan-wrap {
  background: var(--creme-pure); border: 1px solid var(--line); border-radius: 12px;
  padding: 28px; box-shadow: var(--shadow-sm);
}
.fp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.fp-head h3 { font-size: 22px; color: var(--ardoise); }
.fp-legend { display: flex; gap: 16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; color: var(--ink-soft); }
.fp-legend span { display: inline-flex; align-items: center; gap: 6px; }
.fp-legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.fp-legend i.free { background: #fff; border: 1px solid var(--acier); }
.fp-legend i.sel { background: var(--acier); }
.fp-legend i.taken { background: var(--line); border: 1px solid var(--line-soft); }

.floor {
  position: relative; aspect-ratio: 1/0.82; background:
    repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(45,59,71,.04) 31px, rgba(45,59,71,.04) 32px),
    repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(45,59,71,.04) 31px, rgba(45,59,71,.04) 32px),
    #fbf8f3;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.floor .feature {
  position: absolute; font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint); border: 1px dashed var(--line-soft);
  display: flex; align-items: center; justify-content: center; border-radius: 4px; text-align: center;
}
.table {
  position: absolute; border: 1.5px solid var(--acier); background: #fff;
  color: var(--acier); display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: all .18s; font-family: var(--mono); line-height: 1.1;
}
.table .tn { font-size: 12px; font-weight: 700; }
.table .seats { font-size: 8.5px; letter-spacing: .05em; opacity: .8; }
.table.round { border-radius: 50%; }
.table:not(.taken):hover { transform: scale(1.07); box-shadow: 0 6px 18px rgba(90,125,148,.3); z-index: 2; }
.table.selected { background: var(--acier); border-color: var(--acier); color: #fff; }
.table.taken { border-color: var(--line); background: var(--line); color: var(--ink-faint); cursor: not-allowed; }

.reserve-form { background: var(--ardoise); color: var(--creme); border-radius: 12px; padding: clamp(28px, 3vw, 40px); }
.reserve-form .eyebrow { color: var(--peche); }
.reserve-form h3 { color: var(--creme-pure); font-size: 30px; margin: 12px 0 8px; }
.reserve-form .sub { color: rgba(244,239,231,.7); font-size: 14.5px; margin-bottom: 26px; font-weight: 300; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--peche-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(244,239,231,.16);
  border-radius: 6px; padding: 13px 15px; color: var(--creme-pure); font-family: var(--sans); font-size: 15px;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--peche); background: rgba(255,255,255,.1); }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,239,231,.4); }
.field select option { color: var(--ardoise); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.selected-table-note {
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--peche-soft);
  background: rgba(224,169,135,.12); border: 1px solid rgba(224,169,135,.3);
  border-radius: 6px; padding: 12px 14px; margin-bottom: 18px;
}
.reserve-form .btn { width: 100%; justify-content: center; background: var(--peche); color: var(--ardoise-deep); margin-top: 6px; }
.reserve-form .btn:hover { background: var(--peche-soft); transform: translateY(-2px); }
.form-success {
  display: none; text-align: center; padding: 20px 0;
}
.form-success.show { display: block; }
.form-success .check { width: 60px; height: 60px; border-radius: 50%; background: var(--peche); color: var(--ardoise-deep); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 18px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: rgba(244,239,231,.8); font-weight: 300; font-size: 15px; }

/* =================================================================
   CHATBOT (option live: Agent IA)
   ================================================================= */
.chat-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%; border: none;
  background: var(--ardoise); color: var(--peche-soft);
  box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
}
.chat-fab:hover { transform: scale(1.06); background: var(--ardoise-deep); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-fab .badge { position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; background: var(--peche); color: var(--ardoise-deep); border-radius: 50%; font-family: var(--mono); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.chat-panel {
  position: fixed; bottom: 100px; right: 26px; z-index: 81;
  width: min(380px, calc(100vw - 36px)); height: min(560px, calc(100vh - 140px));
  background: var(--creme-pure); border-radius: 16px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(.98); pointer-events: none;
  transition: opacity .26s, transform .26s; border: 1px solid var(--line);
}
.chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-header { background: var(--ardoise); color: var(--creme-pure); padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.chat-header .ava { width: 38px; height: 38px; border-radius: 50%; background: var(--acier); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; font-weight: 600; color: #fff; flex: none; }
.chat-header .ci { line-height: 1.2; }
.chat-header .ci .t { font-family: var(--serif); font-size: 18px; }
.chat-header .ci .s { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--peche-soft); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.chat-header .ci .s i { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; display: inline-block; }
.chat-header .close { margin-left: auto; background: none; border: none; color: rgba(244,239,231,.7); font-size: 22px; line-height: 1; padding: 4px; }
.chat-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.msg { max-width: 82%; padding: 12px 15px; border-radius: 14px; font-size: 14.5px; line-height: 1.5; }
.msg.bot { background: var(--creme); border: 1px solid var(--line); border-bottom-left-radius: 3px; align-self: flex-start; color: var(--ink); }
.msg.user { background: var(--acier); color: #fff; border-bottom-right-radius: 3px; align-self: flex-end; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 14px; }
.quick-chip { font-size: 12.5px; background: transparent; border: 1px solid var(--acier); color: var(--acier); padding: 7px 13px; border-radius: 100px; transition: all .2s; }
.quick-chip:hover { background: var(--acier); color: #fff; }
.chat-input { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--line); background: var(--creme-card); }
.chat-input input { flex: 1; border: 1px solid var(--line); border-radius: 100px; padding: 11px 16px; font-family: var(--sans); font-size: 14px; background: #fff; }
.chat-input input:focus { outline: none; border-color: var(--acier); }
.chat-input button { width: 42px; height: 42px; border-radius: 50%; background: var(--ardoise); color: var(--peche-soft); border: none; flex: none; display: flex; align-items: center; justify-content: center; }
.chat-input button svg { width: 18px; height: 18px; }
.typing { display: flex; gap: 4px; padding: 14px 16px; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-faint); animation: bounce 1.2s infinite; }
.typing span:nth-child(2){animation-delay:.15s}.typing span:nth-child(3){animation-delay:.3s}
@keyframes bounce { 0%,60%,100%{transform:translateY(0);opacity:.4} 30%{transform:translateY(-6px);opacity:1} }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--ardoise-deep); color: var(--creme); padding: clamp(56px,8vh,84px) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(244,239,231,.12); }
.footer .brand .name { color: var(--creme-pure); }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--peche); margin-bottom: 18px; font-weight: 400; }
.footer-col p, .footer-col a { display: block; color: rgba(244,239,231,.72); font-size: 14.5px; font-weight: 300; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--peche-soft); }
.footer-brand-blurb { color: rgba(244,239,231,.62); font-size: 14.5px; font-weight: 300; margin-top: 16px; max-width: 30ch; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(244,239,231,.5); }
.footer-bottom .made { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: rgba(244,239,231,.55); }
.footer-bottom .made b { color: var(--peche-soft); font-weight: 700; }

/* =================================================================
   REVEAL ANIMATIONS
   ================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  body { font-size: 16px; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--creme-pure); border-bottom: 1px solid var(--line); padding: 8px var(--gut);
  }
  .nav.open .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
  .dish-grid, .reviews, .team-grid, .values-grid { grid-template-columns: 1fr; }
  .reviews { gap: 16px; }
  .split, .split.flip > .split-media { grid-template-columns: 1fr; order: 0; }
  .split.flip .split-media { order: 0; }
  .strip { grid-template-columns: 1fr; }
  .strip .cell { border-right: none; border-bottom: 1px solid rgba(244,239,231,.16); }
  .reserve-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .dish-grid { gap: 28px; }
}
