@font-face {
  font-family: "ff-angie-pro";
  src: url("/fonts/angie-pro.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "anisette-std";
  src: url("/fonts/anisette-std-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --text: #f6ede4;
  --muted: #b9a99a;
  --bg: #0b0908;
  --bg-alt: #161210;
  --accent: #ff5a1f;
  --accent-2: #ffb703;
  --border: rgba(255, 255, 255, 0.09);
  --font-body: 'Dosis', system-ui, sans-serif;
  --font-lead: "ff-angie-pro", serif;
  --font-heading: "anisette-std", sans-serif;
}

* { box-sizing: border-box; }

body {
  font: 500 18px/1.6 var(--font-body), system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a { color: var(--accent); }

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h3 {
  font-family: var(--font-lead);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* ── SITE HEADER ── */
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.site-logo {
  position: absolute;
  z-index: 20;
  left: 1.5rem;
  top: 0.75rem;
  display: flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.01em;
}
.site-logo img {
  display: block;
  width: 8rem;
  height: 8rem;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5));
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent); }
.phone-num { font-family: var(--font-heading); font-weight: 600; font-style: normal; }
.header-phone-icon { flex-shrink: 0; }

/* ── MAIN ── */
main {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* ── NOT FOUND ── */
.not-found {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.not-found h1 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

/* ── LEGAL PAGES ── */
.legal-page .section-inner { max-width: 42rem; padding: 4rem 1.5rem; }
.legal-page h1 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); margin: 0 0 0.5rem; }
.legal-updated { color: var(--muted); font-size: 0.875rem; margin: 0 0 2.5rem; }
.legal-page h2 { font-family: inherit; font-weight: 700; font-size: 1.15rem; margin: 2rem 0 0.6rem; }
.legal-page p { color: var(--text); line-height: 1.7; margin: 0 0 1rem; }
.legal-list { margin: 0 0 1rem; padding-left: 1.25rem; color: var(--text); line-height: 1.7; }
.legal-list li { margin-bottom: 0.3rem; }

/* ── SITE FOOTER ── */
.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}
.site-footer p { margin: 0 0 0.4rem; }
.site-footer p:last-child { margin-bottom: 0; }
.site-footer .footer-credit { margin-top: 2rem; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent-2); }
.footer-links { font-size: 0.9375rem; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
}
.footer-credit-link { display: inline-flex; align-items: center; gap: 0.35rem; vertical-align: middle; line-height: 1; text-decoration: none; }
.footer-credit-link:hover { text-decoration: underline; }
.footer-credit-text { vertical-align: middle; }
.footer-credit-logo {
  height: 1.1rem;
  width: 1.1rem;
  object-fit: cover;
  border-radius: 0.3rem;
}

/* ── BURGERIBOTTI SHARED ── */
.section-inner {
  max-width: 68rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.eyebrow {
  font-family: var(--font-lead);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--accent-2);
  margin: 0 0 1rem;
}
.accent-text { color: var(--accent-2); }

.phone-cta {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), #c62828);
  color: #fff;
  padding: 1.1rem 2rem;
  border-radius: 0.9rem;
  box-shadow: 0 12px 30px -10px rgba(255, 90, 31, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.phone-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -8px rgba(255, 90, 31, 0.65);
}
.phone-cta .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}
.phone-cta .num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.hero-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
}
.phone-cta-note {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.8125rem;
}
.phone-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── HERO ── */
.hero-burgeribotti {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 90, 31, 0.16), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
/* Between ~860px and ~1400px the two-column hero layout is still active
   but the centered .hero-inner (max-width 72rem) no longer has a side
   gutter wide enough to clear the overflowing logo — push the hero
   text down instead so it never sits under the badge. */
