/*
Theme Name: Le Coutia
Theme URI: https://le-coutia.fr
Author: Le Coutia
Author URI: https://le-coutia.fr
Description: Thème WordPress sur mesure pour Le Coutia, restaurant & bar sur l'Île d'Oléron. Style élégant, typographie Playfair Display, palette océan et sable.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Propriétaire
Text Domain: le-coutia
Tags: restaurant, bar, blog, responsive, custom-menu, featured-images
*/

/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --sand:        #f5f0e8;
  --cream:       #faf7f2;
  --ocean:       #2c5f6e;
  --ocean-light: #3d7a8a;
  --gold:        #c5983a;
  --dark:        #1a2428;
  --text:        #3a3530;
  --muted:       #7a7068;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ocean); transition: color 0.2s; }
a:hover { color: var(--ocean-light); }

/* ═══════════════════════════════════════════
   PROMO BANNER
═══════════════════════════════════════════ */
.promo-banner {
  background: var(--ocean);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.promo-banner strong { font-weight: 700; }
.promo-banner a { color: #f0d080; text-decoration: underline; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197,152,58,0.25);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ocean);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.site-logo span { color: var(--gold); }

/* Logo image personnalisé (natif WordPress) */
.site-logo-wrap { display: flex; align-items: center; }
.site-logo-wrap .custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo-wrap .custom-logo-link img.custom-logo {
  max-height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Menu principal */
#primary-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
#primary-menu a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
#primary-menu a:hover,
#primary-menu .current-menu-item > a,
#primary-menu .current-page-ancestor > a { color: var(--ocean); }

#primary-menu .menu-cta > a {
  background: var(--ocean);
  color: #fff;
  padding: 9px 20px;
  border-radius: 2px;
}
#primary-menu .menu-cta > a:hover { background: var(--ocean-light); color: #fff; }

/* Sous-menus */
#primary-menu li { position: relative; }
#primary-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 2px;
  list-style: none;
  padding: 8px 0;
  z-index: 200;
}
#primary-menu li:hover > ul { display: block; }
#primary-menu li ul a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 400;
  color: var(--text);
}
#primary-menu li ul a:hover { background: var(--sand); color: var(--ocean); }

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 200;
}
.burger-btn span {
  display: block; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Sélecteur de langue ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 16px;
  border: 1.5px solid rgba(44,95,110,.25);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-item {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  color: var(--muted);
  transition: background .2s, color .2s;
  border-right: 1px solid rgba(44,95,110,.15);
  line-height: 1;
}
.lang-item:last-child { border-right: none; }
.lang-item:hover { background: var(--sand); color: var(--ocean); }
.lang-item.lang-current {
  background: var(--ocean);
  color: #fff;
  cursor: default;
}
/* Masquer sur mobile — le switcher s'intègre dans le menu overlay */
@media (max-width: 960px) {
  .lang-switcher { display: none; }
}

/* Menu mobile overlay */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
#mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
#mobile-menu ul { list-style: none; text-align: center; }
#mobile-menu ul li { padding: 4px 0; border-bottom: 1px solid rgba(0,0,0,0.07); width: 260px; }
#mobile-menu ul li:last-child { border-bottom: none; }
#mobile-menu ul a {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--dark); text-decoration: none;
  display: block; padding: 14px 0;
  transition: color 0.2s;
}
#mobile-menu ul a:hover { color: var(--ocean); }
#mobile-menu .menu-cta a {
  margin-top: 12px;
  display: inline-block;
  background: var(--ocean); color: #fff;
  padding: 14px 40px; border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
/* Sélecteur langue mobile */
.mobile-lang-switcher {
  margin-top: 28px;
}
.mobile-lang-switcher .lang-switcher {
  display: flex !important;
  border-color: rgba(44,95,110,.3);
  transform: scale(1.2);
}
.mobile-lang-switcher .lang-item {
  padding: 8px 18px;
  font-size: 13px;
}
.mobile-lang-switcher .lang-item.lang-current {
  background: var(--ocean); color: #fff;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.site-main { min-height: 60vh; }

/* ═══════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--ocean) 100%);
  padding: 70px 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 16px;
}
.breadcrumb a { color: #f0d080; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 700;
  color: #fff; line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: #f0d080; }
.page-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.75);
  margin-top: 14px; font-weight: 300;
}

/* ═══════════════════════════════════════════
   HERO ACCUEIL
═══════════════════════════════════════════ */
.site-hero {
  position: relative;
  height: 88vh; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1a3540 0%, #2c5f6e 45%, #3a7a5e 100%);
}
.site-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.32;
}

