/* ═══════════════════════════════════════════════════════════════════
   FORNO ROSSO — GridCore premium landing page
   Fichiers séparés: index.html · site.css · site.js
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --fr-bg: #160805;
  --fr-bg-deep: #0d0503;
  --fr-bg-soft: #24100a;
  --fr-surface: rgba(41, 18, 10, .78);
  --fr-surface-strong: #2c130c;
  --fr-cream: #fff4df;
  --fr-cream-soft: rgba(255, 244, 223, .74);
  --fr-muted: rgba(255, 244, 223, .55);
  --fr-line: rgba(255, 217, 150, .16);
  --fr-line-strong: rgba(255, 217, 150, .32);
  --fr-gold: #f4c268;
  --fr-gold-2: #ffd98e;
  --fr-gold-grad: linear-gradient(135deg, #ffe3a8, var(--fr-gold) 48%, #ef9f45);
  --fr-red: #c43822;
  --fr-red-deep: #8f2117;
  --fr-olive: #83a857;
  --fr-shadow: 0 34px 90px rgba(0, 0, 0, .42);
  --fr-shadow-soft: 0 20px 55px rgba(0, 0, 0, .28);
  --fr-radius-sm: 14px;
  --fr-radius-md: 20px;
  --fr-radius-lg: 30px;
  --fr-radius-xl: 42px;
  --fr-max: 1200px;
  --fr-ease: cubic-bezier(.16, 1, .3, 1);
  --mx: 50%;
  --my: 50%;
  /* Layout tokens — update here if demo bar height changes */
  --fr-demobar-h: 38px;
  --fr-nav-h: 74px;
  --fr-header-offset: calc(var(--fr-demobar-h) + var(--fr-nav-h)); /* 112px */
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.fr-body {
  margin: 0;
  min-height: 100svh;
  color: var(--fr-cream);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(196, 56, 34, .23), transparent 30rem),
    radial-gradient(circle at 92% 16%, rgba(244, 194, 104, .16), transparent 28rem),
    radial-gradient(circle at 50% 110%, rgba(131, 168, 87, .10), transparent 35rem),
    linear-gradient(180deg, #0d0503 0%, var(--fr-bg) 42%, #100603 100%);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.fr-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255, 244, 223, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 244, 223, .035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
body.fr-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
h1, h2, h3, .fr-logo b { font-family: Fraunces, Georgia, serif; font-weight: 650; letter-spacing: -.035em; }
:focus-visible { outline: 3px solid rgba(255, 217, 142, .7); outline-offset: 4px; border-radius: 8px; }

.fr-wrap { width: min(100% - 40px, var(--fr-max)); margin-inline: auto; }
.fr-hide-sm { display: inline-flex; }

/* ── Scroll anchors: keep sections below fixed header ── */
#specialites, #carte, #commande, #experience, #reservation, #contact {
  scroll-margin-top: var(--fr-header-offset);
}

/* Demo bar */
.gc-demo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  min-height: var(--fr-demobar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  padding: 6px 16px;
  border-bottom: 1px solid rgba(244, 194, 104, .35);
  background: linear-gradient(90deg, #0b0504, #1b0905 48%, #0b0504);
  color: rgba(255, 244, 223, .66);
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
}
.gc-demo-bar strong { color: var(--fr-gold-2); }
.gc-demo-bar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  padding: 4px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fr-gold-2), var(--fr-gold));
  color: #2a1105;
  font-weight: 800;
  transition: transform .22s var(--fr-ease), box-shadow .22s ease;
}
.gc-demo-bar a:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(244, 194, 104, .25); }

/* ── Header ────────────────────────────────────────────────────────
   FIX: top was 54px — now 38px to sit flush below the demo bar.
   The is-stuck class only adds backdrop-filter + border; top stays
   the same so there is no layout jump on first scroll.
   ─────────────────────────────────────────────────────────────── */
