/* ==========================================================================
   Base commune des sites de démonstration Klaro
   Chaque site définit ses propres variables de thème avant d'inclure ce
   fichier (couleurs, polices, rayons) — voir le <style> en tête de page.
   ========================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

.container { width: 100%; max-width: var(--container, 1120px); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: var(--display-weight, 700); line-height: 1.15; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-2, var(--accent)); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 16.5px; margin-top: 12px; }
.text-muted { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--btn-radius, 999px);
  font-weight: 700; font-size: 15px; border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: normal;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: var(--accent-contrast, #fff); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

/* ---------- Demo banner (bandeau "site de démonstration") ---------- */
.demo-banner {
  background: var(--demo-banner-bg, #111);
  color: var(--demo-banner-text, #fff);
  text-align: center;
  font-size: 13.5px;
  padding: 10px 16px;
}
.demo-banner a { text-decoration: underline; font-weight: 700; }
.demo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.16); color: inherit;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg, var(--bg));
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.brand-mark {
  width: 38px; height: 38px; border-radius: var(--mark-radius, 10px);
  background: var(--accent); color: var(--accent-contrast, #fff);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 9px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: var(--text-muted); transition: color 0.15s ease, background 0.15s ease; }
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg-alt); color: var(--text);
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle svg { width: 18px; height: 18px; }
@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
.mobile-menu {
  position: fixed; inset: 0 0 0 0; top: var(--mobile-menu-top, 0);
  background: var(--bg); z-index: 99; padding: 24px;
  display: none; flex-direction: column; gap: 6px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 16px 18px; border-radius: 10px; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 16px; }

/* ---------- Hero ---------- */
.hero {
  padding: var(--hero-pad, 88px) 0 72px;
  background: var(--hero-bg, var(--bg));
  position: relative; overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-inner.center { max-width: 760px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); text-wrap: balance; }
.hero .lead { font-size: 18px; color: var(--text-muted); margin: 18px 0 30px; max-width: 540px; }
.hero-inner.center .lead { margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-inner.center .hero-cta { justify-content: center; }
.hero-meta { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-inner.center .hero-meta { justify-content: center; }
.hero-meta div { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.hero-meta strong { color: var(--text); }

/* ---------- Cards & grid ---------- */
.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius, 16px);
  padding: 28px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow, 0 16px 40px -20px rgba(0,0,0,0.35)); }
.icon-tile {
  width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft, rgba(0,0,0,0.06));
  color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); } }

.tag {
  display: inline-flex; align-items: center; padding: 5px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 700; background: var(--accent-soft, rgba(0,0,0,0.06)); color: var(--accent);
}

/* ---------- Pricing / menu items ---------- */
.menu-item { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 16px 0; border-bottom: 1px dashed var(--border); }
.menu-item:last-child { border-bottom: none; }
.menu-item h4 { font-size: 16.5px; margin-bottom: 4px; }
.menu-item p { color: var(--text-muted); font-size: 14px; }
.menu-item .price { font-family: var(--font-display); font-weight: 700; color: var(--accent); white-space: nowrap; font-size: 17px; }

/* ---------- Hours table ---------- */
.hours-table { display: flex; flex-direction: column; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14.5px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text-muted); }
.hours-row span:last-child { font-weight: 700; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--cta-bg, var(--bg-alt)); border: 1px solid var(--border); border-radius: var(--radius-lg, 20px);
  padding: 56px 40px; text-align: center;
}
.cta-banner h2 { font-size: clamp(24px, 3.6vw, 34px); margin-bottom: 12px; }
.cta-banner p { color: var(--text-muted); max-width: 460px; margin: 0 auto 26px; }
.cta-banner .hero-cta { justify-content: center; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: minmax(0,1fr); } }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.form-field input, .form-field textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 15px; font-size: 15px; color: var(--text); width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft, rgba(0,0,0,0.08)); }
/* visibility (pas display) : l'espace du message reste toujours réservé, pour
   qu'un champ qui redevient valide ne fasse jamais sauter la mise en page. */
