/* ==========================================================================
   La Bella Squadra — Ristorante Pizzeria — feuille de style principale
   Palette et typographies alignées sur le logo (encre, rouge et vert pinceau)
   ========================================================================== */

:root {
  --paper: #faf6ef;
  --paper-alt: #f3ece0;
  --card: #ffffff;
  --ink: #1c1917;
  --ink-soft: #57504a;
  --ink-faint: #8a8178;
  --line: rgba(28, 25, 23, 0.12);
  --red: #ee252b;
  --red-deep: #c41d24;
  --green: #36ae50;
  --green-deep: #1d7a36;
  --star: #e3a326;
  --night: #171412;
  --night-soft: #221e1b;
  --cream: #f3ece0;

  --font-script: 'Great Vibes', cursive;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.06), 0 4px 14px rgba(28, 25, 23, 0.06);
  --shadow: 0 2px 4px rgba(28, 25, 23, 0.04), 0 18px 40px rgba(28, 25, 23, 0.10);
  --container-width: 1180px;
  --header-h: 92px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-optical-sizing: auto;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--paper-alt);
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

/* Petits éléments typographiques
   ========================================================================== */

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.script {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--red);
  margin-bottom: 6px;
  letter-spacing: 0;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.section-header p {
  color: var(--ink-soft);
}

/* Trait tricolore */

.tricolore-rule {
  display: flex;
  width: 72px;
  height: 4px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 22px;
}

.tricolore-rule span { flex: 1; }
.tricolore-rule span:nth-child(1) { background: var(--green); }
.tricolore-rule span:nth-child(2) { background: #e9e2d6; }
.tricolore-rule span:nth-child(3) { background: var(--red); }

/* Boutons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red-deep);
  color: #fff;
  box-shadow: 0 6px 18px rgba(196, 29, 36, 0.28);
}

.btn-primary:hover {
  background: #a9161d;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
}

.btn-light:hover {
  background: #fff;
}

/* Bandeau promo + en-tête / navigation
   ========================================================================== */

.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.8rem;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

.topbar strong {
  color: #fff;
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(28, 25, 23, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.logo img {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  display: block;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(28, 25, 23, 0.05);
}

.nav-links a.active {
  color: var(--ink);
  background: rgba(28, 25, 23, 0.07);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 11px 20px;
  font-size: 0.9rem;
}

/* Sélecteur de langue (drapeaux) */
.lang-switch {
  position: relative;
}

.flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(28, 25, 23, 0.12);
  flex-shrink: 0;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2357504a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center / 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 32px 9px 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.lang-button:hover,
.lang-button[aria-expanded="true"] {
  border-color: rgba(28, 25, 23, 0.3);
  background-color: rgba(28, 25, 23, 0.04);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 200;
  min-width: 170px;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  animation: fadeIn 0.15s ease;
}

.lang-menu[hidden] {
  display: none;
}

.lang-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.lang-menu li:hover,
.lang-menu li:focus-visible {
  background: var(--paper-alt);
  color: var(--ink);
  outline: none;
}

.lang-menu li[aria-selected="true"] {
  color: var(--ink);
  font-weight: 600;
}

.lang-menu li[aria-selected="true"]::after {
  content: '✓';
  margin-left: auto;
  color: var(--green-deep);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 8px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero (accueil)
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 104px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--red-deep);
}

.hero-content .script {
  font-size: 2.8rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.hero-meta strong {
  color: var(--ink);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta .stars {
  color: var(--star);
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-plate {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #fff 0 58%, #fbf8f3 70%, #f1e9dc 100%);
  box-shadow: var(--shadow), inset 0 0 0 14px #fff, inset 0 0 0 15px var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-plate img {
  width: 80%;
  height: auto;
}

.promo-badge {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--red-deep);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-10deg);
  box-shadow: 0 12px 30px rgba(196, 29, 36, 0.35);
  outline: 2px dashed rgba(255, 255, 255, 0.55);
  outline-offset: -9px;
  flex-shrink: 0;
}

.promo-badge strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.promo-badge span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 88px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 4px;
}

.hero-visual .promo-badge {
  position: absolute;
  top: 2%;
  right: 4%;
}

.hero-brush {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  z-index: -1;
}

.hero-brush-green {
  width: 560px;
  left: -180px;
  bottom: -60px;
}

.hero-brush-red {
  width: 520px;
  right: -200px;
  top: -40px;
  transform: rotate(8deg);
}

/* En-tête des pages secondaires */

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

.page-hero .hero-brush-red {
  width: 480px;
  right: -140px;
  top: -80px;
}

.page-hero .hero-brush-green {
  width: 460px;
  left: -160px;
  bottom: -120px;
}

.breadcrumb {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  margin-bottom: 18px;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--ink);
}

/* Atouts
   ========================================================================== */

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

.highlight-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  font-size: 1.35rem;
}