@media (min-width: 861px) and (max-width: 1400px) {
  .hero-inner { padding-top: 9rem; }
}
.hero-copy h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
}
.hero-lead {
  font-family: var(--font-lead);
  font-weight: 600;
  font-style: normal;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 2rem;
}
.hero-fries-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--accent-2);
  font: inherit;
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.hero-fries-badge:hover { border-color: var(--accent-2); transform: translateY(-1px); }
.hero-media {
  position: relative;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -6%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.35), transparent 65%);
  filter: blur(30px);
  z-index: 0;
}
.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  filter: contrast(1.12) saturate(0.9) brightness(0.93);
}
.hero-steam {
  position: absolute;
  top: 0.25rem;
  left: 18%;
  z-index: 2;
  width: 64%;
  height: 7rem;
  pointer-events: none;
}
.hero-steam span {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.68), transparent 72%);
  filter: blur(7px);
  opacity: 0;
}
.hero-steam span:nth-child(1) { left: 0%;  width: 2.2rem; height: 5rem;   animation: steam-plume     7.5s ease-in-out infinite; animation-delay: 0s; }
.hero-steam span:nth-child(2) { left: 40%; width: 2.6rem; height: 6rem;   animation: steam-plume-alt 9s   ease-in-out infinite; animation-delay: 2.4s; }
.hero-steam span:nth-child(3) { left: 92%; width: 2.3rem; height: 4.8rem; animation: steam-plume     8.2s ease-in-out infinite; animation-delay: 1.2s; }
.hero-steam span:nth-child(4) { left: 20%; width: 1.8rem; height: 4.2rem; animation: steam-plume-alt 7.9s ease-in-out infinite; animation-delay: 3.6s; }
.hero-steam span:nth-child(5) { left: 66%; width: 2rem;   height: 5.4rem; animation: steam-plume     8.8s ease-in-out infinite; animation-delay: 5.5s; }
.hero-steam span:nth-child(6) { left: 12%; width: 1.6rem; height: 3.8rem; animation: steam-plume     6.8s ease-in-out infinite; animation-delay: 6.2s; }
.hero-steam span:nth-child(7) { left: 78%; width: 1.9rem; height: 4.6rem; animation: steam-plume-alt 7.4s ease-in-out infinite; animation-delay: 0.6s; }
@keyframes steam-plume {
  0%   { opacity: 0;    transform: translateY(0) translateX(0) scale(1); }
  12%  { opacity: 0.62; }
  50%  { transform: translateY(-2.2rem) translateX(0.6rem) scale(1.35); }
  80%  { opacity: 0.24; }
  100% { opacity: 0;    transform: translateY(-4.6rem) translateX(1.1rem) scale(1.7); }
}
@keyframes steam-plume-alt {
  0%   { opacity: 0;    transform: translateY(0) translateX(0) scale(1); }
  15%  { opacity: 0.56; }
  55%  { transform: translateY(-2.6rem) translateX(-0.7rem) scale(1.4); }
  82%  { opacity: 0.2; }
  100% { opacity: 0;    transform: translateY(-5.2rem) translateX(-1.3rem) scale(1.75); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-steam span { animation: none; opacity: 0; }
}

.bonus-badge {
  position: absolute;
  z-index: 2;
  top: -1.6rem;
  right: -1.6rem;
  width: 11.5rem;
  height: 11.5rem;
  border: none;
  border-radius: 50%;
  background: var(--accent-2);
  color: #1a1206;
  font: inherit;
  font-weight: 800;
  font-size: 0.9375rem;
  line-height: 1.35;
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 18px 36px -8px rgba(0, 0, 0, 0.8);
  transform: rotate(8deg);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.bonus-badge:hover,
.bonus-badge:focus-visible { transform: rotate(8deg) scale(1.05); }
.bonus-badge-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background:
    linear-gradient(rgba(11, 9, 8, 0.6), rgba(11, 9, 8, 0.6)),
    url("/img/steps-bg.jpg") center/cover no-repeat,
    var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.how-it-works h2, .why-burgeribotti h2, .locations h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  margin: 0 0 2.5rem;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  margin-bottom: 1rem;
}
.step h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.step p { margin: 0; color: var(--muted); }
.step a { color: var(--accent-2); font-weight: 700; text-decoration: none; }
.step a:hover { text-decoration: underline; }

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg-alt);
}
.why-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--accent-2); }
.why-card p { margin: 0; color: var(--muted); font-size: 0.9375rem; }
.inline-link {
  font: inherit;
  color: var(--accent-2);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.inline-link:hover { color: var(--accent); }

/* ── MENU PREVIEW ── */
.menu-preview { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.menu-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu-slider {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1rem;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, black calc(100% - 3rem), transparent);
  mask-image: linear-gradient(to right, black calc(100% - 3rem), transparent);
}
.menu-slider::-webkit-scrollbar { display: none; }
.menu-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 12rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
}
.menu-card:hover { transform: translateY(-3px); border-color: var(--accent-2); }
.menu-card-photo {
  display: block;
  width: calc(100% + 3rem);
  margin: -1.75rem -1.5rem 1rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.12) saturate(0.9) brightness(0.93);
  transition: transform 0.3s ease;
}
.menu-card:hover .menu-card-photo { transform: scale(1.06); }
.menu-card-category {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.menu-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.menu-card-price {
  display: block;
  margin: auto -1.5rem -1.75rem;
  padding: 0.6rem 1.5rem;
  background: var(--accent-2);
  color: #1a1206;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
}
.menu-nav {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.menu-nav:hover { background: var(--accent-2); color: #1a1206; border-color: var(--accent-2); }
.menu-link { text-align: center; margin: 1rem 0 0; }
.menu-link a { color: var(--accent-2); text-decoration: none; font-weight: 700; }
.product-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  border: none;
  border-radius: 1.25rem;
  padding: 0;
  width: min(50rem, calc(100vw - 2.5rem));
  max-height: min(46rem, calc(100vh - 3rem));
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}
.product-dialog[open] { display: flex; flex-direction: column; }
@supports (max-height: 100dvh) {
  .product-dialog { max-height: min(46rem, calc(100dvh - 3rem)); }
}
.product-dialog::backdrop { background: rgba(4, 3, 2, 0.9); backdrop-filter: blur(3px); }
.product-dialog form { margin: 0; }
.dialog-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: rgba(10, 7, 5, 0.55);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-close:hover { background: var(--accent-2); color: #1a1206; }
.product-dialog-media { position: relative; }
.product-dialog-photo {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  filter: contrast(1.12) saturate(0.9) brightness(0.93);
}
.product-dialog-phone-icon {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #c62828);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.55);
  transition: transform 0.15s ease;
}
.product-dialog-phone-icon:hover { transform: scale(1.08); }
.product-dialog-body { padding: 1.5rem 1.75rem 2rem; }
.product-dialog-body h3 { margin: 0 0 0.35rem; font-size: 1.4rem; }
.product-dialog-body .menu-card-price { display: block; margin: 0 0 1rem; padding: 0; background: none; color: var(--accent-2); font-size: 1.1rem; }
.product-dialog-bonus {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  font-weight: 700;
  color: var(--accent-2);
  font-size: 0.9375rem;
}
.product-dialog-cta { margin: 0 0 1.5rem; }
.product-dialog-desc { margin: 0 0 1.25rem; color: var(--text); line-height: 1.6; }
.product-dialog-quote {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--accent-2);
  background: var(--bg-alt);
  border-radius: 0 0.5rem 0.5rem 0;
  font-family: var(--font-lead);
  font-weight: 600;
  font-style: normal;
  color: var(--muted);
  line-height: 1.6;
}
.product-dialog-tags { margin: 0 0 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
@media (min-width: 640px) {
  .product-dialog-body { padding: 2.25rem 3rem 2.75rem; }
  .product-dialog-body h3 { margin: 0 0 0.5rem; font-size: 1.6rem; }
  .product-dialog-body .menu-card-price { margin: 0 0 1.5rem; font-size: 1.25rem; }
  .product-dialog-desc { margin: 0 0 1.75rem; line-height: 1.75; }
  .product-dialog-quote { margin: 0 0 1.75rem; padding: 1.25rem 1.5rem; }
  .product-dialog-tags { margin: 0 0 1.5rem; }
}
.product-dialog-tags .tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-2);
}
.product-dialog-allergens { margin: 0; font-size: 0.875rem; color: var(--muted); }
.menu-link a:hover { text-decoration: underline; }

.simple-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  border: none;
  border-radius: 1.25rem;
  padding: 0;
  width: min(36rem, calc(100vw - 2.5rem));
  max-height: min(44rem, calc(100vh - 3rem));
  background: var(--bg);
  color: var(--text);
  /* browsers default <dialog> to overflow:auto — override so the
     firework-layer sibling can spill past the card's edges */
  overflow: visible;
}
/* Clipping (rounded corners, internal scroll) lives on this inner wrapper
   instead of on .simple-dialog itself, so .firework-layer — a sibling —
   can let sparks fly past the card's edges onto the backdrop. */