.form-field .error-msg { font-size: 12px; color: #d64545; display: block; visibility: hidden; margin-top: 6px; }
.form-field.invalid input, .form-field.invalid textarea { border-color: #d64545; }
.form-field.invalid .error-msg { visibility: visible; }
.form-success { display: none; text-align: center; padding: 48px 20px; }
.form-success.show { display: block; }
.form-success .icon-tile { margin: 0 auto 20px; width: 56px; height: 56px; border-radius: 50%; }
.form-success h3 { font-size: 21px; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* ---------- Contact ---------- */
.contact-card { display: flex; gap: 14px; align-items: flex-start; min-width: 0; }
.contact-card > div { min-width: 0; }
.contact-card p { color: var(--text-muted); font-size: 14.5px; overflow-wrap: break-word; }
.contact-card h4 { font-size: 15px; margin-bottom: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg, var(--bg-alt)); border-top: 1px solid var(--border); padding: 48px 0 0; margin-top: 96px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; padding-bottom: 32px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 10px; max-width: 320px; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 12px; }
.footer-links li { margin-bottom: 8px; font-size: 14px; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { border-top: 1px solid var(--border); padding: 18px 0; text-align: center; font-size: 13px; color: var(--text-muted); }

/* ---------- Demo explainer (bas de page, bien visible) ---------- */
.demo-explainer {
  background: var(--demo-explainer-bg, #14161c);
  color: var(--demo-explainer-text, #e7e9ee);
  padding: 40px 0;
}
.demo-explainer .container { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.demo-explainer .demo-icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.demo-explainer h3 { font-size: 17px; margin-bottom: 6px; }
.demo-explainer p { color: rgba(255,255,255,0.7); font-size: 14.5px; max-width: 620px; }
.demo-explainer .btn { margin-top: 14px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.35s; }

/* ---------- Utility top bar (fine bande au-dessus du header) ---------- */
.utility-bar { background: var(--utility-bg, var(--bg-alt)); text-align: center; font-size: 12.5px; padding: 7px 16px; color: var(--text-muted); letter-spacing: 0.03em; border-bottom: 1px solid var(--border); }

/* ---------- Split hero (texte + visuel) ---------- */
.hero-split .container { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-split .container { grid-template-columns: minmax(0, 1fr); } .hero-visual-wrap { order: -1; } }
.hero-visual-wrap { position: relative; }
.hero-visual {
  aspect-ratio: 1 / 1; border-radius: 50%;
  background: var(--hero-visual-bg, var(--accent-soft));
  display: flex; align-items: center; justify-content: center;
  font-size: 130px; position: relative; overflow: hidden;
  /* z-index:0 crée un contexte d'empilement propre à ce conteneur : la photo (z-index:1
     à l'intérieur) ne peut plus « déborder » visuellement au-dessus de la carte flottante
     (.hero-stat-float), qui est en dehors de .hero-visual mais chevauche son coin. */
  z-index: 0;
}
.hero-visual.square { border-radius: var(--radius-lg, 22px); aspect-ratio: 4 / 3.2; }
.hero-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.22), transparent 55%); }
.hero-visual svg { width: 62%; height: 62%; position: relative; z-index: 1; filter: drop-shadow(0 14px 20px rgba(0,0,0,0.18)); }
.hero-visual.square svg { width: 82%; height: 82%; }
.hero-stat-float {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 14px 20px; box-shadow: 0 20px 44px -18px rgba(0,0,0,0.4);
  z-index: 5; /* toujours au-dessus de la photo, même si elle recouvre tout le coin */
}
.hero-stat-float strong { display: block; font-family: var(--font-display); font-size: 24px; color: var(--accent); }
.hero-stat-float span { font-size: 12px; color: var(--text-muted); }
@media (max-width: 640px) { .hero-visual { font-size: 90px; } }

/* ---------- Stat strip ---------- */
.stat-strip { background: var(--stat-strip-bg, var(--bg-alt)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 30px 0; }
.stat-strip .grid { grid-template-columns: repeat(4, minmax(0,1fr)); text-align: center; }
.stat-strip strong { display: block; font-family: var(--font-display); font-size: 28px; color: var(--accent); }
.stat-strip span { font-size: 12.5px; color: var(--text-muted); }
@media (max-width: 640px) { .stat-strip .grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; } }
.stat-strip.in-hero { background: transparent; border: none; border-top: 1px solid var(--border); padding: 28px 0 0; margin-top: 30px; }

/* ---------- Full-bleed photo band (no side-by-side text — image stands alone) ---------- */
.photo-band { position: relative; overflow: hidden; background: var(--accent-soft); }
.photo-band img { width: 100%; height: 320px; object-fit: cover; display: block; }
.photo-band img.photo-fail { display: none; }
.photo-band .band-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 18px 0 16px; background: rgba(0,0,0,0.62);
}
.photo-band .band-caption .container p { color: #fff; font-size: 13.5px; margin: 0; }
.photo-band.duotone img { filter: grayscale(1) brightness(0.55) contrast(1.15) sepia(0.4) hue-rotate(-40deg) saturate(3.2); }
@media (max-width: 640px) { .photo-band img { height: 220px; } }

/* ---------- Hero with full-bleed photo background + opaque floating text card ---------- */
.hero-photo-overlay { position: relative; min-height: 540px; display: flex; align-items: center; overflow: hidden; padding: 60px 0; background: var(--hero-bg, var(--bg-alt)); }
.hero-photo-overlay > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-photo-overlay > img.photo-fail { display: none; }
.hero-photo-overlay::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.08) 45%, transparent 70%); }
.hero-photo-overlay .container { position: relative; z-index: 2; }
.hero-photo-overlay .hero-card {
  background: var(--bg-card); border-radius: var(--radius-lg, 20px); padding: 40px 36px;
  max-width: 540px; box-shadow: 0 34px 70px -24px rgba(0,0,0,0.45);
}
@media (max-width: 640px) { .hero-photo-overlay { min-height: 0; padding: 36px 0; } .hero-photo-overlay .hero-card { padding: 26px 22px; } }

