:root {
  --verde: #144521;
  --header-bg: #0c3c23;
  --verde-mid: #1a5530;
  --verde-deep: #0f3619;
  --verde-rich: #1b4d28;
  --verde-glow: rgba(20, 69, 33, 0.35);
  --rosso: #b91c1c;
  --rosso-dark: #7f1d1d;
  --bianco: #faf7f2;
  --bianco-puro: #ffffff;
  --bianco-tinted: #f0f4f1;
  --nero: #1a1a1a;
  --oro-soft: #c4a574;
  --cheese: #fcd34d;
  --cheese-soft: rgba(252, 211, 77, 0.35);
  --text-on-green: rgba(255, 255, 255, 0.94);
  --text-on-green-muted: rgba(255, 255, 255, 0.78);
  --menu-panel: #f0faf2;
  --font-display: "Fredoka", "Source Sans 3", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 1.35rem;
  --radius-pill: 999px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  --shadow-light: 0 12px 36px rgba(0, 0, 0, 0.15);
  --shadow-pop: 0 8px 0 rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-on-green);
  background-color: var(--verde);
  background-image: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(252, 211, 77, 0.08), transparent 55%);
}

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

a {
  color: #fecaca;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--bianco-puro);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--rosso);
  color: var(--bianco-puro);
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: none;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.95) 33%,
    var(--rosso) 33%,
    var(--rosso) 67%,
    rgba(255, 255, 255, 0.95) 67%
  );
  background-size: 200% 100%;
  animation: header-stripe-flow 9s linear infinite;
}

@keyframes header-stripe-flow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.35rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  margin-right: auto;
  flex-shrink: 0;
  gap: 0.5rem;
}

.logo-img {
  width: auto;
  aspect-ratio: 200 / 300;
  object-fit: contain;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.site-header .logo-img {
  height: clamp(7.25rem, 30vw, 14rem);
  max-width: min(400px, 72vw);
}

.logo--footer .logo-img {
  height: clamp(6rem, 24vw, 11.5rem);
  max-width: min(320px, 88vw);
}

.logo-wordmark {
  display: none;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.logo:has(.logo-img--missing) .logo-wordmark {
  display: inline-flex;
}

.logo:has(.logo-img--missing) .logo-img {
  display: none;
}

.logo-wordmark-name {
  color: var(--bianco-puro);
}

.logo-wordmark-accent {
  color: #fecaca;
  font-weight: 600;
}

.logo--footer .logo-wordmark {
  font-size: clamp(1.5rem, 5vw, 2.1rem);
}

.nav-toggle {
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  color: var(--bianco-puro);
  padding: 0.45rem 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  text-decoration: none;
  color: var(--text-on-green);
}

.nav-links a:hover {
  color: #fecaca;
}

.nav-links a.btn-primary {
  color: var(--bianco-puro);
}

.nav-links a.btn-primary:hover {
  color: var(--bianco-puro);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-bouncy:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-bouncy:active {
  transform: translateY(0) scale(0.98);
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -40%;
  width: 50%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 60%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: btn-shimmer-sweep 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shimmer-sweep {
  0%,
  55% {
    transform: translateX(-120%) skewX(-18deg);
  }

  75%,
  100% {
    transform: translateX(280%) skewX(-18deg);
  }
}

.btn-primary {
  background: var(--rosso);
  color: var(--bianco-puro);
  border-color: var(--rosso);
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.35);
}

.btn-primary:hover {
  background: var(--rosso-dark);
  border-color: var(--rosso-dark);
  color: var(--bianco-puro);
}

.btn-outline {
  background: var(--bianco-puro);
  color: var(--rosso);
  border-color: var(--rosso);
}

.btn-outline:hover {
  background: var(--rosso);
  color: var(--bianco-puro);
}

.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem 4.5rem;
  background-color: var(--verde);
  background-image:
    linear-gradient(160deg, rgba(20, 69, 33, 0.78) 0%, rgba(12, 60, 35, 0.88) 45%, rgba(20, 69, 33, 0.82) 100%),
    url("https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1920&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--bianco-puro);
  overflow: hidden;
}

.hero-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 30%, var(--cheese-soft) 0%, transparent 45%),
    radial-gradient(circle at 92% 22%, rgba(254, 202, 202, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 78% 78%, rgba(252, 211, 77, 0.2) 0%, transparent 42%),
    radial-gradient(circle at 22% 85%, rgba(255, 255, 255, 0.1) 0%, transparent 38%);
  animation: hero-glow 14s ease-in-out infinite alternate, confetti-drift 22s ease-in-out infinite;
}

@keyframes confetti-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(1.5%, -1.2%) scale(1.03);
  }

  66% {
    transform: translate(-1.2%, 1%) scale(0.98);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  opacity: 0.98;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
}

.hero-eyebrow-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--cheese) 0%, #fbbf24 100%);
  color: var(--rosso-dark);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 3px 0 rgba(127, 29, 29, 0.25);
  animation: badge-wiggle 2.6s ease-in-out infinite;
}

