:root {
  --cream: #FFF6E5;
  --cream-2: #FFE9C2;
  --ink: #1A1410;
  --ink-soft: #2D241B;
  --red: #E63A26;
  --red-deep: #B82A1A;
  --yellow: #F4C12C;
  --teal: #0D8B8B;
  --basil: #6FB23A;
  --pink: #F2A0B5;
  --shadow: 8px 8px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-lg: 12px 12px 0 var(--ink);
  --display: "Bowlby One", "Anton", "Impact", sans-serif;
  --sans: "Bricolage Grotesque", system-ui, sans-serif;
  --script: "Caveat", "Comic Sans MS", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ============ MEMPHIS DECOR BACKGROUND ============ */
.bg-decor {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle 2px, var(--ink) 2px, transparent 2.5px);
  background-size: 60px 60px;
  background-position: 0 0;
  opacity: 0.06;
}

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display .red { color: var(--red); }
.display .yellow { color: var(--yellow); -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill; }
.display .teal { color: var(--teal); }
.display .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

h1.display { font-size: clamp(64px, 10vw, 168px); }
h2.display { font-size: clamp(48px, 7vw, 112px); }
h3.display { font-size: clamp(24px, 2.4vw, 36px); }

.handwrite {
  font-family: var(--script);
  font-weight: 700;
  color: var(--red);
  font-size: 32px;
  line-height: 1;
  transform: rotate(-6deg);
  display: inline-block;
}

.kicker {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

p.body {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.6;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  background: var(--cream);
  color: var(--ink);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { background: var(--red); color: var(--cream); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-teal { background: var(--teal); color: var(--cream); }
.btn .icon {
  width: 22px; height: 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
}
.btn-primary .icon { background: var(--cream); color: var(--red); }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 20px; left: 20px; right: 20px;
  z-index: 100;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 22px;
  color: var(--ink);
}
.nav-logo .mark {
  width: 38px; height: 38px;
  background: var(--red);
  color: var(--cream);
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 18px;
  border: 2px solid var(--ink);
  transform: rotate(-8deg);
}
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.nav-links a:hover { background: var(--yellow); }
.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--red); }
.nav-cta .icon { width: 18px; height: 18px; background: var(--red); border-radius: 50%; display: inline-block; }
.nav-cta:hover .icon { background: var(--cream); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 56px 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }
.hero-content .kicker { margin-bottom: 24px; }
.hero-content h1 { margin-bottom: 28px; }
.hero-content p.body { margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-ctas .review {
  display: flex; flex-direction: column; align-items: flex-start;
  margin-left: 12px;
  padding-left: 18px;
  border-left: 2px solid var(--ink);
}
.review .stars {
  color: var(--red);
  font-size: 20px;
  letter-spacing: 0.1em;
}
.review-mobile { display: none; }
.review .label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* hero art */
.hero-art {
  position: relative;
  width: 110%;
  margin-right: -10%;
  aspect-ratio: 2582 / 1917;
  z-index: 2;
}
.hero-art .glow {
  position: absolute;
  left: 15%; top: 12%;
  width: 70%; height: 80%;
  background: var(--yellow);
  border-radius: 50%;
  z-index: -1;
}
.hero-art img {
  position: relative;
  width: 100%; height: auto;
  z-index: 2;
  filter: drop-shadow(8px 12px 0 var(--ink));
}

/* hero badge tags */
.badge-tag {
  position: absolute;
  z-index: 4;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}
.bt-label {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}
.bt-value {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
}
.bt-icon { font-size: 16px; line-height: 1; }

.badge-tag-1 {
  top: 4%; right: 6%;
  background: var(--red);
  color: var(--cream);
  transform: rotate(-6deg);
  animation: nudge 5s ease-in-out infinite alternate;
}
.badge-tag-2 {
  bottom: 10%; left: -2%;
  background: var(--teal);
  color: var(--cream);
  transform: rotate(5deg);
  animation: nudge 6s ease-in-out 0.5s infinite alternate;
}
.badge-tag-3 {
  bottom: 4%; right: 10%;
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(-4deg);
  animation: nudge 7s ease-in-out 1s infinite alternate;
}

@keyframes nudge {
  0% { transform: translateY(0) rotate(var(--r, -4deg)); }
  100% { transform: translateY(-6px) rotate(calc(var(--r, -4deg) + 4deg)); }
}

/* Memphis floating doodles in hero bg */
.doodle { position: absolute; z-index: 1; width: clamp(28px, 3vw, 52px); }
.doodle.d1 { top: 14%;    left: 16px;  color: var(--red);    animation: nudge 5s ease-in-out      infinite alternate; }
.doodle.d2 { bottom: 16%; left: 16px;  color: var(--teal);   animation: nudge 7s ease-in-out      infinite alternate; }
.doodle.d3 { top: 14%;    right: 16px; color: var(--basil);  animation: nudge 6s ease-in-out      infinite alternate; }
.doodle.d4 { bottom: 16%; right: 16px; color: var(--yellow); animation: nudge 9s ease-in-out 1s   infinite alternate; }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(-2deg);
  margin: -2vw -20px;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 36px; }
