/* BravoPizza — тёплая итальянская палитра */
:root {
  --tomato: #c4453a;
  --tomato-dark: #9d2e25;
  --tomato-light: #e85d50;
  --cream: #fbf6ec;
  --cream-2: #f4ede0;
  --olive: #6b7c3a;
  --olive-dark: #4a5728;
  --basil: #3a6e3a;
  --crust: #d4a574;
  --crust-dark: #8b6f3f;
  --ink: #3d2817;
  --ink-2: #6b4f35;
  --ink-3: #9d8466;
  --gold: #f4d03f;
  --shadow-warm: 0 20px 50px rgba(157, 46, 37, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary {
  background: var(--tomato);
  color: white;
  box-shadow: 0 4px 14px rgba(196, 69, 58, 0.3);
}
.btn-primary:hover {
  background: var(--tomato-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 69, 58, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: white;
}
.btn-ghost {
  color: var(--ink);
  font-weight: 600;
}
.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 11px;
  margin-right: 6px;
}

/* Шапка */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 40, 23, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
}
.logo-icon { font-size: 32px; }
.logo-text em {
  font-style: italic;
  color: var(--tomato);
  font-weight: 700;
}
.nav {
  display: flex;
  gap: 32px;
  font-weight: 500;
}
.nav a {
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
}
.nav a:hover, .nav a.active { color: var(--tomato); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--tomato);
  border-radius: 2px;
}

/* HERO */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(196, 69, 58, 0.1);
  color: var(--tomato);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  color: var(--tomato);
  font-weight: 400;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}
.hero-stats span {
  font-size: 13px;
  color: var(--ink-3);
}

/* Hero pizza visual */
.hero-visual {
  position: relative;
  height: 500px;
}
.hero-pizza {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 30px 50px rgba(157, 46, 37, 0.3));
  animation: pizzaFloat 6s ease-in-out infinite;
}
.hero-pizza svg { width: 110%; max-width: 600px; }
@keyframes pizzaFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}
.floating-badge {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-warm);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: badgeFloat 4s ease-in-out infinite;
}
.badge-1 { top: 60px; left: -20px; animation-delay: 0s; }
.badge-2 { bottom: 80px; right: -10px; animation-delay: 2s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.badge-icon {
  font-size: 28px;
  width: 48px; height: 48px;
  background: var(--cream-2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.floating-badge strong { display: block; font-size: 15px; color: var(--ink); }
.floating-badge span { font-size: 12px; color: var(--ink-3); }

.hero-scroll {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: var(--ink-3);
  margin: 8px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.4); opacity: 1; }
}

/* Section heads */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.eyebrow {
  display: inline-block;
  font-size: 14px;
  color: var(--tomato);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

/* HITS */
.hits {
  padding: 100px 0;
  background: var(--cream-2);
}
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pizza-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(61, 40, 23, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pizza-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(61, 40, 23, 0.15);
}
.pizza-img {
  background: var(--cream);
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pizza-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: relative;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15));
}

