/* ===== Variables — tema chiaro ===== */
:root {
  --fire-red: #e63600;
  --fire-orange: #e85d04;
  --fire-yellow: #c2410c;
  --fire-gold: #ea580c;
  --bg: #fffaf5;
  --bg-alt: #fff3e8;
  --bg-section: #ffffff;
  --bg-card: #ffffff;
  --bg-warm: #f7ebe0;
  --text: #1f1410;
  --text-muted: #5c4a3d;
  --cream: #1f1410;
  --border: rgba(232, 93, 4, 0.18);
  --border-soft: rgba(31, 20, 16, 0.08);
  --shadow: 0 4px 18px rgba(31, 20, 16, 0.06);
  --glow: rgba(232, 93, 4, 0.28);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --radius: 12px;
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

a { color: var(--fire-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--fire-red); }

body.menu-open {
  overflow: hidden;
}

strong { color: var(--text); }

/* ===== Background atmosfera ===== */
.ember-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(232, 93, 4, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 40%, rgba(255, 184, 0, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fffaf5 0%, #fff7ef 45%, #fff3e8 100%);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), var(--shadow);
}

/* ===== Photo rails (rullini laterali) ===== */
.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  min-height: 100vh;
}

.page-main {
  min-width: 0;
  background: var(--bg);
  box-shadow: 0 0 28px rgba(31, 20, 16, 0.05);
  position: relative;
  z-index: 2;
}

.photo-rail {
  display: none;
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: start;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(31, 20, 16, 0.04), transparent 40%),
    var(--bg-warm);
  border-inline: 1px solid var(--border-soft);
}

.photo-rail-inner {
  height: 100%;
  padding: 0.55rem 0.45rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(31, 20, 16, 0.06);
}

.photo-rail-inner::before,
.photo-rail-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 8px;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(31, 20, 16, 0.28) 1.5px, transparent 2px);
  background-size: 10px 8px;
  background-repeat: repeat-x;
  opacity: 0.55;
}

.photo-rail-inner::before { top: 4px; }
.photo-rail-inner::after { bottom: 4px; }

.photo-rail-track {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  will-change: transform;
  animation: photo-rail-up 70s linear infinite;
}

.photo-rail-right .photo-rail-track {
  animation-name: photo-rail-down;
}

.photo-rail-frame {
  margin: 0;
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 133%; /* 3:4 */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(31, 20, 16, 0.12);
  box-shadow: 0 2px 8px rgba(31, 20, 16, 0.08);
  background: #f3e7db;
}

.photo-rail-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-rail-frame-logo {
  padding-bottom: 100%;
  background: transparent;
}

.photo-rail-frame-logo img {
  object-fit: contain;
  padding: 0.55rem;
  box-sizing: border-box;
}

@keyframes photo-rail-up {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -50%, 0); }
}