/* ---------- Process row (étapes numérotées) ---------- */
.process-row { display: flex; gap: 16px; }
.process-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: var(--accent-contrast, #fff);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; font-size: 15px;
}
.process-row h4 { font-size: 15.5px; margin-bottom: 5px; }
.process-row p { color: var(--text-muted); font-size: 13.5px; }

/* ---------- Alternating feature rows ---------- */
.alt-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; align-items: center; padding: 44px 0; border-bottom: 1px solid var(--border); }
.alt-row:last-child { border-bottom: none; }
.alt-row.reverse { direction: rtl; }
.alt-row.reverse > * { direction: ltr; }
.alt-visual { aspect-ratio: 4 / 3; border-radius: var(--radius-lg, 20px); background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 60px; position: relative; overflow: hidden; z-index: 0; }
.alt-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 25% 20%, rgba(255,255,255,0.2), transparent 55%); }
.alt-row h3 { font-size: 21px; margin-bottom: 10px; }
.alt-row p { color: var(--text-muted); }
@media (max-width: 760px) { .alt-row, .alt-row.reverse { grid-template-columns: minmax(0,1fr); direction: ltr; } .alt-row .alt-visual { order: -1; } }

/* ---------- Gallery grid ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.gallery-grid div { aspect-ratio: 1 / 1; border-radius: 14px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 34px; }
.gallery-grid div:nth-child(4n+1), .gallery-grid div:nth-child(4n+4) { aspect-ratio: 1 / 1.35; }
.gallery-grid div { position: relative; overflow: hidden; z-index: 0; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } .gallery-grid div, .gallery-grid div:nth-child(4n+1), .gallery-grid div:nth-child(4n+4) { aspect-ratio: 1/1; } }

/* ---------- Real photos inside visual containers (with graceful fallback) ---------- */
/* If a hotlinked photo fails to load, .photo-fail is added by JS and the emoji/gradient
   background already on the container shows through instead of a broken-image icon. */
