/* ============================================
   O'Marie Annie – style.css  v2
   o-marie-annie.hitop.fr
   SEO + Mobile-Friendly edition
   ============================================ */

/* ---------- RESET & VARIABLES ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:           #F5EFE0;
  --warm-white:      #FBF8F2;
  --terracotta:      #C4622D;
  --terracotta-dark: #A04E22;
  --bordeaux:        #6B1F2A;
  --gold:            #C9973A;
  --charcoal:        #2C2418;
  --text:            #3D3020;
  --text-light:      #7A6A55;
  --border:          #DDD3BF;
  --green:           #3D7A4A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-title em,
h2.section-h2 em { color: var(--terracotta); font-style: italic; }

h2.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.25;
}

/* ---------- NAVIGATION ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.25rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img { height: 36px; width: auto; flex-shrink: 0; }

.nav-links { display: flex; gap: 0.25rem; list-style: none; }

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  /* FIX: min touch target 48px */
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 4px;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.nav-links a:hover,
.nav-links a.active { background: var(--terracotta); }

/* ---- HAMBURGER MENU (mobile) ---- */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  /* FIX: touch target */
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
/* X when open */
nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(245,239,224,0.1);
  padding: 0.5rem 0 1rem;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
nav.menu-open + .nav-mobile { display: block; }

.nav-mobile a {
  display: flex;
  align-items: center;
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  /* FIX: touch target 48px */
  min-height: 48px;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(245,239,224,0.07);
  transition: background 0.15s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover,
.nav-mobile a.active { background: rgba(196,98,45,0.25); color: var(--gold); }

/* ---------- HERO (page d'accueil) ---------- */
.hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,98,45,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201,151,58,0.1) 0%, transparent 60%);
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
  position: relative;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--cream);
  line-height: 1.1;
  position: relative;
  margin-bottom: 0.5rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-subtitle {
  color: rgba(245,239,224,0.7);
  font-size: 1.05rem;
  margin: 1.25rem auto 2rem;
  max-width: 480px;
  font-weight: 300;
  position: relative;
}

.hero-cta {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  position: relative;
}

.badge {
  background: rgba(245,239,224,0.08);
  border: 1px solid rgba(245,239,224,0.15);
  color: var(--cream);
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
}

/* ---------- PAGE HERO (sous-pages) ---------- */
.page-hero {
  background: var(--charcoal);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 120%, rgba(196,98,45,0.2) 0%, transparent 70%);
}
.page-hero .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  position: relative;
  line-height: 1.2;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  color: rgba(245,239,224,0.65);
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
  position: relative;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}
.hero-tag.green  { background: var(--green);      color: #fff; }
.hero-tag.gold   { background: var(--gold);        color: var(--charcoal); }
.hero-tag.terra  { background: var(--terracotta);  color: #fff; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--terracotta); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- BOUTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* FIX: min touch target 48px */
  min-height: 48px;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid rgba(245,239,224,0.35); color: var(--cream); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--charcoal); font-weight: 600; }
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

/* ---------- SECTIONS GENERIQUES ---------- */
section { padding: 4rem 1.5rem; }

.section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-text {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.75;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ---------- FEATURE CARDS (accueil) ---------- */
.features {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.feature-card { text-align: center; }
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.feature-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

/* ---------- PAGE CARDS (accueil) ---------- */
.pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.page-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(44,36,24,0.12);
}
.card-header {
  background: var(--charcoal);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.card-header::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(196,98,45,0.2);
}
.card-emoji { font-size: 2.2rem; margin-bottom: 0.75rem; display: block; }
.card-header h3 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.25rem;
  line-height: 1.3;
}
.card-body { padding: 1.25rem 1.5rem; }
.card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.card-link {
  font-size: 0.82rem;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- HORAIRES BLOC ---------- */
.horaires-bloc {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2.5rem;
}
.horaires-bloc h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.horaires-rows { display: flex; flex-direction: column; gap: 0.6rem; }
.horaire-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(245,239,224,0.1);
}
.horaire-row:last-child { border-bottom: none; }
.horaire-row .jour { color: rgba(245,239,224,0.65); }
.horaire-row .heure { font-weight: 500; }
.horaire-row .heure.closed { color: var(--text-light); }
.adresse-line {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245,239,224,0.15);
  font-size: 0.88rem;
  color: rgba(245,239,224,0.7);
}
/* FIX: tel link visible dans horaires */
.adresse-line a { color: var(--gold); text-decoration: none; }
.map-hint {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
  /* FIX: touch target */
  min-height: 44px;
}

