/* ============================================================
   Variables
   ============================================================ */
:root {
  --color-dark:         #2a344d;   /* bleu nuit */
  --color-dark-soft:    #33405e;
  --color-light:        #f4f1ec;   /* blanc chaud */
  --color-accent:       #3d6199;   /* bleu moyen */
  --color-accent-light: #6f9fd8;   /* bleu clair */
  --color-text:         #2c2c2c;
  --color-muted:        #6b7a99;
  --color-border:       #dde3ed;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Open Sans', system-ui, sans-serif;

  --container-max: 1100px;
  --header-h:      74px;
  --radius:        6px;
  --shadow:        0 2px 12px rgba(0,0,0,0.08);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-sans); color: var(--color-text); background: var(--color-light); line-height: 1.6; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
address { font-style: normal; }

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn--primary:hover { background: #5e4516; border-color: #5e4516; }

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn--phone {
  background: var(--color-accent-light);
  color: var(--color-dark);
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  border: none;
  border-radius: var(--radius);
}
.btn--phone:hover { background: #7ab0e0; }
.btn--phone img { filter: none; }

.btn--accent {
  background: var(--color-accent-light);
  color: var(--color-dark);
  border-color: var(--color-accent-light);
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(61,97,153,0.3);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn--accent:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(61,97,153,0.4);
}
.btn--accent:active { transform: translateY(0) scale(0.97); }

.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.btn--outline-dark:hover { background: var(--color-dark); color: #fff; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-dark);
  height: var(--header-h);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 1.5rem;
}
.header__actions {
  justify-self: end;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.header__logo img {
  height: 62px;
  width: 62px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(0) invert(1);
}
.header__name {
  color: var(--color-dark);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.header__nav ul {
  display: flex;
  gap: 1.75rem;
}
.header__nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.header__nav a:hover,
.header__nav a[aria-current="page"] { color: var(--color-accent-light); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.lang-switch a {
  color: rgba(255,255,255,0.55);
  padding: 0.2rem 0.35rem;
  transition: color 0.2s;
}
.lang-switch a:hover { color: var(--color-accent-light); }
.lang-switch a[aria-current="true"] {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lang-switch__sep { color: rgba(255,255,255,0.35); }

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f4f1ec;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 65vh;
  min-height: 400px;
  max-height: 700px;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42,52,77,0.45) 0%, rgba(42,52,77,0.72) 100%);
  display: flex;
  align-items: center;
}
.hero__content {
  color: #fff;
  text-align: center;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 780px;
  margin: 0 auto 1.75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero__main-img {
  max-width: min(380px, 70vw);
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.35));
}
.hero__poule {
  position: absolute;
  bottom: -5px;
  left: 5%;
  width: clamp(40px, 6vw, 87px);
  height: auto;
  pointer-events: none;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__phone {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: opacity 0.2s;
}
.hero__phone:hover { opacity: 0.8; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 4.5rem 0; }
.section--tight { padding: 2.5rem 0 0.5rem; text-align: center; }
.section--tight p { max-width: 640px; margin: 0 auto; }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section__sub {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 2.75rem;
  font-size: 1rem;
}

/* ============================================================
   La carte (accueil) — carousel + boutons
   ============================================================ */
.carte-preview__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel__viewport {
  overflow: hidden;
  flex: 1;
  position: relative;
  height: 430px;
}

.carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.menu-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 390px;
  border-radius: 8px;
  background: #f4f1ec;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(42,52,77,0.1);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1),
              opacity   0.45s ease,
              box-shadow 0.45s ease;
  cursor: pointer;
  user-select: none;
  will-change: transform;
}
.menu-card.active {
  box-shadow: 0 10px 36px rgba(42,52,77,0.22);
  cursor: pointer;
}

.menu-card__header {
  background: var(--color-dark);
  color: #fff;
  padding: 1.5rem 1.5rem 1.25rem;
  text-align: center;
  flex-shrink: 0;
}
.menu-card__header::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-accent-light);
  margin: 0.85rem auto 0;
}
.menu-card__header h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.menu-card__sub {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card__body {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  overflow: hidden;
}
.menu-card__body--img { padding: 0; }
.menu-card__body--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-line {
  height: 10px;
  background: #e2ded6;
  border-radius: 20px;
  flex-shrink: 0;
}
.ph-line.short { width: 55%; }
.ph-line.med   { width: 75%; }
.ph-line.long  { width: 100%; }

.carousel__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-dark);
  background: #f4f1ec;
  color: var(--color-dark);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1;
}
.carousel__arrow:hover {
  box-shadow: 0 4px 14px rgba(42,52,77,0.25);
  transform: scale(1.08);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.carousel__dot.active {
  background: var(--color-dark);
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .carousel__viewport { height: 380px; }
  .menu-card { width: 250px; height: 340px; }
  .carousel__arrow { width: 36px; height: 36px; font-size: 0.95rem; }
}

/* ============================================================
   Modale de visualisation (image zoomable + PDF)
   ============================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.open {
  display: flex;
  animation: modalFadeIn 0.2s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 25, 0.92);
  cursor: pointer;
}
.modal__content {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.modal__img {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 90vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center;
  pointer-events: all;
  image-rendering: high-quality;
}
.modal__img.zoomed  { cursor: grab; }
.modal__img.panning { cursor: grabbing; }
.modal__hint {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.5s;
}
.modal__hint.hidden { opacity: 0; }
.modal__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #f4f1ec;
  color: var(--color-dark);
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: background 0.15s, transform 0.15s;
  z-index: 2;
}
.modal__close:hover { background: #ece9e2; transform: scale(1.1); }
.modal__pdf-link {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: all;
}

/* ============================================================
   Info section (horaires + contact)
   ============================================================ */
.info {
  background: var(--color-dark);
  color: #fff;
}
.info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}
.info__block h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--color-accent-light);
}