.fr-header {
  position: fixed;
  top: var(--fr-demobar-h); /* 38px — flush below demo bar */
  left: 0;
  right: 0;
  z-index: 220;
  transition: background .28s ease, border-color .28s ease, padding .28s ease;
}
.fr-header.is-stuck {
  background: rgba(13, 5, 3, .72);
  border-bottom: 1px solid var(--fr-line);
  backdrop-filter: blur(18px);
}
.fr-nav {
  min-height: var(--fr-nav-h);
  display: grid;
  /* FIX: rigid px minimums broke layout in PT/DE (longer words).
     auto|1fr|auto lets each column size from its content naturally.
     minmax(0,1fr) on the centre column prevents it from overflowing
     into the logo when the menu pill is wider than available space. */
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.5vw, 18px);
  padding: 10px 0;
}
.fr-nav .fr-logo { justify-self: start; }
.fr-nav .fr-menu { justify-self: center; }
.fr-nav .fr-nav-actions { justify-self: end; }
.fr-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.fr-logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--fr-gold-2);
  border: 1px solid rgba(244, 194, 104, .34);
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 217, 142, .22), transparent 42%),
    rgba(244, 194, 104, .08);
  box-shadow: inset 0 0 0 1px rgba(255, 244, 223, .04);
}
.fr-logo-mark svg { width: 28px; height: 28px; }
.fr-logo-mark img { width: 100%; height: 100%; display: block; }
.fr-logo b { display: block; font-size: 1.22rem; line-height: 1; }
.fr-logo small {
  display: block;
  margin-top: 4px;
  color: var(--fr-muted);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-weight: 800;
}
.fr-menu { display: flex; align-items: center; gap: 4px; padding: 5px; border: 1px solid rgba(255,255,255,.055); border-radius: 999px; background: rgba(255,255,255,.035); min-width: 0; overflow: visible; }
.fr-menu a {
  color: var(--fr-cream-soft);
  font-size: .89rem;
  font-weight: 700;
  padding: 9px 11px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .22s ease, background .22s ease;
}
.fr-menu a:hover, .fr-menu a.is-active { color: var(--fr-cream); background: rgba(255,244,223,.08); }
.fr-nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; min-width: 0; white-space: nowrap; }
/* FIX: lock header button widths so the action block (and therefore the
   language selector) keeps the SAME position across FR/EN/PT/DE.
   Longest labels: "Reservieren" / "Encomendar" — 142px covers them all. */
.fr-nav-actions .fr-btn-ghost,
.fr-nav-actions .fr-btn-primary { min-width: 142px; }
.fr-lang {
  flex: 0 0 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 999px;
  background: rgba(255,244,223,.045);
}
.fr-lang a {
  min-width: 31px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255,244,223,.62);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  transition: color .2s ease, background .2s ease;
}
.fr-lang a:hover {
  color: var(--fr-gold-2);
  background: rgba(255,244,223,.08);
}
.fr-lang a[aria-current="page"] {
  color: #2a1304;
  background: var(--fr-gold-grad);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 8px 20px rgba(244,194,104,.18);
}
.fr-mobile-lang {
  display: flex;
  gap: 8px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--fr-line);
  margin-bottom: 4px;
}
.fr-mobile-lang a {
  flex: 1;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fr-line);
  border-radius: 999px;
  background: rgba(255,244,223,.045);
  color: rgba(255,244,223,.72);
  font-family: Manrope, system-ui, sans-serif !important;
  font-size: .8rem !important;
  font-weight: 900;
  letter-spacing: .08em;
}
.fr-mobile-lang a[aria-current="page"] {
  color: #2a1304;
  background: var(--fr-gold-grad);
  border-color: transparent;
}

.fr-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--fr-line-strong);
  border-radius: 50%;
  background: rgba(255, 244, 223, .05);
  cursor: pointer;
  place-items: center;
}
.fr-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .24s ease, opacity .24s ease;
}
.fr-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.fr-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.fr-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.fr-scrim {
  position: fixed;
  inset: 0;
  z-index: 230;
  background: rgba(8, 3, 2, .66);
  backdrop-filter: blur(4px);
}

/* ── Mobile menu ────────────────────────────────────────────────────
   FIX: top was 48px — now 112px (38px demo bar + 74px nav).
   This places the dropdown flush below the header, not behind it.
   ─────────────────────────────────────────────────────────────── */
.fr-mobile {
  position: fixed;
  top: var(--fr-header-offset); /* 112px — below header */
  right: 14px;
  left: 14px;
  z-index: 240;
  transform: translateY(-16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--fr-line-strong);
  border-radius: 26px;
  background: rgba(28, 10, 5, .96);
  box-shadow: var(--fr-shadow);
  transition: opacity .26s ease, transform .26s var(--fr-ease), visibility .26s;
}
.fr-mobile.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.fr-mobile a:not(.fr-btn) {
  padding: 14px 8px;
  border-bottom: 1px solid var(--fr-line);
  color: var(--fr-cream);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
}

