/* ==========================================================================
   LES ARSENAUX — Ristorante · Pizzeria · Fribourg
   Design system & components — HTML/CSS/JS pur
   Palette : #0D0D0C charbon · #C9A84C or · #F5F0E8 crème · #8A7E6E muted
   Typo : Playfair Display (titres) · Inter (corps)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  --bg:        #0D0D0C;
  --bg-alt:    #111111;
  --bg-footer: #0A0A0A;
  --bg-field:  #111111;
  --gold:      #C9A84C;
  --gold-dim:  #9c8240;
  --cream:     #F5F0E8;
  --muted:     #8A7E6E;

  --line:        rgba(201, 168, 76, 0.22);
  --line-soft:   rgba(245, 240, 232, 0.10);
  --shadow:      0 24px 60px -28px rgba(0, 0, 0, 0.85);

  --font-title: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw:    1200px;
  --maxw-sm: 860px;
  --nav-h:   76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 600; line-height: 1.12; margin: 0; }

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   3. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--sm { max-width: var(--maxw-sm); }

.section { padding: 5rem 0; position: relative; }
.section--alt { background: var(--bg-alt); }

@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.section-title em { font-style: italic; color: var(--muted); }

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
}

.text-center { text-align: center; }
.center-x { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   4. LILY / FLEUR-DE-LYS DIVIDER  (✦)
   -------------------------------------------------------------------------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin: 1.5rem 0;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  width: clamp(40px, 12vw, 110px);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider .lily { font-size: 1.1rem; line-height: 1; opacity: 0.95; }

/* compact inline lily (no rules) */
.lily-mark { color: var(--gold); font-size: 1rem; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              transform 0.35s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.btn:hover { background: var(--gold); color: var(--bg); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid { background: var(--gold); color: var(--bg); }
.btn--solid:hover { background: transparent; color: var(--gold); }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   6. NAVIGATION
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(13, 13, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line-soft);
}
.site-nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; flex-direction: row; align-items: center; gap: 0.55rem; line-height: 1; }
.brand__name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.brand__tagline {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

.nav-links { display: none; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--cream);
  margin: 0 auto;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 9, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
              visibility 0.4s;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mobile a {
  font-family: var(--font-title);
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  color: var(--cream);
}
.nav-mobile a:hover { color: var(--gold); }

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem;
}
.hero--full    { min-height: 100vh; }
.hero--menu    { min-height: 56vh; }
.hero--pizza   { min-height: 64vh; }
.hero--contact { min-height: 46vh; }

