/* ============================================================
   CIRCLE & SLICE — NY Style Pizza
   CI: Gelb #FFC93C · Schwarz #101010 · Creme #F8E8C0
   ============================================================ */
:root {
  --yellow: #FCC723;   /* Original-Logo-Gelb */
  --yellow-deep: #EDB40C;
  --black: #141412;    /* Logo-Schwarz #1D1D1B, leicht vertieft */
  --black-soft: #1A1A1A;
  --cream: #F8E9C2;
  --cream-deep: #F2D998;
  --red: #B3261A;
  --white: #FFFDF6;
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-pop: 0 20px 60px rgba(16, 16, 16, .18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 800; font-size: 1rem; letter-spacing: .02em;
  padding: .95em 1.7em; border-radius: 999px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.btn__arrow { transition: transform .25s; display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(5px); }
.btn--yellow { background: var(--yellow); color: var(--black); box-shadow: 0 8px 24px rgba(252,199,35,.35); }
.btn--yellow:hover { animation: wiggle .45s ease-in-out; }
@keyframes wiggle {
  0%, 100% { transform: translateY(-3px) scale(1.03) rotate(0); }
  25% { transform: translateY(-3px) scale(1.03) rotate(-2.5deg); }
  65% { transform: translateY(-3px) scale(1.03) rotate(2deg); }
}
.btn--black { background: var(--black); color: var(--yellow); }
.btn--ghost { border: 2px solid rgba(255,253,246,.4); color: var(--white); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--ghost-black { border: 2px solid rgba(16,16,16,.35); color: var(--black); }
.btn--ghost-black:hover { border-color: var(--black); }
.btn--small { padding: .6em 1.3em; font-size: .9rem; }
.btn--big { font-size: 1.15rem; padding: 1.1em 2em; }

/* ---------- Typo helpers ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02; letter-spacing: .01em;
  text-transform: uppercase;
}
.section-title--light { color: var(--white); }
.stroke-yellow {
  color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
}
.section-sub { max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; opacity: .85; }
.section-head { text-align: center; padding: 0 1.5rem; margin-bottom: 3rem; }
.eyebrow {
  font-weight: 800; text-transform: uppercase; letter-spacing: .18em;
  font-size: .8rem; margin-bottom: .8rem; display: block;
}
.eyebrow--yellow { color: var(--yellow); }
.tilt { display: inline-block; transform: rotate(-4deg); color: var(--red); font-family: var(--font-body); font-style: italic; font-weight: 800; font-size: .5em; vertical-align: middle; }

/* NYC-Subway-Badge (wie U-Bahn-Linien-Bullets) */
.line-bullet {
  display: inline-grid; place-items: center;
  width: 2em; height: 2em; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-display); font-size: 1em; letter-spacing: 0;
  vertical-align: middle; margin-right: .5em;
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.line-bullet--dark { background: var(--black); color: var(--yellow); }

/* Textmarker-Swipe */
.mark {
  background: linear-gradient(100deg, transparent 2%, var(--yellow) 4%, var(--yellow) 96%, transparent 98%);
  color: var(--black); padding: .06em .25em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  font-weight: 700;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in-view { opacity: 1; transform: none; }
/* Headlines stempeln sich mit Overshoot ein */
.section-title.reveal { transform: translateY(30px) rotate(-2deg) scale(.94); transition-timing-function: ease, cubic-bezier(.34,1.56,.64,1); }
.section-title.reveal.in-view { transform: none; }

/* ---------- Deko: Salami & Basilikum ---------- */
.deco { position: absolute; z-index: 1; pointer-events: none; filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)); will-change: transform; }
.salami--1 { width: 90px;  top: 20%; left: 36%; }
.salami--2 { width: 55px;  top: 66%; left: 12%; }
.salami--3 { width: 70px;  top: 24%; right: 40%; }
.salami--4 { width: 80px;  top: 8%;  right: 6%; opacity: .9; }
.salami--5 { width: 75px;  top: 4%;  left: 3%; }
.salami--6 { width: 65px;  bottom: 8%; right: 4%; }
.basil { opacity: .95; }
.basil--1 { width: 46px; bottom: 20%; left: 6%; }
.basil--2 { width: 34px; top: 12%; right: 12%; }
.basil--3 { width: 40px; top: 10%; right: 8%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled { background: rgba(16,16,16,.92); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0,0,0,.3); padding: .6rem 2rem; }
/* Nav-Logo erst beim Scrollen einblenden — im Hero steht bereits das große Logo */
.nav__logo { display: flex; align-items: center; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .35s, transform .35s; }
.nav.scrolled .nav__logo { opacity: 1; transform: none; pointer-events: auto; }
.nav__logo img { height: 56px; width: auto; transition: transform .3s; filter: drop-shadow(0 3px 10px rgba(0,0,0,.35)); }
.nav__logo:hover img { transform: rotate(-3deg) scale(1.05); }
.nav__links { display: flex; align-items: center; gap: 1.6rem; font-weight: 600; font-size: .95rem; color: var(--white); }
.nav__links a:not(.btn) { position: relative; padding: .2em 0; }
.nav__links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--yellow); transition: width .25s;
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; z-index: 110; }
.nav__burger span { display: block; width: 26px; height: 3px; background: var(--yellow); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: radial-gradient(1200px 800px at 50% 30%, #262014 0%, var(--black) 60%);
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; position: relative;
  padding: 7rem 2rem 4rem;
}
/* Cinematisches Hintergrund-Video, abgedunkelt */
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 40%, transparent 40%, rgba(10, 9, 7, .55) 100%),
    linear-gradient(180deg, rgba(10, 9, 7, .78) 0%, rgba(10, 9, 7, .48) 45%, rgba(10, 9, 7, .85) 100%);
}
.hero__inner {
  max-width: 860px; margin: 0 auto; width: 100%;
  display: grid; place-items: center; text-align: center;
  position: relative; z-index: 2;
}
.hero__text { display: flex; flex-direction: column; align-items: center; }
.hero__cta { justify-content: center; }
.hero__badges { justify-content: center; }
.hero__logo { margin-inline: auto; }
.hero__sub { margin-inline: auto; }
.hero__logo {
  width: min(300px, 58vw); height: auto; margin-bottom: 1.4rem;
  transform: rotate(-3deg);
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.45));
}
.hero__logo.in-view { transform: rotate(-3deg); }
.hero__eyebrow { color: var(--yellow); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: .85rem; margin-bottom: 1.2rem; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: .95; text-transform: uppercase;
}
.hero__title span { display: block; }
.hero__title-accent { color: var(--yellow); }
.hero__title-accent--outline { color: transparent; -webkit-text-stroke: 3px var(--yellow); }
.hero__sub { margin: 1.4rem 0 2rem; font-size: 1.1rem; opacity: .85; max-width: 46ch; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 2rem; font-size: .85rem; font-weight: 600; opacity: .75; }