/* Buttons */
.fr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .24s var(--fr-ease), box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}
.fr-btn svg { width: 18px; height: 18px; }
.fr-btn:hover { transform: translateY(-2px); }
.fr-btn-primary {
  color: #2a1105;
  background: linear-gradient(135deg, #ffe3a8, var(--fr-gold) 48%, #ef9f45);
  box-shadow: 0 16px 34px rgba(244, 194, 104, .22), inset 0 1px 0 rgba(255,255,255,.45);
}
.fr-btn-primary:hover { box-shadow: 0 22px 48px rgba(244, 194, 104, .32); }
.fr-btn-ghost { color: var(--fr-cream); border-color: var(--fr-line-strong); background: rgba(255,244,223,.045); }
.fr-btn-ghost:hover { border-color: rgba(244, 194, 104, .62); color: var(--fr-gold-2); }
.fr-btn-glass { color: var(--fr-cream); border-color: rgba(255, 244, 223, .18); background: rgba(255, 244, 223, .07); backdrop-filter: blur(10px); }
.fr-btn-glass:hover { border-color: rgba(244, 194, 104, .5); background: rgba(255, 244, 223, .1); }
.fr-btn-lg { min-height: 54px; padding-inline: 26px; }

/* Hero */
.fr-hero-video {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
  opacity: .72;
  filter: saturate(1.05) contrast(1.08) brightness(.68);
  transform: scale(1.03);
  pointer-events: none;
}

/* Fallback image below the video.
   If the video fails, the poster/image background still remains visible. */
.fr-hero-image {
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .fr-hero-video {
    display: none;
  }
}

.fr-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 150px 0 92px;
  isolation: isolate;
  overflow: hidden;
}
.fr-hero-media { position: absolute; inset: 0; z-index: -4; overflow: hidden; }
.fr-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(244, 194, 104, .18), transparent 25rem),
    linear-gradient(90deg, rgba(13,5,3,.98) 0%, rgba(13,5,3,.82) 38%, rgba(13,5,3,.42) 68%, rgba(13,5,3,.90) 100%),
    linear-gradient(to bottom, rgba(13,5,3,.1), rgba(13,5,3,.98));
}
.fr-hero-image {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-image: url("../images/hero-forno-rosso.webp");
  background-size: cover;
  background-position: center right;
  filter: saturate(1.12) contrast(1.08) brightness(.78);
  transform: translate3d(calc((50% - var(--mx)) / 44), calc((50% - var(--my)) / 50), 0) scale(1.03);
  transition: transform .08s linear;
}
.fr-ember {
  position: absolute;
  z-index: 3;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 217, 142, .9);
  box-shadow: 0 0 22px rgba(255, 217, 142, .9);
  animation: frFloatUp linear infinite;
  opacity: .55;
}
.fr-ember-1 { left: 12%; top: 84%; animation-duration: 12s; }
.fr-ember-2 { left: 42%; top: 80%; animation-duration: 16s; animation-delay: -7s; }
.fr-ember-3 { left: 71%; top: 76%; animation-duration: 11s; animation-delay: -3s; }
.fr-ember-4 { left: 87%; top: 88%; animation-duration: 15s; animation-delay: -10s; }
@keyframes frFloatUp { from { transform: translateY(0) translateX(0); opacity: 0; } 12% { opacity: .6; } to { transform: translateY(-70vh) translateX(44px); opacity: 0; } }
.fr-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .68fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
}
.fr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fr-gold-2);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .20em;
  font-weight: 900;
}
.fr-eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .65; }
.fr-hero h1 {
  max-width: 780px;
  margin-top: 20px;
  font-size: clamp(2.75rem, 6.2vw, 5.85rem);
  line-height: .92;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.fr-hero h1 em { display: block; color: var(--fr-gold-2); font-style: italic; font-weight: 450; }
.fr-hero p {
  max-width: 610px;
  margin-top: 25px;
  color: var(--fr-cream-soft);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 1.78;
}
.fr-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.fr-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.fr-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255,244,223,.12);
  border-radius: 999px;
  background: rgba(255,244,223,.055);
  color: var(--fr-cream-soft);
  font-size: .88rem;
  font-weight: 750;
}
.fr-hero-proof i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fr-olive);
  box-shadow: 0 0 0 5px rgba(131,168,87,.16);
}
.fr-hero-proof .is-closed i { background: var(--fr-red); box-shadow: 0 0 0 5px rgba(196,56,34,.16); }
.fr-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  border: 1px solid rgba(255, 244, 223, .12);
  border-radius: var(--fr-radius-xl);
  background: rgba(32, 12, 6, .65);
  box-shadow: var(--fr-shadow);
  transform: perspective(1000px) rotateY(calc((50% - var(--mx)) / 70)) rotateX(calc((var(--my) - 50%) / 85));
  transition: transform .08s linear;
}
.fr-hero-card img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; filter: saturate(1.08) contrast(1.06); }
.fr-hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,5,3,.92), transparent 58%); pointer-events: none; }
.fr-card-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 217, 142, .36);
  background: rgba(13, 5, 3, .55);
  backdrop-filter: blur(12px);
  color: var(--fr-gold-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.fr-hero-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
}
.fr-hero-card-body h2 { font-size: clamp(1.8rem, 3vw, 2.55rem); }
.fr-hero-card-body p { margin-top: 8px; max-width: 310px; color: rgba(255,244,223,.72); line-height: 1.55; }
.fr-hero-card-body strong { color: var(--fr-gold-2); font-family: Fraunces, Georgia, serif; font-size: 2rem; white-space: nowrap; }
.fr-float-note {
  position: absolute;
  right: 24px;
  top: 43%;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: 138px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 217, 142, .42);
  border-radius: 20px;
  background: rgba(91, 36, 13, .72);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(0,0,0,.32), 0 0 38px rgba(244,194,104,.18);
  animation: frBreathe 3s ease-in-out infinite;
}
.fr-float-note b { color: var(--fr-gold-2); font-family: Fraunces, Georgia, serif; font-size: 2rem; line-height: 1; }
.fr-float-note span { color: rgba(255,244,223,.76); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
@keyframes frBreathe { 50% { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(0,0,0,.36), 0 0 50px rgba(244,194,104,.26); } }
.fr-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 28px; height: 46px; border: 1px solid rgba(255,244,223,.24); border-radius: 999px; display: grid; justify-items: center; padding-top: 9px; }
.fr-scroll span { width: 4px; height: 8px; border-radius: 999px; background: var(--fr-gold-2); animation: frScroll 1.45s infinite; }
@keyframes frScroll { 50% { transform: translateY(12px); opacity: .45; } }