/* Tableau des horaires */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th,
.hours-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  vertical-align: top;
}
.hours-table th {
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  width: 115px;
  font-size: 0.9rem;
}
.hours-table td { color: rgba(255,255,255,0.9); font-size: 0.93rem; }
.hours-table tr.closed td,
.hours-table tr.closed th { color: rgba(255,255,255,0.35); }

/* Contact / adresse */
.info__block address p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.info__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.info__icon img { filter: brightness(0) invert(1); display: block; }
.icon-white { filter: brightness(0) invert(1); vertical-align: middle; }
.info__block address a {
  color: var(--color-accent-light);
  transition: opacity 0.2s;
}
.info__block address a:hover { opacity: 0.8; text-decoration: underline; }

.social {
  margin-top: 1.75rem;
}
.social__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.social__links {
  display: flex;
  gap: 1rem;
}
.social__links svg {
  width: 22px;
  height: 22px;
}
.social__links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
}
.social__links a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

/* ============================================================
   Fil d'Ariane
   ============================================================ */
.breadcrumb {
  padding: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}
.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.4rem;
  color: var(--color-border);
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--color-muted); }

/* ============================================================
   En-tête de page (pages secondaires)
   ============================================================ */
.page-header {
  padding: 2.5rem 0 1rem;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}
.page-header__intro {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text);
  font-size: 1.05rem;
}

/* ============================================================
   Contenu éditorial (prose)
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin: 2.25rem 0 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-dark);
  margin: 1.25rem 0 0.5rem;
}
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; }

/* ============================================================
   La carte — sections de plats
   ============================================================ */
.carte-intro { max-width: 760px; margin: 0 auto 1.5rem; text-align: center; }

.carte-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.carte-toc a {
  color: var(--color-muted);
  font-weight: 600;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.carte-toc a:hover {
  color: var(--color-dark);
  border-color: var(--color-accent-light);
}

.carte-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 0;
}
.carte-section:not(:last-of-type) { border-bottom: 1px solid var(--color-border); }
.carte-section:first-of-type { padding-top: 0; }
.carte-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-dark);
  padding-bottom: 0.9rem;
  margin-bottom: 1.75rem;
  position: relative;
  scroll-margin-top: 38vh;
}
.carte-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--color-accent-light);
}
.carte-section h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--color-accent);
  margin: 1.75rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.carte-section h3:first-of-type { margin-top: 0; }
ul.carte {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.5rem 2rem;
}
ul.carte > li {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.9rem;
  margin-bottom: 0.4rem;
}
ul.carte h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: none;
  letter-spacing: normal;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.3rem;
}
ul.carte p { color: var(--color-muted); font-size: 0.9rem; }
ul.carte [aria-label="Prix"],
ul.carte [aria-label="Price"] {
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}
.carte-section__pdf {
  margin: -1.1rem 0 1.75rem;
  font-size: 0.82rem;
}
.carte-section__pdf a {
  color: var(--color-accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.carte-section__pdf a:hover { border-color: var(--color-accent); }
.carte-note {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.carte-note:not(:last-child) {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  margin-bottom: 1.25rem;
}
.carte-note--alcool {
  text-align: center;
  color: var(--color-text);
  padding-top: 1.5rem;
}

/* ============================================================
   Accès / carte OpenStreetMap
   ============================================================ */
.map-frame {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  margin: 0;
}
/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #1c1c1c;
  color: rgba(255,255,255,0.55);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.footer__inner img { opacity: 0.7; width: 54px; height: 54px; object-fit: contain; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; filter: brightness(0) invert(1); }
.footer p { line-height: 1.7; }
.footer a { color: var(--color-accent-light); }
.footer a:hover { text-decoration: underline; }

/* ============================================================
   Page 404
   ============================================================ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}
.error-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-dark);
  margin-bottom: 1rem;
}
.error-page p { margin-bottom: 1.5rem; color: var(--color-muted); }
.error-page__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Responsive – Mobile
   ============================================================ */
@media (max-width: 768px) {

  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Nav mobile */
  .header__nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--color-dark-soft);
    padding: 1.5rem 1.25rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .header__nav.open { display: block; }
  .header__nav ul { flex-direction: column; gap: 1.1rem; }
  .header__nav a { font-size: 1.05rem; display: block; padding: 0.25rem 0; }

  .header__burger { display: flex; }

  /* Bouton téléphone compact sur mobile */
  .phone-number { display: none; }
  .btn--phone { padding: 0.5rem 0.75rem; }

  /* Sélecteur de langue compact sur mobile */
  .lang-switch { font-size: 0.8rem; }

  /* Hero */
  .hero__img { height: 55vh; min-height: 320px; }
  .hero__phone { top: 1rem; right: 1rem; font-size: 0.8rem; }

  /* Info grid en colonne */
  .info__grid { gap: 2rem; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
}