.hero__bg {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  height: 130%;           /* overscan so parallax never exposes an edge */
  background-color: #16140d;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,13,12,0.6) 0%, rgba(13,13,12,0.45) 40%, rgba(13,13,12,0.92) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 920px; }

.hero__title {
  font-size: clamp(2.8rem, 9vw, 6rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  margin: 0;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 2.5vw, 1.05rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}
.hero__lead {
  color: var(--cream);
  opacity: 0.82;
  max-width: 52ch;
  margin: 1.2rem auto 0;
}
.hero__badge {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
}

/* compact page-hero title scale */
.hero--menu .hero__title,
.hero--pizza .hero__title,
.hero--contact .hero__title { font-size: clamp(2.4rem, 7vw, 4.6rem); }

/* --------------------------------------------------------------------------
   8. SIGNATURE DISHES
   -------------------------------------------------------------------------- */
.dishes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .dishes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .dishes { grid-template-columns: repeat(3, 1fr); } }

.dish-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}
.dish-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.dish-card__media {
  height: 220px;
  background-color: #1a1812;
  background-size: cover;
  background-position: center;
  position: relative;
}
.dish-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,12,0) 40%, rgba(13,13,12,0.7) 100%);
}
.dish-card__body { padding: 1.6rem 1.5rem 1.8rem; }
.dish-card__name {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.dish-card__desc { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* --------------------------------------------------------------------------
   9. ABOUT / CHI SIAMO
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 2rem; }
}
.about__content { max-width: 820px; margin: 0 auto; }
.about__text { color: var(--cream); opacity: 0.86; }
.about__quote {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 1.5rem 0 0;
}
.about__media {
  position: relative;
  min-height: 360px;
  background-color: #1a1812;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-soft);
}
@media (min-width: 900px) { .about__media { min-height: 520px; } }

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
}
.value {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   10. MENU DEL GIORNO / INSTAGRAM CALLOUT
   -------------------------------------------------------------------------- */
.callout { text-align: center; }
.callout .section-subtitle { margin: 0 auto 1.6rem; }

/* --------------------------------------------------------------------------
   11. HOURS
   -------------------------------------------------------------------------- */
.hours {
  max-width: 540px;
  margin: 2rem auto 0;
  border-top: 1px solid var(--line-soft);
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.hours__day {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--cream);
}
.hours__time { color: var(--muted); font-size: 0.95rem; text-align: right; }

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--line-soft);
  padding: 4rem 0 2.5rem;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.footer__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  justify-content: center;
  margin: 2.2rem 0;
}
.footer__nav a {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer__info {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.9;
}
.footer__info a:hover { color: var(--gold); }
.footer__social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 1.6rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer__legal {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}
.footer__credit { margin: 0.9rem 0 0; font-size: 11px; letter-spacing: 0.04em; }
.footer__credit a { color: var(--gold); }
.footer__credit a:hover { color: var(--gold); opacity: 0.75; }

/* --------------------------------------------------------------------------
   13. CATEGORY HEADER (menu & pizza)  — FR title / IT sub + lily
   -------------------------------------------------------------------------- */
.cat-head { text-align: center; margin: 0 auto 2.5rem; }
.cat-head__title {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: var(--cream);
  letter-spacing: 0.04em;
}
.cat-head__sub {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin: 0.3rem 0 0;
}
.menu-category { margin-bottom: 4.5rem; }
.menu-category:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   14. MENU ROWS (menu.html)
   -------------------------------------------------------------------------- */
.allergy-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 0.75rem 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.menu-list { max-width: 800px; margin: 0 auto; }

.menu-row { padding: 1.3rem 0; border-bottom: 1px solid var(--line-soft); }
.menu-row:last-child { border-bottom: 0; }
.menu-row__head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.menu-row__name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  white-space: normal;
}
.menu-row__lead {
  flex: 1 1 auto;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
  min-width: 18px;
}
.menu-row__price {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  font-size: 0.98rem;
}
.menu-row__desc { color: var(--muted); font-size: 0.92rem; margin: 0.45rem 0 0; max-width: 70ch; }
.menu-row__desc--it { font-style: italic; opacity: 0.78; font-size: 0.86rem; }

/* origin block */
.origin {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}
.origin h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.origin p { margin: 0.3rem 0; }
.origin strong { color: var(--cream); font-weight: 600; }

/* --------------------------------------------------------------------------
   15. PIZZA PAGE
   -------------------------------------------------------------------------- */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin: 2.5rem auto 1rem;
}
.format {
  text-align: center;
  border: 1px solid var(--line);
  padding: 1.6rem 0.8rem;
  background: var(--bg-alt);
}
.format__size {
  font-family: var(--font-title);
  font-size: 1.7rem;
  color: var(--gold);
}
.format__people {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.formats-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
}

.pizza-list { max-width: 860px; margin: 0 auto; }
.pizza-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.pizza-row:last-child { border-bottom: 0; }
.pizza-row__main {}
.pizza-row__name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.pizza-row__desc { color: var(--muted); font-size: 0.9rem; margin: 0.35rem 0 0; }
.pizza-row__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}
.price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 58px;
}
.price__size {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.price__value { font-weight: 600; color: var(--gold); font-size: 0.98rem; }

.badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}
.pizza-row--signature {
  background: linear-gradient(90deg, rgba(201,168,76,0.08), transparent);
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  margin-left: -1.2rem;
}

@media (min-width: 720px) {
  .pizza-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }
  .pizza-row__main { flex: 1; }
  .pizza-row__prices { flex: 0 0 auto; justify-content: flex-end; }
}

