/* =============================================================
   LE HIPPIE CHIC CAFÉ — CSS GLOBAL
   style.css | Version 1.0 | 2026
   ============================================================= */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600&display=swap');

/* ── VARIABLES CSS ── */
:root {
  --terracotta:   #C0622F;
  --vert-sauge:   #6B8F71;
  --creme:        #FDF6EC;
  --texte:        #1A1A1A;
  --blanc-casse:  #FAFAF5;
  --terracotta-light: #e07a4a;
  --vert-light:   #8aad90;
  --shadow:       0 4px 20px rgba(192,98,47,0.12);
  --shadow-hover: 0 8px 30px rgba(192,98,47,0.22);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.3s ease;
  --font-title:   'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;
  --font-accent:  'Dancing Script', cursive;
  --max-width:    1200px;
  --header-h:     80px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--texte);
  background-color: var(--blanc-casse);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── TYPOGRAPHIE ── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.25;
  color: var(--texte);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 400; font-style: italic; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin-bottom: 1rem; }
.accent {
  font-family: var(--font-accent);
  color: var(--terracotta);
  font-size: 1.3em;
}

/* ── UTILITAIRES ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background-color: var(--creme); }
.text-center { text-align: center; }
.text-terracotta { color: var(--terracotta); }
.text-sauge { color: var(--vert-sauge); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Titre de section standard */
.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-title + .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  color: var(--terracotta);
  font-size: 1.3rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.4;
}

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background-color: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 15px rgba(192,98,47,0.3);
}
.btn-primary:hover {
  background-color: var(--terracotta-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192,98,47,0.4);
}
.btn-secondary {
  background-color: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}
.btn-secondary:hover {
  background-color: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background-color: #fff;
  color: var(--terracotta);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background-color: var(--creme);
  color: var(--terracotta);
  transform: translateY(-2px);
}
.btn-sauge {
  background-color: var(--vert-sauge);
  color: #fff;
}
.btn-sauge:hover {
  background-color: var(--vert-light);
  color: #fff;
  transform: translateY(-2px);
}

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: linear-gradient(135deg, #e8d5c4 0%, #d4bfa8 50%, #c9b39a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #8c6e57;
  font-size: 0.85rem;
  font-family: var(--font-body);
}
.img-placeholder::before {
  content: '☀';
  font-size: 2rem;
  opacity: 0.5;
}
.img-placeholder::after {
  content: attr(data-filename);
  font-size: 0.75rem;
  opacity: 0.7;
  text-align: center;
  padding: 0 8px;
}
.img-placeholder.tall { height: 400px; }
.img-placeholder.medium { height: 280px; }
.img-placeholder.short { height: 200px; }
.img-placeholder.square { aspect-ratio: 1; }
.img-placeholder.og { width: 100%; height: 200px; }
.img-placeholder.loaded::before,
.img-placeholder.loaded::after { display: none !important; }

/* ── MOTIFS HIPPIE CSS ── */
.hippie-dots {
  background-image: radial-gradient(circle, rgba(192,98,47,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hippie-flowers {
  position: relative;
}
.hippie-flowers::before {
  content: '✿ ❀ ✿ ❀ ✿ ❀ ✿ ❀ ✿ ❀ ✿';
  position: absolute;
  top: 0; left: 0; right: 0;
  text-align: center;
  font-size: 1rem;
  color: var(--terracotta);
  opacity: 0.15;
  letter-spacing: 8px;
  pointer-events: none;
}
.peace-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%23C0622F' stroke-width='1.5' opacity='0.06'/%3E%3Cline x1='30' y1='10' x2='30' y2='50' stroke='%23C0622F' stroke-width='1.5' opacity='0.06'/%3E%3Cline x1='30' y1='30' x2='13' y2='47' stroke='%23C0622F' stroke-width='1.5' opacity='0.06'/%3E%3Cline x1='30' y1='30' x2='47' y2='47' stroke='%23C0622F' stroke-width='1.5' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background-color: rgba(250, 250, 245, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192,98,47,0.1);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
}
.logo-img .img-placeholder { width: 48px; height: 48px; min-width: 48px; font-size: 0; background-size: 85% !important; background-position: center !important; background-repeat: no-repeat !important; }
.logo-img .img-placeholder::before { font-size: 1.5rem; }
.logo-img .img-placeholder::after { display: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--terracotta);
}
.logo-tagline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--vert-sauge);
}