/* ── Vidéo YouTube en fond (API Player) ── */
.hero-bg-static {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
  z-index: 0;
  transition: opacity .5s ease;
}
/* Quand la vidéo est prête, on atténue l'image */
.hero-video-wrap.ready ~ .hero-bg-static,
.site-hero:has(.hero-video-wrap.ready) .hero-bg-static { opacity: 0.1; }

.hero-video-wrap {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  /* Invisible jusqu'au chargement → évite le flash blanc */
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-video-wrap.ready { opacity: 1; }

/* L'iframe générée par l'API YT */
.hero-video-wrap iframe,
#heroYT iframe,
#heroYT {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw;   /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap { display: none; }
  .hero-bg-static  { opacity: 0.45 !important; }
}
.site-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,36,40,0.45), rgba(26,36,40,0.65));
}
.site-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 720px; padding: 0 24px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: #f0d080;
  margin-bottom: 18px; font-weight: 700;
}
.site-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 700; line-height: 1.05; margin-bottom: 10px;
}
.site-hero-content h1 em { font-style: italic; color: #f0d080; }
.hero-tagline {
  font-size: 18px; font-weight: 300;
  letter-spacing: 0.04em; margin: 18px 0 36px; opacity: 0.9;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 13px 30px; font-size: 12px;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: #d4a840; color: #fff; }
.btn-outline { border: 2px solid rgba(255,255,255,0.7); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn-ocean { background: var(--ocean); color: #fff; }
.btn-ocean:hover { background: var(--ocean-light); color: #fff; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ocean); text-decoration: none;
  margin-top: 24px; transition: gap 0.2s;
}
.link-arrow:hover { gap: 14px; color: var(--ocean); }
.link-arrow::after { content: '→'; font-size: 15px; }

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section { padding: 90px 0; }
.section-sand { background: var(--sand); }
.section-dark { background: var(--dark); color: #fff; }
.section-ocean { background: var(--ocean); color: #fff; }

.section-label {
  font-size: 10.5px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--ocean); }
.section-title.light { color: #fff; }
.section-title.light em { color: #f0d080; }
.section-body {
  font-size: 16px; line-height: 1.8;
  color: var(--muted); max-width: 540px;
}

/* ═══════════════════════════════════════════
   BLOG — LAYOUT
═══════════════════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  padding: 70px 0 90px;
  align-items: start;
}

/* Filtres */
.blog-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px; align-items: center;
}
.filter-label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 700; margin-right: 4px;
}
.tag {
  display: inline-block;
  padding: 6px 16px; font-size: 11.5px;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 2px;
  cursor: pointer; border: 1.5px solid rgba(44,95,110,0.25);
  color: var(--muted); background: transparent;
  transition: all 0.2s; text-decoration: none;
}
.tag:hover, .tag.current { background: var(--ocean); border-color: var(--ocean); color: #fff; }

/* ═══════════════════════════════════════════
   BLOG — ARTICLE À LA UNE
═══════════════════════════════════════════ */
.post-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #fff; border-radius: 3px; overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  margin-bottom: 48px;
  transition: box-shadow 0.3s;
  text-decoration: none; color: inherit;
}
.post-featured:hover { box-shadow: 0 8px 40px rgba(44,95,110,0.15); }
.post-featured-img {
  position: relative; overflow: hidden; min-height: 320px;
}
.post-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.post-featured:hover .post-featured-img img { transform: scale(1.04); }
.post-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 2px;
}
.post-featured-body {
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.post-cat {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ocean); margin-bottom: 12px;
}
.post-featured-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  line-height: 1.25; color: var(--dark); margin-bottom: 14px;
}
.post-featured-body .post-excerpt {
  font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 24px;
}
.post-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--muted);
}
.post-meta-avatar {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
}
.post-meta-read {
  padding: 2px 10px; background: var(--sand);
  border-radius: 20px; font-size: 11px;
}
.read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ocean); text-decoration: none;
  margin-top: 20px; transition: gap 0.2s;
}
.read-more:hover { gap: 14px; color: var(--ocean); }
.read-more::after { content: '→'; font-size: 14px; }