/* Pizza pillars (3 valeurs) */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--line-soft);
  background: var(--bg-alt);
}
.pillar__icon { font-size: 2rem; line-height: 1; }
.pillar__title {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1rem 0 0.5rem;
}
.pillar__text { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* Kids menu */
.kids {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 640px) { .kids { grid-template-columns: repeat(2, 1fr); } }
.kids .menu-row { border: 1px solid var(--line-soft); padding: 1.4rem; }

/* --------------------------------------------------------------------------
   16. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 920px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: stretch; }
}
.contact__map {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-alt);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.4) contrast(1.05); display: block; }

.contact-form {}
.field { margin-bottom: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--cream);
  background: var(--bg-field);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(138,126,110,0.7); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.field textarea { resize: vertical; min-height: 140px; }

.info-list { margin-top: 0; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--cream);
}
.info-item:last-child { border-bottom: 0; }
.info-item__icon { color: var(--gold); font-size: 1.05rem; flex: 0 0 auto; width: 1.4rem; text-align: center; }
.info-item a:hover { color: var(--gold); }

.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; }

/* --------------------------------------------------------------------------
   17. SCROLL-REVEAL  (GSAP target — JS sets/animates; noscript = visible)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); }
.gsap-ready .reveal { /* state controlled by GSAP */ }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   18. UTILITIES
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.stack-lg > * + * { margin-top: 1.5rem; }
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
/* Révélé UNIQUEMENT après un vrai Tab clavier dans la session : main.js pose
   la classe `user-is-tabbing` sur <html> au premier Tab réel. Le `:focus` seul
   ne révèle JAMAIS le lien — aucun focus programmatique/initial ni heuristique
   :focus-visible du navigateur ne peut le faire apparaître. Par construction,
   la cause d'un éventuel focus au chargement devient sans importance. */
html.user-is-tabbing .skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.6rem 1rem;
  clip: auto;
  clip-path: none;
  white-space: normal;
  background: var(--gold);
  color: var(--bg);
  z-index: 200;
}

/* --------------------------------------------------------------------------
   19. IMAGE BINDINGS  (kept in CSS so markup needs no inline styles)
   Paths are relative to this file (assets/css/).
   Swap these URLs for real photography later — sizes/ratios already set.
   -------------------------------------------------------------------------- */
.hero__bg--home    { background-image: url("../img/les-arsenaux-photos/hero/03-salle-panoramique.png"); }
/* Index hero : overlay noir plat rgba(0,0,0,0.45) sur la photo panoramique */
.hero--full .hero__overlay { background: rgba(0, 0, 0, 0.45); }
.hero__bg--menu    { background-image: url("../img/hero-menu.jpg"); }
.hero__bg--pizza   { background-image: url("../img/hero-pizza.jpg"); }
.hero__bg--contact { background-image: url("../img/hero-contact.jpg"); }
.hero__bg--apropos { background-image: url("../img/les-arsenaux-photos/ambiance/02-bar-mojito-ambiance.png"); }

/* I Nostri Piatti — real photography */
.dish-card__media--1 { background-image: url("../img/les-arsenaux-photos/piatti/01-spaghetto-alla-chitarra.png"); }
.dish-card__media--2 { background-image: url("../img/les-arsenaux-photos/piatti/02-carpaccio-di-manzo.jpg"); }
.dish-card__media--3 { background-image: url("../img/les-arsenaux-photos/piatti/03-il-gambero-crevettes.png"); }
.dish-card__media--4 { background-image: url("../img/les-arsenaux-photos/piatti/04-tartare-di-cervo.png"); }
.dish-card__media--5 { background-image: url("../img/les-arsenaux-photos/piatti/05-il-maialino-porc.png"); }
.dish-card__media--6 { background-image: url("../img/les-arsenaux-photos/piatti/06-tartare-di-salmone.png"); }

/* --------------------------------------------------------------------------
   20. PHOTO INTEGRATION — logo, bouton Commander, galeries, bannière
   (added with the real-photography pass — all CSP-safe, no inline styles)
   -------------------------------------------------------------------------- */

/* Logo in the nav */
.brand__logo { height: 50px; width: auto; display: block; }
@media (max-width: 420px) { .brand__logo { height: 42px; } }

/* "Commander en ligne" button — gold solid, darkens on hover */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--bg);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}
.btn-order:hover { background: var(--gold-dim); border-color: var(--gold-dim); color: var(--bg); transform: translateY(-2px); }
.nav-links .btn-order { margin-left: 1rem; }
.btn-order--mobile { margin-top: 1.4rem; font-size: 0.9rem; padding: 0.95rem 1.8rem; }
.btn-order--lg { font-size: 0.85rem; padding: 1rem 2.1rem; }

/* Chi Siamo — team photo + ambiance gallery */
.about__photo { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
@media (min-width: 900px) { .about__photo { min-height: 520px; } }
.about-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .about-gallery { grid-template-columns: repeat(2, 1fr); } }