.marquee-track .dot {
  width: 16px; height: 16px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
}
.marquee-track .star { color: var(--red); font-size: 36px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee.alt { background: var(--yellow); color: var(--ink); transform: rotate(1.5deg); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.marquee.alt .marquee-track .dot { background: var(--red); }
.marquee.alt .marquee-track .star { color: var(--teal); }

/* ============ SECTION SHELL ============ */
section { position: relative; z-index: 2; }
.section-pad { padding: 120px 56px; }
.section-head { max-width: 900px; margin: 0 auto 60px; text-align: center; position: relative; }
.section-head .kicker { margin-bottom: 22px; }
.section-head .display { margin-bottom: 20px; }
.section-head p.body { margin: 0 auto; }

/* ============ ABOUT ============ */
.about {
  padding: 140px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.about-art {
  position: relative;
  aspect-ratio: 4/5;
  border: 4px solid var(--ink);
  background: var(--teal);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-2deg);
}
.about-art img { width: 100%; height: 100%; object-fit: cover; }
.about-art .badge {
  position: absolute;
  bottom: -36px; right: -36px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.9;
  z-index: 3;
  animation: nudge 5s ease-in-out infinite alternate;
}
.about-art .badge .big { font-size: 48px; color: var(--red); }
.about-art .badge .lbl { font-size: 11px; font-family: var(--sans); font-weight: 800; letter-spacing: 0.1em; margin-top: 4px; }

.about-content .handwrite { color: var(--teal); margin-bottom: 8px; }
.about-content .display { margin: 16px 0 22px; }
.about-content p.body { margin-bottom: 16px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.about-stat {
  border: 3px solid var(--ink);
  padding: 18px 14px;
  background: var(--cream);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease;
}
.about-stat:nth-child(2) { background: var(--red); color: var(--cream); transform: rotate(-2deg); }
.about-stat:nth-child(3) { background: var(--teal); color: var(--cream); transform: rotate(2deg); }
.about-stat:hover { transform: translate(-2px, -2px) rotate(0deg); }
.about-stat .n {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}
.about-stat .l {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ============ SIGNATURE PIZZAS ============ */
.signature { padding: 140px 56px; background: var(--cream-2); position: relative; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.signature::before, .signature::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 30px;
  background: linear-gradient(90deg, var(--red) 0 16.6%, var(--yellow) 16.6% 33.3%, var(--teal) 33.3% 50%, var(--basil) 50% 66.6%, var(--pink) 66.6% 83.3%, var(--ink) 83.3% 100%);
  display: none;
}
.signature .section-head .handwrite { position: absolute; top: -20px; left: 50%; transform: translateX(-50%) rotate(-6deg); color: var(--red); }

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}
.pizza-card {
  position: relative;
  padding: 32px 26px 28px;
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pizza-card:nth-child(2n) { background: var(--yellow); }
.pizza-card:nth-child(3n) { background: var(--pink); }
.pizza-card:nth-child(4n) { background: var(--teal); color: var(--cream); }
.pizza-card:nth-child(5n) { background: var(--red); color: var(--cream); }
.pizza-card:hover { transform: translate(-4px, -4px) rotate(-1deg); box-shadow: 12px 12px 0 var(--ink); }
.pizza-card:nth-child(2n):hover { transform: translate(-4px, -4px) rotate(1deg); }

.pizza-tag {
  position: absolute;
  top: -16px; right: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--ink);
  transform: rotate(4deg);
}
.pizza-card:nth-child(4n) .pizza-tag,
.pizza-card:nth-child(5n) .pizza-tag { background: var(--cream); color: var(--ink); }

.pizza-img {
  width: 220px; height: 220px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--cream);
  position: relative;
  transition: transform 0.25s ease;
}
.pizza-card:hover .pizza-img { transform: rotate(-6deg); }
.pizza-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pizza-card:hover .pizza-img img { transform: scale(1.1); }

.pizza-name {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 28px;
  line-height: 0.95;
  margin-bottom: 10px;
}
.pizza-ing {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 auto 18px;
  max-width: 28ch;
  min-height: 44px;
  opacity: 0.85;
}
.pizza-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 2px dashed currentColor;
}
.pizza-price {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 28px;
}
.pizza-add {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s ease;
}
.pizza-card:nth-child(4n) .pizza-add,
.pizza-card:nth-child(5n) .pizza-add { background: var(--cream); color: var(--ink); }
.pizza-add:hover { background: var(--red); color: var(--cream); }

/* ============ EXPERIENCE ============ */
.experience {
  padding: 140px 56px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  background: var(--red);
  color: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.experience::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 3px, rgba(255,255,255,0.12) 3px, transparent 3.5px);
  background-size: 50px 50px;
  pointer-events: none;
}
.exp-image {
  position: relative;
  aspect-ratio: 1/1;
  border: 4px solid var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-3deg);
  z-index: 2;
}
.exp-image img { width: 100%; height: 100%; object-fit: cover; }
.exp-image .stamp {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 3;
}
.exp-image .stamp::before { content: "●"; color: var(--basil); font-size: 12px; }
.exp-content { position: relative; z-index: 2; }
.exp-content .display { margin: 16px 0 22px; }
.exp-content .display .outline { -webkit-text-stroke: 2px var(--cream); color: transparent; }
.exp-content p.body { color: var(--cream); margin-bottom: 14px; opacity: 0.95; }