/* Trust */
.fr-trust { padding: 30px 0 0; }
.fr-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  transform: translateY(-46px);
}
.fr-trust article {
  padding: 25px;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius-md);
  background: linear-gradient(180deg, rgba(55, 22, 11, .88), rgba(31, 11, 5, .92));
  box-shadow: var(--fr-shadow-soft);
}
.fr-trust svg { width: 32px; height: 32px; color: var(--fr-gold-2); margin-bottom: 16px; }
.fr-trust h2 { font-size: 1.4rem; margin-bottom: 8px; }
.fr-trust p { color: var(--fr-cream-soft); font-size: .95rem; }

/* General sections */
.fr-section { padding: clamp(76px, 10vw, 122px) 0; }
.fr-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: clamp(32px, 5vw, 54px);
}
.fr-section-head h2 {
  margin-top: 16px;
  max-width: 760px;
  font-size: clamp(2.25rem, 4.8vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.fr-section-head p { max-width: 420px; color: var(--fr-cream-soft); line-height: 1.72; }

/* Specials */
.fr-specials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fr-special-card {
  overflow: hidden;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius-lg);
  background: linear-gradient(180deg, rgba(46,18,9,.88), rgba(24,8,4,.94));
  box-shadow: var(--fr-shadow-soft);
  transition: transform .32s var(--fr-ease), border-color .32s ease, box-shadow .32s ease;
}
.fr-special-card:hover { transform: translateY(-7px); border-color: rgba(244,194,104,.38); box-shadow: var(--fr-shadow); }
.fr-special-card.is-featured { transform: translateY(-18px); }
.fr-special-card.is-featured:hover { transform: translateY(-25px); }
.fr-special-img { aspect-ratio: 16 / 11; overflow: hidden; background: var(--fr-bg-soft); }
.fr-special-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--fr-ease); }
.fr-special-card:hover img { transform: scale(1.06); }
.fr-special-body { padding: 24px; }
.fr-special-body span { color: var(--fr-gold-2); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 900; }
.fr-special-body h3 { margin-top: 10px; font-size: clamp(1.55rem, 2.4vw, 2rem); }
.fr-special-body p { margin-top: 10px; color: var(--fr-cream-soft); min-height: 76px; }
.fr-special-body strong { display: block; margin-top: 20px; color: var(--fr-gold-2); font-family: Fraunces, Georgia, serif; font-size: 1.7rem; }