/* Reusable photo grid + card (pizze signature, dolci, ambiance) */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .photo-grid--2, .photo-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .photo-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-soft);
  background: #16140d;
  aspect-ratio: 4 / 3;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.photo-card:hover img { transform: scale(1.06); }
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(13, 13, 12, 0);
  transition: background 0.4s var(--ease);
}
.photo-card:hover::after { background: rgba(13, 13, 12, 0.2); }
.photo-card__name {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 1.6rem 1.2rem 0.95rem;
  font-family: var(--font-title);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(13,13,12,0) 0%, rgba(13,13,12,0.55) 55%, rgba(13,13,12,0.92) 100%);
}
.photo-card--signature { border-color: var(--gold); }
.photo-card__badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  z-index: 3;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* Full-width banner (contact) */
.banner {
  position: relative;
  width: 100%;
  min-height: 42vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,12,0.45), rgba(13,13,12,0.7)); }
.banner__content { position: relative; z-index: 2; text-align: center; padding: 1.5rem; }
.banner__title { font-size: clamp(1.8rem, 5vw, 3rem); color: var(--cream); }

/* "Envie de commander ?" CTA (menu bottom) */
.order-cta { text-align: center; }
.order-cta .btn-order { margin-top: 1.5rem; display: inline-flex; }

/* --------------------------------------------------------------------------
   21. TOUCHES ITALIENNES + MODAL COMMANDER + LIGHTBOX + POÉSIE PIZZA
   -------------------------------------------------------------------------- */

/* Drapeau italien dans la nav */

/* Tagline italienne sous le titre du hero */
.hero__tagline-it {
  font-family: var(--font-title);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  margin: 0.6rem 0 0;
}

/* Séparateur décoratif vert (entre sections — index) */
.sep-it { height: 1px; border: 0; margin: 0; background: #2D5A27; }
/* …sauf juste après le hero : sous la scène plein cadre, cette fine ligne verte
   se lisait comme un artefact / une bande de bord. Le hero a déjà une coupure
   franche vers la section suivante, pas besoin du séparateur ici. */
#hero + .sep-it { display: none; }

/* Description poétique IT/FR sous chaque pizza */
.pizza-poetic {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1.5;
  margin: 0.3rem 0 0.5rem;
}

/* Modal « Commander » — choix de plateforme */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.order-modal.is-open { display: flex; }
.order-modal__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.75); }
.order-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: var(--bg);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.8rem;
}
.order-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.order-modal__close:hover { color: var(--gold); }
.order-modal__title {
  font-size: 1.45rem;
  text-align: center;
  color: var(--cream);
  margin: 0 0 1.5rem;
}
.order-modal__options { display: flex; flex-direction: column; gap: 0.8rem; }
.order-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.order-option:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* Lightbox photos (pizza) */
[data-lightbox="true"] { cursor: pointer; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--line);
}
.lightbox__caption {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
  margin: 0;
  text-align: center;
}
.lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0;
  max-width: 90vw;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  background: transparent;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.lightbox__close { top: 1rem; right: 1.2rem; font-size: 2.4rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2.4rem; padding: 0.4rem 0.9rem; }
.lightbox__prev { left: 0.4rem; }
.lightbox__next { right: 0.4rem; }
.lightbox__close:hover,
.lightbox__nav:hover { color: var(--gold); }
.is-zoomable { cursor: pointer; }
@media (max-width: 768px) {
  .lightbox__nav { font-size: 2rem; padding: 0.3rem 0.6rem; }
  .lightbox__close { font-size: 2.2rem; }
}

/* --------------------------------------------------------------------------
   22. HERO INDEX — image plein écran + animation GSAP
   Scopé sous #hero : n'affecte QUE le hero d'accueil (les autres pages
   gardent leur hero photo + parallaxe intacts).
   -------------------------------------------------------------------------- */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #0D0D0C;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2vh) 20px 6vh;
}
/* Scène (pizza) en couche de fond, animée (Ken Burns) et SÉPARÉE du contenu :
   la composition HTML (couronne/titre/médaille/texte) n'est jamais scalée. */
#hero::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: 0;
  background: url("../img/hero-scene.jpg") center center / cover no-repeat;
  animation: heroKenBurns 2.5s ease-out 0.5s both;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
/* Voile radial : plus sombre au centre (lisibilité de la composition dorée),
   laisse la pizza respirer sur le bord droit. */
#hero .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(135% 105% at 50% 46%, rgba(0,0,0,0.74), rgba(0,0,0,0.34));
}
/* Composition HTML — ordre vertical STRICT identique mobile/desktop :
   couronne → titre → liseré → tagline → liseré → médaille → boutons.
   Tout centré ; l'alignement inter-éléments est garanti par le flux. */