@keyframes photo-rail-down {
  from { transform: translate3d(0, -50%, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .photo-rail-track {
    animation: none !important;
    transform: none !important;
  }
}

/* Colonne visibili da tablet landscape / desktop */
@media (min-width: 900px) {
  .page-shell {
    grid-template-columns: 110px minmax(0, 1fr) 110px;
  }

  .photo-rail {
    display: block;
  }
}

@media (min-width: 1100px) {
  .page-shell {
    grid-template-columns: 140px minmax(0, 1fr) 140px;
  }

  .photo-rail-inner {
    padding: 0.65rem 0.55rem;
  }
}

@media (min-width: 1280px) {
  .page-shell {
    grid-template-columns: 160px minmax(0, 1fr) 160px;
  }
}

@media (min-width: 1440px) {
  .page-shell {
    grid-template-columns: 180px minmax(0, 1fr) 180px;
  }
}

/* Galleria orizzontale su mobile/tablet stretto — scorrimento automatico */
.photo-strip {
  display: block;
  overflow: hidden;
  padding: 0.85rem 0 1.1rem;
  margin-top: -0.25rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.photo-strip-track {
  display: flex;
  width: max-content;
  gap: 0.65rem;
  padding-inline: 4vw;
  will-change: transform;
  animation: photo-strip-scroll 32s linear infinite;
}

.photo-strip img {
  flex: 0 0 auto;
  width: 132px;
  height: 176px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(31, 20, 16, 0.12);
  box-shadow: 0 2px 8px rgba(31, 20, 16, 0.08);
  background: #fff;
}

.photo-strip:hover .photo-strip-track,
.photo-strip:focus-within .photo-strip-track {
  animation-play-state: paused;
}

@keyframes photo-strip-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .photo-strip-track {
    animation: none;
    overflow-x: auto;
    max-width: 100%;
    padding-inline: 4vw;
    -webkit-overflow-scrolling: touch;
  }

  .photo-strip {
    overflow-x: auto;
  }
}

@media (min-width: 900px) {
  .photo-strip { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.as-credits {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.2;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.3rem 0.55rem 0.3rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 122, 59, 0.28);
  background: #fff;
  box-shadow: 0 1px 4px rgba(31, 20, 16, 0.04);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.as-logo {
  width: 34px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.as-credits-brand-full { display: none; }

.as-credits-label {
  font-weight: 500;
  color: #4a3b32;
  font-size: 0.92em;
}

.as-credits-brand {
  font-weight: 800;
  color: #0b7a3b;
  letter-spacing: 0.4px;
}

.as-credits:hover {
  background: rgba(11, 122, 59, 0.06);
  border-color: rgba(11, 122, 59, 0.45);
  box-shadow: var(--shadow);
}

.as-credits:hover .as-credits-brand {
  color: #086330;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo:hover { color: var(--fire-orange); }

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
  display: block;
  background: transparent;
}

.logo-text {
  line-height: 1;
}

.hero-logo {
  display: block;
  margin: 0 auto 1.35rem;
  width: min(260px, 58vw);
  background: transparent;
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(198, 40, 40, 0.22));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover { color: var(--fire-orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fire-orange);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--fire-orange);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.95;
  letter-spacing: 4px;
  background: linear-gradient(180deg, #f59e0b 0%, var(--fire-orange) 45%, var(--fire-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-fire {
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  color: #fff;
  box-shadow: 0 4px 18px var(--glow);
}

.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(230, 54, 0, 0.35);
  color: #fff;
}

.btn-outline {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
  background: #fff;
}

.btn-outline:hover {
  background: rgba(232, 93, 4, 0.08);
  color: var(--fire-red);
}

.btn-review {
  background: linear-gradient(135deg, #fbbf24, var(--fire-orange));
  color: #1f1410;
  box-shadow: 0 4px 18px rgba(251, 191, 36, 0.35);
  font-weight: 700;
}

.btn-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.45);
  color: #1f1410;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

.nav-review {
  color: var(--fire-orange) !important;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--fire-orange);
  letter-spacing: 2px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ===== Flames — più alte e visibili ===== */
.flames {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 780px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.78;
}

.flame {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(2px);
  animation: flame-dance var(--dur, 1.5s) ease-in-out infinite alternate;
  transform-origin: bottom center;
}

.flame-1 {
  left: 8%; width: 95px; height: 280px;
  background: linear-gradient(0deg, rgba(230, 54, 0, 0.7) 0%, rgba(232, 93, 4, 0.45) 35%, rgba(251, 191, 36, 0.2) 65%, transparent 100%);
  --dur: 1.2s;
}

.flame-2 {
  left: 22%; width: 120px; height: 340px;
  background: linear-gradient(0deg, rgba(255, 60, 0, 0.72) 0%, rgba(255, 140, 0, 0.5) 40%, rgba(251, 191, 36, 0.25) 70%, transparent 100%);
  --dur: 1.6s;
  animation-delay: -0.3s;
}

.flame-3 {
  left: 38%; width: 145px; height: 400px;
  background: linear-gradient(0deg, rgba(230, 54, 0, 0.75) 0%, rgba(232, 93, 4, 0.55) 35%, rgba(251, 191, 36, 0.35) 60%, transparent 100%);
  --dur: 1.4s;
  animation-delay: -0.6s;
}

.flame-4 {
  left: 54%; width: 125px; height: 360px;
  background: linear-gradient(0deg, rgba(255, 80, 0, 0.7) 0%, rgba(232, 93, 4, 0.48) 40%, rgba(251, 191, 36, 0.25) 70%, transparent 100%);
  --dur: 1.8s;
  animation-delay: -0.2s;
}

.flame-5 {
  left: 68%; width: 100px; height: 300px;
  background: linear-gradient(0deg, rgba(230, 54, 0, 0.65) 0%, rgba(255, 140, 0, 0.4) 45%, rgba(251, 191, 36, 0.2) 70%, transparent 100%);
  --dur: 1.3s;
  animation-delay: -0.5s;
}

.flame-6 {
  left: 80%; width: 85px; height: 250px;
  background: linear-gradient(0deg, rgba(255, 70, 0, 0.6) 0%, rgba(232, 93, 4, 0.35) 45%, transparent 100%);
  --dur: 1.5s;
  animation-delay: -0.8s;
}

.flame-7 {
  left: 14%; width: 70px; height: 220px;
  background: linear-gradient(0deg, rgba(255, 120, 0, 0.5) 0%, rgba(251, 191, 36, 0.3) 50%, transparent 100%);
  --dur: 1.7s;
  animation-delay: -1s;
  filter: blur(3px);
}

.hero-oven-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 95vw);
  height: 320px;
  background: radial-gradient(ellipse, rgba(232, 93, 4, 0.32) 0%, rgba(255, 140, 0, 0.14) 40%, transparent 72%);
  z-index: 0;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes flame-dance {
  0% { transform: scaleX(1) scaleY(1) rotate(-2deg); opacity: 0.85; }
  100% { transform: scaleX(1.1) scaleY(1.18) rotate(2deg); opacity: 1; }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

/* ===== Sections ===== */
.section { padding: 5rem 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-title.center { text-align: center; }

.section-sub {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.section-sub.center { text-align: center; }

/* ===== About ===== */
.about {
  background: var(--bg-section);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.about-grid {
  display: grid;
  gap: 3rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(232, 93, 4, 0.1);
  transform: translateY(-4px);
}

.feature-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--fire-orange);
  margin-bottom: 0.5rem;
}

.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Menu ===== */
.menu {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  position: sticky;
  top: 70px;
  z-index: 50;
  padding: 1rem 0.75rem;
  background: rgba(255, 250, 245, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-nav-btn {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
}

.menu-nav-btn:hover {
  border-color: rgba(232, 93, 4, 0.4);
  color: var(--fire-orange);
}

.menu-nav-btn.active {
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px var(--glow);
}

.menu-category[hidden] {
  display: none;
}

.menu-category {
  margin-bottom: 4rem;
  scroll-margin-top: 140px;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(232, 93, 4, 0.28);
}

.menu-category-header h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--fire-orange);
}

.menu-category-icon { font-size: 1.8rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.menu-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fire-orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.menu-item:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 93, 4, 0.1);
}

.menu-item:hover::before { opacity: 1; }

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--fire-orange);
  white-space: nowrap;
}

.menu-item-price-single {
  flex-shrink: 0;
}

.menu-item-prices {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-soft);
}

.menu-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.menu-price-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item-tag {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.15rem 0.6rem;
  background: rgba(34, 140, 70, 0.1);
  color: #1b7a3d;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA ===== */
.cta-box {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, var(--bg-warm));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-flames {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(0deg, rgba(232, 93, 4, 0.12) 0%, transparent 100%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-box .btn { position: relative; }

.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ===== Contact ===== */
.contact {
  background: var(--bg-section);
  border-top: 1px solid var(--border-soft);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(232, 93, 4, 0.1);
}

.contact-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--fire-orange);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-muted);
}

.contact-card a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-card a:hover {
  color: var(--fire-orange);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-info {
  font-style: normal;
  line-height: 2;
}

.contact-info p { color: var(--text-muted); }

.contact-hours {
  margin-top: 1rem;
  color: var(--fire-orange) !important;
  font-weight: 600;
}

.map-link {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.map-link:hover,
.map-link:focus-visible {
  border-color: rgba(232, 93, 4, 0.45);
  box-shadow: 0 0 0 2px rgba(232, 93, 4, 0.12);
  outline: none;
}

.map-link iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
  pointer-events: none;
}

.map-link-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.75rem;
  background: linear-gradient(transparent 55%, rgba(31, 20, 16, 0.35));
  pointer-events: none;
}

.map-link-label {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
}

.map-link:hover .map-link-label,
.map-link:focus-visible .map-link-label {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
}

/* ===== Footer ===== */
.footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
  text-align: center;
}