/* Menu */
.fr-menu-section { background: linear-gradient(180deg, rgba(255,244,223,.025), transparent); border-top: 1px solid rgba(255,244,223,.055); border-bottom: 1px solid rgba(255,244,223,.055); }
.fr-menu-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; align-items: start; }
.fr-menu-intro {
  position: sticky;
  top: calc(var(--fr-header-offset) + 16px); /* 128px — header + breathing room */
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius-xl);
  background:
    radial-gradient(circle at 78% 92%, rgba(196,56,34,.18), transparent 18rem),
    linear-gradient(180deg, rgba(55,22,11,.76), rgba(24,8,4,.93));
  box-shadow: var(--fr-shadow-soft);
  overflow: hidden;
}
.fr-menu-intro h2 { margin-top: 16px; font-size: clamp(2.1rem, 4.2vw, 4.5rem); line-height: .96; }
.fr-menu-intro p { margin-top: 18px; color: var(--fr-cream-soft); }
.fr-filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.fr-chip {
  min-height: 42px;
  border: 1px solid var(--fr-line-strong);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--fr-cream-soft);
  background: rgba(255,244,223,.045);
  cursor: pointer;
  font-weight: 850;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.fr-chip:hover, .fr-chip.is-active { color: var(--fr-cream); background: rgba(244,194,104,.12); border-color: rgba(244,194,104,.52); }
.fr-chip:hover { transform: translateY(-2px); }
.fr-dish-list { display: grid; gap: 14px; }
.fr-dish {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--fr-line);
  border-radius: 24px;
  background: rgba(255,244,223,.045);
  transition: opacity .25s ease, transform .25s var(--fr-ease), border-color .25s ease, background .25s ease;
}
.fr-dish:hover { transform: translateX(4px); border-color: rgba(244,194,104,.34); background: rgba(255,244,223,.065); }
.fr-dish.is-hidden { display: none; }
.fr-dish img { width: 104px; height: 88px; border-radius: 17px; object-fit: cover; }
.fr-dish h3 { font-size: 1.32rem; }
.fr-dish p { margin-top: 4px; color: var(--fr-cream-soft); font-size: .94rem; line-height: 1.45; }
.fr-dish strong { color: var(--fr-gold-2); font-family: Fraunces, Georgia, serif; font-size: 1.42rem; white-space: nowrap; }

/* Order and forms */
.fr-order { padding-top: 0; }
.fr-order-panel, .fr-res-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}
.fr-order-panel {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255,244,223,.12);
  border-radius: calc(var(--fr-radius-xl) + 8px);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(244,194,104,.18), transparent 26rem),
    linear-gradient(135deg, rgba(108,34,18,.82), rgba(25,8,4,.96));
  box-shadow: var(--fr-shadow);
}
.fr-order-copy, .fr-res-card {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--fr-radius-xl);
  background:
    linear-gradient(180deg, rgba(255,244,223,.06), rgba(255,244,223,.025)),
    url("../images/restaurant-forno-rosso-interior.webp") center/cover;
  background-blend-mode: overlay, normal;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.fr-order-copy::before, .fr-res-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,5,3,.93), rgba(13,5,3,.42)); }
.fr-order-copy > *, .fr-res-card > * { position: relative; z-index: 1; }
.fr-order-copy h2, .fr-res-card h2 { margin-top: 16px; font-size: clamp(2.1rem, 4vw, 4.4rem); line-height: .96; }
.fr-order-copy p, .fr-res-card p { margin-top: 18px; color: var(--fr-cream-soft); line-height: 1.75; max-width: 560px; }
.fr-checks { list-style: none; display: grid; gap: 12px; margin: 24px 0 0; padding: 0; }
.fr-checks li { display: flex; gap: 10px; align-items: center; color: var(--fr-cream-soft); font-weight: 760; }
.fr-checks li::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--fr-olive); box-shadow: 0 0 0 5px rgba(131,168,87,.14); }

/* ── Forms ─────────────────────────────────────────────────────────
   FIX: select dropdowns showed white background on Windows/Chrome
   because the native popup ignored the inherited color-scheme.
   Solution: set color-scheme: dark on each select + explicit dark
   background/color on option elements.
   ─────────────────────────────────────────────────────────────── */