#hero .hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 620px;
  opacity: 0;
  transform: translateY(30px);
}
#hero .hero__wreath { width: clamp(150px, 24vw, 248px); height: auto; display: block; }
#hero .hero__title {
  font-family: var(--font-title);
  color: var(--gold);
  font-weight: 600;
  font-size: clamp(1.9rem, 5.6vw, 4.2rem);
  letter-spacing: clamp(4px, 1.2vw, 13px);
  line-height: 1;
  margin: 0.5rem 0 0;
  white-space: nowrap;   /* une seule ligne, identique mobile/desktop */
}
#hero .divider { margin: 1.1rem 0; }
#hero .hero__tagline {
  color: var(--gold);
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  letter-spacing: 3px;
  margin: 0;
}
#hero .hero__medallion { width: clamp(54px, 7vw, 76px); height: auto; margin: 0.4rem 0 1.7rem; }
#hero .hero__cta { display: flex; gap: 1.2rem; justify-content: center; }
/* Drapeau italien (satin photo, fond détouré) : accent décoratif en coin
   bas-gauche, SOUS le voile (z-index 0, au-dessus de la scène ::before) — hors
   du flux de la composition, ne pousse rien. La rangée de boutons est plafonnée
   à 30rem (480px) et centrée : son bord gauche est au plus près à 769px (~144px)
   et ne fait que reculer quand la fenêtre s'élargit. En bornant la largeur du
   drapeau à 130px au plus étroit, son bord droit reste < 144px → aucun
   chevauchement possible (boutons/titre/couronne), à TOUTE largeur ≥769px et
   TOUTE hauteur. Masqué ≤768px où les boutons pleine largeur empilés prennent le bas. */
#hero .hero__flag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  /* Largeur responsive plafonnée : le bord gauche de la composition est à
     ~145px (769px) puis recule (~625px à 1920px). On grandit le drapeau avec
     le viewport tout en gardant son bord droit sous ce seuil (marge de sécurité)
     → présence forte sur grand écran, drapé qui plonge, mais jamais de
     chevauchement à aucune largeur ≥769px ni aucune hauteur. */
  width: clamp(130px, calc(46vw - 330px), 440px);
  height: auto;
  pointer-events: none;
  user-select: none;
  /* Le haut du drapé s'estompe : émerge de l'ombre, et ne heurte jamais la
     nav sur les fenêtres courtes. */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 17%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 17%);
}
/* Mobile : drapeau visible (coin bas-gauche), plus petit, DERRIÈRE le voile et
   la composition. Espace de respiration en bas (`bottom`) + fondu HAUT ET BAS
   → le drapé émerge de l'ombre et s'y fond, jamais tranché net par le bord du
   viewport, à toute hauteur d'écran (iPhone SE → Pro Max). */
@media (max-width: 768px) {
  #hero .hero__flag {
    /* Drapé DIAGONAL en cascade (vert haut → blanc en travers → rouge bas, tissu
       froissé) — variante mobile détourée depuis la photo source, distincte du
       drapé vertical desktop (`hero-flag.png`, laissé intact). */
    content: url("../img/hero-flag-mobile.png");
    width: clamp(96px, 28vw, 150px);
    bottom: 0;
    /* Satin plein et saturé (asset re-détouré à opacité pleine). Fondu réduit au
       strict minimum : un léger dégradé en haut pour que le pli vert supérieur se
       fonde dans le noir ; en bas et à gauche le drapé déborde naturellement des
       bords du viewport (comme sur la photo de référence) → rouge plein visible,
       pas de coupe nette en plein écran. */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 9%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 9%);
  }
}

