:root {
  --cream: #fff6e8;
  --cream-2: #f7e7ce;
  --flour: #fffdf8;
  --toast: #7a3f1d;
  --toast-dark: #47220f;
  --gold: #d89a37;
  --tomato: #b9472b;
  --olive: #63723c;
  --text: #2a1c13;
  --muted: #715b4a;
  --shadow: 0 22px 60px rgba(71, 34, 15, .16);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--flour);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: #fff; padding: 8px 12px; z-index: 30; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122, 63, 29, .12);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 850; letter-spacing: -.02em; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--cream-2); }
.nav { display: flex; gap: 22px; font-size: .96rem; font-weight: 700; color: var(--muted); }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--toast); }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--toast-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38, 18, 7, .86), rgba(38, 18, 7, .54), rgba(38, 18, 7, .18)), url('../img/hero-pizzas.jpg') center/cover no-repeat;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--flour));
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .48fr);
  gap: 42px;
  align-items: center;
  padding: 92px 0 128px;
}
.hero-content { color: white; }
.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.075em;
  max-width: 820px;
}
.hero p { font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 680px; color: rgba(255, 255, 255, .88); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--gold); color: #2e1708; }
.btn-secondary { background: rgba(255,255,255,.12); color: inherit; border-color: rgba(255,255,255,.28); }
.section-soft .btn-secondary, .contact-card .btn-secondary { background: white; color: var(--toast); border-color: rgba(122,63,29,.2); }
.hero-card {
  background: rgba(255, 246, 232, .95);
  color: var(--toast-dark);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .52);
}
.hero-card img { width: 148px; height: 148px; border-radius: 28px; object-fit: cover; margin-bottom: 18px; }
.hero-card p { color: var(--muted); font-size: 1rem; }
.hero-card strong { color: var(--olive); }

.section { padding: 88px 0; }
.section-soft { background: linear-gradient(180deg, var(--flour), var(--cream)); }
.intro { padding: 56px 0; }
.intro-grid, .order-grid, .contact-card { display: grid; grid-template-columns: .78fr 1fr; gap: 42px; align-items: center; }
h2 { margin: 12px 0 14px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.055em; color: var(--toast-dark); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading.compact { margin-bottom: 24px; }
.section-heading p, .intro-grid p, .order-grid p, .contact-card p { color: var(--muted); font-size: 1.08rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(122,63,29,.1);
  box-shadow: 0 14px 36px rgba(71,34,15,.08);
}
.product-card img { width: 100%; aspect-ratio: 1.22 / .88; object-fit: cover; }
.product-card div { padding: 22px; }
.product-card h3 { margin: 0 0 8px; font-size: 1.22rem; letter-spacing: -.02em; color: var(--toast-dark); }
.product-card p { margin: 0; color: var(--muted); }
.highlight-card { background: linear-gradient(180deg, white, #fff5df); }

.section-accent {
  background: radial-gradient(circle at top left, rgba(216,154,55,.24), transparent 36%), linear-gradient(135deg, var(--toast-dark), #723515);
  color: white;
}
.section-accent h2 { color: white; }
.section-accent p { color: rgba(255,255,255,.8); }
.steps { display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  padding: 16px;
  border-radius: 18px;
}
.step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--toast-dark);
  border-radius: 50%;
  font-weight: 900;
}
.step p { margin: 0; }

.gallery { display: grid; grid-template-columns: 1.3fr .9fr .9fr; grid-auto-rows: 240px; gap: 16px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; box-shadow: 0 14px 36px rgba(71,34,15,.1); }
.gallery img:first-child { grid-row: span 2; }

.contact-card {
  background: white;
  border-radius: 34px;
  padding: clamp(24px, 5vw, 52px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(122,63,29,.11);
}
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; color: var(--muted); }
.contact-list a { color: var(--toast); font-weight: 800; text-decoration: none; }
.contact-actions { justify-content: flex-start; align-content: center; }

.site-footer { padding: 28px 0; background: var(--toast-dark); color: rgba(255,255,255,.78); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; }
.site-footer p { margin: 0; }
.made-by { color: rgba(255,255,255,.55); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: #102514;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}

@media (max-width: 900px) {
  .header-inner { min-height: auto; padding: 12px 0; align-items: flex-start; }
  .nav { display: none; }
  .hero { min-height: auto; }
  .hero-grid, .intro-grid, .order-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { padding: 76px 0 110px; }
  .hero-card { max-width: 420px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery img:first-child { grid-column: span 2; grid-row: auto; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 22px, 1120px); }
  .brand span { font-size: .96rem; }
  .brand img { width: 46px; height: 46px; }
  .hero h1 { font-size: clamp(2.65rem, 15vw, 4.4rem); }
  .hero p { font-size: 1.05rem; }
  .btn { width: 100%; }
  .product-grid, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 240px; }
  .gallery img:first-child { grid-column: auto; }
  .section { padding: 66px 0; }
  .whatsapp-float { left: 14px; right: 14px; bottom: 14px; }
  .site-footer { padding-bottom: 84px; }
}
