:root {
  --navy-950: #1a4a7c;
  --navy-900: #1e5690;
  --navy-800: #2568a8;
  --navy-700: #2d78bc;
  --navy: #215a96;
  --azzurro: #4fbee7;
  --azzurro-soft: #8adef6;
  --azzurro-deep: #2eb4e0;
  --argento: #e8f4fb;
  --argento-bright: #ffffff;
  --cream: #f7fbfe;
  --cream-dark: #e4f3fa;
  --ink: #143a62;
  --muted: #d5eef8;
  --header-h: 84px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-body: "Karla", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(79, 190, 231, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(138, 222, 246, 0.4), transparent 50%),
    linear-gradient(180deg, #1e5a96 0%, #2470b5 45%, #1c4f88 100%);
  color: var(--argento-bright);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

main {
  position: relative;
}

.bg-icons {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.bg-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.22);
  animation: iconDrift 14s ease-in-out infinite;
}

.bg-icon.i1 { width: 28px; top: 12%; left: 6%; animation-duration: 16s; }
.bg-icon.i2 { width: 26px; top: 28%; left: 18%; animation-delay: -2s; animation-duration: 13s; }
.bg-icon.i3 { width: 42px; top: 18%; right: 8%; animation-delay: -4s; animation-duration: 18s; }
.bg-icon.i4 { width: 52px; top: 58%; left: 8%; animation-delay: -1s; animation-duration: 15s; }
.bg-icon.i5 { width: 64px; top: 72%; right: 14%; animation-delay: -6s; animation-duration: 17s; }
.bg-icon.i6 { width: 44px; top: 42%; right: 6%; animation-delay: -3s; animation-duration: 12s; }
.bg-icon.i7 { width: 30px; bottom: 12%; left: 22%; animation-delay: -5s; animation-duration: 14s; }
.bg-icon.i8 { width: 40px; top: 8%; right: 28%; animation-delay: -7s; animation-duration: 19s; }
.bg-icon.i9 { width: 22px; bottom: 22%; right: 8%; animation-delay: -2.5s; animation-duration: 11s; }
.bg-icon.i10 { width: 24px; top: 48%; left: 3%; animation-delay: -8s; animation-duration: 16s; }
.bg-icon.i11 { width: 38px; bottom: 8%; left: 48%; animation-delay: -3.5s; animation-duration: 13s; }
.bg-icon.i12 { width: 36px; top: 64%; right: 32%; animation-delay: -9s; animation-duration: 20s; }

@keyframes iconDrift {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(12px, -18px) rotate(10deg); }
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

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

.skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  z-index: 100;
  background: var(--azzurro);
  color: var(--navy-950);
  padding: 0.6rem 1rem;
  border-radius: 8px;
}

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

.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #1a2152;
  border-bottom: 1px solid rgba(79, 190, 231, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(79, 190, 231, 0.35);
}

.logo span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

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

.nav a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--argento);
  transition: color 0.2s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--azzurro);
}

.nav a[href^="tel"] {
  display: none;
}

.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--azzurro);
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease), background 0.2s;
}

.cta-call:hover {
  background: var(--azzurro-soft);
  transform: translateY(-1px);
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9dffc4;
  border: 1px solid rgba(157, 255, 196, 0.4);
  background: rgba(46, 180, 120, 0.16);
  padding: 0.38rem 0.8rem 0.38rem 0.7rem;
  border-radius: 14px;
  white-space: nowrap;
  line-height: 1.15;
  order: 1;
}

.cta-call { order: 2; }

.open-badge.is-closed {
  color: #ffb4b8;
  border-color: rgba(255, 180, 184, 0.38);
  background: rgba(180, 50, 70, 0.18);
}

.open-text {
  display: grid;
  gap: 0.08rem;
}

.open-label {
  font-size: 0.7rem;
}

.open-next {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  opacity: 0.9;
  font-weight: 600;
}