@keyframes badge-wiggle {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-4px) rotate(2deg);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6.5vw, 3.85rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.15), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto 1.75rem;
  opacity: 0.95;
}

.hero-entrance {
  opacity: 0;
  transform: translateY(1.75rem) scale(0.97);
  animation: hero-pop-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-entrance--1 {
  animation-delay: 0.12s;
}

.hero-entrance--2 {
  animation-delay: 0.24s;
}

.hero-entrance--3 {
  animation-delay: 0.38s;
}

.hero-entrance--4 {
  animation-delay: 0.52s;
}

@keyframes hero-pop-in {
  from {
    opacity: 0;
    transform: translateY(1.75rem) scale(0.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-ctas .btn-primary {
  background: var(--bianco-puro);
  color: var(--rosso);
  border-color: var(--bianco-puro);
  box-shadow: var(--shadow);
}

.hero-ctas .btn-primary:hover {
  background: var(--bianco);
  color: var(--rosso-dark);
  border-color: var(--bianco);
}

.hero-ctas .btn-primary.btn-shimmer::after {
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(185, 28, 28, 0.08) 55%,
    rgba(255, 255, 255, 0) 62%,
    transparent 100%
  );
}

.btn-hero-ghost {
  border-color: var(--bianco-puro) !important;
  color: var(--bianco-puro) !important;
  background: transparent !important;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: var(--bianco-puro) !important;
  border-color: var(--bianco-puro) !important;
}

.section {
  padding: 4rem 1.25rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--text-on-green);
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-title--fun {
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title--fun::after {
  content: "";
  display: block;
  width: min(5rem, 28vw);
  height: 5px;
  margin: 0.5rem auto 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, transparent, var(--cheese), var(--rosso), transparent);
  opacity: 0.95;
  transform: scaleX(1);
  transform-origin: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.15s;
}

.js-motion .section-title--fun:not(.is-revealed)::after {
  transform: scaleX(0);
}

.js-motion .section-title--fun.is-revealed::after {
  transform: scaleX(1);
}

.js-motion .reveal-on-scroll:not(.is-revealed) {
  opacity: 0;
  transform: translateY(1.5rem);
}

.js-motion .reveal-on-scroll.is-revealed {
  animation: reveal-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

@keyframes reveal-rise {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.section-sub {
  text-align: center;
  color: var(--text-on-green-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

#about {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding-top: 5.25rem;
  border-radius: 1.75rem 1.75rem 0 0;
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.14);
  background: linear-gradient(180deg, rgba(15, 54, 25, 0.55) 0%, rgba(20, 69, 33, 0.35) 50%, rgba(15, 54, 25, 0.5) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#about .section-title {
  color: var(--bianco-puro);
}

#about .section-sub {
  color: var(--text-on-green-muted);
}

#about .pillar h3 {
  color: var(--verde-deep);
}

.menu-section {
  background: linear-gradient(180deg, rgba(20, 69, 33, 0.65) 0%, rgba(15, 54, 25, 0.5) 50%, rgba(26, 85, 48, 0.45) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

#menu .section-title {
  color: var(--bianco-puro);
}

#menu .section-sub {
  color: var(--text-on-green-muted);
}

#gallery .section-title {
  color: var(--bianco-puro);
}

#gallery .section-sub {
  color: var(--text-on-green-muted);
}

.menu-inner {
  max-width: min(100%, 1150px);
}

#menu {
  scroll-margin-top: 5.5rem;
}

.menu-boards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
}

