
:root {
  --red: #D42B2B;
  --deep-red: #8B0000;
  --orange: #F4600C;
  --yellow: #FFD700;
  --cream: #FFF8EE;
  --dark: #1A0800;
  --brown: #3D1500;
  --cheese: #F5A623;
  --basil: #2D5A1B;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}
.cursor-trail {
  width: 40px; height: 40px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .12s ease, top .12s ease, width .3s, height .3s, opacity .3s;
  opacity: .5;
}
.cursor.big { width: 28px; height: 28px; }
.cursor-trail.big { width: 70px; height: 70px; opacity:.8; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9997;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity .6s ease;
}
#loader.hide { opacity: 0; pointer-events: none; }
.loader-pizza {
  font-size: 5rem;
  animation: spinPizza 1s linear infinite;
}
@keyframes spinPizza {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.loader-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .4em;
  color: var(--orange);
  animation: blink .8s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 5rem;
  background: linear-gradient(to bottom, rgba(26,8,0,.95) 0%, transparent 100%);
  animation: slideDown .8s ease .3s both;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: .1em;
  color: var(--cream);
  text-decoration: none;
  position: relative;
}
.nav-logo span { color: var(--orange); }
.nav-logo::after {
  content: '🔥';
  font-size: 1.1rem;
  position: absolute;
  top: -4px; right: -22px;
  animation: flicker 1.5s ease-in-out infinite;
}
@keyframes flicker {
  0%,100% { transform: scale(1) rotate(-10deg); opacity:1; }
  50%      { transform: scale(1.2) rotate(10deg); opacity:.7; }
}
.nav-links { display:flex; gap:2.5rem; list-style:none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,248,238,.6);
  text-decoration: none;
  transition: color .3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  transition: left .3s, right .3s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { left: 0; right: 0; }
.nav-order {
  background: var(--red);
  color: var(--cream) !important;
  padding: .5rem 1.4rem !important;
  border-radius: 2px;
  transition: background .3s, transform .2s !important;
}
.nav-order:hover { background: var(--orange) !important; transform: scale(1.05); }
.nav-order::after { display: none !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 5rem 4rem;
  position: relative;
  overflow: hidden;
}

/* checkered bg */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-conic-gradient(rgba(212,43,43,.04) 0% 25%, transparent 0% 50%);
  background-size: 60px 60px;
  animation: patternDrift 20s linear infinite;
}
@keyframes patternDrift {
  from { background-position: 0 0; }
  to   { background-position: 120px 120px; }
}

/* radial glow */
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(244,96,12,.12) 0%, transparent 65%);
  top: 50%; right: 10%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity:.8; transform: translateY(-50%) scale(1); }
  50%      { opacity:1;  transform: translateY(-50%) scale(1.08); }
}

.hero-left { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(244,96,12,.15);
  border: 1px solid rgba(244,96,12,.4);
  padding: .4rem 1rem;
  border-radius: 2px;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease .8s both;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 11vw, 11rem);
  line-height: .9;
  color: var(--cream);
  animation: fadeUp .8s ease 1s both;
}
.hero-title .outline {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}
.hero-title .fire { color: var(--orange); }

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,248,238,.65);
  margin: 1.5rem 0 2.5rem;
  max-width: 440px;
  line-height: 1.7;
  animation: fadeUp .8s ease 1.2s both;
}

.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .8s ease 1.4s both;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
  padding: 1rem 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .15em;
  text-decoration: none;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--orange);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  border: 1px solid rgba(255,248,238,.3);
  color: var(--cream);
  padding: 1rem 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .15em;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color .3s, background .3s, transform .2s;
}
.btn-ghost:hover {
  border-color: var(--orange);
  background: rgba(244,96,12,.1);
  transform: translateY(-2px);
}

/* PIZZA VISUAL */
.hero-right {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 2;
  animation: fadeUp .8s ease 1.1s both;
}

.pizza-wrap {
  position: relative;
  width: 480px; height: 480px;
  display: flex; align-items: center; justify-content: center;
}

.pizza-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(244,96,12,.3);
  animation: rotateSlow linear infinite;
}
.pizza-ring:nth-child(1) { width: 520px; height: 520px; animation-duration: 30s; }
.pizza-ring:nth-child(2) { width: 440px; height: 440px; animation-duration: 20s; animation-direction: reverse; }

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ring-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--orange);
}