/* — die drehende Hero-Pizza — */
.hero__pizza-wrap { position: relative; display: grid; place-items: center; }
.hero__pizza-glow {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,60,.35) 0%, transparent 68%);
  transform: scale(1.5);
}
.hero__pizza {
  width: min(430px, 82vw); aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 10px rgba(255,201,60,.12);
  animation: spin 45s linear infinite;
  will-change: transform;
}
.hero__pizza img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.32); }
.hero__pizza-scroll { will-change: transform; }
.hero__pizza-sticker {
  position: absolute; top: 4%; right: 2%;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-display); font-size: 1rem; line-height: 1.1;
  text-align: center; padding: 1em .8em; border-radius: 50%;
  transform: rotate(12deg);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
  animation: bob 4s ease-in-out infinite;
}
.hero__pizza-sticker--fold {
  top: auto; right: auto; bottom: 6%; left: 2%;
  background: var(--white); transform: rotate(-10deg);
  animation-delay: -2s;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bob { 0%,100% { transform: rotate(12deg) translateY(0); } 50% { transform: rotate(8deg) translateY(-10px); } }

/* Mehl im Hero */
.hero__flour {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,253,246,.14) 0%, transparent 70%);
  filter: blur(6px);
}
.hero__flour--1 { width: 480px; height: 480px; top: -140px; left: -120px; }
.hero__flour--2 { width: 380px; height: 380px; bottom: -100px; right: 22%; }
.hero__scrollhint {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  text-align: center; font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
  opacity: .5; animation: bob 3s ease-in-out infinite; z-index: 2;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker { background: var(--yellow); color: var(--black); overflow: hidden; padding: .8rem 0; border-block: 3px solid var(--black); position: relative; z-index: 3; }
.ticker--dark { background: var(--black); color: var(--yellow); border-block-color: var(--yellow); }
.ticker__track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker__track--reverse { animation-direction: reverse; }
.ticker__track span { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .06em; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   CIRCLE ODER SLICE
   ============================================================ */
.choice { background: var(--cream); padding: 6rem 2rem; }
.choice__grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.choice__card {
  background: var(--white); border-radius: 28px; padding: 2rem;
  text-align: center; box-shadow: var(--shadow-pop);
  border: 3px solid var(--black);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.choice__card:hover { transform: translateY(-8px) rotate(-.5deg); }
.choice__img { border-radius: 20px; overflow: hidden; margin-bottom: 1.5rem; aspect-ratio: 1.15; }
.choice__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.choice__card:hover .choice__img img { transform: scale(1.07) rotate(2deg); }
/* Kreis-Container: rotierendes quadratisches Bild deckt den Innenkreis immer ab — keine sichtbaren Ecken */
.choice__img--spin { border-radius: 50%; aspect-ratio: 1; width: min(78%, 320px); margin-inline: auto; border: 4px solid var(--black); }
.choice__img--spin img { animation: spinZoom 50s linear infinite; transform-origin: center; }
@keyframes spinZoom { from { transform: rotate(0) scale(1.28); } to { transform: rotate(360deg) scale(1.28); } }
.choice__card h3 { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: .03em; }
.choice__card p { margin: .6rem 0 1rem; opacity: .8; font-size: .98rem; }
.choice__price { display: inline-block; background: var(--yellow); font-weight: 800; padding: .4em 1.1em; border-radius: 999px; font-size: .9rem; }

/* ============================================================
   TEIG
   ============================================================ */
.dough { background: var(--black); color: var(--white); padding: 7rem 2rem; overflow: hidden; }
.dough__inner {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.dough__text p { opacity: .85; }
.dough__text .section-title { margin-bottom: 1.2rem; }
.dough__facts { display: flex; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; }
.dough__facts li strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--yellow); letter-spacing: .04em; }
.dough__facts li span { font-size: .85rem; opacity: .7; }
.dough__imgs { position: relative; }
.dough__img { border-radius: 26px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.dough__img--main { border: 4px solid var(--yellow); }
.dough__img--small {
  position: absolute; width: 44%; bottom: -8%; left: -5%;
  border: 4px solid var(--white); border-radius: 20px;
  will-change: transform;
}

/* — einfliegendes Mehl — */
.dough__flourcloud {
  position: absolute; top: 10%; width: 55vw; max-width: 640px; aspect-ratio: 1.4;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(248,233,194,.22) 0%, rgba(248,233,194,.08) 45%, transparent 70%);
  filter: blur(10px);
  transition: transform 1.4s cubic-bezier(.22,1,.36,1), opacity 1.4s ease;
  opacity: 0; will-change: transform, opacity;
  pointer-events: none;
}
.dough__flourcloud--l { left: -18%; transform: translateX(-60%) scale(.6); }
.dough__flourcloud--r { right: -18%; top: 44%; transform: translateX(60%) scale(.6); }
.dough__flourcloud.flown { transform: translateX(0) scale(1); opacity: 1; }

.dough__specks { position: absolute; inset: 0; pointer-events: none; }
.dough__specks i {
  position: absolute; display: block; border-radius: 50%;
  background: rgba(248,233,194,.8);
  width: 5px; height: 5px;
  opacity: 0; transition: opacity .8s ease, transform 1.6s cubic-bezier(.22,1,.36,1);
  transform: translateY(50px) scale(.4);
}
.dough.specks-on .dough__specks i { opacity: .8; transform: none; }
.dough__specks i:nth-child(1)  { top: 12%; left: 8%;  width: 4px; height: 4px; transition-delay: .05s; }
.dough__specks i:nth-child(2)  { top: 22%; left: 18%; width: 7px; height: 7px; transition-delay: .15s; }
.dough__specks i:nth-child(3)  { top: 9%;  left: 34%; transition-delay: .25s; }
.dough__specks i:nth-child(4)  { top: 30%; left: 44%; width: 3px; height: 3px; transition-delay: .1s; }
.dough__specks i:nth-child(5)  { top: 15%; left: 58%; width: 6px; height: 6px; transition-delay: .3s; }
.dough__specks i:nth-child(6)  { top: 26%; left: 72%; transition-delay: .2s; }
.dough__specks i:nth-child(7)  { top: 10%; left: 86%; width: 4px; height: 4px; transition-delay: .35s; }
.dough__specks i:nth-child(8)  { top: 48%; left: 5%;  width: 6px; height: 6px; transition-delay: .4s; }
.dough__specks i:nth-child(9)  { top: 60%; left: 14%; transition-delay: .28s; }
.dough__specks i:nth-child(10) { top: 74%; left: 9%;  width: 3px; height: 3px; transition-delay: .45s; }
.dough__specks i:nth-child(11) { top: 55%; left: 50%; width: 4px; height: 4px; transition-delay: .5s; }
.dough__specks i:nth-child(12) { top: 68%; left: 60%; transition-delay: .32s; }
.dough__specks i:nth-child(13) { top: 80%; left: 40%; width: 6px; height: 6px; transition-delay: .55s; }
.dough__specks i:nth-child(14) { top: 46%; left: 80%; transition-delay: .38s; }
.dough__specks i:nth-child(15) { top: 64%; left: 90%; width: 4px; height: 4px; transition-delay: .6s; }
.dough__specks i:nth-child(16) { top: 84%; left: 76%; width: 3px; height: 3px; transition-delay: .42s; }
.dough__specks i:nth-child(17) { top: 90%; left: 22%; width: 5px; height: 5px; transition-delay: .65s; }
.dough__specks i:nth-child(18) { top: 88%; left: 55%; width: 4px; height: 4px; transition-delay: .48s; }

/* ============================================================
   MENÜ
   ============================================================ */
.menu { background: var(--cream); padding: 7rem 2rem; }
.menu__featured {
  max-width: 1200px; margin: 0 auto 4rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.8rem;
}
.pizza-card {
  background: var(--white); border-radius: 24px; overflow: hidden;
  border: 3px solid var(--black); box-shadow: var(--shadow-pop);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.pizza-card:hover { transform: translateY(-10px) rotate(.6deg); }
.pizza-card__img { aspect-ratio: 1; overflow: hidden; }
.pizza-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.pizza-card:hover .pizza-card__img img { transform: scale(1.1) rotate(8deg); }
.pizza-card__body { padding: 1.3rem 1.4rem 1.6rem; }
.pizza-card__tag {
  display: inline-block; background: var(--black); color: var(--yellow);
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .35em .9em; border-radius: 999px; margin-bottom: .7rem;
}
.pizza-card__tag--hot { background: var(--red); color: var(--white); }
.pizza-card h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .02em; }
.pizza-card p { font-size: .88rem; opacity: .75; margin: .4rem 0 .9rem; min-height: 3.4em; }
.pizza-card__price { font-weight: 800; font-size: 1.15rem; }
.pizza-card__price small { color: var(--red); font-weight: 700; margin-left: .4em; }

.menu__list { max-width: 860px; margin: 0 auto; background: var(--black); color: var(--white); border-radius: 28px; padding: 2.6rem 2.8rem; text-align: center; }
.menu__list-title { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .04em; margin-bottom: 1.6rem; color: var(--yellow); }
.menu__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; text-align: left; margin-bottom: 2rem; }
.menu__cols li, ul.menu__cols li { display: flex; align-items: baseline; gap: .6em; padding: .42em 0; font-size: .97rem; }
.menu__cols li i { flex: 1; border-bottom: 2px dotted rgba(255,253,246,.25); }
.menu__cols li b { white-space: nowrap; }
ul.menu__cols--light { display: block; margin: 1.4rem 0 1.8rem; }
ul.menu__cols--light li i { border-color: rgba(255,253,246,.25); }

/* ============================================================
   SAUCEN
   ============================================================ */
.sauces { background: var(--yellow); padding: 6rem 2rem; border-block: 3px solid var(--black); overflow: hidden; }
.sauces .section-sub { opacity: .75; }
.sauces__row {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: center; gap: 2.2rem; flex-wrap: wrap;
}
.sauce { text-align: center; }
.sauce__img {
  width: clamp(120px, 16vw, 180px); aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; border: 4px solid var(--black);
  box-shadow: 0 16px 36px rgba(16,16,16,.3);
  will-change: transform;
}
.sauce__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.22); will-change: transform; }
.sauce figcaption { margin-top: .9rem; font-weight: 800; }
.sauce figcaption b { display: block; font-weight: 600; font-size: .85rem; opacity: .7; }
.sauces__more { text-align: center; margin-top: 2.5rem; font-weight: 600; opacity: .8; }