.menu-board-viewer {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
}

.menu-board-arrow {
  flex-shrink: 0;
  width: 2.65rem;
  min-height: 3rem;
  align-self: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  color: var(--bianco-puro);
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.menu-board-arrow:hover:not(:disabled) {
  background: var(--rosso);
  color: var(--bianco-puro);
  border-color: var(--rosso);
}

.menu-board-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.menu-board-arrow:focus-visible {
  outline: 2px solid var(--bianco-puro);
  outline-offset: 2px;
}

.menu-board-arrow-icon {
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 700;
  margin-top: -0.1em;
}

.menu-board-viewport {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
}

.menu-board-viewport:focus-visible {
  outline: 2px solid var(--bianco-puro);
  outline-offset: 3px;
}

.menu-board-panels {
  position: relative;
  width: 100%;
}

.menu-board {
  margin: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(252, 211, 77, 0.4);
  box-shadow: var(--shadow-light), 0 8px 0 rgba(20, 69, 33, 0.18);
  background: rgba(0, 0, 0, 0.15);
}

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

.menu-board-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.menu-board-status {
  text-align: center;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-on-green-muted);
}

.menu-board-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.menu-board-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--bianco-puro);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-board-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.menu-board-chip.is-active {
  background: var(--rosso);
  border-color: var(--rosso);
  color: var(--bianco-puro);
}

.menu-board-chip:focus-visible {
  outline: 2px solid var(--bianco-puro);
  outline-offset: 2px;
}

.menu-footer-cta {
  text-align: center;
  margin: 2.5rem 0 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--bianco-puro);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(185, 28, 28, 0.12);
  box-shadow: var(--shadow), 0 6px 0 rgba(185, 28, 28, 0.08);
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.pillar:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.14), 0 8px 0 rgba(185, 28, 28, 0.1);
}

.pillar--fun .pillar-emoji {
  display: block;
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.06));
}

.js-motion .pillar--fun.is-revealed .pillar-emoji {
  animation: pillar-emoji-float 2.8s ease-in-out infinite;
}

@keyframes pillar-emoji-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-6px) rotate(4deg);
  }
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--rosso);
  margin: 0 0 0.5rem;
}

.pillar p {
  margin: 0;
  font-size: 0.98rem;
  color: #333;
}

.order-section {
  background: linear-gradient(180deg, rgba(15, 54, 25, 0.58) 0%, rgba(20, 69, 33, 0.42) 50%, rgba(15, 54, 25, 0.55) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

#order .section-title {
  color: var(--bianco-puro);
}

#order .section-sub {
  color: var(--text-on-green-muted);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.order-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin: 0 0 0.25rem;
}

.order-card-icon-svg {
  display: block;
  width: 8rem;
  height: 2.5rem;
  max-width: min(100%, 10rem);
  flex-shrink: 0;
}

.order-card-icon-svg--toast {
  width: 9.5rem;
  height: auto;
  max-height: 2.65rem;
  max-width: min(100%, 12rem);
}

.order-card {
  background: var(--bianco-puro);
  border: 2px solid rgba(185, 28, 28, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow), 0 6px 0 rgba(185, 28, 28, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.order-card:hover {
  transform: translateY(-5px) rotate(0.5deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 8px 0 rgba(185, 28, 28, 0.12);
}

.order-card:nth-child(even):hover {
  transform: translateY(-5px) rotate(-0.5deg);
}

.order-card h3 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--rosso-dark);
  font-size: 1.35rem;
}

.order-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
  flex: 1;
}