.pizza-emoji {
  font-size: 14rem;
  line-height: 1;
  filter: drop-shadow(0 20px 60px rgba(244,96,12,.5));
  animation: floatPizza 3s ease-in-out infinite, spinSlowPizza 15s linear infinite;
  position: relative; z-index: 2;
  cursor: none;
}
@keyframes floatPizza {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}
@keyframes spinSlowPizza {
  from { filter: drop-shadow(0 20px 60px rgba(244,96,12,.5)) hue-rotate(0deg); }
  to   { filter: drop-shadow(0 20px 60px rgba(244,96,12,.5)) hue-rotate(20deg); }
}

.ingredient-orbit {
  position: absolute;
  font-size: 2rem;
  animation: orbit linear infinite;
}
@keyframes orbit {
  from { transform: rotate(var(--start)) translateX(var(--r)) rotate(calc(-1 * var(--start))); }
  to   { transform: rotate(calc(var(--start) + 360deg)) translateX(var(--r)) rotate(calc(-1 * (var(--start) + 360deg))); }
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--red);
  padding: 1rem 0;
  transform: rotate(-1.5deg) scaleX(1.05);
  margin: -1rem 0;
  position: relative; z-index: 3;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--deep-red);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 18s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .25em;
  color: var(--cream);
  padding: 0 2rem;
  display: flex; align-items: center; gap: 1rem;
  white-space: nowrap;
}
.marquee-sep { color: var(--yellow); font-size: .6rem; }

/* ── MENU SECTION ── */
.menu-section {
  padding: 8rem 5rem;
  background: var(--cream);
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: 'PIZZA';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22vw;
  color: rgba(212,43,43,.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: .1em;
}

.menu-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem;
}
.menu-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .9;
  color: var(--dark);
}
.menu-title em {
  font-family: 'Abril Fatface', serif;
  font-style: italic;
  color: var(--red);
  display: block;
}
.menu-subtitle {
  font-size: .85rem;
  color: rgba(26,8,0,.5);
  letter-spacing: .2em;
  text-transform: uppercase;
  max-width: 200px;
  text-align: right;
  line-height: 1.8;
}

/* PIZZA CARDS */
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pizza-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
  cursor: none;
  border: 2px solid transparent;
}
.pizza-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(212,43,43,.2), 0 0 0 2px var(--red);
  border-color: var(--red);
}

.card-emoji-wrap {
  background: linear-gradient(135deg, #fff5ec 0%, #ffe4cc 100%);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}
.pizza-card:hover .card-emoji-wrap {
  background: linear-gradient(135deg, #fff0e0, #ffd4aa);
}

.card-emoji {
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), filter .4s;
  display: block;
  line-height: 1;
}
.pizza-card:hover .card-emoji {
  transform: scale(1.25) rotate(-8deg);
  filter: drop-shadow(0 8px 20px rgba(212,43,43,.4));
}

.card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--red);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .75rem;
  letter-spacing: .1em;
  padding: .2rem .6rem;
  border-radius: 2px;
  transition: background .3s, transform .3s;
}
.pizza-card:hover .card-badge { background: var(--orange); transform: scale(1.1); }

.card-body { padding: 1.5rem; }

.card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .05em;
  color: var(--dark);
  margin-bottom: .4rem;
  transition: color .3s;
}
.pizza-card:hover .card-name { color: var(--red); }

.card-desc {
  font-size: .9rem;
  color: rgba(26,8,0,.55);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.card-footer {
  display: flex; justify-content: space-between; align-items: center;
}

.card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--red);
  letter-spacing: .05em;
}

.card-add {
  width: 38px; height: 38px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: background .3s, transform .3s;
  line-height: 1;
}
.pizza-card:hover .card-add {
  background: var(--red);
  transform: rotate(90deg) scale(1.15);
}

/* ingredients strip */
.card-ingredients {
  display: flex; gap: .4rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.tag {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(212,43,43,.08);
  color: var(--red);
  padding: .2rem .6rem;
  border-radius: 2px;
  transition: background .2s, color .2s;
}
.pizza-card:hover .tag { background: var(--red); color: #fff; }

/* ── SPECIALS ── */
.specials {
  padding: 8rem 5rem;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}

.specials::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(244,96,12,.03) 40px,
    rgba(244,96,12,.03) 80px
  );
}

.specials-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}

.specials-text { position: relative; z-index: 1; }

.tag-label {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: var(--orange);
  display: block;
  margin-bottom: 1rem;
  transform: rotate(-2deg);
}

.specials-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.specials-title span { color: var(--orange); }

.specials-body {
  font-size: 1.05rem;
  color: rgba(255,248,238,.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.special-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 1rem;
}

.special-item {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,248,238,.05);
  border-left: 3px solid var(--orange);
  padding: 1rem 1.5rem;
  border-radius: 0 4px 4px 0;
  transition: background .3s, transform .3s;
  cursor: none;
}
.special-item:hover {
  background: rgba(244,96,12,.15);
  transform: translateX(8px);
}

