/* ============================================================
   CK PIZZA & FOOD POINT — global styles
   Font: Sora (single typeface throughout)
   Palette: deep black, baked-crust brown, tomato red,
            melted-cheese gold, flame-orange
============================================================ */

:root {
  --black:        #0a0605;
  --black-2:      #130c09;
  --panel:        #1a110c;
  --panel-2:      #221710;
  --crust:        #5c3a1e;
  --crust-deep:   #3a2418;
  --tomato:       #d6281d;
  --tomato-bright:#f0362a;
  --gold:         #f6b73c;
  --gold-soft:    #ffcf5c;
  --flame:        #ff6b1a;
  --cream:        #f7ede1;
  --muted:        #b6a294;
  --line:         rgba(246, 183, 60, .14);

  --maxw: 1240px;
  --r:    18px;
  --r-lg: 26px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', system-ui, sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap { width: min(var(--maxw), 92%); margin-inline: auto; }

/* ---------- shared section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--tomato), var(--flame));
}

.section-title {
  font-size: clamp(2.1rem, 5.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: .6rem 0 1rem;
}
.section-title .hot { color: var(--gold); }

.lead { color: var(--muted); font-size: 1.05rem; max-width: 60ch; }

section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease),
              border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 6, 5, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
}
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 800; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--flame) 55%, var(--tomato));
  font-size: 1.4rem;
  box-shadow: 0 0 22px rgba(255, 107, 26, .5);
}
.brand-text { line-height: 1.05; }
.brand-text b { font-size: 1.06rem; letter-spacing: .02em; }
.brand-text span {
  display: block;
  font-size: .62rem;
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding: .25rem 0;
  transition: color .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--flame));
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.pill {
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem .9rem;
}
.nav-links a.pill:hover { background: rgba(246,183,60,.08); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--tomato-bright), var(--flame));
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(240, 54, 42, .7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(255,107,26,.8); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: .3s; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(255,107,26,.20), transparent 45%),
    radial-gradient(circle at 12% 80%, rgba(214,40,29,.18), transparent 42%),
    var(--black);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  margin: 1.1rem 0 1.3rem;
}
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}
.hero h1 .fill {
  background: linear-gradient(120deg, var(--gold-soft), var(--flame) 60%, var(--tomato));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { font-size: 1.15rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1rem; }
.hero-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stats .num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stats small { color: var(--muted); font-size: .8rem; letter-spacing: .04em; }

.hero-visual { position: relative; }
.hero-pizza {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  box-shadow:
    0 0 0 10px rgba(255,255,255,.02),
    0 40px 90px -20px rgba(0,0,0,.9),
    0 0 120px -10px rgba(255,107,26,.5);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-badge {
  position: absolute;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: .8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.9);
  backdrop-filter: blur(6px);
}
.hero-badge .ico { font-size: 1.6rem; }
.hero-badge b { display: block; font-size: .95rem; }
.hero-badge small { color: var(--muted); font-size: .72rem; }
.hero-badge.b1 { top: 6%; left: -4%; animation: float 5s ease-in-out infinite; }
.hero-badge.b2 { bottom: 8%; right: -5%; animation: float 6s ease-in-out infinite .8s; }
@keyframes float { 50% { transform: translateY(-14px); } }

/* ============================================================
   MARQUEE STRIP
============================================================ */
.strip {
  background: linear-gradient(90deg, var(--tomato), var(--flame));
  padding: .9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 24s linear infinite;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1rem;
  color: #fff;
}
.strip-track span { display: inline-flex; align-items: center; gap: 3rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SIGNATURE PIZZAS
============================================================ */
.sig { background: var(--black-2); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.pcard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  display: flex;
  flex-direction: column;
}
.pcard:hover {
  transform: translateY(-10px);
  border-color: rgba(246,183,60,.4);
  box-shadow: 0 30px 60px -25px rgba(255,107,26,.5);
}
.pcard-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.pcard:hover .pcard-img img { transform: scale(1.08); }
.pcard-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(10,6,5,.7);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.pcard-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.pcard-body h3 { font-size: 1.3rem; font-weight: 700; }
.pcard-body p { color: var(--muted); font-size: .9rem; margin: .5rem 0 1.2rem; flex: 1; }
.pcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.price { font-size: 1.35rem; font-weight: 800; color: var(--gold); }
.price small { font-size: .72rem; color: var(--muted); font-weight: 500; }
.add-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--tomato-bright), var(--flame));
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform .25s var(--ease);
}
.add-btn:hover { transform: rotate(90deg) scale(1.1); }