.hero-visual img, .alt-visual img, .gallery-grid div img, .menu-card-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; display: block;
}
.hero-visual.square img { border-radius: inherit; }
.hero-visual img.photo-fail, .alt-visual img.photo-fail, .gallery-grid div img.photo-fail, .menu-card-visual img.photo-fail { display: none; }
.photo-credit { position: absolute; bottom: 6px; right: 8px; z-index: 2; font-size: 9.5px; color: rgba(255,255,255,0.75); background: rgba(0,0,0,0.35); padding: 2px 6px; border-radius: 6px; font-family: var(--font-body); letter-spacing: 0.02em; }

/* ---------- Quote block ---------- */
.quote-block { text-align: center; max-width: 620px; margin: 0 auto; }
.quote-block .mark { font-family: var(--font-display); font-size: 56px; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.quote-block p { font-size: 19px; font-style: italic; color: var(--text); margin-bottom: 16px; }
.quote-block .who { font-size: 13.5px; color: var(--text-muted); font-weight: 700; }

/* ---------- Price table ---------- */
.price-table { border: 1px solid var(--border); border-radius: var(--radius, 16px); overflow: hidden; }
.price-table-row { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 18px 22px; }
.price-table-row:nth-child(odd) { background: var(--bg-alt); }
.price-table-row h4 { font-size: 15.5px; margin-bottom: 3px; }
.price-table-row p { font-size: 13px; color: var(--text-muted); }
.price-table-row .price { font-family: var(--font-display); font-weight: 700; color: var(--accent); white-space: nowrap; font-size: 16px; }
@media (max-width: 520px) { .price-table-row { flex-direction: column; align-items: flex-start; gap: 6px; } }

/* ---------- Day timeline (horaire narratif) ---------- */
.day-timeline-item { display: grid; grid-template-columns: 84px minmax(0,1fr); gap: 20px; padding: 18px 0; border-bottom: 1px dashed var(--border); align-items: start; }
.day-timeline-item:last-child { border-bottom: none; }
.day-timeline-item .time { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 15px; }
.day-timeline-item h4 { font-size: 15px; margin-bottom: 3px; }
.day-timeline-item p { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Nav underline variant ---------- */
.nav-links.underline a { position: relative; }
.nav-links.underline a:hover { background: none; color: var(--text); }
.nav-links.underline a::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform 0.15s ease; }
.nav-links.underline a:hover::after { transform: scaleX(1); }

/* ---------- Visual menu cards ---------- */
.menu-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
@media (max-width: 900px) { .menu-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .menu-card-grid { grid-template-columns: minmax(0,1fr); } }
.menu-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius, 16px); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow, 0 16px 40px -20px rgba(0,0,0,0.35)); }
.menu-card-visual { aspect-ratio: 4 / 3; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 46px; position: relative; overflow: hidden; z-index: 0; }
.menu-card-body { padding: 18px 20px; }
.menu-card-body h4 { font-size: 16px; margin-bottom: 4px; }
.menu-card-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.menu-card-body .price { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 16px; }

/* ---------- Utilities ---------- */
.pt-section { padding: 88px 0; }
.pt-section-sm { padding: 56px 0; }
@media (max-width: 640px) {
  .pt-section { padding: 56px 0; }
  .hero { padding: var(--hero-pad-mobile, 48px) 0 48px; }
  .cta-banner { padding: 40px 24px; }
  .footer-top { flex-direction: column; }
}