.footer-inner p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-brand {
  color: var(--text) !important;
  font-weight: 600;
}

.footer-note { margin-top: 0.25rem; }

.footer-legal {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal a:hover {
  color: var(--fire-orange);
}

.footer-as {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 122, 59, 0.18);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.footer-as-kicker {
  font-size: 0.78rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #3d6b4f !important;
  margin-bottom: 0.45rem;
}

.footer-as-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #0b7a3b;
  margin-bottom: 0.25rem;
}

.footer-as-logo {
  width: 36px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.footer-as-brand:hover {
  color: #086330;
}

.footer-as-services {
  font-size: 0.82rem !important;
  color: #3d6b4f !important;
  margin-bottom: 0.65rem;
}

.footer-as-cta {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0b7a3b;
  border-bottom: 1px solid rgba(11, 122, 59, 0.4);
  padding-bottom: 1px;
}

.footer-as-cta:hover {
  color: #086330;
  border-color: #086330;
}

/* ===== Legal pages ===== */
.legal-page {
  padding: 6rem 0 4rem;
  background: var(--bg-section);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: var(--fire-orange);
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal-content strong {
  color: var(--text);
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-back {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--fire-orange);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  html { scroll-padding-top: 3.75rem; }

  .logo { font-size: 1.45rem; }

  .logo-img {
    width: 44px;
    height: 44px;
  }

  .hero-logo {
    width: min(200px, 52vw);
    margin-bottom: 1rem;
  }

  .as-credits {
    font-size: 0.72rem;
    padding: 0.3rem 0.45rem;
    order: 1;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .nav-links { order: 3; }

  .nav-links {
    display: none;
    position: fixed;
    top: 3.75rem;
    left: 0;
    right: 0;
    background: rgba(255, 250, 245, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(31, 20, 16, 0.1);
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-links li { border-bottom: 1px solid var(--border-soft); }

  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 0.9rem 0.25rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 5.5rem 0 3rem;
  }

  .hero-sub { font-size: 1rem; padding: 0 0.5rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-stats {
    gap: 1.25rem 2rem;
  }

  .stat-value { font-size: 2rem; }

  .section { padding: 3.5rem 0; }

  .menu-nav {
    top: 3.75rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    position: sticky;
    overflow: visible;
    mask-image: none;
  }

  .menu-nav-btn {
    width: 100%;
    min-height: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: var(--radius);
    padding: 0.55rem 0.45rem;
    font-size: 0.78rem;
    line-height: 1.25;
    flex-shrink: unset;
  }

  .menu-nav-btn:not(.active) {
    background: #fff;
    border-color: var(--border-soft);
    color: var(--text-muted);
    box-shadow: none;
  }

  .menu-nav-btn:not(.active):hover {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
  }

  .menu-nav-btn.active {
    font-weight: 700;
  }

  .menu-category { scroll-margin-top: 7.5rem; }

  .menu-grid { grid-template-columns: 1fr; }

  .menu-item { padding: 1rem 1.15rem; }

  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .menu-item-price { font-size: 1.15rem; }

  .menu-price-row {
    flex-wrap: wrap;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .address-actions {
    flex-direction: column;
  }

  .address-actions .btn {
    width: 100%;
    text-align: center;
  }

  .cta-box {
    padding: 2.5rem 1.25rem;
  }

  .cta-box h2 { font-size: 2.25rem; }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .map-link iframe { height: 240px; }

  .flames { max-width: 100%; height: 300px; opacity: 0.7; }

  .flame-1 { height: 200px; }
  .flame-2 { height: 250px; }
  .flame-3 { height: 290px; }
  .flame-4 { height: 260px; }
  .flame-5 { height: 220px; }
  .flame-6 { height: 180px; }
  .flame-7 { height: 160px; }

  .hero-oven-glow { height: 240px; }
}

@media (min-width: 420px) {
  .menu-item-prices {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 520px) {
  .menu-item-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.5rem;
  }

  .menu-price-row {
    flex: 1 1 auto;
    min-width: 140px;
  }
}

@media (max-width: 340px) {
  .menu-nav {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .as-credits-brand-short { display: none; }

  .as-credits-brand-full {
    display: inline;
    font-size: 0.95em;
  }
}

@media (min-width: 769px) {
  .nav-right { gap: 1.5rem; }

  .as-credits {
    font-size: 0.8125rem;
    padding: 0.35rem 0.65rem;
  }

  .as-credits-brand-short { display: none; }

  .as-credits-brand-full {
    display: inline;
    font-weight: 800;
    color: #0b7a3b;
    letter-spacing: 0.3px;
    font-size: 1em;
  }

  .nav-right .as-credits {
    order: 2;
  }

  .nav-toggle {
    order: 3;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