/* ============================================================
   SPECIALTY CRUSTS
============================================================ */
.crusts { background: var(--black); }
.crust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.crust-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.crust-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: -2;
  transition: transform .7s var(--ease);
}
.crust-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,6,5,.95) 12%, rgba(10,6,5,.25) 70%);
  z-index: -1;
}
.crust-card:hover img { transform: scale(1.1); }
.crust-card .info { padding: 1.4rem; }
.crust-card h3 { font-size: 1.25rem; font-weight: 700; }
.crust-card p { color: var(--muted); font-size: .85rem; margin-top: .3rem; }
.crust-card .num-badge {
  position: absolute; top: 1rem; right: 1.2rem;
  font-size: 2.4rem; font-weight: 800;
  color: rgba(246,183,60,.35);
}

/* ============================================================
   INGREDIENTS
============================================================ */
.ingredients { background: var(--black-2); overflow: hidden; }
.ing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.ing-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.ing-photo img { width: 100%; height: 100%; object-fit: cover; }
.ing-photo .float-tag {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem; right: 1.4rem;
  background: rgba(10,6,5,.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
}
.ing-photo .float-tag b { color: var(--gold); }
.ing-list { display: grid; gap: 1.3rem; margin-top: 2rem; }
.ing-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  transition: transform .3s var(--ease), border-color .3s;
}
.ing-item:hover { transform: translateX(8px); border-color: rgba(246,183,60,.4); }
.ing-thumb {
  width: 64px; height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.ing-item h4 { font-size: 1.05rem; }
.ing-item p { color: var(--muted); font-size: .85rem; }

/* ============================================================
   CHEF RECOMMENDATIONS
============================================================ */
.chef { background: var(--black); }
.chef-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem,5vw,4rem);
  align-items: center;
  background: linear-gradient(135deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.chef-feature .photo { position: relative; min-height: 440px; }
.chef-feature .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chef-feature .photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--panel));
}
.chef-feature .text { padding: clamp(2rem, 4vw, 3.5rem); }
.chef-quote {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 1rem 0 1.6rem;
}
.chef-quote span { color: var(--gold); }
.chef-sign { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.chef-sign img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.chef-sign b { display: block; }
.chef-sign small { color: var(--muted); }

.chef-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.chef-pick {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}
.chef-pick img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.chef-pick:hover img { transform: scale(1.08); }
.chef-pick .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem .9rem;
  background: linear-gradient(to top, rgba(10,6,5,.92), transparent);
  font-weight: 700;
}
.chef-pick .label small { display: block; color: var(--gold); font-size: .7rem; letter-spacing: .1em; }

/* ============================================================
   COMBO DEALS
============================================================ */
.combos { background: var(--black-2); }
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.combo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
}
.combo.featured { border-color: var(--gold); box-shadow: 0 0 50px -18px rgba(246,183,60,.6); }
.combo-img { aspect-ratio: 16 / 10; overflow: hidden; }
.combo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.combo:hover .combo-img img { transform: scale(1.07); }
.combo-ribbon {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--tomato-bright), var(--flame));
  color: #fff; font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 999px;
}
.combo-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.combo-body h3 { font-size: 1.45rem; font-weight: 800; }
.combo-incl { list-style: none; margin: 1rem 0 1.3rem; display: grid; gap: .55rem; flex: 1; }
.combo-incl li { display: flex; gap: .6rem; color: var(--muted); font-size: .92rem; }
.combo-incl li::before { content: "🍕"; font-size: .85rem; }
.combo-price { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1.2rem; }
.combo-price .now { font-size: 1.9rem; font-weight: 800; color: var(--gold); }
.combo-price .was { color: var(--muted); text-decoration: line-through; font-size: 1rem; }