.btn--outline {
  padding: 14px 32px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn--outline:hover { background: rgba(201, 168, 76, 0.15); color: var(--gold); transform: none; }

.btn--gold {
  padding: 14px 32px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 2px;
  cursor: pointer;
  /* Hover via filter (et non opacity) : GSAP anime l'opacity du bouton à
     l'entrée du hero — une transition CSS sur la même propriété corrompt la
     capture de valeur finale du tween (bouton figé invisible). */
  transition: filter 0.3s;
}
.btn--gold:hover { filter: brightness(0.88); background: var(--gold); color: var(--bg); transform: none; }

/* Mobile : boutons empilés, tous deux visibles. La composition (couronne →
   titre → liseré → tagline → liseré → médaille) est IDENTIQUE au desktop —
   même markup, même ordre, centrée par le flux. Le fond utilise la même scène. */
@media (max-width: 768px) {
  /* Composition ancrée près du haut (au lieu d'être centrée verticalement) : la
     couronne monte juste sous la barre de nav, moins de respiration noire avant
     le contenu — cohérent avec la photo de référence. La nourriture/drapeau
     occupent le bas du cadre. */
  #hero { align-items: flex-start; padding-top: calc(var(--nav-h) + 1vh); }
  #hero .hero__cta { flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
  #hero .btn--outline, #hero .btn--gold { width: 80vw; max-width: 300px; }
  /* Scène dédiée portrait sur mobile, composée façon photo de référence : noir
     quasi pur dominant (2/3 hauts), pizza confinée en bas à droite, partiellement
     cadrée, avec de la respiration noire autour → couronne, titre et tagline
     posent sur du noir, pas sur de la nourriture. Ancrée bas-droite pour garder
     la pizza en place quel que soit le recadrage cover. */
  #hero::before {
    background-image: url("../img/hero-scene-mobile.jpg");
    background-position: right bottom;
  }
  /* L'asset mobile est déjà assombri (pizza = fond discret). Voile modéré :
     assez pour une lisibilité sans effort du texte doré, mais léger vers le
     coin bas-gauche pour que le drapeau (derrière, z-index 0) reste bien
     visible et discret derrière le bouton « Réserver » sans le polluer. */
  #hero .hero__overlay {
    background: radial-gradient(95% 78% at 50% 42%, rgba(0,0,0,0.62), rgba(0,0,0,0.34));
  }
}
/* Desktop : « Réserver une table » à gauche, « Commander » à droite, répartis. */
@media (min-width: 769px) {
  #hero .hero__cta {
    width: min(30rem, 66vw);
    justify-content: space-between;
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   23. ANIMATIONS — ornement doré animé + micro-interactions
   Gated sous .gsap-ready : sans JS / reduced-motion, tout reste statique.
   -------------------------------------------------------------------------- */
/* Les traits du séparateur se déploient depuis le centre, la fleur de lys éclot */
.gsap-ready .divider::before,
.gsap-ready .divider::after {
  transform: scaleX(0);
  transition: transform 0.9s var(--ease);
}
.gsap-ready .divider::before { transform-origin: right center; }
.gsap-ready .divider::after  { transform-origin: left center; }
.gsap-ready .divider.in-view::before,
.gsap-ready .divider.in-view::after { transform: scaleX(1); }
.gsap-ready .divider .lily {
  transition: transform 0.6s var(--ease) 0.25s, opacity 0.6s var(--ease) 0.25s;
}
.gsap-ready .divider:not(.in-view) .lily { opacity: 0; transform: scale(0.4) rotate(-25deg); }

/* Micro-interaction : le nom du plat / de la pizza passe en doré au survol */
.menu-row__name, .pizza-row__name { transition: color 0.3s var(--ease); }
.menu-row:hover .menu-row__name,
.pizza-row:hover .pizza-row__name { color: var(--gold); }

/* --------------------------------------------------------------------------
   24. MODALE PLAT SIGNATURE — fiche italienne (ne couvre pas tout l'écran)
   -------------------------------------------------------------------------- */
.dish-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.dish-modal.is-open { display: flex; }
.dish-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.dish-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #0D0D0C;
  border: 1px solid var(--gold);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dish-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 13, 12, 0.6);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.dish-modal__close:hover { color: var(--gold); }
.dish-modal__photo {
  width: 100%;
  height: 320px;
  background-color: #16140d;
  background-size: cover;
  background-position: center;
}
.dish-modal__body { padding: 1.6rem 1.5rem 1.9rem; text-align: center; }
.dish-modal__name {
  font-family: var(--font-title);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  margin: 0;
}
.dish-modal__it {
  font-family: var(--font-title);
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.45rem 0 0;
}
.dish-modal__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--gold);
  margin: 1rem 0;
}
.dish-modal__sep::before, .dish-modal__sep::after { content: ""; height: 1px; width: 46px; }
.dish-modal__sep::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.dish-modal__sep::after  { background: linear-gradient(90deg, var(--gold), transparent); }
.dish-modal__sep span { font-size: 0.7rem; line-height: 1; }
.dish-modal__desc { color: var(--cream); opacity: 0.88; font-size: 0.95rem; margin: 0; }

@media (max-width: 768px) {
  .dish-modal__dialog { max-width: 90vw; }
  .dish-modal__photo { height: 240px; }
}