.fr-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 13px;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid rgba(255,244,223,.14);
  border-radius: var(--fr-radius-xl);
  background: rgba(13,5,3,.58);
  backdrop-filter: blur(12px);
}
.fr-form-head { grid-column: 1 / -1; margin-bottom: 4px; }
.fr-form-head b { display: block; font-family: Fraunces, Georgia, serif; font-size: clamp(1.55rem, 2.4vw, 2.25rem); line-height: 1.05; }
.fr-form-head span { display: inline-flex; margin-top: 8px; color: var(--fr-gold-2); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 900; }
.fr-form label { display: grid; gap: 7px; color: var(--fr-cream-soft); font-size: .88rem; font-weight: 850; }
.fr-form input,
.fr-form select,
.fr-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255,244,223,.16);
  border-radius: 16px;
  padding: 0 15px;
  color: var(--fr-cream);
  background: rgba(255,244,223,.055);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
/* Dark theme for native select popup and date picker */
.fr-form select {
  color-scheme: dark;
  background-color: #1c0905;
  cursor: pointer;
}
.fr-form select option {
  background-color: #1c0905;
  color: var(--fr-cream);
}
.fr-form select option:checked,
.fr-form select option:hover {
  background-color: #3a150a;
  color: var(--fr-gold-2);
}
.fr-form input[type="date"] {
  color-scheme: dark;
}
.fr-form textarea { padding-top: 13px; resize: vertical; }
.fr-form input::placeholder, .fr-form textarea::placeholder { color: rgba(255,244,223,.38); }
.fr-form input:focus,
.fr-form select:focus,
.fr-form textarea:focus {
  border-color: rgba(244,194,104,.58);
  box-shadow: 0 0 0 4px rgba(244,194,104,.12);
  background: rgba(255,244,223,.075);
}
.fr-form select:focus { background-color: #221009; }
.fr-wide { grid-column: 1 / -1; }
.fr-form-note { grid-column: 1 / -1; color: var(--fr-gold-2); font-weight: 850; min-height: 24px; }

/* Experience gallery */
.fr-experience { background: linear-gradient(180deg, rgba(255,244,223,.028), transparent); border-top: 1px solid rgba(255,244,223,.055); }
.fr-gallery { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 14px; min-height: 540px; transition: grid-template-columns .38s var(--fr-ease); }
.fr-gallery:has(.fr-panel:nth-child(2):hover), .fr-gallery:has(.fr-panel:nth-child(2).is-active) { grid-template-columns: .8fr 1.35fr .8fr; }
.fr-gallery:has(.fr-panel:nth-child(3):hover), .fr-gallery:has(.fr-panel:nth-child(3).is-active) { grid-template-columns: .8fr .8fr 1.35fr; }
.fr-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius-xl);
  background: var(--fr-bg-soft);
  cursor: pointer;
  min-width: 0;
}
.fr-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--fr-ease), filter .35s ease; filter: saturate(1.03) contrast(1.03) brightness(.82); }
.fr-panel:hover img, .fr-panel.is-active img { transform: scale(1.06); filter: saturate(1.1) contrast(1.05) brightness(.9); }
.fr-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,5,3,.94), rgba(13,5,3,.08) 70%); }
.fr-panel div { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; }
.fr-panel span { color: var(--fr-gold-2); font-size: .76rem; font-weight: 900; letter-spacing: .18em; }
.fr-panel h3 { margin-top: 8px; font-size: 1.9rem; }
.fr-panel p { margin-top: 8px; color: var(--fr-cream-soft); max-width: 420px; opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s var(--fr-ease); }
.fr-panel:hover p, .fr-panel.is-active p { opacity: 1; transform: translateY(0); }

