/* === THÈME PREMIUM OR  –  cartes et éléments clés === */
:root{
  --gold:#d4af37;          /* or chaud */
  --gold-2:#b68c1b;        /* or profond pour le texte/prix */
  --ivory:#fffdf5;         /* ivoire très léger */
  --card-radius:18px;
  --shadow-soft:0 10px 20px rgba(0,0,0,.08);
  --shadow-hover:0 16px 30px rgba(0,0,0,.12);
  --shadow-lg:0 20px 40px rgba(0,0,0,.15);
  --cream:#fef7ed;
  --primary-color:#dc2626;
}

/* Cartes principales (home, menu, specials, avis, admin) */
.feature-card,
.menu-item,
.special-card,
.review-form,
.admin-section,
.admin-login {
  border:1px solid transparent;
  border-radius:var(--card-radius);
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(140deg, rgba(212,175,55,.65), rgba(255,247,230,.7) 40%, rgba(212,175,55,.45)) border-box;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover,
.menu-item:hover,
.special-card:hover,
.review-form:hover,
.admin-section:hover,
.admin-login:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-image: linear-gradient(140deg, rgba(212,175,55,.9), rgba(255,247,230,.9) 40%, rgba(212,175,55,.7)) 1;
}

/* Images des specials : petite lueur dorée en bas */
.special-image { position: relative; }
.special-image::after{
  content:"";
  position:absolute; inset:auto 0 0 0; height:26px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(212,175,55,.15));
  pointer-events:none;
}

/* Prix mis en valeur (menu + specials) */
.menu-item .price,
.special-card .price {
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: .2px;
}