/* ---------- AVANTAGES GRID ---------- */
.avantages {
  display: grid;
  /* FIX: min() pour éviter overflow <380px */
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 1rem;
  margin: 2rem 0 3rem;
}
.avantage-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  border-top: 3px solid var(--terracotta);
}
.avantage-card .av-icon { font-size: 1.8rem; margin-bottom: 0.5rem; display: block; }
.avantage-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.avantage-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }

/* ---------- MOMENTS TIMELINE ---------- */
.timeline-hero {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  margin-top: 1rem;
}
.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.25rem;
  position: relative;
}
.tl-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  color: rgba(245,239,224,0.3);
  font-size: 0.9rem;
}
.tl-step .tl-time { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 0.2rem; }
.tl-step .tl-label { font-size: 0.88rem; color: var(--cream); font-weight: 500; }
.tl-step .tl-emoji { font-size: 1.4rem; margin-bottom: 0.25rem; }

.moments { margin: 3rem 0; }
.moment-block {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.moment-block:last-child { border-bottom: none; }
.moment-time-badge {
  background: var(--charcoal);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
  min-width: 80px;
}
.moment-time-badge small {
  display: block;
  color: rgba(245,239,224,0.5);
  font-size: 0.65rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}
.moment-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--charcoal); margin-bottom: 0.35rem; }
.moment-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.moment-body .dishes { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }
.dish-tag {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  padding: 0.2rem 0.65rem;
  color: var(--text);
}

/* ---------- LOCATION BLOC ---------- */
.location-bloc {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.location-bloc h3 { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 1rem; font-size: 1.2rem; }
.loc-line { display: flex; gap: 0.6rem; font-size: 0.9rem; margin-bottom: 0.65rem; color: rgba(245,239,224,0.8); align-items: flex-start; }
.loc-line span { line-height: 1.4; }
.loc-highlight { color: #fff; font-weight: 500; }
.nearby-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.nearby-list li { font-size: 0.88rem; color: rgba(245,239,224,0.75); display: flex; gap: 0.5rem; }
.map-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s;
  /* FIX: touch target */
  min-height: 48px;
}
.map-btn:hover { background: var(--terracotta-dark); }

/* ---------- BLOCS COLORÉS ---------- */
.baggage-bloc {
  background: linear-gradient(135deg, #3D7A4A, #2E5C38);
  color: #fff;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.baggage-bloc .icon { font-size: 2.2rem; flex-shrink: 0; }
.baggage-bloc h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.4rem; }
.baggage-bloc p { font-size: 0.9rem; opacity: 0.9; line-height: 1.6; }
.baggage-price { display: inline-block; background: rgba(255,255,255,0.2); padding: 0.2rem 0.6rem; border-radius: 4px; font-weight: 600; margin-top: 0.5rem; }

.info-bloc {
  border-left: 3px solid var(--terracotta);
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}
.info-bloc strong { color: var(--charcoal); }

.highlight-bloc {
  background: var(--charcoal);
  color: rgba(245,239,224,0.8);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 2rem;
}
.highlight-bloc strong { color: var(--gold); }

/* ---------- FORMULE CARD ---------- */
.formule-card {
  background: var(--terracotta);
  color: #fff;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.formule-card::after {
  content: ''; position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.formule-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.5rem; }
.formule-card p { font-size: 0.9rem; opacity: 0.9; line-height: 1.6; }
.formule-card .price { font-size: 1.8rem; font-family: 'Playfair Display', serif; font-weight: 700; margin-top: 0.75rem; }

/* ---------- MENU ITEMS ---------- */
.menu-page { max-width: 820px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.menu-section { margin-bottom: 3rem; }
.menu-section-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}
.menu-section-header .icon { font-size: 1.6rem; }
.menu-section-header h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--charcoal); }
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dotted var(--border);
}
.menu-item:last-child { border-bottom: none; }
.item-info { flex: 1; }
.item-name { font-weight: 500; color: var(--charcoal); font-size: 0.97rem; }
.item-desc { font-size: 0.82rem; color: var(--text-light); margin-top: 0.15rem; font-style: italic; }
.item-price { font-family: 'Playfair Display', serif; color: var(--terracotta); font-size: 1rem; font-weight: 700; white-space: nowrap; margin-left: 1rem; }