.simple-dialog-clip {
  display: flex;
  flex-direction: column;
  max-height: min(44rem, calc(100vh - 3rem));
  overflow: hidden;
  border-radius: inherit;
}
@supports (max-height: 100dvh) {
  .simple-dialog-clip { max-height: min(44rem, calc(100dvh - 3rem)); }
}

/* ── FIREWORKS ── */
/* Several bursts fire in sequence from randomized origins (JS, index.php).
   Each spark gets inline --x/--y (outward travel) and animation-duration/
   -delay; only the burst/fade curve shape lives here. */
.firework-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.spark {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px 2.5px currentColor;
  animation-name: spark-burst;
  animation-timing-function: cubic-bezier(0.15, 0.6, 0.35, 1);
  animation-fill-mode: forwards;
}
.spark--trail { width: 0.2rem; height: 0.95rem; border-radius: 1px; box-shadow: 0 0 8px 2px currentColor; }
@keyframes spark-burst {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.3); }
  10%  { opacity: 1; transform: translate(calc(var(--x, 0px) * 0.25), calc(var(--y, 0px) * 0.25)) scale(1); }
  65%  { opacity: 0.9; }
  100% { opacity: 0; transform: translate(var(--x, 0px), calc(var(--y, 0px) + 60px)) scale(0.4); }
}
@media (prefers-reduced-motion: reduce) {
  .spark { display: none; }
}
.simple-dialog::backdrop { background: rgba(4, 3, 2, 0.9); backdrop-filter: blur(3px); }
.simple-dialog form[method="dialog"] { margin: 0; }
.bonus-dialog-photo { aspect-ratio: 5 / 4; }
.simple-dialog-body { padding: 2rem 1.75rem 2.25rem; text-align: left; }
.simple-dialog-body h3 { margin: 0 0 0.5rem; font-size: 1.4rem; }
.simple-dialog-lead { font-family: var(--font-lead); font-weight: 600; font-style: normal; margin: 0 0 1.5rem; color: var(--muted); line-height: 1.6; }
@media (min-width: 640px) {
  .simple-dialog-body { padding: 2.5rem 3rem 2.75rem; }
}
.feedback-form { display: flex; flex-direction: column; gap: 1.1rem; }
.feedback-form label { display: flex; flex-direction: column; gap: 0.4rem; font-weight: 700; font-size: 0.9375rem; }
.feedback-form input,
.feedback-form textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
}
.feedback-form input:focus,
.feedback-form textarea:focus { outline: 2px solid var(--accent-2); outline-offset: 1px; }
.feedback-form textarea { resize: vertical; min-height: 6rem; }
.feedback-form button[type="submit"] {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.9rem 2rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--accent), #c62828);
  color: #fff;
  transition: transform 0.15s ease;
}
.feedback-form button[type="submit"]:hover { transform: translateY(-2px); }