.highlight-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(54, 174, 80, 0.12);
  color: var(--green-deep);
}

.highlight-card:nth-child(2) .highlight-icon {
  background: rgba(238, 37, 43, 0.1);
  color: var(--red-deep);
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
}

/* À propos
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-text h2 {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
}

.split-text p {
  color: var(--ink-soft);
}

.stats-card {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 48px 40px 40px;
  box-shadow: var(--shadow);
}

.stats-card-brush {
  position: absolute;
  width: 520px;
  right: -170px;
  top: -130px;
  opacity: 0.4;
  pointer-events: none;
}

.stats-card .script {
  position: relative;
  color: var(--cream);
  font-size: 2.6rem;
  margin-bottom: 30px;
}

.stats {
  position: relative;
  display: grid;
  gap: 0;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(243, 236, 224, 0.14);
}

.stat strong {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  min-width: 120px;
  color: #fff;
}

.stat:nth-child(1) strong { color: #5fcf78; }
.stat:nth-child(3) strong { color: #ff6a6f; }

.stat span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(243, 236, 224, 0.75);
}

/* Photos de plats (page carte)
   ========================================================================== */

.dish-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 72px;
}

.dish-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.dish-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.dish-card figcaption {
  padding: 18px 16px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

/* Carte (aperçu accueil & carte complète)
   ========================================================================== */

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 48px;
  padding: 5px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tabs.sticky {
  position: sticky;
  top: calc(var(--header-h) + 10px);
  z-index: 50;
}

.menu-tab {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-tab:hover {
  color: var(--ink);
}

.menu-tab.active {
  background: var(--ink);
  color: var(--paper);
}

/* Sélecteur À emporter / Sur place (au-dessus des catégories) */
.menu-tabs.menu-mode {
  margin-bottom: 40px;
  padding: 6px;
}

.menu-mode .menu-tab {
  padding: 13px 34px;
  font-size: 1rem;
}

.menu-mode .menu-tab.active {
  background: var(--red-deep);
  color: #fff;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.ribbon-title-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.ribbon-title {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 3.4rem;
  line-height: 1.1;
  color: var(--red);
  padding: 0 28px;
  position: relative;
}

.ribbon-title::before,
.ribbon-title::after {
  content: '';
  position: absolute;
  top: 55%;
  width: 60px;
  height: 1px;
  background: var(--line);
}

.ribbon-title::before { right: 100%; }
.ribbon-title::after { left: 100%; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 64px;
}

/* Nom · pointillés · prix sur une ligne, description et allergènes dessous */
.menu-item {
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto;
  align-items: baseline;
  align-content: start;
  column-gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item > div:first-child {
  display: contents;
}

.menu-item::before {
  content: '';
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-bottom: 7px;
  border-bottom: 2px dotted rgba(28, 25, 23, 0.22);
}

.menu-item-name {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.menu-item-name em {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-faint);
}

.menu-item-price {
  grid-column: 3;
  grid-row: 1;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--red-deep);
  white-space: nowrap;
}

.price-old {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-faint);
  margin-right: 4px;
}

.discount-note {
  width: fit-content;
  margin: -24px auto 36px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(238, 37, 43, 0.08);
  color: var(--red-deep);
  font-size: 0.85rem;
  text-align: center;
}

.menu-item-desc {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 4px 0 0;
}

.menu-item-tags {
  grid-column: 1 / -1;
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 500;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Légende allergènes */

.allergen-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.allergen-legend span {
  font-size: 0.8rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Tableau des vins */

.table-scroll {
  overflow-x: auto;
}

.wine-table {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-collapse: collapse;
}

.wine-table th {
  text-align: right;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--ink-faint);
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid var(--ink);
}

.wine-table th:first-child {
  text-align: left;
  padding-left: 0;
}

.wine-table td {
  padding: 16px 0 16px 16px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--red-deep);
}

.wine-table td:first-child {
  text-align: left;
  padding-left: 0;
  font-size: 1.15rem;
  color: var(--ink);
}

/* Bandeau à emporter (-10%)
   ========================================================================== */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
  padding: 88px 0;
}

