/* Premium static site – Italy palette (subtle), responsive, accessible */
:root{
  --bg: #0b1f14;
  --surface: rgba(255,255,255,.06);
  --card: rgba(255,255,255,.08);
  --card-strong: rgba(255,255,255,.12);
  --text: #0f172a;
  --text-on-dark: rgba(255,255,255,.92);
  --muted-on-dark: rgba(255,255,255,.72);
  --muted: #5b6473;
  --green: #0c7a3e;
  --red: #c61f2d;
  --cream: #f4f2ea;
  --line: rgba(255,255,255,.16);
  --shadow: 0 20px 50px rgba(0,0,0,.35);
  --shadow2: 0 10px 30px rgba(0,0,0,.25);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1120px;
  --font-ui: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-ui);
  color: var(--text);
  background: radial-gradient(1200px 900px at 20% -20%, rgba(12,122,62,.18), transparent 60%),
              radial-gradient(900px 700px at 90% -10%, rgba(198,31,45,.14), transparent 55%),
              linear-gradient(180deg, #0b1f14 0%, #07140e 25%, #ffffff 25%, #ffffff 100%);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip-link{
  position:absolute; left: -999px; top: 12px;
  background: #fff; color:#000; padding: 10px 12px; border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus{ left: 12px; }

/* Header */
.site-header{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7,20,14,.55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{ display:flex; align-items:center; gap: 12px; min-width: 220px; }
.brand-mark{
  width: 38px; height: 38px; border-radius: 12px;
  background:
    linear-gradient(90deg, var(--green) 0 33%, var(--cream) 33% 66%, var(--red) 66% 100%);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.brand-title{
  display:block; font-family: var(--font-display); font-weight: 700;
  letter-spacing: .2px; color: var(--text-on-dark);
  font-size: 16px;
}
.brand-subtitle{ display:block; font-size: 12px; color: var(--muted-on-dark); margin-top: 2px; }

.nav{ display:flex; align-items:center; gap: 12px; position: relative; }
.nav-links{ display:flex; align-items:center; gap: 16px; }
.nav-links a{ color: var(--text-on-dark); font-size: 14px; opacity: .9; }
.nav-links a:hover{ opacity: 1; text-decoration: none; }

.nav-toggle{
  display:none;
  background: transparent; border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px; padding: 10px 12px; color: var(--text-on-dark);
}
.burger{
  display:block; width: 18px; height: 2px; background: var(--text-on-dark);
  position: relative;
}
.burger::before,.burger::after{
  content:""; position:absolute; left:0; width: 18px; height: 2px; background: var(--text-on-dark);
}
.burger::before{ top: -6px; }
.burger::after{ top: 6px; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 11px 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  box-shadow: none;
  text-decoration: none !important;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--red), #e3353f);
  color: white;
  box-shadow: 0 14px 28px rgba(198,31,45,.28);
}
.btn-primary:hover{ box-shadow: 0 18px 40px rgba(198,31,45,.34); transform: translateY(-1px); }
.btn-secondary{
  background: linear-gradient(135deg, var(--green), #19a45a);
  color: white;
  box-shadow: 0 14px 28px rgba(12,122,62,.26);
}
.btn-secondary:hover{ box-shadow: 0 18px 40px rgba(12,122,62,.32); transform: translateY(-1px); }
.btn-ghost{
  background: rgba(255,255,255,.06);
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,.14);
}
.btn-ghost:hover{ background: rgba(255,255,255,.10); transform: translateY(-1px); }

.link{ color: var(--text-on-dark); opacity: .88; }
.link:hover{ opacity: 1; text-decoration: underline; }

/* Hero */
.hero{
  position: relative;
  padding: 54px 0 36px;
  color: var(--text-on-dark);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: start;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 500px at 10% 10%, rgba(12,122,62,.22), transparent 60%),
    radial-gradient(700px 480px at 90% 0%, rgba(198,31,45,.20), transparent 55%),
    linear-gradient(180deg, rgba(7,20,14,.92), rgba(7,20,14,.72));
  z-index:-1;
}
.hero-bottom{
  position:absolute; left:0; right:0; bottom:-1px; height: 70px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff 90%);
  z-index:-1;
}
.pill{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-size: 13px;
  color: var(--muted-on-dark);
}
.dot{ width: 8px; height: 8px; border-radius: 999px; display:inline-block; }
.dot-green{ background: var(--green); }
.dot-white{ background: var(--cream); border: 1px solid rgba(255,255,255,.35); }
.dot-red{ background: var(--red); }