/* ============================================================
   FINGERFOOD
   ============================================================ */
.finger { background: var(--black); color: var(--white); padding: 7rem 2rem; overflow: hidden; }
.finger__inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: .95fr 1.05fr; gap: 4rem; align-items: center; }
.finger__imgs { position: relative; }
.finger__img { border-radius: 26px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.finger__img--big { border: 4px solid var(--yellow); }
.finger__img--small { position: absolute; width: 46%; top: -8%; right: -3%; border: 4px solid var(--white); border-radius: 20px; }
.finger__cookie {
  display: flex; gap: 1.2rem; align-items: center;
  background: var(--black-soft); border: 2px solid rgba(255,201,60,.3);
  border-radius: 20px; padding: 1.2rem; margin-top: 1.6rem;
}
.finger__cookie img { width: 110px; border-radius: 14px; flex-shrink: 0; }
.finger__cookie h3 { font-family: var(--font-display); letter-spacing: .03em; font-size: 1.2rem; }
.finger__cookie p { font-size: .9rem; opacity: .8; }

/* ============================================================
   APP
   ============================================================ */
.app { background: var(--cream); padding: 7rem 2rem; overflow: hidden; }
.app__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: center; }
.app__highlight { background: var(--yellow); padding: 0 .18em; box-decoration-break: clone; }
.app__perks { margin: 1.6rem 0 2rem; display: grid; gap: .6rem; font-weight: 600; }
.app__stores { display: flex; gap: 1rem; flex-wrap: wrap; }
.storebadge {
  display: flex; align-items: center; gap: .8em;
  background: var(--black); color: var(--white);
  border-radius: 14px; padding: .7em 1.4em;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}