.event-card {
  margin-top: 36px;
  padding: 28px;
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  position: relative;
}
.event-card .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.event-card .pill::before { content: "●"; color: var(--red); }
.event-card .title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 32px;
  line-height: 0.95;
  margin: 14px 0 6px;
}
.event-card .when {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 22px;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cd-cell {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 6px;
  text-align: center;
  border-radius: 8px;
  border: 2px solid var(--ink);
}
.cd-cell:nth-child(2) { background: var(--red); }
.cd-cell:nth-child(3) { background: var(--teal); }
.cd-cell:nth-child(4) { background: var(--yellow); color: var(--ink); }
.cd-cell .n {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
}
.cd-cell .l {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 140px 56px;
  background: var(--teal);
  color: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 3px, rgba(255,255,255,0.12) 3px, transparent 3.5px);
  background-size: 50px 50px;
}
.testimonials .section-head { color: var(--cream); }
.testimonials .section-head .kicker { background: var(--yellow); color: var(--ink); }
.testimonials .section-head .display .outline { -webkit-text-stroke: 2px var(--cream); }

.t-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.t-card {
  background: var(--cream);
  color: var(--ink);
  padding: 28px 24px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s ease;
}
.t-card:nth-child(1) { transform: rotate(-2deg); }
.t-card:nth-child(2) { transform: rotate(1deg); margin-top: 24px; background: var(--yellow); }
.t-card:nth-child(3) { transform: rotate(-1deg); background: var(--pink); }
.t-card:hover { transform: rotate(0deg) translate(-2px, -2px); }

.t-card .stars {
  color: var(--red);
  font-size: 22px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.t-card .t-quote {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}
.t-card .t-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 2px dashed var(--ink);
}
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--red);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 20px;
}
.t-card:nth-child(2) .t-avatar { background: var(--teal); }
.t-card:nth-child(3) .t-avatar { background: var(--ink); color: var(--yellow); }
.t-author .nm { font-family: var(--display); font-size: 18px; text-transform: uppercase; line-height: 1; }
.t-author .role { font-family: var(--sans); font-weight: 600; font-size: 12px; margin-top: 4px; opacity: 0.75; }

/* ============ NEWSLETTER ============ */
.newsletter {
  padding: 120px 56px;
  text-align: center;
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute; left: -40px; top: 40px;
  width: 200px; height: 200px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--ink);
  opacity: 0.9;
  z-index: 0;
}
.newsletter::after {
  content: "";
  position: absolute; right: -40px; bottom: 40px;
  width: 160px; height: 160px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid var(--ink);
  z-index: 0;
}
.newsletter .section-head { position: relative; z-index: 2; }
.newsletter .section-head .handwrite { color: var(--red); display: block; margin-bottom: 8px; }
.nl-form {
  position: relative;
  z-index: 2;
  display: flex; gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--cream);
  padding: 8px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.nl-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
}
.nl-form input::placeholder { color: var(--ink); opacity: 0.5; }
.nl-form button {
  background: var(--red);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s ease;
}
.nl-form button:hover { background: var(--ink); }
.nl-hint {
  position: relative; z-index: 2;
  margin-top: 18px;
  font-family: var(--script);
  font-size: 22px;
  color: var(--ink);
}