/* Различные пиццы — каждая уникальна */
.pizza-pepperoni {
  background:
    radial-gradient(circle at 30% 30%, #c44a3f 14px, transparent 15px),
    radial-gradient(circle at 70% 35%, #c44a3f 16px, transparent 17px),
    radial-gradient(circle at 50% 60%, #c44a3f 14px, transparent 15px),
    radial-gradient(circle at 25% 70%, #c44a3f 13px, transparent 14px),
    radial-gradient(circle at 75% 70%, #c44a3f 15px, transparent 16px),
    radial-gradient(ellipse at 40% 45%, #fff8dc 25px, transparent 30px),
    radial-gradient(ellipse at 60% 55%, #fff8dc 20px, transparent 25px),
    radial-gradient(circle, #c4453a 0%, #c4453a 80%, #d4a574 81%, #d4a574 100%);
}
.pizza-margarita {
  background:
    radial-gradient(circle at 30% 35%, #3a6e3a 5px, transparent 6px),
    radial-gradient(circle at 65% 45%, #3a6e3a 5px, transparent 6px),
    radial-gradient(circle at 45% 65%, #3a6e3a 6px, transparent 7px),
    radial-gradient(circle at 25% 60%, #3a6e3a 4px, transparent 5px),
    radial-gradient(ellipse at 35% 40%, #fff8dc 30px, transparent 35px),
    radial-gradient(ellipse at 65% 60%, #fff8dc 25px, transparent 30px),
    radial-gradient(circle, #c4453a 0%, #c4453a 80%, #d4a574 81%, #d4a574 100%);
}
.pizza-quattro {
  background:
    radial-gradient(circle at 30% 30%, #fff8dc 35px, transparent 38px),
    radial-gradient(circle at 70% 30%, #f4d03f 30px, transparent 33px),
    radial-gradient(circle at 30% 70%, #d4a574 32px, transparent 35px),
    radial-gradient(circle at 70% 70%, #fff8dc 35px, transparent 38px),
    radial-gradient(circle, #e8b985 0%, #e8b985 80%, #d4a574 81%, #d4a574 100%);
}
.pizza-meat {
  background:
    radial-gradient(circle at 25% 30%, #6b3a1f 12px, transparent 13px),
    radial-gradient(circle at 60% 30%, #8b4f2a 14px, transparent 15px),
    radial-gradient(circle at 40% 55%, #c44a3f 16px, transparent 17px),
    radial-gradient(circle at 70% 60%, #6b3a1f 13px, transparent 14px),
    radial-gradient(circle at 30% 75%, #8b4f2a 12px, transparent 13px),
    radial-gradient(ellipse at 50% 45%, #fff8dc 20px, transparent 25px),
    radial-gradient(circle, #c4453a 0%, #c4453a 80%, #d4a574 81%, #d4a574 100%);
}
.pizza-funghi {
  background:
    radial-gradient(ellipse 14px 8px at 30% 35%, #6b4f35, transparent),
    radial-gradient(ellipse 16px 10px at 60% 40%, #8b6f4f, transparent),
    radial-gradient(ellipse 14px 8px at 45% 65%, #6b4f35, transparent),
    radial-gradient(ellipse 12px 7px at 70% 60%, #8b6f4f, transparent),
    radial-gradient(circle at 50% 50%, #fff8dc 50px, transparent 55px),
    radial-gradient(circle, #d4a574 0%, #d4a574 80%, #c89860 81%, #c89860 100%);
}
.pizza-prosciutto {
  background:
    radial-gradient(ellipse 30px 8px at 35% 40%, #d8856e, transparent),
    radial-gradient(ellipse 28px 8px at 65% 50%, #d8856e, transparent),
    radial-gradient(ellipse 26px 7px at 50% 65%, #d8856e, transparent),
    radial-gradient(circle at 30% 70%, #6b7c3a 4px, transparent 5px),
    radial-gradient(circle at 60% 30%, #6b7c3a 4px, transparent 5px),
    radial-gradient(ellipse 18px 14px at 50% 45%, #fff8dc, transparent),
    radial-gradient(circle, #e8b985 0%, #e8b985 80%, #d4a574 81%, #d4a574 100%);
}
.pizza-bbq {
  background:
    radial-gradient(circle at 30% 35%, #b06a3f 13px, transparent 14px),
    radial-gradient(circle at 60% 40%, #b06a3f 14px, transparent 15px),
    radial-gradient(circle at 45% 65%, #b06a3f 15px, transparent 16px),
    radial-gradient(circle at 70% 65%, #5a3825 6px, transparent 7px),
    radial-gradient(ellipse at 40% 50%, #fff8dc 22px, transparent 27px),
    radial-gradient(circle, #8b4f2a 0%, #8b4f2a 80%, #d4a574 81%, #d4a574 100%);
}
.pizza-diavola {
  background:
    radial-gradient(circle at 30% 35%, #a8332a 16px, transparent 17px),
    radial-gradient(circle at 70% 40%, #a8332a 15px, transparent 16px),
    radial-gradient(circle at 45% 65%, #a8332a 17px, transparent 18px),
    radial-gradient(circle at 25% 60%, #6b7c3a 8px, transparent 9px),
    radial-gradient(circle at 65% 70%, #6b7c3a 7px, transparent 8px),
    radial-gradient(ellipse at 50% 45%, #fff8dc 18px, transparent 23px),
    radial-gradient(circle, #c4453a 0%, #c4453a 80%, #d4a574 81%, #d4a574 100%);
}

.pizza-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  background: var(--tomato);
  color: white;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}
.badge-veg { background: var(--olive); }
.badge-new { background: var(--gold); color: var(--ink); }
.badge-meat { background: var(--ink); }
.tag-spicy, .badge-spicy { background: var(--tomato-dark); }

.pizza-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pizza-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pizza-content p {
  color: var(--ink-2);
  font-size: 14px;
  margin-bottom: 18px;
  flex: 1;
}
.pizza-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pizza-prices {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}
.pizza-prices span:first-child { color: var(--ink-3); }
.pizza-prices strong {
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  margin-top: 2px;
}
.btn-add {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tomato);
  color: white;
  font-size: 24px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.btn-add:hover {
  background: var(--tomato-dark);
  transform: scale(1.1);
}

.hits-foot {
  text-align: center;
  margin-top: 48px;
}

/* FEATURES */
.features {
  padding: 100px 0;
  background: var(--cream);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 32px 20px;
}
.feature-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}
.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature p {
  color: var(--ink-2);
  font-size: 15px;
}

/* PROMO */
.promo {
  padding: 60px 0 100px;
}
.promo-card {
  background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-dark) 100%);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.2) 0%, transparent 60%);
}
.promo-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.promo-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.05;
}
.promo-content p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 480px;
}
.promo-card .btn-primary {
  background: white;
  color: var(--tomato);
}
.promo-card .btn-primary:hover {
  background: var(--cream);
  color: var(--tomato-dark);
}
.promo-note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.7;
}
.promo-visual {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-pizza-1, .promo-pizza-2 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: absolute;
}
.promo-pizza-1 {
  left: 0;
  background:
    radial-gradient(circle at 30% 30%, #c44a3f 14px, transparent 15px),
    radial-gradient(circle at 70% 35%, #c44a3f 14px, transparent 15px),
    radial-gradient(circle at 50% 60%, #c44a3f 13px, transparent 14px),
    radial-gradient(ellipse at 50% 50%, #fff8dc 25px, transparent 30px),
    radial-gradient(circle, #9d2e25 0%, #9d2e25 80%, #d4a574 81%, #d4a574 100%);
  transform: rotate(-15deg);
}
.promo-pizza-2 {
  right: 0;
  background:
    radial-gradient(circle at 30% 35%, #3a6e3a 5px, transparent 6px),
    radial-gradient(circle at 65% 45%, #3a6e3a 5px, transparent 6px),
    radial-gradient(ellipse at 50% 50%, #fff8dc 30px, transparent 35px),
    radial-gradient(circle, #9d2e25 0%, #9d2e25 80%, #d4a574 81%, #d4a574 100%);
  transform: rotate(15deg);
}
.promo-plus {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* REVIEWS */
.reviews {
  padding: 100px 0;
  background: var(--cream-2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(61,40,23,0.06);
}
.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review p {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-2);
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}
.avatar-1 { background: var(--tomato); }
.avatar-2 { background: var(--olive); }
.avatar-3 { background: var(--ink); }
.review-author strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.review-author span {
  font-size: 13px;
  color: var(--ink-3);
}

/* APP CTA */
.app-cta {
  padding: 100px 0;
}
.app-card {
  background: var(--ink);
  color: white;
  border-radius: 32px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,69,58,0.3) 0%, transparent 60%);
}
.app-content {
  position: relative;
  z-index: 1;
}
.app-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 18px;
}
.app-content em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.app-content p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 460px;
}
.app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  transition: all 0.2s;
}
.store-btn:hover { background: rgba(255,255,255,0.2); }
.store-icon {
  width: 24px; height: 24px;
  background: white;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}
.store-icon::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--ink);
  clip-path: polygon(20% 0%, 80% 50%, 20% 100%);
}
.store-btn small {
  display: block;
  font-size: 11px;
  opacity: 0.7;
}
.store-btn strong {
  display: block;
  font-size: 15px;
}

.app-phone {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 240px;
  height: 480px;
  background: #fff;
  border-radius: 36px;
  border: 8px solid #2a1a0d;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  transform: rotate(-5deg);
}
.phone-screen {
  background: var(--cream);
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}
.phone-header em { color: var(--tomato); font-style: italic; font-weight: 700; }
.phone-bag {
  background: var(--tomato);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}
.phone-pizza {
  width: 160px; height: 160px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #c44a3f 12px, transparent 13px),
    radial-gradient(circle at 70% 35%, #c44a3f 13px, transparent 14px),
    radial-gradient(circle at 50% 65%, #c44a3f 12px, transparent 13px),
    radial-gradient(ellipse at 50% 50%, #fff8dc 22px, transparent 27px),
    radial-gradient(circle, #c4453a 0%, #c4453a 80%, #d4a574 81%, #d4a574 100%);
  filter: drop-shadow(0 8px 20px rgba(196,69,58,0.4));
}
.phone-info {
  text-align: center;
  margin-bottom: auto;
}
.phone-info strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--ink);
}
.phone-info span {
  font-size: 14px;
  color: var(--ink-3);
}
.phone-bar {
  background: var(--tomato);
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: white; }
.footer-brand p {
  margin: 18px 0 24px;
  opacity: 0.7;
  font-size: 14px;
  max-width: 320px;
}
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.socials a:hover { background: var(--tomato); }
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  opacity: 0.7;
  font-size: 14px;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  opacity: 0.6;
}

/* === Page hero (для подстраниц) === */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}
.page-eyebrow {
  display: inline-block;
  font-size: 14px;
  color: var(--tomato);
  font-weight: 600;
  margin-bottom: 16px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-title em {
  font-style: italic;
  color: var(--tomato);
  font-weight: 400;
}
.page-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto;
}

/* === Menu page === */
.menu-cats {
  padding: 32px 0;
  position: sticky;
  top: 80px;
  background: var(--cream);
  z-index: 50;
  border-bottom: 1px solid rgba(61,40,23,0.08);
}
.cats-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.cat-pill {
  padding: 10px 20px;
  background: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  border: 2px solid transparent;
  transition: all 0.2s;
}
.cat-pill:hover { border-color: var(--tomato); }
.cat-pill.active {
  background: var(--tomato);
  color: white;
}
.menu-section {
  padding: 80px 0;
}
.menu-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 36px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.menu-h2-count {
  font-size: 18px;
  color: var(--ink-3);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.menu-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(61,40,23,0.06);
  display: grid;
  grid-template-columns: 200px 1fr;
  transition: all 0.2s;
}
.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(61,40,23,0.12);
}
.menu-img {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.menu-img .pizza-circle {
  width: 170px;
  height: 170px;
}
.menu-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.menu-top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
}
.menu-tag {
  font-size: 11px;
  padding: 3px 9px;
  background: var(--tomato);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.tag-veg { background: var(--olive); }
.tag-new { background: var(--gold); color: var(--ink); }
.tag-meat { background: var(--ink); }
.menu-info p {
  color: var(--ink-2);
  font-size: 14px;
  margin-bottom: 16px;
  flex: 1;
}
.menu-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.size-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--ink-3);
}
.size-prices em { font-style: normal; margin-right: 6px; opacity: 0.6; }
.size-prices .active {
  color: var(--ink);
  font-weight: 700;
}
.btn-add-lg {
  background: var(--tomato);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-add-lg:hover {
  background: var(--tomato-dark);
  transform: scale(1.05);
}

.combo-section { background: var(--cream-2); }
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.combo-card {
  background: white;
  padding: 36px 28px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.combo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(61,40,23,0.12);
}
.combo-card.combo-featured {
  background: var(--ink);
  color: white;
}
.combo-card.combo-featured h3 { color: white; }
.combo-card.combo-featured p { color: rgba(255,255,255,0.8); }
.combo-card.combo-featured .old-price { color: rgba(255,255,255,0.5); }
.combo-card.combo-featured strong { color: var(--gold); }
.combo-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tomato);
  color: white;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.combo-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}
.combo-card p {
  color: var(--ink-2);
  margin-bottom: 24px;
  font-size: 15px;
}
.combo-price {
  margin-bottom: 24px;
}
.combo-price .old-price {
  text-decoration: line-through;
  color: var(--ink-3);
  margin-right: 8px;
  font-size: 15px;
}
.combo-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--tomato);
}

/* === About page === */
.story {
  padding: 80px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.story-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.story-text p em {
  color: var(--tomato);
  font-style: italic;
}
.story-quote {
  background: var(--ink);
  color: white;
  padding: 48px 40px;
  border-radius: 24px;
  position: relative;
  margin-top: 60px;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  line-height: 0.5;
  color: var(--tomato);
  position: absolute;
  top: 30px;
  left: 30px;
  font-weight: 900;
}
.story-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  margin: 50px 0 30px 0;
}
.quote-author strong {
  display: block;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}
.quote-author span {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.principles {
  padding: 80px 0;
  background: var(--cream-2);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.principle {
  background: white;
  padding: 36px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
}
.p-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--tomato);
  line-height: 1;
  font-style: italic;
}
.principle h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.principle p {
  color: var(--ink-2);
  font-size: 15px;
}

.team {
  padding: 80px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.team-photo::before {
  content: '👨‍🍳';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.team-1 { background: linear-gradient(135deg, #c4453a, #9d2e25); }
.team-2 { background: linear-gradient(135deg, #6b7c3a, #4a5728); }
.team-3 { background: linear-gradient(135deg, #d4a574, #8b6f3f); }
.team-3::before { content: '👩‍🍳'; }
.team-4 { background: linear-gradient(135deg, #3d2817, #6b4f35); }
.team-4::before { content: '🛵'; }
.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card span {
  display: block;
  color: var(--tomato);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.team-card p {
  color: var(--ink-3);
  font-size: 14px;
  font-style: italic;
}

.numbers {
  padding: 80px 0;
  background: var(--ink);
  color: white;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.numbers-grid > div strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.numbers-grid > div span {
  font-size: 14px;
  opacity: 0.7;
}

/* === Contacts page === */
.main-contacts {
  padding: 60px 0;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(61,40,23,0.06);
  transition: all 0.2s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(61,40,23,0.12);
}
.contact-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-link {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--tomato);
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--ink-3);
  font-size: 14px;
}

.locations {
  padding: 80px 0;
  background: var(--cream-2);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s;
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(61,40,23,0.12);
}
.location-photo {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: white;
}
.location-photo::after {
  content: '🍕';
  font-size: 64px;
}
.loc-1 { background: linear-gradient(135deg, #c4453a, #9d2e25); }
.loc-2 { background: linear-gradient(135deg, #d4a574, #8b6f3f); }
.loc-3 { background: linear-gradient(135deg, #6b7c3a, #4a5728); }
.loc-4 { background: linear-gradient(135deg, #3d2817, #6b4f35); }
.loc-5 { background: linear-gradient(135deg, #f4d03f, #c4953a); }
.loc-6 { background: linear-gradient(135deg, #9d2e25, #5a1e1a); }

.location-info { padding: 24px; }
.location-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.loc-badge {
  background: var(--gold);
  color: var(--ink);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.location-info p {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.loc-extra {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-2);
  color: var(--ink-3) !important;
  font-size: 13px !important;
}

.map-section {
  padding: 60px 0 100px;
}
.map-card {
  background: var(--cream-2);
  padding: 48px;
  border-radius: 24px;
}
.map-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.map-card > p {
  color: var(--ink-2);
  margin-bottom: 32px;
  font-size: 16px;
}
.map-mock {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(61,40,23,0.1);
}
.map-mock svg { width: 100%; display: block; }

/* Адаптив */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pizza-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .promo-card, .app-card { grid-template-columns: 1fr; padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .combo-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .principles-grid, .team-grid, .contacts-grid, .locations-grid, .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .nav { display: none; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .pizza-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .menu-item { grid-template-columns: 1fr; }
  .menu-img { height: 160px; }
  .principles-grid, .team-grid, .contacts-grid, .locations-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-card, .app-card, .map-card { padding: 28px; }
}