.storebadge:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 34px rgba(16,16,16,.35); }
.storebadge svg { width: 30px; height: 30px; }
.storebadge span { display: flex; flex-direction: column; line-height: 1.15; font-weight: 800; font-size: 1.05rem; }
.storebadge small { font-weight: 500; font-size: .68rem; opacity: .75; }

/* Phone Mockup */
.app__phone { display: grid; place-items: center; }
.app__phone-frame {
  width: min(280px, 70vw); aspect-ratio: .52; background: var(--black);
  border-radius: 44px; padding: 14px; box-shadow: 0 40px 90px rgba(16,16,16,.35);
  position: relative; transform: rotate(-6deg);
}
.app__phone-notch { position: absolute; top: 26px; left: 50%; transform: translateX(-50%); width: 34%; height: 22px; background: var(--black); border-radius: 12px; z-index: 2; }
.app__phone-screen {
  background: linear-gradient(170deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  height: 100%; border-radius: 32px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem; text-align: center; padding: 1.4rem;
}
.app__phone-logo { width: 82%; height: auto; margin-bottom: .2rem; }
.app__phone-screen em { font-style: normal; font-size: .8rem; font-weight: 600; opacity: .7; }
.app__phone-bonus {
  margin-top: 1rem; background: var(--black); color: var(--yellow);
  font-family: var(--font-display); font-size: 1.8rem;
  padding: .5em 1em; border-radius: 18px; line-height: 1;
}
.app__phone-bonus small { display: block; font-family: var(--font-body); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: .4em; }
.app__phone-btn { margin-top: 1.2rem; background: var(--white); font-weight: 800; font-size: .85rem; padding: .8em 1.6em; border-radius: 999px; box-shadow: 0 8px 20px rgba(16,16,16,.25); }

/* ============================================================
   ORDER CTA
   ============================================================ */
.order { background: var(--yellow); padding: 7rem 2rem; border-top: 3px solid var(--black); overflow: hidden; }
.order__inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: center;
}
.order__text p { margin: 1.2rem 0 2rem; max-width: 46ch; font-weight: 500; }
.order__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.order__pizza {
  width: min(340px, 78vw); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  justify-self: center;
  border: 6px solid var(--black); box-shadow: 0 30px 60px rgba(16,16,16,.3);
}
.order__pizza img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.2); will-change: transform; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: var(--white); padding: 4.5rem 2rem 2rem; }
.footer__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem;
}
.nav__logo--footer { margin-bottom: 1rem; opacity: 1; transform: none; pointer-events: auto; }
.nav__logo--footer img { height: 108px; }
.footer__brand p { opacity: .7; font-size: .95rem; }
.footer__social { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.4rem; }
.footer__social a { display: inline-flex; align-items: center; gap: .7em; font-weight: 600; opacity: .85; transition: color .25s, opacity .25s; }
.footer__social a:hover { color: var(--yellow); opacity: 1; }
.footer__social svg { width: 22px; height: 22px; }
.footer__col h4 { font-family: var(--font-display); letter-spacing: .06em; color: var(--yellow); margin-bottom: .7rem; font-size: 1.05rem; }
.footer__col h4 + p { margin-bottom: 1.4rem; }
.footer__col p { opacity: .8; font-size: .95rem; line-height: 1.8; }
.footer__link { border-bottom: 1px solid rgba(255,201,60,.4); transition: color .25s; }
.footer__link:hover { color: var(--yellow); }
.footer__bottom {
  max-width: 1100px; margin: 3rem auto 0; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,253,246,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  font-size: .82rem; opacity: .6;
}
.footer__bottom a:hover { color: var(--yellow); }