.open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  flex-shrink: 0;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--azzurro);
  background: rgba(79, 190, 231, 0.12);
  color: var(--argento-bright);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--argento-bright);
  box-shadow: 0 -6px 0 var(--argento-bright), 0 6px 0 var(--argento-bright);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(calc(100svh - var(--header-h)), 860px);
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 0.85rem 0 2.8rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 85% 45%, rgba(79, 190, 231, 0.55), transparent 62%),
    radial-gradient(ellipse 55% 50% at 5% 90%, rgba(138, 222, 246, 0.35), transparent 65%),
    linear-gradient(180deg, #1c558f, #2a7cc4);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  grid-template-areas:
    "copy copy"
    "pills visual";
  gap: 0.35rem 1.6rem;
  align-items: start;
}

.hero-copy {
  grid-area: copy;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-visual { grid-area: visual; }
.pills { grid-area: pills; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 5.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero h1 .accent {
  color: #eafbff;
  text-shadow: 0 0 28px rgba(79, 190, 231, 0.9);
}

.title-mob { display: none; }

.hero-lead {
  margin-top: 1.25rem;
  color: var(--argento);
  max-width: 36ch;
  font-size: 1.05rem;
}

.pills {
  display: grid;
  gap: 0.75rem;
  max-width: 420px;
  align-self: start;
  margin-top: 1.85rem;
  position: relative;
  z-index: 3;
}

.pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-pill);
  padding: 0.72rem 0.6rem 0.72rem 1.4rem;
  min-height: 72px;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.pill:hover,
.pill:focus-visible {
  border-color: var(--azzurro);
  transform: translateX(6px);
}

.pill strong {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.pill img,
.pill .pill-ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--navy-800);
}

.pill-ico {
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366 !important;
}

/* Visual */
.hero-visual {
  position: relative;
  min-height: 620px;
}

.orbit {
  position: absolute;
  color: rgba(255, 255, 255, 0.55);
  z-index: 1;
  pointer-events: none;
  animation: iconDrift 11s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(20, 70, 120, 0.25));
}

.orbit.o1 { width: 34px; top: 6%; left: 2%; animation-duration: 13s; }
.orbit.o2 { width: 32px; top: 18%; right: 0; animation-delay: -2s; animation-duration: 15s; }
.orbit.o3 { width: 48px; bottom: 14%; left: 0; animation-delay: -4s; animation-duration: 12s; }
.orbit.o4 { width: 56px; top: 8%; left: 38%; animation-delay: -1s; animation-duration: 14s; }
.orbit.o5 { width: 70px; bottom: 8%; right: 8%; animation-delay: -6s; animation-duration: 16s; }
.orbit.o6 { width: 50px; top: 48%; left: -4%; animation-delay: -3s; animation-duration: 10s; }

.pizza-stack {
  position: absolute;
  width: min(680px, 112%);
  right: -6%;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  animation: pizzafloat 6.5s ease-in-out infinite;
  filter: drop-shadow(0 28px 36px rgba(8, 18, 12, 0.45));
}

.pizza-stack::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 62%;
  height: 12%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(20, 12, 8, 0.4), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.pizza-board {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  clip-path: circle(42.4% at 50% 50%);
}

.pizza {
  position: absolute;
  width: 68%;
  left: 50%;
  top: 49%;
  z-index: 2;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

@keyframes pizzafloat {
  0%, 100% { transform: translateY(-50%) rotate(-2deg); }
  50% { transform: translateY(calc(-50% - 16px)) rotate(2deg); }
}

/* Sections */
.section {
  padding: 6.5rem 0;
  position: relative;
  z-index: 2;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
}

.section h2 span { color: var(--azzurro-soft); }

.eyebrow {
  color: var(--azzurro-soft);
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.7rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-copy p {
  color: var(--argento);
  margin-top: 1.1rem;
  max-width: 52ch;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-photos img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(79, 190, 231, 0.2);
}

.about-photos img.chef {
  height: 280px;
  margin-top: 3rem;
  object-position: top;
}

/* Dove siamo */
.dove-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
}

.info-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.4rem;
}

.info-list a,
.info-list p {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--argento);
}

.info-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--azzurro);
}

.sala-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(79, 190, 231, 0.2);
}