.hero h1{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .2px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  margin: 14px 0 10px;
}
.lead{
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-on-dark);
  margin: 0 0 18px;
  max-width: 62ch;
}
.lead-sm{
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 10px;
}
.hero-cta{ display:flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 16px; }

.hero-metrics{
  display:flex; gap: 14px; flex-wrap: wrap;
  margin-top: 16px;
}
.metric{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.metric-kpi{
  font-weight: 700;
  letter-spacing: .2px;
  font-family: var(--font-display);
  font-size: 18px;
}
.metric-label{ font-size: 12px; color: var(--muted-on-dark); margin-top: 2px; }

/* Cards */
.hero-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow2);
}
.card-title{
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 8px;
}
.card-actions{
  display:flex; gap: 10px; align-items:center; flex-wrap: wrap;
  margin-top: 12px;
}
.small{ font-size: 12px; }
.muted{ color: var(--muted); }
.muted-on-dark{ color: var(--muted-on-dark); }

/* Sections */
.section{ padding: 64px 0; background: #fff; }
.section-alt{ background: #fbfbfb; }
.section-head{ margin-bottom: 22px; }
.section-head h2{
  font-family: var(--font-display);
  font-size: 30px;
  margin: 0 0 6px;
  color: #0f172a;
}
.section-head p{ margin: 0; }
.section-foot{ margin-top: 18px; }

/* Grids */
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.two-col{ display:grid; grid-template-columns: 1.05fr .95fr; gap: 18px; align-items: start; }

.feature{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  box-shadow: 0 10px 25px rgba(15,23,42,.06);
}
.feature h3{ margin: 0 0 6px; font-size: 16px; }
.feature p{ margin: 0; color: var(--muted); line-height: 1.55; }

.card{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
}
.card-accent{
  border-color: rgba(12,122,62,.20);
  background:
    radial-gradient(600px 250px at 100% 0%, rgba(12,122,62,.10), transparent 60%),
    radial-gradient(600px 250px at 0% 100%, rgba(198,31,45,.08), transparent 60%),
    #fff;
}
.tip{ margin-top: 16px; }

/* Checklists */
.checklist{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.checklist li{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: var(--muted-on-dark);
  line-height: 1.5;
}
.card .checklist li{ color: var(--muted); }
.checklist li::before{
  content:"";
  position:absolute; left:0; top: 4px;
  width: 16px; height: 16px; border-radius: 6px;
  background: linear-gradient(135deg, var(--green), #1fb76a);
  box-shadow: 0 8px 18px rgba(12,122,62,.18);
}
/* FIX: line repaired */
.hero-card .checklist li::before{
  background: linear-gradient(135deg, var(--red), #f0424b);
  box-shadow: 0 8px 18px rgba(198,31,45,.18);
}

/* Steps */
.steps{ margin-top: 16px; display:grid; gap: 10px; }
.step{
  display:flex; gap: 12px; align-items:center;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}
.step-n{
  width: 34px; height: 34px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green), #19a45a);
  color:#fff;
}
.step-c strong{ display:block; }
.step-c span{ display:block; font-size: 13px; margin-top: 2px; }

/* Media card */
.media-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,.10);
  overflow:hidden;
  background:#fff;
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
}
.media-top{ padding: 14px; background: linear-gradient(135deg, rgba(12,122,62,.08), rgba(198,31,45,.06)); }
.badge{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.8);
}
.media-placeholder{
  margin-top: 12px;
  border-radius: 18px;
  height: 260px;
  background:
    radial-gradient(220px 120px at 20% 20%, rgba(12,122,62,.20), transparent 60%),
    radial-gradient(220px 120px at 80% 40%, rgba(198,31,45,.16), transparent 60%),
    linear-gradient(135deg, #0b1f14, #123a26);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
.media-bottom{ padding: 14px; }

/* Menu filters */
.filters{ display:flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 18px; }
.chip{
  border: 1px solid rgba(15,23,42,.12);
  background: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.chip:hover{ transform: translateY(-1px); box-shadow: 0 12px 20px rgba(15,23,42,.06); }
.chip.is-active{
  border-color: rgba(12,122,62,.35);
  background: rgba(12,122,62,.06);
}

/* Menu grid */
.menu-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.menu-item{
  position: relative;
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  min-height: 118px;
}
.menu-item h3{ margin: 0 0 6px; font-size: 16px; }
.menu-item p{ margin: 0; color: var(--muted); line-height: 1.5; padding-right: 68px; }
.tag{
  position:absolute; right: 12px; top: 12px;
  font-size: 12px; font-weight: 700;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
}
.tag-tomate{ background: rgba(198,31,45,.08); border-color: rgba(198,31,45,.18); }
.tag-creme{ background: rgba(12,122,62,.08); border-color: rgba(12,122,62,.18); }

/* Pizza images */
.pizza-img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(15,23,42,.10);
}

/* Accordion */
.accordion details{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding: 14px 16px;
  background:#fff;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  margin-bottom: 12px;
}
.accordion summary{
  cursor:pointer;
  font-weight: 700;
}
.accordion p{ margin: 10px 0 0; color: var(--muted); line-height: 1.6; }

/* CTA section */
.cta{
  background:
    radial-gradient(900px 340px at 10% 40%, rgba(12,122,62,.10), transparent 60%),
    radial-gradient(900px 340px at 90% 40%, rgba(198,31,45,.08), transparent 60%),
    #fff;
}
.cta-inner{
  display:flex; align-items:center; justify-content:space-between; gap: 16px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 16px 44px rgba(15,23,42,.10);
}

/* Form */
.form-card{ align-self: start; }
.form{ display:grid; gap: 12px; }
.field label{ display:block; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  padding: 12px 12px;
  font: inherit;
  outline: none;
  background: #fff;
}
.field input:focus, .field textarea:focus{
  border-color: rgba(12,122,62,.45);
  box-shadow: 0 0 0 4px rgba(12,122,62,.10);
}
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

/* Footer */
.site-footer{
  background: #07140e;
  color: var(--text-on-dark);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 26px 0;
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center; gap: 16px; flex-wrap: wrap;
}
.footer-title{ font-family: var(--font-display); font-weight: 700; }
.footer-links{ display:flex; gap: 14px; flex-wrap: wrap; }
.footer-links a{ color: var(--muted-on-dark); font-size: 13px; }
.footer-links a:hover{ color: var(--text-on-dark); text-decoration: none; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .menu-grid{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .cta-inner{ flex-direction: column; align-items:flex-start; }
}

@media (max-width: 760px){
  .nav-toggle{ display:inline-flex; }
  .nav-links{
    display:none;
    position:absolute;
    right: 20px;
    top: 64px;
    background: rgba(7,20,14,.92);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100vw - 40px));
    box-shadow: var(--shadow);
  }
  .nav-links a{ padding: 10px 10px; border-radius: 12px; }
  .nav-links a:hover{ background: rgba(255,255,255,.06); }
  .nav-links.is-open{ display:flex; }
  .menu-grid{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-2 .field{ width:100%; }
}