/* ---------- Floating order button (mobil) ---------- */
.fab {
  position: fixed; bottom: 1.2rem; right: 1.2rem; z-index: 90;
  background: var(--yellow); color: var(--black);
  font-weight: 800; padding: .9em 1.5em; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(16,16,16,.35);
  display: none;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .35s, transform .35s;
  animation: bob 3.5s ease-in-out infinite;
}
.fab.show { opacity: 1; transform: none; pointer-events: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero__inner, .dough__inner, .finger__inner, .app__inner { grid-template-columns: 1fr; }
  .hero { padding-top: 6rem; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__badges { justify-content: center; }
  .hero__pizza-wrap { margin-top: 2.5rem; }
  .choice__grid { grid-template-columns: 1fr; }
  .menu__cols { grid-template-columns: 1fr; }
  .dough__imgs { margin-top: 1rem; padding-bottom: 3rem; }
  .dough__img--small { left: auto; right: 2%; bottom: -8%; }
  .finger__imgs { order: 2; margin-top: 3rem; }
  .finger__img--small { right: 0; top: -8%; }
  .app__phone { order: 2; margin-top: 2rem; }
  .order__inner { grid-template-columns: 1fr; text-align: center; }
  .order__text p { margin-inline: auto; }
  .order__cta { justify-content: center; }
  .nav__logo img { height: 58px; }
  .hero__logo { margin-inline: auto; }
  .salami--1 { display: none; }
  .salami--3 { width: 48px; top: 12%; right: 6%; left: auto; }
  .deco { opacity: .75; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .fab { display: inline-flex; }

  .nav__burger { display: block; }
  .nav__links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100vh; height: 100dvh;
    background: rgba(16,16,16,.97);
    flex-direction: column; justify-content: center; font-size: 1.4rem;
    transform: translateY(-102%);
    visibility: hidden; opacity: 0; pointer-events: none;
    transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .3s, visibility 0s linear .4s;
  }
  .nav__links.open {
    transform: none; visibility: visible; opacity: 1; pointer-events: auto;
    transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .3s, visibility 0s;
  }
  .nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .2s !important; }
  html { scroll-behavior: auto; }
}