.map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Social */
.social {
  text-align: center;
}

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

  .hero-social {
    justify-content: center;
    margin-top: 1.75rem;
  }

  .hero-social .social-btn {
    width: 56px;
    height: 56px;
  }

.social-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(79, 190, 231, 0.28);
  color: var(--argento-bright);
  transition: background 0.2s, transform 0.2s var(--ease), border-color 0.2s;
}

.social-btn:hover {
  background: var(--azzurro);
  color: var(--navy-950);
  border-color: var(--azzurro);
  transform: translateY(-4px);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: #1a2152;
  border-top: 1px solid rgba(79, 190, 231, 0.28);
  padding: 3.5rem 0 0;
  color: var(--argento);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--azzurro-soft);
  margin-bottom: 0.9rem;
}

.footer a:hover { color: var(--azzurro); }

.legal {
  display: grid;
  gap: 0.35rem;
}

.subfooter {
  background: #1a2152;
  border-top: 1px solid rgba(79, 190, 231, 0.18);
  padding: 0.9rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.subfooter a {
  color: var(--argento-bright);
  font-weight: 700;
}

.subfooter a:hover { color: var(--azzurro); }

.legal-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}

.hours-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  color: var(--argento);
}

.hours-list li.is-today {
  color: var(--argento-bright);
  font-weight: 700;
}

.hours-list li.is-today span:last-child {
  color: var(--azzurro-soft);
}

/* Mobile nav */
@media (max-width: 900px) {
  :root { --header-h: 108px; }
  .header { height: var(--header-h); }
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: calc(100% - 1.2rem);
  }
  .menu-btn {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 2;
  }
  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }
  .open-badge {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    order: 0;
    padding: 0.28rem 0.55rem 0.28rem 0.5rem;
    gap: 0.35rem;
    border-radius: 12px;
  }
  .open-label { font-size: 0.58rem; }
  .open-next { font-size: 0.5rem; }
  .logo img {
    width: 94px;
    height: 94px;
  }
  .logo span { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #1a2152;
    flex-direction: column;
    padding: 1.2rem;
    display: none;
    border-bottom: 1px solid rgba(79, 190, 231, 0.15);
  }
  .nav.open { display: flex; }
  .cta-call { display: none; }
  .hero {
    min-height: calc(100svh - var(--header-h));
    overflow: hidden;
    padding: 1.15rem 0 4.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "pills";
    gap: 0.35rem 0;
    position: relative;
    justify-items: stretch;
  }
  .hero .wrap {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
    box-sizing: border-box;
  }
  .hero-copy {
    padding-top: 0;
    width: 100%;
    padding-inline: 1.25rem;
    box-sizing: border-box;
  }
  .pills {
    width: auto;
    max-width: none;
    margin-top: 3.4rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    justify-self: stretch;
    z-index: 3;
  }
  .pill {
    min-height: 88px;
    padding: 0.88rem 0.7rem 0.88rem 1.5rem;
  }
  .pill strong {
    font-size: 1.18rem;
    letter-spacing: 0.12em;
  }
  .pill img,
  .pill .pill-ico {
    width: 66px;
    height: 66px;
  }
  .pizza-stack {
    position: relative;
    width: min(560px, 120%);
    left: auto;
    right: auto;
    top: 0;
    transform: none;
  }
  .about-grid,
  .dove-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav a[href^="tel"] { display: inline-flex; }
  .hero-visual {
    grid-area: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 8%;
    bottom: -4%;
    z-index: 1;
    pointer-events: none;
    display: grid;
    place-items: center;
    min-height: 0;
    padding: 0;
  }
  .orbit { display: none; }
  .title-desk { display: none; }
  .title-mob { display: inline; }
  .hero h1 {
    font-size: clamp(1.45rem, 8.4vw, 2.15rem);
  }
  @keyframes pizzafloat {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
  }
  .about-photos img,
  .about-photos img.chef { height: 240px; margin-top: 0; }
}

@media (max-width: 900px) {
  .pill:hover,
  .pill:focus-visible {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pizza-stack {
    animation: none !important;
  }
  .bg-icon,
  .orbit {
    animation: none !important;
  }
}