.order-card .btn {
  width: 100%;
  max-width: 240px;
}

.order-mobile-alt-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.45rem;
}

.order-mobile-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.order-mobile-alt-svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.order-mobile-alt-svg--toast {
  width: auto;
  height: 1.5rem;
  max-width: 5.5rem;
}

.order-mobile-alt-link--toast-only {
  text-decoration: none;
}

.order-mobile-alt-link--toast-only:hover {
  opacity: 0.92;
}

.order-title-mobile {
  display: none;
}

.order-layout-mobile {
  display: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.gallery a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 3px solid var(--bianco-puro);
  box-shadow: 0 0 0 2px rgba(252, 211, 77, 0.35), 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.gallery a:hover {
  transform: translateY(-4px) rotate(-1.5deg);
  box-shadow: 0 0 0 2px rgba(252, 211, 77, 0.55), 0 20px 40px rgba(0, 0, 0, 0.28);
}

.gallery a:nth-child(even):hover {
  transform: translateY(-4px) rotate(1.5deg);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery a:hover img {
  transform: scale(1.08);
}

.locations {
  background: linear-gradient(165deg, var(--verde-deep) 0%, var(--nero) 45%, var(--verde-deep) 100%);
  color: var(--bianco-puro);
  border-top: 1px solid rgba(185, 28, 28, 0.35);
}

.locations .section-title {
  color: var(--bianco-puro);
}

.locations .section-sub {
  color: rgba(255, 255, 255, 0.85);
}

.location-cards {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  width: 100%;
}

.location-card {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.04) 48%, rgba(12, 60, 35, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--rosso);
  border-radius: var(--radius-lg);
  padding: clamp(1.85rem, 4vw, 2.6rem) clamp(1.65rem, 4vw, 2.5rem);
  box-sizing: border-box;
  max-width: min(100%, 34rem);
  width: min(100%, 34rem);
  justify-self: center;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: var(--rosso);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.location-card h3 {
  font-family: var(--font-display);
  margin: 0 0 clamp(0.65rem, 2vw, 0.9rem);
  color: var(--bianco-puro);
  letter-spacing: -0.02em;
  font-size: clamp(1.65rem, 4.5vw, 2.1rem);
  line-height: 1.15;
}

.location-card h3::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.75rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--cheese), rgba(252, 211, 77, 0.35));
}

.location-card h3,
.location-card p {
  max-width: none;
  width: 100%;
}

.location-card p {
  margin: 0 0 clamp(0.85rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2.6vw, 1.22rem);
  line-height: 1.65;
}

.location-card p:first-of-type {
  font-size: clamp(1.06rem, 2.6vw, 1.3rem);
  line-height: 1.65;
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
}

.location-card p:last-child {
  margin-bottom: 0;
  margin-top: 0.35rem;
}

.location-card strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.01em;
}