/* Badge "Nouveau" (déjà présent sur les specials si isNew=true) */
.badge-gold,
.special-card .special-content span {
  background: linear-gradient(90deg, #f7e9a3, #e6c463, #f7e9a3);
  color:#1f2937;
  border-radius:.5rem;
  padding:.15rem .5rem;
  font-weight:700;
  box-shadow: inset 0 0 0 1px rgba(182,140,27,.35), 0 2px 6px rgba(0,0,0,.08);
}
.badge-gold.shimmer { background-size:200% 100%; animation:goldshine 2.5s linear infinite; }
@keyframes goldshine { 0%{background-position:0%} 100%{background-position:200%} }

/* Table admin plus chic */
.admin-table { border-radius:.75rem; overflow:hidden; box-shadow: var(--shadow-soft); }
.admin-table th{
  background: linear-gradient(180deg, var(--ivory), #fff);
  border-bottom:1px solid rgba(212,175,55,.35);
}
.admin-table td{ background:#fff; }

/* Boutons premium (cohérents avec le thème) */
.btn-primary{
  background: linear-gradient(180deg, #fff, #f7f2e7);
  color:#7a5f08;
  border:1px solid rgba(212,175,55,.65);
}
.btn-primary:hover{
  filter: brightness(1.02);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-secondary{
  border:1px solid rgba(212,175,55,.5);
  color:#7a5f08;
}

/* Visuel du zoom image (modal) */
.image-modal-content{
  border-radius: 1rem;
  box-shadow: 0 25px 60px rgba(0,0,0,.35), 0 0 0 2px rgba(212,175,55,.45);
}

/* Brunch Duo  –  touche or plus marquée */
#brunch-duo .special-card{
  border-image: linear-gradient(140deg, rgba(212,175,55,.9), rgba(255,247,230,.9) 40%, rgba(212,175,55,.7)) 1;
}

/* Sécurité : la modale images ne doit JAMAIS bloquer les clics quand elle est fermée */
.image-modal{ display:none !important; pointer-events:none !important; }
.image-modal.open{ display:block !important; pointer-events:auto !important; }

/* === Carousel (CSP-safe, no inline) === */
.photo-carousel { background: var(--cream); padding: 2rem 0; }
.photo-carousel .container { position: relative; }
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.carousel-track {
  display: flex;
  will-change: transform;
  transition: transform .6s ease;
}
.carousel-slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.carousel-media-layered {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111;
}
.carousel-media-layered img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.carousel-media-background {
  z-index: 0;
  object-fit: cover;
  filter: blur(18px) brightness(.62) saturate(.9);
  transform: scale(1.08);
}
.carousel-media-primary {
  z-index: 1;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.16));
}
.carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 2.5rem 1.25rem .9rem;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
  color: #fff;
  font-size: 1.05rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
  z-index: 2;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: background .2s ease, transform .2s ease;
}
.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.04); }
.carousel-btn:focus { outline: 3px solid var(--primary-color); outline-offset: 2px; }
.carousel-btn svg { width: 18px; height: 18px; color: #111; }
.carousel-btn.prev { left: .75rem; }
.carousel-btn.next { right: .75rem; }
.carousel-dots {
  position: absolute; left: 0; right: 0; bottom: .75rem;
  display: flex; gap: .5rem; justify-content: center; z-index: 6;
}
.carousel-dot {
  width: 32px; height: 32px; border-radius: 999px; border: none;
  background: transparent; cursor: pointer; display: grid; place-items: center;
}
.carousel-dot::after { content: ""; width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.7); }
.carousel-dot[aria-current="true"]::after { background: #fff; width: 20px; border-radius: 6px; }
@media (max-width: 768px) {
  .carousel-caption { font-size: .95rem; max-width: 88%; }
  .carousel-btn { width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none; }
}

/* ===== Footer (compact & premium) ===== */
.footer {
  background: #0f0f10;
  color: #e5e7eb;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 3rem;
}
.footer a { color: #e5e7eb; text-decoration: none; }
.footer a:hover { color: #fff; }

.footer-top { padding: 2.4rem 0 1.2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 2rem;
}
.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: .8rem;
}

.footer-brand {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: .9rem;
  align-items: center;
}
.footer-brand img { width: 112px; height: 40px; object-fit: contain; }
.footer-brand .brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem; font-weight: 700; color: #fff;
}
.footer-brand .brand-slogan { color: #d4af37; font-weight: 600; font-size: .95rem; }

.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: .55rem; color: #cbd5e1; }

.social-links { display: flex; flex-wrap: wrap; gap: .65rem; }
.footer-social { margin-top: .9rem; }
.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.social-link svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
  transform: none;
}
.social-link:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.48); }
.social-link--facebook:hover { background: rgba(24,119,242,.3); box-shadow: 0 7px 20px rgba(24,119,242,.16); }
.social-link--instagram:hover {
  background: linear-gradient(135deg, rgba(131,58,180,.42), rgba(225,48,108,.32), rgba(252,175,69,.28));
  box-shadow: 0 7px 20px rgba(225,48,108,.14);
}
.social-link--tiktok:hover {
  background: rgba(13,13,15,.78);
  box-shadow: -2px 0 0 rgba(37,244,238,.5), 2px 0 0 rgba(254,44,85,.45), 0 7px 20px rgba(0,0,0,.18);
}
.social-link:focus-visible {
  outline: 3px solid #f6c453;
  outline-offset: 3px;
  border-color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: .9rem 0;
  display: flex; justify-content: space-between; gap: .75rem; flex-wrap: wrap;
  color: #a6adbb; font-size: .92rem;
}
.badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .55rem; border-radius: .45rem;
  background: rgba(255,255,255,.07); color: #cbd5e1; font-size: .85rem; font-weight: 600;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* === Correctifs fonctionnels et responsive === */