/* ═══════════════════════════════════════════
   BLOG — GRILLE DE CARDS
═══════════════════════════════════════════ */
.posts-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-bottom: 48px;
}
.post-card {
  background: #fff; border-radius: 3px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.post-card:hover {
  box-shadow: 0 6px 32px rgba(44,95,110,0.13);
  transform: translateY(-3px);
}
.post-card-img {
  position: relative; overflow: hidden; height: 200px;
}
.post-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-cat {
  position: absolute; bottom: 12px; left: 14px;
  background: var(--ocean); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card-body h2, .post-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--dark);
  line-height: 1.3; margin-bottom: 10px;
}
.post-card-body .post-excerpt {
  font-size: 13.5px; line-height: 1.75; color: var(--muted); flex: 1;
}
.post-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 12px; color: var(--muted);
}
.post-card-footer .read-link {
  color: var(--ocean); font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
}

/* ═══════════════════════════════════════════
   ACCUEIL — GRILLE ACTUALITÉS (3 vignettes)
═══════════════════════════════════════════ */
.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.actu-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border-radius: 4px; overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.actu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(44,95,110,.14);
}
.actu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.actu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}
.actu-card:hover .actu-card-img img { transform: scale(1.07); }
.actu-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,36,40,.55) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 18px 20px;
  opacity: 0; transition: opacity .35s;
}
.actu-card:hover .actu-card-overlay { opacity: 1; }
.actu-lire {
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.actu-card-body {
  padding: 24px 24px 14px;
  flex: 1;
}
.actu-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  color: var(--dark); line-height: 1.3;
  margin-bottom: 10px;
}
.actu-card-excerpt {
  font-size: 14px; color: var(--muted);
  line-height: 1.75;
}
.actu-card-foot {
  padding: 14px 24px 22px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.actu-lire-link {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ocean); text-decoration: none;
}
/* Bouton outline ocean */
.btn-outline-ocean {
  display: inline-flex; align-items: center;
  padding: 13px 34px;
  border: 2px solid var(--ocean);
  color: var(--ocean);
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background .2s, color .2s;
}
.btn-outline-ocean:hover { background: var(--ocean); color: #fff; }

@media(max-width: 960px) { .actu-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 560px) { .actu-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   BLOG — LISTE HORIZONTALE
═══════════════════════════════════════════ */
.post-list {
  display: flex; background: #fff; border-radius: 3px;
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  margin-bottom: 20px; text-decoration: none; color: inherit;
  transition: box-shadow 0.3s;
}
.post-list:hover { box-shadow: 0 4px 28px rgba(44,95,110,0.12); }
.post-list-img { width: 180px; flex-shrink: 0; overflow: hidden; }
.post-list-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.post-list:hover .post-list-img img { transform: scale(1.05); }
.post-list-body {
  padding: 22px 24px; display: flex;
  flex-direction: column; justify-content: center;
}
.post-list-body h2, .post-list-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px; line-height: 1.3;
}
.post-list-body .post-excerpt {
  font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 10px;
}
.post-list-meta { font-size: 11.5px; color: var(--muted); }

/* ═══════════════════════════════════════════
   ARTICLE SINGLE
═══════════════════════════════════════════ */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  padding: 70px 0 90px;
  align-items: start;
}
.entry-header { margin-bottom: 36px; }
.entry-header .post-cat { margin-bottom: 16px; }
.entry-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 20px;
}
.entry-thumbnail {
  width: 100%; border-radius: 3px;
  margin-bottom: 40px; overflow: hidden;
}
.entry-thumbnail img { width: 100%; height: 400px; object-fit: cover; }
.entry-content { font-size: 16px; line-height: 1.9; color: var(--text); }
.entry-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--dark);
  margin: 36px 0 16px;
}
.entry-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--dark);
  margin: 28px 0 12px;
}
.entry-content p { margin-bottom: 20px; }
.entry-content ul, .entry-content ol {
  padding-left: 24px; margin-bottom: 20px;
}
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  background: var(--sand);
  margin: 28px 0;
  font-style: italic;
  font-size: 17px;
  color: var(--text);
}
.entry-content img { border-radius: 3px; margin: 20px 0; }
.entry-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.1); }
.entry-tags .tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