/* Steps */
.fr-steps { background: rgba(255,244,223,.028); border-top: 1px solid rgba(255,244,223,.055); border-bottom: 1px solid rgba(255,244,223,.055); }
.fr-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fr-steps-grid article {
  position: relative;
  padding: 30px;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius-lg);
  background: rgba(255,244,223,.04);
}
.fr-steps-grid span { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 20px; border-radius: 50%; color: #2a1105; background: linear-gradient(135deg, var(--fr-gold-2), var(--fr-gold)); font-family: Fraunces, Georgia, serif; font-size: 1.5rem; }
.fr-steps-grid h3 { font-size: 1.55rem; }
.fr-steps-grid p { margin-top: 10px; color: var(--fr-cream-soft); }

/* Reservation */
.fr-reservation { padding-top: 0; }
.fr-res-card { min-height: 500px; background-image: linear-gradient(180deg, rgba(255,244,223,.06), rgba(255,244,223,.025)), url("../images/hero-forno-rosso.webp"); }
.fr-res-card .fr-btn { margin-top: 26px; align-self: start; }

/* Proof */
.fr-proof { background: linear-gradient(180deg, rgba(196,56,34,.05), transparent); }
.fr-proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; }
.fr-proof-copy h2 { margin-top: 16px; font-size: clamp(2.1rem, 4.5vw, 4.5rem); line-height: .97; }
.fr-proof-copy p { margin-top: 18px; color: var(--fr-cream-soft); max-width: 560px; }
.fr-reviews { display: grid; gap: 14px; }
.fr-reviews figure { padding: 24px; border: 1px solid var(--fr-line); border-radius: var(--fr-radius-lg); background: rgba(255,244,223,.045); }
.fr-reviews div { color: var(--fr-gold-2); letter-spacing: .08em; margin-bottom: 10px; }
.fr-reviews blockquote { color: var(--fr-cream); font-family: Fraunces, Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.28; }
.fr-reviews figcaption { margin-top: 14px; color: var(--fr-muted); font-weight: 780; }
.fr-demo-tag { display: inline-flex; justify-self: start; padding: 7px 12px; border: 1px solid var(--fr-line); border-radius: 999px; color: var(--fr-muted); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

/* FAQ */
.fr-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 28px; align-items: start; }
.fr-faq h2 { margin-top: 16px; font-size: clamp(2rem, 4vw, 4rem); line-height: .98; }
.fr-faq-list { display: grid; gap: 12px; }
.fr-faq details { border: 1px solid var(--fr-line); border-radius: 22px; background: rgba(255,244,223,.045); overflow: hidden; }
.fr-faq summary { cursor: pointer; padding: 20px 22px; font-weight: 900; list-style: none; }
.fr-faq summary::-webkit-details-marker { display: none; }
.fr-faq summary::after { content: "+"; float: right; color: var(--fr-gold-2); font-size: 1.2rem; }
.fr-faq details[open] summary::after { content: "−"; }
.fr-faq details p { padding: 0 22px 20px; color: var(--fr-cream-soft); }

/* Final CTA */
.fr-final-cta { padding: 0 0 clamp(78px, 10vw, 120px); }
.fr-final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,244,223,.14);
  border-radius: calc(var(--fr-radius-xl) + 8px);
  background:
    radial-gradient(circle at 82% 16%, rgba(244,194,104,.16), transparent 24rem),
    linear-gradient(135deg, rgba(104, 32, 16, .88), rgba(25, 8, 4, .96));
  box-shadow: var(--fr-shadow);
}
.fr-final-box h2 { max-width: 790px; margin-top: 16px; font-size: clamp(2.05rem, 4.3vw, 4.25rem); line-height: .98; }
.fr-final-box p { margin-top: 16px; color: var(--fr-cream-soft); max-width: 660px; }
.fr-final-actions { display: grid; gap: 12px; min-width: max-content; }

/* Footer */
.fr-footer { padding: 54px 0 36px; border-top: 1px solid var(--fr-line); background: rgba(13,5,3,.48); }
.fr-footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .95fr .7fr; gap: 30px; }
.fr-footer p { max-width: 350px; margin-top: 16px; color: var(--fr-muted); }
.fr-footer h3 { font-family: Manrope, sans-serif; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.fr-footer ul { list-style: none; display: grid; gap: 8px; margin: 0; padding: 0; color: var(--fr-cream-soft); }
.fr-footer a:hover { color: var(--fr-gold-2); }
.fr-hours li { display: grid; gap: 2px; }
.fr-hours span { color: var(--fr-muted); }
.fr-hours b { color: var(--fr-cream-soft); font-weight: 750; }
.fr-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--fr-line); color: var(--fr-muted); font-size: .9rem; }
.fr-footer-bottom a { color: var(--fr-gold-2); font-weight: 850; }

.fr-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 400;
  max-width: 360px;
  padding: 15px 18px;
  border: 1px solid rgba(244,194,104,.36);
  border-radius: 18px;
  color: var(--fr-cream);
  background: rgba(28, 10, 5, .95);
  box-shadow: var(--fr-shadow-soft);
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s var(--fr-ease);
}
.fr-toast.is-visible { opacity: 1; transform: translateY(0); }

