/* =====================================================================
   marketing.css — Sections éditoriales de la page d'accueil : hero,
   ruban défilant, points forts, incontournables, histoire, horaires
   et pied de page. Utilisé uniquement par index.html.
   ===================================================================== */

/* ---------- Hero ---------- */
.hero-section {
  position: relative; overflow: hidden; scroll-margin-top: var(--topbar-h);
  background: var(--grad-hero); color: #fff;
  padding: calc(var(--topbar-h) + var(--sp-7)) 0 var(--sp-8);
}
.hero-section::before {
  content: ""; position: absolute; inset: -30% -10%;
  background: conic-gradient(from 200deg at 70% 30%, rgba(255,255,255,.14), transparent 35%, transparent 65%, rgba(255,255,255,.08));
  animation: heroDrift 24s linear infinite;
  pointer-events: none;
}
@keyframes heroDrift { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-grid { position: relative; display: grid; gap: var(--sp-7); align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: var(--sp-9); } }
.hero-title { font-size: clamp(2.3rem, 5.2vw, var(--fs-4xl)); color: #fff; margin: var(--sp-3) 0 var(--sp-4); max-width: 16ch; }
.hero-sub { font-size: var(--fs-md); max-width: 48ch; opacity: .95; margin-bottom: var(--sp-6); line-height: var(--lh-snug); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-7); }
.hero-actions .btn { background: #fff; color: var(--primary-d); }
.hero-actions .btn:hover { background: #fff; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.hero-actions .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); box-shadow: none; }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.hero-stats { display: flex; gap: var(--sp-7); flex-wrap: wrap; }
.hero-stat .v { display: block; font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 600; }
.hero-stat .l { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; opacity: .85; margin-top: 2px; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; padding-bottom: var(--sp-5); }
.hero-dish {
  width: min(340px, 78vw); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,.32);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-badge {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  background: #fff; color: var(--ink); padding: 10px 20px; border-radius: var(--radius-full);
  font-weight: 700; font-size: var(--fs-sm); box-shadow: var(--shadow-md); white-space: nowrap;
}

/* ---------- Ruban défilant ---------- */
.ribbon { background: var(--grad-ribbon); color: #fff; overflow: hidden; padding: var(--sp-4) 0; }
.ribbon-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.ribbon-track span {
  display: inline-block; flex-shrink: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: var(--fs-lg); letter-spacing: .01em; padding-right: 2ch; white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections génériques ---------- */
.section { padding: var(--sp-9) 0; scroll-margin-top: var(--topbar-h); }
.section-head { max-width: 620px; }
.section-head h2 { font-size: var(--fs-2xl); margin-top: var(--sp-2); }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: 0; }
.link-more { font-weight: 700; font-size: var(--fs-sm); color: var(--primary-d); white-space: nowrap; }
.link-more:hover { text-decoration: underline; }

/* ---------- Points forts ---------- */
.highlights-section { background: var(--bg); }
.highlights-grid { display: grid; gap: var(--sp-5); margin-top: var(--sp-6); }
@media (min-width: 768px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }
.highlight-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-5); transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.highlight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.highlight-num { font-family: var(--font-display); font-size: 11px; color: var(--text-3); letter-spacing: .12em; display: block; margin-bottom: var(--sp-3); }
.highlight-icon {
  width: 46px; height: 46px; border-radius: var(--radius-full); background: var(--primary-tint); color: var(--primary-d);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-4);
}
.highlight-icon svg { width: 22px; height: 22px; }
.highlight-card h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.highlight-card p { color: var(--text-2); font-size: var(--fs-sm); line-height: var(--lh-snug); }

/* ---------- Incontournables ---------- */
.popular-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.popular-scroller {
  display: flex; gap: var(--sp-4); overflow-x: auto; padding: var(--sp-2) 0 var(--sp-2);
  margin-top: var(--sp-6); scroll-snap-type: x mandatory; scrollbar-width: none;
}
.popular-scroller::-webkit-scrollbar { display: none; }
.popular-scroller .card { min-width: 250px; max-width: 270px; scroll-snap-align: start; }

/* ---------- Histoire ---------- */
.story-grid { display: grid; gap: var(--sp-7); align-items: center; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: .85fr 1.15fr; gap: var(--sp-9); } }
.story-frame {
  aspect-ratio: 4 / 5; border-radius: var(--radius-xl); background: var(--grad-placeholder);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.story-frame::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(36,26,19,.07) 1.6px, transparent 1.6px);
  background-size: 20px 20px;
}
.story-frame svg { position: relative; width: 30%; height: 30%; color: var(--primary-d); opacity: .55; filter: drop-shadow(0 4px 10px rgba(36,26,19,.12)); }
.story-copy blockquote {
  margin-top: var(--sp-6); padding-left: var(--sp-5); border-left: 3px solid var(--accent-gold);
  font-family: var(--font-display); font-style: italic; font-size: var(--fs-lg); color: var(--ink);
}
.story-copy cite { display: block; margin-top: var(--sp-2); font-style: normal; font-size: var(--fs-xs); color: var(--text-2); font-family: var(--font-body); }
.story-copy p { color: var(--text-2); margin-top: var(--sp-4); line-height: var(--lh-body); }

/* ---------- Pied de page (horaires + adresse + marque) ---------- */
.site-footer { background: var(--grad-dark); color: var(--on-dark); padding: var(--sp-9) 0 var(--sp-5); margin-top: var(--sp-8); scroll-margin-top: var(--topbar-h); }
.footer-grid { display: grid; gap: var(--sp-8); }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.2fr .8fr; align-items: start; } }
.site-footer h2 { color: #fff; font-size: var(--fs-2xl); margin: var(--sp-2) 0 var(--sp-4); }
.site-footer .u-eyebrow { color: var(--accent-gold-light); }
.hours-list { list-style: none; display: grid; gap: 8px; max-width: 360px; }
.hours-list li { display: flex; justify-content: space-between; font-size: var(--fs-sm); border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 7px; color: var(--on-dark-2); }
.hours-list li .v { color: #fff; font-weight: 600; }
.hours-list li.is-today { color: #fff; }
.hours-list li.is-today .v { color: var(--accent-gold-light); }
.footer-address { color: var(--on-dark-2); font-size: var(--fs-sm); margin-top: var(--sp-4); line-height: 1.7; }
.footer-open-state {
  margin-top: var(--sp-4); display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: var(--fs-sm); padding: 7px 16px; border-radius: var(--radius-full);
  background: rgba(255,255,255,.08);
}
.footer-open-state .dot { width: 8px; height: 8px; border-radius: 50%; }
.footer-open-state.is-open .dot { background: #7fce6c; }
.footer-open-state.is-closed .dot { background: #e08a63; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
.footer-logo { display: flex; align-items: center; gap: var(--sp-3); font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600; color: #fff; }
.footer-brand p { color: var(--on-dark-2); font-size: var(--fs-sm); max-width: 34ch; }
.footer-brand .btn { margin-top: var(--sp-2); }
.footer-bottom {
  margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-2);
  font-size: 12px; color: var(--on-dark-2);
}