/* ── LOCATIONS ── */
.locations {
  background:
    linear-gradient(rgba(11, 9, 8, 0.6), rgba(11, 9, 8, 0.6)),
    url("/img/locations-bg.jpg") center/cover no-repeat,
    var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.location-grid:has(.location-card:only-child) {
  grid-template-columns: minmax(0, 22rem);
  justify-content: center;
}
.location-card {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1rem;
  background: var(--bg);
}
.location-card h3 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.location-card--detailed { padding: 2rem 1.75rem; }
.location-address { margin: 0 0 1.25rem; color: var(--muted); }
.location-address a { color: inherit; text-decoration: none; }
.location-address a:hover { color: var(--accent-2); text-decoration: underline; }
.location-hours {
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.location-hours div {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.location-hours div:last-child { border-bottom: none; }
.location-hours dt { margin: 0; color: var(--muted); font-weight: 600; }
.location-hours dd { margin: 0; font-family: var(--font-heading); font-weight: 600; font-style: normal; }
.location-card p { margin: 0; color: var(--muted); }
.locations-link { text-align: center; margin: 0; }
.locations-link a { color: var(--accent-2); text-decoration: none; font-weight: 700; }
.locations-link a:hover { text-decoration: underline; }

/* ── PILOT ── */
.pilot { text-align: center; }
.pilot .section-inner { max-width: 42rem; }
.pilot h2 { margin: 0 0 1.25rem; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.pilot-lead { font-family: var(--font-lead); font-weight: 600; font-style: normal; margin: 0 0 1.1rem; color: var(--muted); line-height: 1.7; }
.pilot-lead:last-of-type { margin-bottom: 2rem; }
.pilot-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.pilot-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9375rem;
}
.pilot-credit img { border-radius: 0.4rem; }
.pilot-credit:hover { color: var(--text); }
.pilot-feedback-btn {
  font: inherit;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.pilot-feedback-btn:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 90, 31, 0.2), transparent 60%),
    var(--bg);
}
.final-cta h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0 0 0.5rem; }
.final-cta > .section-inner > p { font-family: var(--font-lead); font-weight: 600; font-style: normal; color: var(--muted); font-size: 1.0625rem; margin: 0 0 2rem; }
.phone-cta-lg { padding: 1.4rem 2.5rem; }
.phone-cta-lg .num { font-size: clamp(1.75rem, 4.5vw, 2.5rem); }
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}
.final-cta-divider {
  color: var(--muted);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.cta-qr {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.cta-qr img {
  width: 8rem;
  height: 8rem;
  padding: 0.6rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, 0.6);
}
.cta-qr p { margin: 0; color: var(--muted); font-size: 0.875rem; }
.cta-qr-link { color: var(--accent-2); text-decoration: none; font-weight: 700; }
.cta-qr-link:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero-media { order: -1; max-width: 26rem; margin: 0 auto; }
  .steps, .why-grid, .location-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .section-inner { padding: 3.5rem 1.5rem; }
  .final-cta-divider { display: none; }
  .dialog-close { width: 2.75rem; height: 2.75rem; top: 0.5rem; right: 0.5rem; }
  .menu-slider {
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 1.5rem), transparent);
    mask-image: linear-gradient(to right, black calc(100% - 1.5rem), transparent);
  }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
  .menu-nav--prev { display: none; }
  .bonus-badge { width: 8.5rem; height: 8.5rem; font-size: 0.75rem; padding: 0 0.75rem; top: -0.7rem; right: -0.7rem; }
  .bonus-badge-label { font-size: 0.95rem; }
  .header-phone { font-size: 0.8125rem; }
}

/* ── FORM STATUS ── */
/* Empty .form-status is invisible; the JS in footer.php adds .sending /
   .ok / .err to reveal it during submission. */
.form-status {
  margin: 1rem 0 0;
  padding: .6rem .8rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  display: none;
}
.form-status.sending,
.form-status.ok,
.form-status.err { display: block; }
.form-status.sending { color: var(--muted); }
.form-status.ok      { color: #166534; background: #f0fdf4; }
.form-status.err     { color: #b42318; background: #fef2f2; }

/* ── ANIMATED ENTRANCES ── */
/* .reveal fades/slides in as a whole; .reveal-stagger fades in its direct
   children one after another. JS (footer.php) adds .is-visible via
   IntersectionObserver when the element scrolls into view. */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-delay-1 { transition-delay: 0.15s; }
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