/* ============ FOOTER ============ */
.footer {
  position: relative;
  padding: 100px 56px 40px;
  background: var(--ink);
  color: var(--cream);
}
.footer-big {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 60px;
  color: transparent;
  -webkit-text-stroke: 2px var(--cream);
}
.footer-big em { font-style: normal; color: var(--red); -webkit-text-stroke: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding-bottom: 50px;
  border-bottom: 2px dashed rgba(255,246,229,0.2);
}
.foot-col h4 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 18px;
  color: var(--yellow);
  margin-bottom: 18px;
}
.foot-col p, .foot-col a, .foot-col li {
  color: var(--cream);
  opacity: 0.85;
  font-size: 14px;
  line-height: 1.9;
}
.foot-col ul { list-style: none; }
.foot-col a { transition: color 0.2s ease; }
.foot-col a:hover { color: var(--red); opacity: 1; }
.foot-brand p { max-width: 32ch; margin-bottom: 24px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 42px; height: 42px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 14px;
  color: var(--cream);
  transition: all 0.2s ease;
  text-decoration: none;
}
.socials a:hover { background: var(--red); border-color: var(--red); transform: translate(-2px, -2px); }

.hours { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; font-size: 14px; }
.hours dt { font-family: var(--sans); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; color: var(--yellow); align-self: center; }
.hours dd { color: var(--cream); opacity: 0.9; }

.foot-bar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.foot-bar .legal { display: flex; gap: 28px; }
.foot-bar a:hover { color: var(--red); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* ============ HAMBURGER / MOBILE NAV ============ */
.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--ink);
  padding: 0;
}
.nav-ham span {
  display: block;
  width: 16px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(32px, 8vw, 48px);
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mob-nav a:hover { color: var(--red); }
.mob-nav .mob-cta {
  margin-top: 12px;
  background: var(--red);
  color: var(--cream);
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 18px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ============ ABOUT ART WRAP (badge outside overflow:hidden) ============ */
.about-art-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.about-art {
  position: relative;
  aspect-ratio: 4/5;
  border: 4px solid var(--ink);
  background: var(--teal);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-2deg);
}
.about-art img { width: 100%; height: 100%; object-fit: cover; }
.about-art-wrap .badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.9;
  z-index: 3;
  animation: nudge 5s ease-in-out infinite alternate;
}
.about-art-wrap .badge .big { font-size: 44px; color: var(--red); }
.about-art-wrap .badge .lbl { font-size: 10px; font-family: var(--sans); font-weight: 800; letter-spacing: 0.1em; margin-top: 4px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .doodle { display: none; }
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .nav { left: 12px; right: 12px; padding: 10px 14px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 110px 32px 60px;
    text-align: center;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-content p.body { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-ctas .review { display: none; }
  .review-mobile {
    display: flex; flex-direction: column; align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid var(--ink);
    width: 80%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-art {
    width: 80%;
    margin: 0 auto;
    max-width: 480px;
  }
  .sticker-1 { width: 90px; height: 90px; }
  .sticker-1 .big { font-size: 22px; }
  .sticker-2 { padding: 12px 18px; }
  .sticker-2 .big { font-size: 16px; }
  .sticker-3 { width: 80px; height: 80px; font-size: 20px; }

  .about {
    grid-template-columns: 1fr;
    padding: 100px 32px;
    gap: 60px;
  }
  .about-art-wrap { max-width: 480px; margin: 0 auto; }

  .experience {
    grid-template-columns: 1fr;
    padding: 100px 32px;
  }

  .pizza-grid { grid-template-columns: repeat(2, 1fr); }
  .t-rail { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-cta { display: none; }

  .hero { padding: 100px 20px 48px; }
  .hero-art { width: 90%; }
  .badge-tag { display: none; }

  .about { padding: 80px 20px; }
  .about-art-wrap { max-width: 100%; }
  .about-art-wrap .badge { width: 100px; height: 100px; bottom: -14px; right: -10px; }
  .about-art-wrap .badge .big { font-size: 32px; }
  .about-stats { grid-template-columns: 1fr; gap: 12px; }

  .signature { padding: 80px 20px; }
  .pizza-grid { grid-template-columns: 1fr; }
  .pizza-img { width: 180px; height: 180px; }

  .experience { padding: 80px 20px; }
  .testimonials { padding: 80px 20px; }
  .t-card:nth-child(1),
  .t-card:nth-child(2),
  .t-card:nth-child(3) { transform: none; margin-top: 0; }

  .newsletter { padding: 80px 20px; }
  .newsletter::before, .newsletter::after { display: none; }
  .nl-form { flex-direction: column; border-radius: 20px; }
  .nl-form input { padding: 14px 16px; }
  .nl-form button { border-radius: 12px; }

  .footer { padding: 60px 20px 32px; }
  .footer-big { font-size: clamp(48px, 14vw, 80px); margin-bottom: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-bar { flex-direction: column; gap: 12px; text-align: center; }
  .foot-bar .legal { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .marquee-track { font-size: 26px; }
  .section-head { margin-bottom: 40px; }
  h2.display { font-size: clamp(40px, 10vw, 64px); }
}