.cta-band .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.cta-band-brush {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.cta-band-brush.red {
  width: 620px;
  left: -220px;
  bottom: -190px;
}

.cta-band-brush.green {
  width: 560px;
  right: -200px;
  top: -150px;
}

.cta-text {
  max-width: 520px;
}

.cta-band .script {
  color: var(--cream);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}

.cta-band p {
  color: rgba(243, 236, 224, 0.78);
  margin: 0 0 28px;
}

/* Avis clients
   ========================================================================== */

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 8px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.google-rating strong {
  color: var(--ink);
}

.google-rating-stars {
  color: var(--star);
  letter-spacing: 1px;
}

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

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 36px 32px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 6px;
  right: 26px;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(238, 37, 43, 0.14);
}

.testimonial-card p {
  color: var(--ink);
  flex: 1;
}

.testimonial-stars {
  color: var(--star);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-author {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

.testimonial-source {
  display: block;
  font-weight: 400;
  color: var(--ink-faint);
  font-size: 0.78rem;
  margin-top: 2px;
}

/* Infos pratiques (contact)
   ========================================================================== */

.phone-callout {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--night);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.phone-callout > * {
  position: relative;
}

.phone-callout::before {
  content: '';
  position: absolute;
  width: 440px;
  height: 250px;
  right: -90px;
  top: -110px;
  background: url('../img/brush-red.webp') center / contain no-repeat;
  opacity: 0.4;
}

.phone-callout-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-callout-icon svg {
  width: 28px;
  height: 28px;
}

.phone-callout-text {
  flex: 1;
  min-width: 220px;
}

.phone-callout-text h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.4rem;
}

.phone-callout-text p {
  margin: 0;
  color: rgba(243, 236, 224, 0.78);
  font-size: 0.95rem;
}

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

.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(54, 174, 80, 0.12);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
}

.info-card h3 {
  font-size: 1.3rem;
}

.info-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

.info-card a {
  color: var(--ink);
  font-weight: 600;
}

.info-card a:hover {
  color: var(--red-deep);
}

.info-card .day-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}

.info-card .day-row:last-child {
  border-bottom: none;
}

.info-card .day-row span:last-child {
  color: var(--ink);
  font-weight: 600;
}

.map-embed {
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--card);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-link {
  display: flex;
  width: fit-content;
  margin: 24px auto 0;
}

/* Formulaire de contact (non utilisé actuellement) */

.form-success {
  display: none;
}

.form-success.show {
  display: block;
}

/* Pied de page
   ========================================================================== */

.site-footer {
  background: var(--night);
  color: rgba(243, 236, 224, 0.7);
  padding: 80px 0 28px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo img {
  height: 120px;
  width: auto;
  margin: -12px 0 12px -8px;
}

.footer-col h4 {
  font-family: var(--font-body);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.footer-col p {
  max-width: 300px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(243, 236, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(243, 236, 224, 0.12);
  padding-top: 26px;
  font-size: 0.8rem;
  color: rgba(243, 236, 224, 0.5);
}

.footer-bottom .tricolore-rule {
  margin: 0;
  width: 54px;
  height: 3px;
}

/* Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 80px;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-meta {
    justify-content: center;
  }

  .hero-plate {
    width: min(100%, 420px);
  }

  .split {
    gap: 48px;
  }

  .highlights,
  .info-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* Sur mobile : rangée horizontale que l'on fait défiler */
  .dish-showcase {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(62%, 260px);
    gap: 14px;
    max-width: none;
    margin: 0 -24px 56px;
    padding: 4px 24px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .dish-showcase::-webkit-scrollbar {
    display: none;
  }

  .dish-card {
    scroll-snap-align: center;
  }

  .dish-card:hover {
    transform: none;
  }

  .dish-card figcaption {
    font-size: 1.05rem;
    padding: 14px 12px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band .container {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .logo img {
    height: 62px;
  }

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .lang-current-name {
    display: none;
  }

  .lang-button {
    padding-left: 12px;
  }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(28, 25, 23, 0.08);
  }

  .nav.open .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .menu-tabs {
    justify-content: flex-start;
  }

  .hero-visual .promo-badge {
    width: 108px;
    height: 108px;
    right: 0;
  }

  .hero-visual .promo-badge strong {
    font-size: 1.8rem;
  }

  .phone-callout {
    padding: 32px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