.location-card a[href^="tel:"] {
  color: var(--cheese);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(252, 211, 77, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.location-card a[href^="tel:"]:hover {
  color: var(--bianco-puro);
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.location-card p:last-child a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.15);
  color: var(--bianco-puro);
  font-weight: 600;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.location-card p:last-child a:hover {
  background: var(--rosso);
  border-color: var(--rosso);
  color: var(--bianco-puro);
  transform: translateY(-1px);
}

.footer {
  background: var(--header-bg);
  color: var(--bianco-puro);
  padding: 2.5rem 1.25rem;
  text-align: center;
  border-top: 3px solid var(--rosso);
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer .logo {
  display: inline-flex;
  margin-bottom: 0.75rem;
}

.social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bianco-puro);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: #fecaca;
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.social-link:focus-visible {
  outline: 2px solid #fecaca;
  outline-offset: 3px;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.footer small {
  display: block;
  margin-top: 1.25rem;
  opacity: 0.85;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .pillars,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    top: clamp(8.5rem, 34vw, 15.5rem);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--header-bg);
    border-bottom: 3px solid var(--rosso);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
  }

  .order-title-desktop {
    display: none;
  }

  .order-title-mobile {
    display: inline;
  }

  .order-layout-desktop {
    display: none !important;
  }

  .order-section {
    padding: 0;
    background: linear-gradient(
      180deg,
      rgba(15, 54, 25, 0.58) 0%,
      rgba(20, 69, 33, 0.42) 50%,
      rgba(15, 54, 25, 0.55) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  }

  .order-section-inner {
    max-width: none;
    padding: 0;
  }

  #order .order-title-split.section-title {
    width: 100%;
    margin: 0;
    padding: 2.25rem 1.25rem 1.35rem;
    background: transparent;
    color: var(--bianco-puro);
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 8vw, 2.65rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .order-layout-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    padding: 2rem 1.25rem 3rem;
    background: transparent;
    color: var(--text-on-green);
  }

  .order-mobile-cta {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 22rem;
    min-height: 3.15rem;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-radius: var(--radius);
    transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  }

  .order-mobile-cta:active {
    transform: scale(0.98);
  }

  .order-mobile-cta--primary {
    background: var(--rosso);
    color: var(--bianco-puro) !important;
    border: 2px solid var(--rosso);
    box-shadow: 0 4px 14px rgba(185, 28, 28, 0.35);
  }

  .order-mobile-cta--primary:hover {
    background: var(--rosso-dark);
    border-color: var(--rosso-dark);
  }

  .order-mobile-cta--secondary {
    background: transparent;
    color: var(--bianco-puro) !important;
    border: 2px solid rgba(255, 255, 255, 0.9);
  }

  .order-mobile-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .order-mobile-toast-line {
    margin: 0;
    max-width: 22rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    color: var(--text-on-green-muted);
  }

  .order-mobile-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.75rem;
  }

  .order-mobile-badge-link {
    line-height: 0;
    opacity: 0.95;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  }

  .order-mobile-badge-link:hover {
    opacity: 1;
  }

  .order-mobile-badge-img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
  }

  .order-mobile-badge-img--play {
    height: 44px;
  }

  .order-mobile-alt-links {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    text-align: center;
    color: var(--text-on-green-muted);
  }

  .order-mobile-alt-links .order-mobile-alt-link {
    color: #fecaca;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .order-mobile-alt-links .order-mobile-alt-link:hover {
    color: var(--bianco-puro);
  }

  .order-mobile-alt-links .order-mobile-alt-link--toast-only:hover {
    color: inherit;
    opacity: 0.9;
  }

  #gallery.section {
    padding-left: 0;
    padding-right: 0;
  }

  #gallery .section-inner {
    max-width: none;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .gallery {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
    gap: 3px;
  }

  .gallery a {
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .hero {
    min-height: min(68vh, 640px);
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

}

@keyframes hero-glow {
  from {
    opacity: 0.82;
    filter: saturate(0.92);
  }

  to {
    opacity: 1;
    filter: saturate(1.1);
  }
}

.footer-tagline {
  margin: 0 auto;
  opacity: 0.92;
  font-family: var(--font-display);
  font-size: 1.05rem;
  max-width: 26rem;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .hero-confetti {
    animation: none;
  }

  .site-header::after {
    animation: none;
  }

  .hero-eyebrow-badge {
    animation: none;
  }

  .btn-shimmer::after {
    animation: none;
    display: none;
  }

  .hero-entrance {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .js-motion .pillar--fun.is-revealed .pillar-emoji {
    animation: none;
  }

  .btn-bouncy:hover,
  .btn-bouncy:active,
  .pillar:hover,
  .order-card:hover,
  .order-card:nth-child(even):hover,
  .gallery a:hover,
  .gallery a:nth-child(even):hover,
  .location-card:hover {
    transform: none;
  }
}