.special-icon { font-size: 1.8rem; }
.special-info { flex: 1; }
.special-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .08em;
  color: var(--cream);
  display: block;
}
.special-detail {
  font-size: .8rem;
  color: rgba(255,248,238,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.special-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--yellow);
}

/* FIRE VISUAL */
.fire-visual {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
}

.oven-container {
  position: relative;
  text-align: center;
}

.oven-emoji {
  font-size: 11rem;
  animation: floatOven 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(244,96,12,.6));
  display: block;
}
@keyframes floatOven {
  0%,100% { transform: translateY(0); filter: drop-shadow(0 0 30px rgba(244,96,12,.6)); }
  50%      { transform: translateY(-15px); filter: drop-shadow(0 10px 50px rgba(244,96,12,.9)); }
}

.fire-sparks {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; pointer-events: none;
}
.spark {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  animation: sparkFly linear infinite;
  box-shadow: 0 0 6px var(--orange);
}
@keyframes sparkFly {
  0%   { transform: translate(0,0) scale(1); opacity:1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity:0; }
}

.temp-badge {
  background: var(--red);
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .2em;
  padding: .5rem 1.5rem;
  border-radius: 2px;
  margin-top: 1.5rem;
  display: inline-block;
  animation: tempPulse 1.5s ease-in-out infinite;
}
@keyframes tempPulse {
  0%,100% { background: var(--red); }
  50%      { background: var(--orange); }
}

/* ── ABOUT ── */
.about-section {
  background: var(--cream);
  padding: 8rem 5rem;
  color: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-text .tag-label { color: var(--red); }

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.about-title em { font-family: 'Abril Fatface', serif; font-style: italic; color: var(--red); }

.about-body {
  font-size: 1.1rem;
  color: rgba(26,8,0,.6);
  line-height: 1.9;
  margin-bottom: 3rem;
  font-style: italic;
}

.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.stat-box {
  border-top: 3px solid var(--red);
  padding-top: 1rem;
  transition: transform .3s;
}
.stat-box:hover { transform: translateY(-4px); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--dark);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(26,8,0,.45);
}

/* ingredient wheel */
.wheel-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 500px;
}
.wheel-center {
  width: 200px; height: 200px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  animation: rotateSlow2 20s linear infinite;
  box-shadow: 0 0 0 12px rgba(212,43,43,.12), 0 0 0 24px rgba(212,43,43,.06);
}
@keyframes rotateSlow2 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.wheel-item {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  gap: .3rem;
  cursor: none;
  transition: transform .3s;
}
.wheel-item:hover { transform: var(--base-pos) scale(1.2); }
.wheel-item .wi-icon { font-size: 2.5rem; }
.wheel-item .wi-label {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(26,8,0,.5);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--dark);
  padding: 7rem 5rem;
  text-align: center;
}
.test-header {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--cream);
  margin-bottom: .5rem;
}
.test-header span { color: var(--orange); }
.test-sub {
  font-style: italic;
  color: rgba(255,248,238,.45);
  margin-bottom: 4rem;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.review-card {
  background: rgba(255,248,238,.04);
  border: 1px solid rgba(255,248,238,.08);
  padding: 2rem;
  border-radius: 4px;
  text-align: left;
  transition: background .3s, transform .35s, border-color .3s;
  cursor: none;
}
.review-card:hover {
  background: rgba(244,96,12,.08);
  border-color: rgba(244,96,12,.3);
  transform: translateY(-8px);
}
.review-stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}
.review-text {
  font-style: italic;
  color: rgba(255,248,238,.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.review-author {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .15em;
  color: var(--orange);
}

/* ── FOOTER ── */
footer {
  background: var(--brown);
  padding: 5rem 5rem 3rem;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: .1em;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--orange); }
.footer-tagline {
  font-style: italic;
  color: rgba(255,248,238,.45);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.footer-col p, .footer-col a {
  color: rgba(255,248,238,.5);
  font-size: .95rem;
  line-height: 2.2;
  display: block;
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,248,238,.08);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,248,238,.25);
}
.pizza-spin-small {
  font-size: 1.5rem;
  animation: spinPizza 4s linear infinite;
}

/* ── REVEAL ── */
.reveal { opacity:0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

@keyframes fadeUp {
  from { opacity:0; transform: translateY(40px); }
  to   { opacity:1; transform: translateY(0); }
}