/* ---------- BAGAGERIE SPÉCIFIQUE ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1rem;
  margin: 2rem 0 3rem;
}
.pricing-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 6px 24px rgba(44,36,24,0.1); }
.pricing-card.featured { border-color: var(--gold); border-width: 2px; }
.pricing-card .featured-label {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 10px;
  white-space: nowrap;
}
.pricing-card .p-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.pricing-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--charcoal); margin-bottom: 0.25rem; }
.pricing-card .p-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.75rem; line-height: 1.4; }
.pricing-card .p-price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--terracotta); font-weight: 700; }
.pricing-card .p-price small { font-size: 0.85rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; font-weight: 400; }

.steps-list { display: flex; flex-direction: column; gap: 0; margin: 2rem 0; }
.step-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.step-body h3 { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.25rem; }
.step-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { margin: 3rem 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-q { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.faq-a { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ---------- CONTENT WRAPPER ---------- */
.content { max-width: 820px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--charcoal);
  color: rgba(245,239,224,0.5);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.8rem;
}
footer a { color: var(--gold); text-decoration: none; }
footer strong { color: var(--cream); }
footer p + p { margin-top: 0.4rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
  /* FIX: afficher hamburger, cacher nav desktop */
  .nav-burger { display: flex; }
  .nav-links  { display: none; }

  .hero { padding: 3.5rem 1.25rem 3rem; }

  /* FIX: boutons pleine largeur sur mobile */
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; text-align: center; justify-content: center; }

  .moment-block { flex-direction: column; gap: 0.75rem; }
  .timeline-hero { gap: 0; }
  .tl-step { padding: 0.5rem 0.75rem; }
  .location-bloc { grid-template-columns: 1fr; }

  /* FIX: menu section side-by-side → stacked */
  .menu-section-with-photo { display: flex !important; flex-direction: column !important; }
  .menu-section-with-photo img { width: 100% !important; height: 200px !important; order: -1; }

  /* FIX: galerie 2 colonnes sur petit écran */
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }

  section { padding: 2.5rem 1.25rem; }
}

@media (max-width: 400px) {
  .hero-badges { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr !important; }
}

/* ---------- ACCESSIBILITÉ ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Skip link accessibilité */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================
   AMÉLIORATIONS SEO & MOBILE FRIENDLY
   ============================================ */

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--terracotta);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  z-index: 9999;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

/* ---------- NAV LOGO IMG ---------- */
.nav-logo-img {
  height: 36px; width: 36px;
  vertical-align: middle;
  margin-right: .4rem;
  border-radius: 4px;
}

/* ---------- HAMBURGER BUTTON ---------- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 1.5px solid rgba(245,239,224,.3);
  border-radius: 6px;
  cursor: pointer;
  padding: .5rem;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- MOBILE NAV DRAWER ---------- */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  border-top: 1px solid rgba(245,239,224,.1);
  padding: .5rem 0 1rem;
  position: sticky;
  top: 60px;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--cream);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  padding: .85rem 1.5rem;
  border-bottom: 1px solid rgba(245,239,224,.06);
  transition: background .15s;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover,
.nav-mobile a.active { background: var(--terracotta); }

/* ---------- BOUTONS MIN-HEIGHT 48px MOBILE ---------- */
@media (max-width: 600px) {
  .nav-links  { display: none; }
  .nav-burger { display: flex; }

  .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.5rem;
    font-size: .95rem;
  }

  .hero-cta { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta .btn { width: min(320px, 90vw); }

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

  /* Tap targets pour liens de navigation mobile */
  .nav-mobile a { min-height: 52px; }

  /* Pricing grid 1 col sur mobile */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Transport grid 2 cols sur mobile */
  .transport-grid { grid-template-columns: 1fr 1fr; }

  /* Steps plus lisibles */
  .step-item { gap: 1rem; }

  /* Location bloc déjà géré, mais renforcer */
  .location-bloc { gap: 1.5rem; }

  /* Avantages 2 cols sur mobile */
  .avantages { grid-template-columns: 1fr 1fr; }

  /* Baggage bloc vertical sur mobile */
  .baggage-bloc { flex-direction: column; gap: .75rem; }

  /* Menu section with photo → colonne unique */
  .menu-section-with-photo {
    grid-template-columns: 1fr !important;
  }
  .menu-section-with-photo img { order: -1; }

  /* Footer téléphone bien visible */
  footer a[href^="tel"] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
  }
}

/* ---------- MAILLAGE INTERNE : liens contextuels ---------- */
.inline-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  margin: 1.5rem 0;
  transition: box-shadow .2s;
}
.inline-link-card:hover { box-shadow: 0 4px 16px rgba(44,36,24,.1); }
.inline-link-card .ilc-icon { font-size: 1.8rem; flex-shrink: 0; }
.inline-link-card .ilc-title { font-weight: 600; color: var(--charcoal); font-size: .95rem; }
.inline-link-card .ilc-desc  { font-size: .82rem; color: var(--text-light); margin-top: .15rem; }
.inline-link-card .ilc-arrow { margin-left: auto; color: var(--terracotta); font-size: 1.2rem; flex-shrink: 0; }