/* Reveal */
.fr-js .fr-reveal, .fr-js .fr-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .72s ease, transform .72s var(--fr-ease); }
.fr-js .fr-reveal.is-in, .fr-js .fr-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.fr-js .fr-stagger.is-in > *:nth-child(2) { transition-delay: .08s; }
.fr-js .fr-stagger.is-in > *:nth-child(3) { transition-delay: .16s; }
.fr-js .fr-stagger.is-in > *:nth-child(4) { transition-delay: .24s; }
.fr-js .fr-stagger.is-in > *:nth-child(5) { transition-delay: .32s; }
.fr-js .fr-stagger.is-in > *:nth-child(6) { transition-delay: .40s; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .fr-nav { display: flex; justify-content: space-between; }
  .fr-nav-actions { min-width: 0; }
  .fr-menu { display: none; }
  .fr-lang { display: none; }
  .fr-burger { display: grid; gap: 4px; }
  .fr-hero-grid, .fr-menu-layout, .fr-order-panel, .fr-res-grid, .fr-proof-grid, .fr-faq-grid { grid-template-columns: 1fr; }
  .fr-hero-card { justify-self: start; width: min(100%, 520px); min-height: 480px; }
  .fr-hero-card img { min-height: 480px; }
  .fr-trust-grid, .fr-specials, .fr-steps-grid, .fr-footer-grid { grid-template-columns: 1fr; }
  .fr-special-card.is-featured { transform: none; }
  .fr-special-card.is-featured:hover { transform: translateY(-7px); }
  .fr-menu-intro { position: relative; top: auto; }
  .fr-gallery, .fr-gallery:has(.fr-panel:nth-child(2):hover), .fr-gallery:has(.fr-panel:nth-child(2).is-active), .fr-gallery:has(.fr-panel:nth-child(3):hover), .fr-gallery:has(.fr-panel:nth-child(3).is-active) { grid-template-columns: 1fr; min-height: auto; }
  .fr-panel { min-height: 320px; }
  .fr-final-box { display: grid; }
  .fr-final-actions { min-width: 0; display: flex; flex-wrap: wrap; }
}

@media (max-width: 760px) {
  :root {
    --fr-nav-h: 66px;
  }
  .fr-wrap { width: min(100% - 32px, var(--fr-max)); }
  .gc-demo-bar { justify-content: space-between; font-size: 11.5px; }
  .gc-demo-bar span { max-width: 48vw; overflow: hidden; text-overflow: ellipsis; }
  .gc-demo-bar a { padding-inline: 10px; }
  /* Header stays at 38px on mobile too (var updates nav-h to 66px) */
  .fr-logo-mark { width: 40px; height: 40px; }
  .fr-logo b { font-size: 1rem; }
  .fr-logo small { font-size: .56rem; letter-spacing: .15em; }
  .fr-hide-sm { display: none; }
  .fr-nav { min-height: var(--fr-nav-h); }
  .fr-nav-actions .fr-btn-primary { display: none; }
  .fr-hero { min-height: auto; padding: 124px 0 76px; }
  .fr-hero h1 { font-size: clamp(2.45rem, 12.8vw, 4.05rem); line-height: .96; }
  .fr-hero-actions .fr-btn { width: 100%; }
  .fr-hero-proof { display: grid; grid-template-columns: 1fr; }
  .fr-hero-card { min-height: 390px; border-radius: 28px; }
  .fr-hero-card img { min-height: 390px; }
  .fr-hero-card-body { display: grid; padding: 22px; }
  .fr-float-note { right: 16px; top: 34%; width: 120px; }
  .fr-scroll { display: none; }
  .fr-trust-grid { transform: none; }
  .fr-trust { padding-top: 28px; }
  .fr-section { padding: 72px 0; }
  .fr-section-head { display: grid; gap: 16px; }
  .fr-section-head h2, .fr-menu-intro h2, .fr-order-copy h2, .fr-res-card h2, .fr-proof-copy h2, .fr-faq h2, .fr-final-box h2 { letter-spacing: -.045em; }
  .fr-dish { grid-template-columns: 82px 1fr; align-items: start; }
  .fr-dish img { width: 82px; height: 74px; }
  .fr-dish strong { grid-column: 2; }
  .fr-form { grid-template-columns: 1fr; }
  .fr-wide { grid-column: 1; }
  .fr-order-copy, .fr-res-card { min-height: 410px; }
  .fr-footer-bottom { display: grid; }
}

@media (max-width: 440px) {
  .fr-wrap { width: min(100% - 24px, var(--fr-max)); }
  .gc-demo-bar { padding-inline: 10px; }
  .gc-demo-bar a { font-size: 0; width: 34px; height: 26px; padding: 0; justify-content: center; }
  .gc-demo-bar a span { font-size: 14px; max-width: none; }
  .fr-logo small { display: none; }
  .fr-hero { padding-top: 114px; }
  .fr-btn { width: 100%; }
  .fr-final-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .fr-hero-image, .fr-hero-card { transform: none !important; }
}