/* Navigation */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--texte);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--terracotta);
  background-color: rgba(192,98,47,0.06);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--vert-sauge);
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-phone:hover { color: var(--terracotta); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.burger:hover { background: rgba(192,98,47,0.08); }
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--texte);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── BOUTON STICKY MOBILE (OpenTable) ── */
.sticky-reserve {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background-color: var(--terracotta);
  color: #fff;
  text-align: center;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 -4px 20px rgba(192,98,47,0.3);
  text-decoration: none;
  transition: background var(--transition);
}
.sticky-reserve:hover { background-color: var(--terracotta-light); color: #fff; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .img-placeholder {
  width: 100%;
  height: 100%;
  font-size: 0;
}
.hero-bg .img-placeholder::before { font-size: 4rem; }
.hero-bg .img-placeholder::after { font-size: 1rem; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,26,26,0.55) 0%,
    rgba(192,98,47,0.2) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: #fff;
}
.hero-title {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── TRIPADVISOR BADGE ── */
.tripadvisor-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow);
}
.ta-logo {
  font-size: 2rem;
  color: #34E0A1;
}
.ta-info { line-height: 1.3; }
.ta-rank { font-size: 0.8rem; color: #666; }
.ta-rating {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
}
.ta-stars { color: #34E0A1; font-size: 0.85rem; letter-spacing: 2px; }
.ta-count { font-size: 0.8rem; color: #666; }

/* ── SECTION BADGE TRIPADVISOR (homepage) ── */
.ta-section {
  background: var(--creme);
  padding: 32px 0;
  text-align: center;
}
.ta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ── CARDS ── */
.cards-grid { display: grid; gap: 28px; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-img { overflow: hidden; }
.card-img .img-placeholder { height: 220px; }
.card-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-title { font-family: var(--font-title); font-size: 1.2rem; margin-bottom: 8px; }
.card-text { color: #555; font-size: 0.95rem; margin-bottom: 16px; }
.card-tag {
  display: inline-block;
  background: rgba(192,98,47,0.1);
  color: var(--terracotta);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── SERVICES ICONS ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-item {
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.service-item:hover { transform: translateY(-4px); }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.service-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.service-text { font-size: 0.9rem; color: #666; }

/* ── SECTION PRESSE ── */
.presse-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.presse-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: #888;
  transition: all var(--transition);
  min-width: 120px;
  text-align: center;
}
.presse-logo:hover {
  color: var(--terracotta);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* ── INSTAGRAM GRID ── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-card {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-card .img-placeholder { width: 100%; height: 100%; font-size: 0; }
.insta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(192,98,47,0);
  transition: background var(--transition);
}
.insta-card:hover::after { background: rgba(192,98,47,0.2); }

/* ── AVIS CLIENTS ── */
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.avis-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.avis-card::before {
  content: '"';
  font-family: var(--font-title);
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.avis-stars { color: #FFB800; letter-spacing: 3px; margin-bottom: 12px; }
.avis-text { font-size: 0.95rem; color: #444; font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.avis-author { font-weight: 700; font-size: 0.88rem; color: var(--terracotta); }
.avis-source { font-size: 0.78rem; color: #999; }

/* ── SECTION OPENTABLE ── */
.opentable-section { text-align: center; }
.opentable-slot {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 40px;
  border: 2px dashed rgba(192,98,47,0.2);
  margin-top: 24px;
}
.opentable-comment {
  font-family: monospace;
  font-size: 0.85rem;
  color: #888;
}

/* ── EMAIL BANNER ── */
.email-banner {
  background: linear-gradient(135deg, var(--terracotta) 0%, #a04e25 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.email-banner::before {
  content: '✿ ❀ ✿ ❀ ✿';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  opacity: 0.2;
  letter-spacing: 12px;
  color: #fff;
}
.email-banner .section-title { color: #fff; }
.email-subtitle { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1rem; }
.email-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.95);
  color: var(--texte);
  outline: none;
}
.email-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
.email-form input::placeholder { color: #aaa; }

/* ── FOOTER ── */
.site-footer {
  background-color: #1A1A1A;
  color: rgba(255,255,255,0.8);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { color: #fff; font-size: 1.2rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 16px 0; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--terracotta); color: #fff; }

.footer-col-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--terracotta); }

/* Footer SEO — mots-clés anchor links */
.footer-seo {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.footer-seo a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-seo a:hover { color: rgba(255,255,255,0.7); }
.footer-seo span { color: rgba(255,255,255,0.2); }

.footer-infos p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.footer-infos span { color: var(--terracotta); min-width: 16px; }
.footer-infos a { color: rgba(255,255,255,0.6); }
.footer-infos a:hover { color: var(--terracotta); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--terracotta); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: calc(var(--header-h) + 12px) 0 0;
  font-size: 0.85rem;
  color: #888;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: '›'; color: #ccc; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb [aria-current] { color: var(--terracotta); font-weight: 700; }

/* ── PAGE HERO (pages internes) ── */
.page-hero {
  background: linear-gradient(135deg, var(--creme) 0%, #f0e8db 100%);
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--blanc-casse);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .accent { display: block; margin-bottom: 20px; }
.page-hero p { color: #666; font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

/* ── ACCORDÉON FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--texte);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--terracotta); }
.faq-question[aria-expanded="true"] { color: var(--terracotta); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(192,98,47,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--terracotta);
  transition: transform var(--transition), background var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-category-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--vert-sauge);
  margin: 36px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(107,143,113,0.3);
}

/* ── CARTE / MENU ── */
.menu-section { margin-bottom: 48px; }
.menu-section-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--terracotta);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(192,98,47,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-items { display: grid; gap: 16px; }
.menu-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.menu-item-info { flex: 1; }
.menu-item-name { font-family: var(--font-title); font-size: 1.05rem; margin-bottom: 4px; }
.menu-item-desc { font-size: 0.88rem; color: #666; margin-bottom: 6px; }
.menu-item-allergens { font-size: 0.78rem; color: #999; font-style: italic; }
.menu-item-price {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--terracotta);
  white-space: nowrap;
}
.menu-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 8px;
}
.badge-vege { background: rgba(107,143,113,0.15); color: var(--vert-sauge); }
.badge-signature { background: rgba(192,98,47,0.12); color: var(--terracotta); }
.badge-sg { background: rgba(200,170,100,0.15); color: #8a6d3b; }

/* ── MAP / CONTACT ── */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
  background: #e5d5c5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(192,98,47,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-title { font-weight: 700; margin-bottom: 4px; }
.contact-info-text { color: #666; font-size: 0.92rem; }
.horaires-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.horaire-item { font-size: 0.9rem; }
.horaire-jour { font-weight: 700; color: var(--terracotta); }

/* ── FORMULAIRE ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0d5ca;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--texte);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(192,98,47,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ARTICLE DE BLOG ── */
.article-header {
  background: linear-gradient(135deg, var(--creme) 0%, #f0e8db 100%);
  padding: calc(var(--header-h) + 48px) 0 48px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.article-tag {
  background: rgba(192,98,47,0.12);
  color: var(--terracotta);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.article-date { font-size: 0.85rem; color: #888; }
.article-read-time { font-size: 0.85rem; color: #888; }
.article-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.article-intro { font-size: 1.1rem; color: #555; max-width: 720px; }

.article-img-hero { margin: 40px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); }
.article-img-hero .img-placeholder { height: 480px; }

.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--terracotta); }
.article-body h3 { font-size: 1.25rem; margin: 28px 0 12px; font-style: normal; font-weight: 700; }
.article-body p { margin-bottom: 20px; color: #3a3a3a; line-height: 1.8; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; color: #3a3a3a; line-height: 1.8; }
.article-body li { margin-bottom: 6px; }
.article-blockquote {
  border-left: 4px solid var(--terracotta);
  background: var(--creme);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;
  font-style: italic;
  color: #555;
  font-size: 1.05rem;
}

.article-cta-box {
  background: linear-gradient(135deg, var(--terracotta) 0%, #a04e25 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin: 48px 0;
}
.article-cta-box h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; font-style: normal; }
.article-cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }

/* ── PRESSE PAGE ── */
.presse-citation {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}
.presse-media-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.presse-media-type { font-size: 0.8rem; color: #999; margin-bottom: 12px; }
.presse-quote {
  font-style: italic;
  color: #444;
  font-size: 1.02rem;
  line-height: 1.7;
  border-left: 3px solid var(--terracotta);
  padding-left: 16px;
}
.presse-link { margin-top: 12px; font-size: 0.88rem; }
.presse-link a { color: var(--terracotta); font-weight: 700; }

/* ── PAGE MENTIONS / CONFIDENTIALITE ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.4rem; margin: 36px 0 12px; color: var(--terracotta); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; font-style: normal; font-weight: 700; }
.legal-content p, .legal-content li { color: #444; font-size: 0.95rem; line-height: 1.8; }
.legal-content ul { margin: 0 0 16px 20px; }
.legal-content li { margin-bottom: 4px; }
.legal-content a { color: var(--terracotta); }

/* ── PAGE 404 ── */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.page-404-inner { max-width: 600px; }
.page-404-emoji { font-size: 5rem; margin-bottom: 24px; display: block; }
.page-404-num {
  font-family: var(--font-title);
  font-size: 8rem;
  color: var(--terracotta);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 8px;
}
.page-404-title { font-size: 1.8rem; margin-bottom: 12px; }
.page-404-text { color: #666; margin-bottom: 32px; }
.page-404-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── ANIMATIONS SCROLL ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 60px 0; }
  h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  /* Navigation mobile */
  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--blanc-casse);
    padding: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 4px; width: 100%; }
  .nav-link { font-size: 1.1rem; padding: 12px 16px; width: 100%; }
  .burger { display: flex; }
  .header-phone { display: none; }
  .header-cta .btn { padding: 10px 20px; font-size: 0.85rem; }

  /* Bouton sticky mobile */
  .sticky-reserve { display: block; }
  body { padding-bottom: 60px; }

  /* Grids */
  .cards-grid-2, .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .avis-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .presse-logos { gap: 16px; }
  .presse-citation { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .email-form input { min-width: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .horaires-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .menu-item { flex-direction: column; }
  .hero { height: 90vh; }
}

/* ── BANDEAU BRUNCH (sur page carte) ── */
.brunch-banner { display:flex; align-items:center; gap:16px; background:linear-gradient(135deg, var(--vert-sauge) 0%, #5a7a60 100%); color:#fff; border-radius:12px; padding:18px 24px; text-decoration:none; margin:24px 0; transition:transform .2s, box-shadow .2s; }
.brunch-banner:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(107,143,113,.35); color:#fff; }
.brunch-banner-icon { font-size:2rem; flex-shrink:0; }
.brunch-banner-text { flex:1; display:flex; flex-direction:column; gap:3px; }
.brunch-banner-text strong { font-family:var(--font-title); font-size:1.15rem; font-weight:700; }
.brunch-banner-text span { font-size:0.88rem; opacity:.9; }
.brunch-banner-cta { white-space:nowrap; background:rgba(255,255,255,0.2); border:1px solid rgba(255,255,255,0.4); border-radius:20px; padding:8px 16px; font-size:0.88rem; font-weight:700; flex-shrink:0; }
@media(max-width:600px) { .brunch-banner { flex-wrap:wrap; } .brunch-banner-cta { width:100%; text-align:center; } }

/* ── BANDEAU BOISSONS (sur page carte) ── */
.boissons-banner { display:flex; align-items:center; gap:16px; background:linear-gradient(135deg, var(--terracotta) 0%, #a0521f 100%); color:#fff; border-radius:12px; padding:18px 24px; text-decoration:none; transition:transform .2s, box-shadow .2s; }
.boissons-banner:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(192,98,47,.35); color:#fff; }
.boissons-banner-icon { font-size:2rem; flex-shrink:0; }
.boissons-banner-text { flex:1; display:flex; flex-direction:column; gap:3px; }
.boissons-banner-text strong { font-family:var(--font-title); font-size:1.15rem; font-weight:700; }
.boissons-banner-text span { font-size:0.88rem; opacity:.9; }
.boissons-banner-cta { white-space:nowrap; background:rgba(255,255,255,0.2); border:1px solid rgba(255,255,255,0.4); border-radius:20px; padding:8px 16px; font-size:0.88rem; font-weight:700; flex-shrink:0; }
@media(max-width:600px) { .boissons-banner { flex-wrap:wrap; } .boissons-banner-cta { width:100%; text-align:center; } }

/* ── MENU LISTE (carte restaurant) ── */
.menu-list-wrap { margin: 0 0 1.5rem; }
.menu-list-category { margin-bottom: 2rem; }
.menu-list-cat-title { font-family: var(--font-title); color: var(--terracotta); font-size: 1.05rem; font-weight: 700; border-bottom: 2px solid var(--terracotta); padding-bottom: 6px; margin-bottom: 0.75rem; }
.menu-list-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 9px 0; border-bottom: 1px dotted #d8c9b8; gap: 1rem; flex-wrap: nowrap; }
.menu-list-item:last-child { border-bottom: none; }
.menu-list-name { font-family: var(--font-title); font-size: 0.98rem; color: var(--texte); flex: 1 1 0; min-width: 0; }
.menu-list-name small { font-family: var(--font-body); font-size: 0.82rem; color: var(--gris-chaud); font-weight: 400; display: block; margin-top: 2px; }
.menu-list-name .badge { font-size: 0.68rem; margin-left: 0.4rem; vertical-align: middle; }
.menu-list-price { font-weight: 700; color: var(--terracotta); white-space: nowrap; font-family: var(--font-body); font-size: 0.95rem; flex-shrink: 0; padding-top: 2px; }
.menu-accompagnements { background: var(--creme); border-radius: var(--radius); padding: 1.1rem 1.4rem; margin-top: 1rem; font-size: 0.88rem; color: var(--texte); line-height: 1.6; }
.menu-accompagnements strong { color: var(--terracotta); }
.menu-enfants { border: 2px solid var(--vert-sauge); border-radius: var(--radius); padding: 1rem 1.4rem; margin-top: 1.25rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.menu-enfants-name { flex: 1; min-width: 200px; font-family: var(--font-title); font-size: 0.95rem; }
.menu-enfants-price { font-weight: 700; color: var(--vert-sauge); font-size: 1.1rem; }
.tapas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0.75rem; margin-bottom: 2rem; }
.tapas-item { background: var(--creme); border-radius: var(--radius-sm); padding: 0.85rem 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }
.tapas-name { font-family: var(--font-title); font-size: 0.93rem; color: var(--texte); }
.tapas-price { font-weight: 700; color: var(--terracotta); white-space: nowrap; }

/* ── BANDEAU COOKIES CNIL ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--creme);
  border-top: 3px solid var(--terracotta);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.13);
  padding: 1rem 1.5rem;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}
#cookie-banner.cookie-hidden {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-content p {
  flex: 1;
  min-width: 200px;
  font-size: 0.88rem;
  color: var(--texte);
  margin: 0;
  line-height: 1.5;
  font-family: var(--font-body);
}
.cookie-link {
  color: var(--terracotta);
  text-decoration: underline;
  margin-left: 0.4rem;
  font-weight: 600;
}
.cookie-link:hover { opacity: 0.8; }
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: var(--terracotta);
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--terracotta-light); }
.btn-cookie-refuse {
  background: transparent;
  color: var(--texte);
  border: 2px solid #999;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-refuse:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
@media (max-width: 600px) {
  .cookie-content { flex-direction: column; gap: 0.75rem; }
  .cookie-buttons { width: 100%; }
  .btn-cookie-accept, .btn-cookie-refuse { flex: 1; text-align: center; }
}

/* ── PRINT ── */
@media print {
  .site-header, .sticky-reserve, .email-banner { display: none; }
  body { padding: 0; }
  .section { padding: 24px 0; }
}