[hidden] { display: none !important; }
.empty-state {
  grid-column: 1 / -1;
  padding: 1.25rem;
  text-align: center;
  color: #6b7280;
  background: #fff;
  border: 1px dashed #d1d5db;
  border-radius: .85rem;
}
.home-specials, .home-block { padding: 2.5rem 0; }
.home-specials { background: var(--cream); }
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-heading-row h2 { font-family: serif; font-size: 2rem; margin: 0; }
.section-heading-row p { color: #6b7280; margin-top: .25rem; }

.menu-card { padding: 0; overflow: hidden; }
.menu-card-media { width: 100%; height: 190px; background: #f3f4f6; }
.menu-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-card-body { padding: 1.25rem; }
.menu-card-header, .special-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.menu-card-header h3, .special-title-row h3 { margin: 0; }
.content-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.content-badge {
  display: inline-flex;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: .8rem;
  font-weight: 700;
}

.daily-card {
  overflow: hidden;
  border: 1px solid rgba(95,68,51,.12);
  background: var(--antony-paper, #fffdf8);
  box-shadow: 0 22px 60px rgba(61,42,30,.1);
}
.daily-card .special-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  background: #efe7dc;
}
.daily-card .special-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}
.daily-card .special-content { padding: 1.2rem; }
.daily-card .special-content p { color: #6b7280; margin: .55rem 0 .8rem; }
.daily-card .price { color: #785b0b; white-space: nowrap; }
.image-fallback { object-fit: cover; }

.form-msg {
  display: block;
  padding: .8rem 1rem;
  border-radius: .65rem;
  margin-top: 1rem;
  font-weight: 600;
}
.form-msg.info { background: #eff6ff; color: #1d4ed8; }
.form-msg.success { background: #ecfdf5; color: #047857; }
.form-msg.error { background: #fef2f2; color: #b91c1c; }
.review-google-cta {
  margin-top: 1rem;
  padding: 1rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: .75rem;
}
.review-google-cta p { margin-bottom: .75rem; }
.star { border-radius: .25rem; }
.star:focus-visible { outline: 3px solid #dc2626; outline-offset: 2px; }

.image-modal.open { display: flex !important; }
.image-modal-close { background: none; border: 0; }
.footer-social svg { color: #fff; }

.mobile-actions { display: none; }

@media (max-width: 768px) {
  body { padding-bottom: 64px; }
  .header-content { justify-content: center; }
  .logo { width: 100%; justify-content: center; }
  .nav { justify-content: center; gap: .25rem; }
  .nav-btn { font-size: .84rem; padding: .4rem .55rem; }
  .section-heading-row { align-items: stretch; flex-direction: column; }
  .section-heading-row .btn { width: 100%; }
  #brunch-duo .special-card { grid-template-columns: 1fr !important; }
  .menu-grid, .daily-specials { grid-template-columns: 1fr; }
  .admin-nav { overflow-x: auto; flex-wrap: nowrap; }
  #admin-dashboard > nav { overflow-x: auto; padding-bottom: .35rem; }
  #admin-dashboard > nav .admin-nav-btn { flex: 0 0 auto; }
  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1900;
    height: 62px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #111827;
    box-shadow: 0 -6px 24px rgba(0,0,0,.18);
  }
  .mobile-actions a, .mobile-actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-right: 1px solid rgba(255,255,255,.12);
    background: transparent;
    color: #fff;
    text-decoration: none;
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    cursor: pointer;
  }
}
.not-found-page {
  min-height: 100%;
  background: var(--antony-cream);
  color: var(--antony-ink);
  overflow-x: clip;
}
.not-found-page main {
  width: min(780px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.not-found-page h1 { margin-bottom: 2rem; font-size: clamp(2.8rem, 8vw, 5rem); line-height: 1; }
.not-found-page p { max-width: 68ch; line-height: 1.8; }
.not-found-page main { text-align: center; }
.not-found-page p { margin: 0 auto 2rem; }
.not-found-page .btn { margin: .35rem; }

/* === Administration robuste === */
.admin-tabs {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
#admin-logout {
  color: #991b1b;
  border-color: #fecaca;
  background: #fff;
}
#admin-logout:hover { background: #fef2f2; color: #7f1d1d; }
.admin-empty-state {
  grid-column: 1 / -1;
  padding: 1.25rem;
  border: 1px dashed #d1d5db;
  border-radius: .85rem;
  background: #fafafa;
  color: #6b7280;
  text-align: center;
}
.admin-load-error {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 1rem;
  border: 1px solid #fecaca;
  border-radius: .85rem;
  background: #fff7f7;
  color: #7f1d1d;
}
.admin-load-error .btn { margin-left: auto; }
.admin-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1rem;
}
.admin-summary > div {
  display: grid;
  gap: .15rem;
  padding: 1rem;
  border: 1px solid #eadfd5;
  border-radius: .85rem;
  background: #fff;
}
.admin-summary strong { color: var(--antony-red, #8f1d22); font-size: 1.65rem; line-height: 1; }
.admin-summary span { color: #6b625c; font-size: .78rem; font-weight: 800; }
.admin-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
}
.admin-menu-card-layout {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
}
.admin-menu-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.admin-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  min-width: 0;
  color: #1f2937;
  font-size: .95rem;
}
.admin-field input:not([type="checkbox"]),
.admin-field select,
.admin-field textarea {
  width: 100%;
  min-height: 44px;
  padding: .72rem .8rem;
  border: 1px solid #d1d5db;
  border-radius: .65rem;
  background: #fff;
  color: #111827;
  font: inherit;
}
.admin-field textarea { min-height: 120px; resize: vertical; }
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
  outline: 3px solid rgba(220,38,38,.16);
  border-color: #dc2626;
}
.admin-checkbox-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .75rem;
  border: 1px solid #d1d5db;
  border-radius: .65rem;
  background: #fff;
}
.admin-checkbox-row input { width: 20px; height: 20px; }
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(17,24,39,.58);
  backdrop-filter: blur(2px);
}
.admin-modal {
  position: relative;
  z-index: 1;
  opacity: 1;
  width: min(760px, 100%);
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}
@media (max-width: 900px) {
  .admin-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.admin-modal-header,
.admin-modal-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: #fff;
}
.admin-modal-header { justify-content: space-between; border-bottom: 1px solid #e5e7eb; }
.admin-modal-header h3 { margin: 0; font-family: serif; font-size: 1.45rem; }
.admin-modal-footer { justify-content: flex-end; border-top: 1px solid #e5e7eb; }
.admin-modal-body { padding: 1.1rem 1.25rem; overflow: auto; }
.admin-modal-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: .55rem;
  background: #f3f4f6;
  color: #111827;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.admin-modal-close:hover { background: #e5e7eb; }

@media (max-width: 768px) {
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-modal-overlay { align-items: flex-end; padding: 0; }
  .admin-modal { width: 100%; max-height: 94vh; border-radius: 1rem 1rem 0 0; }
  .admin-modal-footer .btn { width: auto; }
  #admin-dashboard > div:first-child { align-items: flex-start !important; }
  .admin-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #admin-dashboard .btn {
    width: auto !important;
    max-width: 100%;
    min-width: 44px;
    padding: .65rem .8rem;
  }
  #admin-dashboard .card > div {
    min-width: 0;
    flex-wrap: wrap;
  }
  .admin-card-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .admin-menu-card-layout {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: .75rem;
  }
  .admin-menu-card-layout > div:first-child {
    width: 80px !important;
    height: 72px !important;
  }
  .admin-menu-meta { flex-wrap: wrap; }
}

.menu-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0 auto 1rem;
}
.menu-legend span {
  padding: .35rem .65rem;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-size: .82rem;
  font-weight: 800;
}

/* === Direction artistique Antony — Pasta · Forno === */
:root {
  --antony-red: #8f1d22;
  --antony-red-dark: #641318;
  --antony-ink: #211d1a;
  --antony-cream: #f7f1e8;
  --antony-paper: #fffdf8;
  --antony-olive: #29483a;
  --antony-terra: #93482f;
}
html { scroll-behavior: smooth; }
body {
  color: var(--antony-ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(182, 103, 69, .07), transparent 26rem),
    var(--antony-cream);
}
body, button, input, select, textarea { font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
h1, h2, h3, .logo, .brand-name { font-family: Georgia, "Times New Roman", serif !important; }
.skip-link {
  position: fixed;
  z-index: 20000;
  left: 1rem;
  top: 1rem;
  padding: .75rem 1rem;
  transform: translateY(-180%);
  border-radius: .4rem;
  background: #fff;
  color: var(--antony-ink);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid #f6c453 !important;
  outline-offset: 3px;
}
.header {
  padding: .7rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background: rgba(33, 29, 26, .96) !important;
  box-shadow: 0 8px 30px rgba(21, 15, 12, .14) !important;
  backdrop-filter: blur(14px);
}
.logo { letter-spacing: .03em; }
.logo svg { fill: #d8b56b; }
.nav { align-items: center; }
.nav-btn {
  min-height: 44px;
  border: 0 !important;
  border-radius: 999px !important;
  color: #f9f3ea !important;
}
.nav-btn:hover, .nav-btn.active {
  background: #fff !important;
  color: var(--antony-red-dark) !important;
  transform: none !important;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 44px;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.language-switcher a {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
}
.language-switcher a[aria-current="page"] {
  background: #fff;
  color: var(--antony-ink);
}
.language-switcher a:focus-visible {
  outline: 3px solid #d8b56b;
  outline-offset: 2px;
}
.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  padding: clamp(5rem, 10vw, 9rem) 0 !important;
  text-align: left !important;
  background: #211d1a !important;
}
.hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position-desktop, center);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(18,14,11,calc((var(--hero-overlay, 58) + 20) / 100)) 0%,
    rgba(18,14,11,calc(var(--hero-overlay, 58) / 100)) 42%,
    rgba(18,14,11,calc(var(--hero-overlay, 58) / 600)) 76%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; width: min(1200px, calc(100% - 2rem)); }
.hero .container > * { max-width: 560px; }
.hero-kicker, .eyebrow {
  margin-bottom: .9rem;
  color: #d8b56b;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.about-section .eyebrow, .not-found-page .eyebrow { color: #7b3b29; }
.photo-carousel p.text-center,
.home-specials .section-heading-row p { color: #5f6672 !important; }
.hero h1 {
  max-width: 560px;
  margin-bottom: 1rem !important;
  font-size: clamp(3rem, 6vw, 5.4rem) !important;
  line-height: .95;
  letter-spacing: -.045em !important;
  text-wrap: balance;
}
.hero .slogan {
  max-width: 650px;
  margin-bottom: 1.4rem !important;
  font-size: clamp(1rem, 2vw, 1.3rem) !important;
  font-style: normal !important;
  line-height: 1.6;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.4rem;
  color: #f6e9d8;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.hero-facts span:not(:last-child)::after {
  content: "·";
  margin-left: 1.4rem;
  color: #d8b56b;
}
.cta-buttons { justify-content: flex-start !important; margin-top: 1.8rem !important; }
.btn { min-height: 48px; border-radius: 999px !important; }
.btn-primary { background: var(--antony-red) !important; color: #fff !important; }
.btn-primary:hover { background: var(--antony-red-dark) !important; }
.btn-secondary { background: rgba(255,255,255,.06) !important; }
.btn-dark { background: var(--antony-ink); color: #fff; }
.features {
  margin: 0 !important;
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.feature-card {
  position: relative;
  min-height: 220px;
  padding: 2rem !important;
  border: 1px solid rgba(100, 74, 56, .12);
  text-align: left !important;
  box-shadow: 0 20px 50px rgba(61, 42, 30, .07) !important;
}
.feature-index { color: var(--antony-terra); font-size: .75rem; font-weight: 900; letter-spacing: .16em; }
.feature-card h3 { margin-top: 2.7rem; font-size: 2rem !important; }
.signatures-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--antony-olive);
  color: #fff;
}
.signatures-section .section-heading-row p { color: #d9e1db; }
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.signature-grid .menu-card {
  color: var(--antony-ink);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: none;
}
.about-section { padding: clamp(4rem, 9vw, 8rem) 0; background: var(--antony-paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 7rem); }
.about-grid h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1; letter-spacing: -.035em; }
.about-grid p { font-size: 1.1rem; line-height: 1.8; }
.content-note { margin-top: 1.2rem; padding-left: 1rem; border-left: 3px solid var(--antony-terra); color: #6f6258; font-size: .92rem !important; }
.menu-tools {
  max-width: 620px;
  margin: 1.5rem auto 2rem;
}
.menu-tools label { display: block; margin-bottom: .45rem; font-weight: 800; }
.menu-tools input {
  width: 100%;
  min-height: 50px;
  padding: .8rem 1rem;
  border: 1px solid #d7cbbd;
  border-radius: 999px;
  background: #fff;
  color: var(--antony-ink);
  font: inherit;
}
.menu-card {
  border: 1px solid rgba(95, 68, 51, .11);
  box-shadow: 0 14px 40px rgba(61, 42, 30, .07) !important;
}
.menu-card-header .price { white-space: nowrap; }
.content-badge {
  border-radius: 999px !important;
  background: #f2e6d6 !important;
  color: #6e241f !important;
}
.footer { background: var(--antony-ink) !important; }
@media (max-width: 900px) {
  .signature-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-content { flex-wrap: nowrap !important; }
  .nav {
    position: absolute;
    inset: calc(100% + 1px) 0 auto;
    display: none !important;
    padding: .8rem 1rem 1rem;
    background: rgba(33, 29, 26, .98);
    box-shadow: 0 18px 30px rgba(0,0,0,.2);
  }
  .nav.open { display: grid !important; grid-template-columns: 1fr 1fr; }
  .nav-btn { width: 100%; }
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
  }
  .hero::after { display: none; }
  .hero-image {
    position: relative;
    inset: auto;
    order: 2;
    z-index: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: var(--hero-position-mobile, center);
  }
  .hero .container {
    order: 1;
    align-self: stretch;
    width: min(100%, 720px);
    padding: clamp(3rem, 10vw, 5rem) 1rem 2.4rem;
  }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem) !important; }
  .hero-facts span:not(:last-child)::after { display: none; }
  .cta-buttons { align-items: stretch !important; }
  .cta-buttons .btn { width: 100% !important; }
  .signature-grid { grid-template-columns: 1fr; }
  .mobile-actions { z-index: 9000 !important; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
.doppio-details {
  max-width: 920px;
  margin: 0 auto 1.5rem;
  padding: .9rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: .85rem;
  background: #fff;
}
.doppio-details summary { cursor: pointer; font-weight: 900; color: #991b1b; }
.doppio-details > p { margin: .75rem 0; color: #6b7280; }
.doppio-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .55rem 1rem; font-size: .9rem; }
.doppio-grid span {
  position: relative;
  padding: .8rem 1rem .8rem 2.2rem;
  border: 1px solid #eadfd5;
  border-radius: 999px;
  background: #fffdf8;
  color: #382f29;
  font-weight: 800;
}
.doppio-grid span::before {
  content: "";
  position: absolute;
  left: .9rem;
  top: 50%;
  width: .55rem;
  height: .55rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--antony-terra);
}
@media (max-width: 680px) { .doppio-grid { grid-template-columns: 1fr; } }

/* Catégories éditoriales */
#menu-items { display: block; }
.menu-category-section {
  padding: clamp(2.8rem, 7vw, 5.4rem) 0;
  border-top: 1px solid #d9c9b8;
}
.menu-category-section:first-child { border-top: 0; padding-top: 1.5rem; }
.menu-category-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: 2rem;
  padding-left: 1.25rem;
  border-left: 4px solid var(--antony-red);
}
.menu-category-heading span {
  color: var(--antony-terra);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.menu-category-heading h3 {
  margin: .25rem 0;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1;
}
.menu-category-heading p { max-width: 62ch; color: #6f6258; }

/* Brunch administrable */
.brunch-section { padding: clamp(3rem, 7vw, 6rem) 0; background: #efe4d5; }
.brunch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--antony-ink);
  color: #fff;
  box-shadow: 0 35px 90px rgba(44,29,20,.2);
}
.brunch-media { min-height: 460px; overflow: hidden; background: #d8c8b7; }
.brunch-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brunch-content { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(2rem, 6vw, 5rem); }
.brunch-content h2 { margin: 0 0 .6rem; font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: .95; }
.brunch-subtitle { color: #d8b56b; font-weight: 900; }
.brunch-copy { max-width: 48ch; color: #e8ded3; line-height: 1.75; }
.brunch-price { margin: 1rem 0 1.4rem; font-size: 1.35rem; }

/* Évaluation contemporaine */
.review-page-shell, .contact-page-shell { width: min(1120px, calc(100% - 2rem)); }
.review-intro, .contact-intro { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.review-intro .eyebrow, .contact-intro .eyebrow { color: #785b0b; }
.review-intro h2, .contact-intro h2 { margin: 0 0 .8rem; font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: .98; }
.review-intro > p:last-child, .contact-intro > p:last-child { color: #6f6258; font-size: 1.08rem; }
.review-form {
  width: min(850px, 100%);
  margin: 0 auto 2rem;
  padding: clamp(1.4rem, 4vw, 3.5rem);
  border: 1px solid #e5d7c8;
  border-radius: 1.5rem;
  box-shadow: 0 28px 80px rgba(61,42,30,.09);
}
.review-form-heading { display: flex; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #eadfd5; }
.review-form-heading > span {
  width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 50%; background: var(--antony-red); color: #fff; font-weight: 900;
}
.review-form-heading h3 { margin: 0; font-size: 1.8rem; }
.review-form-heading p { margin: .2rem 0 0; color: #6f6258; }
.review-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .6rem; }
.review-options label {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem 1rem;
  border: 1px solid #ddd0c2;
  border-radius: .8rem;
  background: #fffdf8;
  cursor: pointer;
  font-weight: 700;
}
.review-options label:has(input:checked) { border-color: var(--antony-red); background: #fff3ed; color: var(--antony-red-dark); }
.review-options input { width: 20px; height: 20px; accent-color: var(--antony-red); }
.review-rating-block { padding: 1.2rem; border-radius: 1rem; background: #f8f1e8; text-align: center; }
.star-rating { justify-content: center; margin-top: .7rem; }
.star { font-size: clamp(2.3rem, 7vw, 3.7rem) !important; }
.review-submit { width: 100%; margin-top: .5rem; }

.reviews-showcase {
  width: min(1120px, 100%);
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid #e5d7c8;
}
.reviews-showcase-head {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  text-align: center;
}
.reviews-showcase-head h3 {
  margin: .25rem 0 .6rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}
.reviews-showcase-head > p:last-child { color: #6f6258; }
.public-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1rem;
}
.public-review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid #e5d7c8;
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 18px 50px rgba(61,42,30,.08);
}
.public-review-stars {
  color: #d4a514;
  font-size: 1.25rem;
  letter-spacing: .08em;
}
.public-review-comment {
  margin: 1rem 0;
  color: #443a34;
  font-size: 1.02rem;
  line-height: 1.7;
}
.public-review-scores {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
}
.public-review-score {
  padding: .35rem .55rem;
  border-radius: 999px;
  background: #f8f1e8;
  color: #6a5240;
  font-size: .78rem;
  font-weight: 800;
}
.public-review-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid #eee5db;
  color: #7a6d64;
  font-size: .85rem;
}
.public-review-footer strong { color: #2e2723; }
/* Contact */
.contact-grid { align-items: stretch; gap: 1.25rem !important; }
.contact-info, .contact-map {
  overflow: hidden;
  border: 1px solid #e4d7c9;
  border-radius: 1.4rem !important;
  box-shadow: 0 24px 70px rgba(61,42,30,.09) !important;
}
.contact-info { padding: clamp(1.5rem, 4vw, 3rem) !important; background: var(--antony-ink) !important; color: #fff; }
.contact-info h3 { margin: 0 0 2rem; color: #fff; font-size: 2.3rem; }
.contact-info .eyebrow { color: #d8b56b; }
.contact-item { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-item a { color: #f6c453 !important; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.social-links--contact { align-items: center; margin-right: .25rem; }
.contact-map iframe { min-height: 440px; display: block; }

/* Administration contenus */
.admin-panel-shell { padding: 1.5rem; border-radius: 1rem; background: #fff; box-shadow: var(--shadow); }
.admin-panel-shell > h3 { margin: 0 0 .4rem; }
.admin-panel-shell > p { margin-bottom: 1.5rem; color: #6b625c; }
.home-content-form { display: grid; gap: 1rem; }
.admin-content-card { padding: clamp(1rem,3vw,1.6rem); border: 1px solid #e6d9cc; border-radius: 1rem; background: #fffdf9; }
.admin-content-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.admin-content-card-head .eyebrow { margin: 0 0 .25rem; color: var(--antony-terra); }
.admin-content-card-head h4 { margin: 0; font-size: 1.65rem; }
.admin-content-preview { width: 150px; aspect-ratio: 1; margin-top: 1rem; border-radius: .8rem; object-fit: cover; }
.admin-hero-preview-wrap { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.admin-hero-preview { width: min(360px, 100%); aspect-ratio: 16 / 9; border-radius: .8rem; object-fit: cover; }
.admin-content-warning {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border: 1px solid #f2c76e;
  border-radius: .75rem;
  background: #fff8e7;
  color: #744b00;
  font-weight: 700;
}
.admin-field-hint { color: #6b625c; font-size: .9rem; }
.admin-dish-picker { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .5rem; max-height: 300px; overflow: auto; }
.admin-repeater { display: grid; gap: .55rem; margin: 1rem 0; }
.admin-repeater-row { display: grid; grid-template-columns: auto minmax(0,1fr) auto auto; align-items: center; gap: .6rem; }
.admin-repeater-row > input { min-height: 44px; padding: .65rem .75rem; border: 1px solid #d1d5db; border-radius: .65rem; }
.admin-drag-handle { color: #8a7769; cursor: grab; font-weight: 900; }
.admin-inline-check { display: flex; align-items: center; gap: .35rem; }
.admin-sticky-save { position: sticky; bottom: .5rem; z-index: 5; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .8rem; border: 1px solid #e1d2c2; border-radius: 1rem; background: rgba(255,253,248,.95); box-shadow: 0 10px 35px rgba(0,0,0,.12); backdrop-filter: blur(10px); }
.admin-sticky-save p { margin: 0; color: #166534; font-weight: 700; }

@media (max-width: 768px) {
  .brunch-card { grid-template-columns: 1fr; }
  .brunch-media { min-height: 0; aspect-ratio: 1; }
  .review-options, .admin-dish-picker { grid-template-columns: 1fr; }
  .admin-content-card-head { flex-direction: column; }
  .admin-repeater-row { grid-template-columns: auto minmax(0,1fr); }
  .admin-repeater-row .admin-inline-check, .admin-repeater-row .btn { grid-column: 2; }
  .admin-sticky-save { align-items: stretch; flex-direction: column; }
}