/* ============================================================
   CUSTOMER FAVORITES
============================================================ */
.favs { background: var(--black); }
.fav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.fav-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
}
.fav-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.fav-card:hover img { transform: scale(1.08); }
.fav-card .overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.3rem;
  background: linear-gradient(to top, rgba(10,6,5,.9) 10%, transparent 60%);
}
.fav-card .stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; }
.fav-card h4 { font-size: 1.1rem; margin-top: .3rem; }
.fav-card small { color: var(--muted); }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem;
}
.review .stars { color: var(--gold); margin-bottom: .8rem; }
.review p { font-size: .98rem; }
.review .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.3rem; }
.review .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review .who b { display: block; font-size: .95rem; }
.review .who small { color: var(--muted); }

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--black-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
.info-row {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem 1.4rem;
}
.info-row .ico {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(214,40,29,.3), rgba(255,107,26,.3));
  border: 1px solid var(--line);
}
.info-row small { color: var(--gold); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.info-row b { font-size: 1.05rem; }
.info-row a:hover { color: var(--gold); }

.hours-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem;
  margin-top: .4rem;
}
.hours-card h4 { color: var(--gold); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .8rem; }
.hours-card .row { display: flex; justify-content: space-between; padding: .35rem 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.hours-card .row:last-child { border-bottom: none; }
.hours-card .row span:last-child { color: var(--muted); }

.contact-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 420px;
}
.contact-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-photo .pin {
  position: absolute; bottom: 1.4rem; left: 1.4rem; right: 1.4rem;
  background: rgba(10,6,5,.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 1.1rem 1.3rem;
}
.contact-photo .pin b { color: var(--gold); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-top p { color: var(--muted); margin-top: 1rem; font-size: .92rem; max-width: 42ch; }
.footer-col h4 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: .65rem; }
.footer-col a { color: var(--muted); font-size: .92rem; transition: color .25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
  color: var(--muted);
  font-size: .85rem;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom .links { display: flex; gap: 1.5rem; }

/* ============================================================
   PRIVACY PAGE
============================================================ */
.legal {
  padding-top: 9rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,107,26,.12), transparent 40%),
    var(--black);
}
.legal-head { text-align: center; margin-bottom: 3rem; }
.legal-body {
  max-width: 800px;
  margin-inline: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 3.2rem);
}
.legal-body h2 {
  font-size: 1.4rem;
  margin: 2rem 0 .8rem;
  color: var(--gold);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--cream); font-size: .98rem; margin-bottom: .8rem; }
.legal-body ul { padding-left: 1.3rem; }
.legal-body li { margin-bottom: .5rem; }
.legal-body a { color: var(--gold); text-decoration: underline; }
.legal-meta { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .pizza-grid, .combo-grid, .reviews { grid-template-columns: repeat(2, 1fr); }
  .crust-grid, .fav-grid { grid-template-columns: repeat(2, 1fr); }
  .chef-picks { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78%, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem;
    background: var(--black-2);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-toggle { display: flex; z-index: 70; }
  .hero-grid, .ing-grid, .chef-feature, .contact-grid { grid-template-columns: 1fr; }
  .chef-feature .photo { min-height: 300px; }
  .chef-feature .photo::after { background: linear-gradient(to top, var(--panel) 5%, transparent 50%); }
  .hero-visual { order: -1; max-width: 440px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .pizza-grid, .combo-grid, .reviews, .crust-grid, .fav-grid { grid-template-columns: 1fr; }
  .chef-picks { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.4rem; }
  .hero-badge { display: none; }
}