/* ═══════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════ */
.pagination {
  display: flex; gap: 8px; align-items: center; margin-top: 16px;
}
.page-numbers {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; font-size: 13px; font-weight: 700;
  text-decoration: none; color: var(--dark);
  background: #fff; border: 1.5px solid rgba(0,0,0,0.12);
  transition: all 0.2s;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--ocean); border-color: var(--ocean); color: #fff;
}
.page-numbers.prev, .page-numbers.next {
  width: auto; padding: 0 16px; font-size: 12px; letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 36px; }
.widget {
  background: #fff; border-radius: 3px;
  padding: 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--dark);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
/* Recherche */
.widget .search-form {
  display: flex; border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 2px; overflow: hidden;
}
.widget .search-field {
  flex: 1; padding: 11px 14px;
  font-family: 'Lato', sans-serif; font-size: 14px;
  border: none; outline: none; background: transparent;
}
.widget .search-submit {
  padding: 0 16px; background: var(--ocean); color: #fff;
  border: none; cursor: pointer; font-size: 15px; transition: background 0.2s;
}
.widget .search-submit:hover { background: var(--ocean-light); }
/* Catégories */
.widget ul { list-style: none; }
.widget ul li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
}
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text); text-decoration: none; }
.widget ul li a:hover { color: var(--ocean); }
.cat-count {
  background: var(--sand); color: var(--muted);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
}
/* Articles récents */
.recent-post {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-decoration: none; color: inherit; transition: opacity 0.2s;
}
.recent-post:last-child { border-bottom: none; }
.recent-post:hover { opacity: 0.75; }
.recent-post img {
  width: 62px; height: 62px; object-fit: cover;
  border-radius: 2px; flex-shrink: 0;
}
.recent-post-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 700; color: var(--dark);
  line-height: 1.35; margin-bottom: 4px;
}
.recent-post-info span { font-size: 11.5px; color: var(--muted); }
/* Newsletter widget */
.widget-newsletter { background: var(--ocean); color: #fff; }
.widget-newsletter .widget-title { color: #fff; border-bottom-color: rgba(255,255,255,0.3); }
.widget-newsletter p { font-size: 13.5px; line-height: 1.7; opacity: 0.85; margin-bottom: 16px; }
.widget-newsletter input {
  width: 100%; padding: 11px 14px; font-family: 'Lato', sans-serif; font-size: 14px;
  border: none; border-radius: 2px; margin-bottom: 10px; outline: none;
}
.widget-newsletter button {
  width: 100%; padding: 12px; background: var(--gold); color: #fff;
  font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s;
}
.widget-newsletter button:hover { background: #d4a840; }
/* Tags cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tags-cloud .tag { font-size: 11px; padding: 5px 12px; }
/* Widget réservation */
.widget-booking { background: var(--sand); box-shadow: none; text-align: center; }
.widget-booking .book-icon { font-size: 32px; margin-bottom: 12px; }
.widget-booking h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--dark); margin-bottom: 10px;
}
.widget-booking p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.widget-booking .btn-block {
  display: block; text-align: center; margin-bottom: 10px;
  padding: 12px; border-radius: 2px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
}

/* ═══════════════════════════════════════════
   INSTAGRAM STRIP
═══════════════════════════════════════════ */
.insta-strip { background: var(--sand); padding: 60px 0; }
.insta-header { text-align: center; margin-bottom: 32px; }
.insta-header p { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.insta-header h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--dark); }
.insta-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px;
}
.insta-item { aspect-ratio: 1; overflow: hidden; border-radius: 2px; position: relative; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, filter 0.4s; }
.insta-item:hover img { transform: scale(1.08); filter: brightness(0.8); }
.insta-item::after {
  content: '♡'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px; opacity: 0; transition: opacity 0.3s;
}
.insta-item:hover::after { opacity: 1; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 32px 28px;
}
.footer-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 14px; line-height: 1.8; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; border-bottom: none !important; padding: 0 !important; }
.footer-col a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-socials { display: flex; gap: 14px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; font-size: 15px; transition: background 0.2s;
}
.social-btn:hover { background: var(--ocean); }
.footer-bottom {
  max-width: 1120px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-credits { font-size: 11px; color: rgba(255,255,255,0.35); max-width: 1120px; margin: 16px auto 0; text-align: center; }

/* ═══════════════════════════════════════════
   ACCUEIL — CONCEPT
═══════════════════════════════════════════ */
.fp-concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.fp-concept-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fp-photo-main {
  grid-column: 1 / 3;
  height: 240px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  width: 100%;
}
.fp-photo-sub {
  height: 180px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  width: 100%;
}

/* ═══════════════════════════════════════════
   ACCUEIL — HIGHLIGHTS
═══════════════════════════════════════════ */
.fp-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.fp-highlight-icon { font-size: 32px; margin-bottom: 12px; }
.fp-highlight-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.fp-highlight-text { font-size: 14px; opacity: .8; line-height: 1.7; }

/* ═══════════════════════════════════════════
   ACCUEIL — AVIS
═══════════════════════════════════════════ */
.fp-avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.fp-avis-card {
  background: #fff;
  padding: 28px;
  border-radius: 3px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.fp-avis-stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; }
.fp-avis-text  { font-size: 14.5px; line-height: 1.75; font-style: italic; color: var(--text); }
.fp-avis-author {
  margin-top: 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.fp-avis-source { color: var(--gold); font-weight: 400; }

/* ═══════════════════════════════════════════
   ACCUEIL — CTA
═══════════════════════════════════════════ */
.fp-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--ocean) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 32px;
}
.fp-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
}
.fp-cta-text { font-size: 16px; opacity: .8; margin-bottom: 36px; }
.fp-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   ACCUEIL — SECTION BAR
═══════════════════════════════════════════ */
.fp-bar-section {
  background: var(--dark);
  overflow: hidden;
}
.fp-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.fp-bar-text {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fp-bar-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
}
.fp-bar-title em { font-style: italic; color: var(--gold); }
.fp-bar-desc {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 420px;
}
.fp-bar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.fp-bar-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
  transition: background .2s, border-color .2s;
}
.fp-bar-tags span:hover {
  background: rgba(197,152,58,.2);
  border-color: var(--gold);
  color: #fff;
}
.fp-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background .2s;
  align-self: flex-start;
}
.fp-bar-btn:hover { background: #d4a840; color: #fff; }

/* Grille photos */
.fp-bar-photos {
  position: relative;
  overflow: hidden;
}
.fp-bar-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 3px;
}
.fp-bar-photo {
  overflow: hidden;
  position: relative;
}
.fp-bar-photo--tall {
  grid-row: 1 / 3;
}
.fp-bar-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.fp-bar-photo:hover img { transform: scale(1.06); }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLETTE (≤ 960px)
═══════════════════════════════════════════ */
@media (max-width: 960px) {

  /* ── HEADER ── */
  .header-inner { padding: 0 20px; height: 62px; }
  #primary-menu { display: none; }
  .burger-btn { display: flex; }
  #mobile-menu { display: flex; }
  .site-logo-wrap .custom-logo-link img.custom-logo { max-height: 44px; }

  /* ── HERO ACCUEIL ── */
  .site-hero { height: 75vh; min-height: 420px; }
  .hero-tagline { font-size: 16px; margin: 14px 0 28px; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn { padding: 12px 24px; }
  .hero-scroll { display: none; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 50px 24px 44px; }
  .page-hero h1 { font-size: clamp(28px, 6vw, 48px); }

  /* ── SECTIONS ── */
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* ── BAR ── */
  .fp-bar-inner { grid-template-columns: 1fr; min-height: auto; }
  .fp-bar-text  { padding: 52px 0 36px; }
  .fp-bar-photos { min-height: 320px; }
  .fp-bar-photo-grid { height: 320px; }

  /* ── CONCEPT (grille 2 colonnes → 1) ── */
  .fp-concept-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .fp-concept-photos { grid-template-columns: 1fr 1fr; }
  .fp-photo-main { height: 200px; }
  .fp-photo-sub { height: 150px; }

  /* ── HIGHLIGHTS ── */
  .fp-highlights { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .fp-highlight-item { display: flex; align-items: flex-start; gap: 16px; }
  .fp-highlight-icon { font-size: 28px; flex-shrink: 0; margin-bottom: 0; }

  /* ── AVIS ── */
  .fp-avis-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ── CTA ── */
  .fp-cta { padding: 56px 24px; }
  .fp-cta-btns { flex-direction: column; align-items: center; }

  /* ── BLOG ── */
  .blog-layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { display: none; }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured-img { min-height: 240px; }
  .posts-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .blog-grid-3 { grid-template-columns: 1fr 1fr; }

  /* ── ARTICLE SINGLE ── */
  .single-layout { grid-template-columns: 1fr; gap: 40px; }
  .single-hero { min-height: 380px; }
  .single-hero-content { padding: 0 24px 44px; }
  .single-hero-title { font-size: clamp(24px, 5vw, 38px); }
  .single-body { padding: 40px 24px 60px; }
  .single-related-grid { grid-template-columns: 1fr 1fr; }
  .single-related-inner { padding: 0 24px; }

  /* ── ACTUALITÉS ACCUEIL ── */
  .actu-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* ── PLATS ── */
  .dishes-grid { grid-template-columns: 1fr 1fr !important; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  #site-footer { padding: 40px 20px 24px; }

  /* ── INSTA ── */
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  /* ── SECTIONS SPÉCIFIQUES ── */
  .valeurs-grid { grid-template-columns: 1fr 1fr !important; }
  .team-grid { grid-template-columns: 1fr 1fr !important; }
  .producteurs-grid { grid-template-columns: 1fr 1fr !important; }
  .priv-grid { grid-template-columns: 1fr 1fr !important; }
  .soirees-grid { grid-template-columns: 1fr 1fr; }
  .reviews-mosaic { grid-template-columns: 1fr 1fr !important; }
  .resa-layout { grid-template-columns: 1fr; }
  .cv-layout { grid-template-columns: 1fr; }
  .cv-map-wrap { position: static; }
  .recru-layout { grid-template-columns: 1fr; }
  .recru-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
═══════════════════════════════════════════ */
@media (max-width: 640px) {

  /* ── HEADER ── */
  .header-inner { padding: 0 16px; height: 58px; }
  .site-logo-wrap .custom-logo-link img.custom-logo { max-height: 38px; }
  .site-logo { font-size: 18px; }

  /* ── HERO ACCUEIL ── */
  .site-hero { height: 100svh; min-height: 480px; }
  .site-hero-content h1 { font-size: clamp(34px, 10vw, 52px); }
  .hero-eyebrow { font-size: 10px; letter-spacing: .2em; }
  .hero-tagline { font-size: 15px; margin: 12px 0 24px; }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; padding: 14px; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 40px 16px 36px; }
  .page-hero h1 { font-size: clamp(26px, 8vw, 40px); }
  .page-hero-sub { font-size: 14px; }

  /* ── SECTIONS ── */
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(26px, 7vw, 38px); }

  /* ── BAR ── */
  .fp-bar-inner  { padding: 0 16px; }
  .fp-bar-text   { padding: 40px 0 28px; }
  .fp-bar-title  { font-size: clamp(26px, 8vw, 38px); }
  .fp-bar-desc   { font-size: 14px; }
  .fp-bar-tags   { gap: 6px; }
  .fp-bar-tags span { font-size: 11px; padding: 5px 10px; }
  .fp-bar-btn    { width: 100%; max-width: 300px; justify-content: center; }
  .fp-bar-photos { min-height: 260px; }
  .fp-bar-photo-grid { height: 260px; }

  /* ── ACCUEIL — CONCEPT ── */
  .fp-concept-photos { grid-template-columns: 1fr; gap: 8px; }
  .fp-photo-main { grid-column: auto; height: 180px; }
  .fp-photo-sub { height: 140px; }

  /* ── ACCUEIL — HIGHLIGHTS ── */
  .fp-highlight-title { font-size: 17px; }

  /* ── ACCUEIL — AVIS ── */
  .fp-avis-grid { grid-template-columns: 1fr; }
  .fp-avis-card { padding: 22px 18px; }

  /* ── ACCUEIL — CTA ── */
  .fp-cta { padding: 48px 16px; }
  .fp-cta-title { font-size: clamp(22px, 7vw, 32px); }
  .fp-cta-text { font-size: 14px; margin-bottom: 24px; }
  .fp-cta-btns { flex-direction: column; align-items: center; }
  .fp-cta-btns .btn { width: 100%; max-width: 280px; }

  /* ── BLOG ── */
  .posts-grid { grid-template-columns: 1fr; }
  .blog-grid-3 { grid-template-columns: 1fr; }
  .blog-list-img { width: 100px; }
  .blog-list-body h3 { font-size: 14px; }
  .blog-breadcrumb-inner { padding: 0 16px; flex-wrap: wrap; }
  .blog-cats-inner { padding: 0 16px; }
  .blog-featured-body { padding: 24px 20px; }
  .blog-featured-body h2 { font-size: 20px; }

  /* ── ARTICLE SINGLE ── */
  .single-hero { min-height: 320px; }
  .single-hero-content { padding: 0 16px 36px; }
  .single-hero-title { font-size: clamp(22px, 7vw, 34px); }
  .single-hero-read { display: none; }
  .single-breadcrumb-inner { padding: 0 16px; font-size: 11px; }
  .single-body { padding: 32px 16px 48px; }
  .single-body .entry-content { font-size: 15.5px; }
  .single-body .entry-content > p:first-child::first-letter { font-size: 3.2em; }
  .single-nav { grid-template-columns: 1fr; gap: 12px; }
  .single-related-grid { grid-template-columns: 1fr; }
  .single-related-inner { padding: 0 16px; }
  .single-related { padding: 48px 0; }

  /* ── ACTUALITÉS ACCUEIL ── */
  .actu-grid { grid-template-columns: 1fr; }

  /* ── PLATS ── */
  .dishes-grid { grid-template-columns: 1fr !important; }

  /* ── LISTES ── */
  .post-list { flex-direction: column; }
  .post-list-img { width: 100%; height: 180px; }

  /* ── PAGINATION ── */
  .pagination { flex-wrap: wrap; justify-content: center; }
  .blog-pagination { gap: 6px; }
  .blog-pagination .page-numbers { width: 36px; height: 36px; font-size: 12px; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  #site-footer { padding: 36px 16px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* ── INSTA ── */
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── SECTIONS SPÉCIFIQUES ── */
  .valeurs-grid { grid-template-columns: 1fr !important; }
  .team-grid { grid-template-columns: 1fr 1fr !important; }
  .producteurs-grid { grid-template-columns: 1fr !important; }
  .soirees-grid { grid-template-columns: 1fr; }
  .passees-grid { grid-template-columns: 1fr 1fr !important; }
  .reviews-mosaic { grid-template-columns: 1fr !important; }
  .priv-grid { grid-template-columns: 1fr !important; }
  .cv-extras { grid-template-columns: 1fr !important; }
  .cv-map-btns { flex-direction: column; }
  .privatisation-strip { padding: 48px 20px; }

  /* ── CARTE MENU ── */
  .carte-grid { grid-template-columns: 1fr !important; }
  .carte-nav { padding: 0 !important; }
  .carte-nav-link { padding: 14px 14px; font-size: 10px; }
  .carte-section { padding: 52px 0; }

  /* ── PAGE CONCEPT ── */
  .concept-images { grid-template-columns: 1fr !important; }
  .concept-images img { grid-column: auto !important; height: 180px !important; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 44px 1fr !important; }
  .timeline-empty { display: none !important; }

  /* ── PAGE CONTACT ── */
  .form-row { grid-template-columns: 1fr !important; }
  .map-frame { height: 260px !important; }
  .info-block h3 { font-size: 17px; }

  /* ── PAGE RECRUTEMENT ── */
  .offre-header { flex-direction: column; gap: 10px; }
  .offre-actions { flex-direction: column; }
  .offre-apply { text-align: center; }

  /* ── PAGE RÉSERVATION ── */
  .resa-cta-phone .number { font-size: 18px; }
  .resa-infos h2 { font-size: 26px; }
  .recru-candidature { padding: 24px 20px; }
}
