:root {
  --cream: #f4f2ec;
  --paper: #ffffff;
  --ink: #0d0f12;
  --soft-ink: #252830;
  --tomato: #ff402f;
  --blue: #2038ff;
  --acid: #ddff3f;
  --silver: #b9bec8;
  --line: rgba(13, 15, 18, 0.16);
  --hero-progress: 0;
  --cutter-progress: 0;
  --mx: 50vw;
  --my: 50vh;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  min-height: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--cream);
}

html.overlay-open { overflow: hidden; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: "Golos Text", Arial, sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open { overflow: hidden; }

button,
input,
select { font: inherit; }

button { border: 0; color: inherit; cursor: pointer; }

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

img,
canvas,
svg { display: block; }

::selection { background: var(--acid); color: var(--ink); }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 800;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: radial-gradient(circle, rgba(13, 15, 18, 0.85) 0 0.45px, transparent 0.7px);
  background-size: 4px 4px;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1400;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate3d(calc(var(--mx) - 9px), calc(var(--my) - 9px), 0);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, transform 0.06s linear;
}

.cursor span { width: 3px; height: 3px; border-radius: 50%; background: #fff; }
body.pointer-active .cursor {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  transform: translate3d(calc(var(--mx) - 21px), calc(var(--my) - 21px), 0);
}

/* Opening */
.intro {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--cream);
  transition: visibility 0s linear 0.72s;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 50.5%;
  background: var(--cream);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.18, 1) 0.08s;
}

.intro::before { top: 0; }
.intro::after { bottom: 0; }
body.loaded .intro { visibility: hidden; }
body.loaded .intro::before { transform: translateY(-102%); }
body.loaded .intro::after { transform: translateY(102%); }

.intro-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--tomato);
  transform: translate(-50%, -50%) scale(0);
  animation: introDisc 1.05s cubic-bezier(0.16, 0.85, 0.2, 1) forwards;
}

.intro-disc::before,
.intro-disc::after,
.intro-disc i,
.intro-disc b {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--cream);
}

.intro-disc::before { left: 20%; top: 22%; width: 34px; height: 34px; }
.intro-disc::after { right: 21%; top: 34%; width: 42px; height: 42px; }
.intro-disc i { left: 37%; bottom: 20%; width: 29px; height: 29px; }
.intro-disc b { right: 36%; bottom: 31%; width: 23px; height: 23px; }

@keyframes introDisc {
  0% { transform: translate(-50%, -50%) scale(0) rotate(-35deg); }
  72% { transform: translate(-50%, -50%) scale(1.08) rotate(5deg); }
  100% { transform: translate(-50%, -50%) scale(1) rotate(0); }
}

.intro-word {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: baseline;
  color: var(--ink);
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.intro-word span { font-size: 58px; font-weight: 500; }
.intro-word strong { margin-left: 7px; font-family: "Prata", serif; font-size: 38px; font-weight: 400; }
.intro > small {
  position: absolute;
  left: 50%;
  bottom: 11%;
  z-index: 4;
  font-size: 10px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

body.loaded .intro-word,
body.loaded .intro > small { opacity: 0; transform: translateY(-16px); }

/* Floating toolbar */
.topbar {
  position: fixed;
  left: 22px;
  right: 22px;
  top: 18px;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  pointer-events: none;
}

.topbar button { pointer-events: auto; }

.nav-capsule,
.top-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-capsule {
  justify-self: start;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(13, 15, 18, 0.72);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.nav-capsule button {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 18px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-capsule button:hover,
.nav-capsule button.active { background: var(--paper); color: var(--ink); }

.mini-brand {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 4px;
  justify-self: center;
  padding: 0 15px;
  border-radius: 24px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
}

.mini-brand span { font-size: 13px; font-weight: 600; }
.mini-brand strong { font-family: "Prata", serif; font-size: 12px; font-weight: 400; }

.top-actions { justify-self: end; }
.book-pill,
.cart-pill {
  min-height: 42px;
  border-radius: 24px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
}

.book-pill { padding: 0 18px; background: var(--paper); color: var(--ink); font-size: 10px; }
.cart-pill {
  display: grid;
  min-width: 124px;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 0 9px 0 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
}

.cart-pill strong {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--tomato);
  font-size: 9px;
}

.cart-pill svg { width: 17px; }

main { position: relative; overflow: clip; }

/* Hero */
.hero { position: relative; height: 165svh; background: var(--ink); }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 660px;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(var(--hero-scale, 1.02)) translateY(var(--hero-shift, 0));
}

.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.68), rgba(8, 8, 8, 0.05) 55%, rgba(8, 8, 8, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 44%, rgba(0, 0, 0, 0.7));
}

.hero-copy {
  position: absolute;
  left: 4.5%;
  top: 16%;
  z-index: 4;
  width: min(900px, 80vw);
  color: var(--paper);
  opacity: var(--hero-copy-opacity, 1);
  transform: translate3d(var(--hero-copy-x, 0), var(--hero-copy-y, 0), 0);
}

.hero-kicker,
.proof-heading > span,
.deck-opening-copy > span,
.cutter-copy > span,
.kitchen-copy > span,
.visit-copy > span {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-copy h1 {
  display: flex;
  align-items: baseline;
  margin: 15px 0 0;
  font-size: clamp(92px, 16vw, 245px);
  font-weight: 400;
  line-height: 0.8;
}

.hero-copy h1 strong {
  margin-left: 12px;
  color: var(--acid);
  font-family: "Prata", serif;
  font-size: 0.44em;
  font-weight: 400;
}

.hero-copy > p {
  margin: 36px 0 0 8vw;
  font-family: "Prata", serif;
  font-size: clamp(20px, 2.1vw, 33px);
  line-height: 1.25;
}

.hero-actions { display: flex; gap: 8px; margin: 28px 0 0 8vw; }
.hero-actions button {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 30px;
  padding: 0 11px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font-size: 11px;
  backdrop-filter: blur(8px);
}

.hero-actions button:first-child { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.hero-actions svg { width: 28px; height: 28px; padding: 5px; border-radius: 50%; background: currentColor; color: var(--paper); }
.hero-actions button:first-child svg { background: var(--ink); }
.hero-actions button:nth-child(2) svg { background: var(--paper); color: var(--ink); }

.hero-stamp {
  position: absolute;
  right: 4%;
  top: 17%;
  z-index: 4;
  display: grid;
  width: 136px;
  min-height: 136px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: var(--paper);
  font-size: 8px;
  transform: rotate(8deg);
}

.hero-stamp::before { content: ""; position: absolute; inset: 9px; border: 1px dashed rgba(255, 255, 255, 0.55); border-radius: 50%; }
.hero-stamp strong { margin: 5px 0 2px; font-size: 11px; }
.hero-temperature {
  position: absolute;
  right: 4%;
  bottom: 15%;
  z-index: 4;
  display: grid;
  justify-items: end;
  color: var(--paper);
  opacity: var(--hero-temperature-opacity, 1);
}

.hero-temperature small,
.hero-temperature span { font-size: 9px; text-transform: uppercase; }
.hero-temperature strong { font-family: "Prata", serif; font-size: 80px; font-weight: 400; line-height: 1; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 82px;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i { position: relative; width: 1px; height: 35px; background: rgba(255, 255, 255, 0.25); }
.hero-scroll i::before { content: ""; position: absolute; inset: 0 0 auto; height: 12px; background: var(--acid); animation: heroDrop 1.6s ease-in-out infinite; }
@keyframes heroDrop { 70%, 100% { transform: translateY(23px); opacity: 0; } }

.next-taste {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  height: 54px;
  grid-template-columns: repeat(5, 1fr);
  background: var(--cream);
  color: var(--ink);
}

.next-taste span { display: grid; place-items: center; border-right: 1px solid var(--line); font-size: 9px; text-transform: uppercase; }
.next-taste span:last-child { border-right: 0; }

/* Proof / white space */
.proof { min-height: 1220px; padding: 130px 5% 150px; background: var(--cream); }
.proof-heading { display: grid; grid-template-columns: 1fr 1.5fr; align-items: start; }
.proof-heading > span { margin-top: 10px; color: rgba(13, 15, 18, 0.5); }
.proof-heading h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.96;
}

.proof-heading h2 em { color: rgba(13, 15, 18, 0.28); font-family: "Prata", serif; font-style: normal; }
.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1fr 1.05fr;
  gap: clamp(26px, 4vw, 70px);
  align-items: start;
  margin-top: 130px;
}

.proof-photo {
  position: relative;
  min-height: 530px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.proof-photo img { width: 100%; height: 530px; object-fit: cover; }
.proof-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 16px;
  border-radius: 6px;
  background: var(--paper);
}

.proof-photo figcaption span { font-size: 14px; }
.proof-photo figcaption small { color: rgba(13, 15, 18, 0.52); font-size: 9px; text-transform: uppercase; }
.proof-number { padding-top: 42px; }
.proof-number > span,
.proof-hours > span { color: rgba(13, 15, 18, 0.48); font-size: 10px; }
.proof-number strong { display: block; margin-top: 20px; font-family: "Prata", serif; font-size: clamp(55px, 6vw, 92px); font-weight: 400; }
.proof-number p,
.proof-hours p { margin: 48px 0 0; color: rgba(13, 15, 18, 0.58); font-size: 12px; line-height: 1.65; }
.proof blockquote { margin: 250px 0 0; }
.guest-faces { display: flex; margin-bottom: 20px; }
.guest-faces i {
  width: 31px;
  height: 31px;
  margin-left: -6px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--tomato);
}

.guest-faces i:nth-child(2) { background: var(--blue); }
.guest-faces i:nth-child(3) { background: var(--acid); }
.guest-faces i:nth-child(4) { background: var(--silver); }
.proof blockquote p { margin: 0; font-family: "Prata", serif; font-size: 22px; line-height: 1.4; }
.proof blockquote cite { display: block; margin-top: 18px; color: rgba(13, 15, 18, 0.48); font-size: 9px; font-style: normal; }
.proof-hours {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.proof-hours > span { color: rgba(255, 255, 255, 0.5); }
.proof-hours strong { align-self: end; font-family: "Prata", serif; font-size: 65px; font-weight: 400; }
.proof-hours p { margin: 0; color: rgba(255, 255, 255, 0.55); }

/* Deck intro */
.deck { position: relative; background: var(--cream); }
.deck-opening {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 0;
  overflow: hidden;
  background: var(--cream);
}

.deck-opening::before {
  content: "MENU";
  position: absolute;
  right: -1vw;
  top: 6%;
  color: rgba(13, 15, 18, 0.035);
  font-family: "Prata", serif;
  font-size: 29vw;
  line-height: 1;
}

.deck-opening-copy { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.5fr; align-items: end; }
.deck-opening-copy > span { color: rgba(13, 15, 18, 0.48); }
.deck-opening-copy h2 { margin: 0; font-size: clamp(52px, 7vw, 102px); font-weight: 400; line-height: 0.95; }
.deck-opening-copy h2 em { color: rgba(13, 15, 18, 0.28); font-family: "Prata", serif; font-style: normal; }
.deck-opening-copy p { grid-column: 2; max-width: 460px; margin: 32px 0 0; color: rgba(13, 15, 18, 0.58); font-size: 13px; line-height: 1.65; }
.deck-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  height: 90px;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.deck-tabs span { display: flex; align-items: center; padding: 0 5%; border-right: 1px solid var(--line); font-size: 18px; }
.deck-tabs span:last-child { border-right: 0; }

/* Sticky card deck */
.deck-zone {
  position: relative;
  min-height: 650svh;
  padding: 1px 0 40svh;
  overflow: clip;
  background: var(--deck-bg, #11141a);
  color: var(--deck-ink, #fff);
  transition: background 0.85s ease, color 0.85s ease;
}

.deck-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.13), transparent 28%);
}

.deck-fixed-title {
  position: sticky;
  top: 8vh;
  z-index: 30;
  display: flex;
  height: 0;
  justify-content: center;
  align-items: baseline;
  pointer-events: none;
  font-size: clamp(55px, 7vw, 104px);
  font-weight: 400;
  opacity: 0.92;
  filter: blur(var(--title-blur-px, 0));
  transform: translateY(var(--title-shift, 0));
  transition: color 0.7s ease;
}

.deck-fixed-title strong { margin-left: 12px; font-family: "Prata", serif; font-size: 0.85em; font-weight: 400; }
.deck-progress {
  position: sticky;
  left: 24px;
  top: calc(100svh - 78px);
  z-index: 40;
  display: grid;
  width: 260px;
  height: 0;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: currentColor;
  font-size: 10px;
  pointer-events: none;
}

.deck-progress i { position: relative; height: 1px; background: currentColor; opacity: 0.4; }
.deck-progress b { position: absolute; inset: 0 auto 0 0; width: 20%; background: currentColor; transition: width 0.4s ease; }
.pizza-stack { position: relative; z-index: 5; padding-top: 28svh; }
.pizza-card {
  --cover: 0;
  position: sticky;
  top: 15svh;
  z-index: var(--card-z, 5);
  width: min(760px, 64vw);
  height: min(68svh, 660px);
  min-height: 480px;
  margin: 0 auto 62svh;
  color: #fff;
  filter: blur(var(--card-blur, 0)) brightness(var(--card-brightness, 1));
  transform: translate3d(0, var(--card-lift, 0), 0) scale(var(--card-scale, 1));
  transform-origin: center top;
  transition: filter 0.12s linear, transform 0.12s linear;
}

.pizza-card:last-child { margin-bottom: 20svh; }
.pizza-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.22);
}

.pizza-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), transparent 40%, rgba(0, 0, 0, 0.74));
}

.pizza-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--image-scale, 1.05));
  transition: transform 0.12s linear;
}

.pizza-number {
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 3;
  padding: 8px 11px;
  border-radius: 18px;
  background: rgba(13, 15, 18, 0.58);
  font-size: 9px;
  backdrop-filter: blur(8px);
}

.pizza-name {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 3;
}

.pizza-name small { font-size: 9px; text-transform: uppercase; }
.pizza-name h3 { margin: 8px 0 0; font-size: clamp(38px, 5vw, 72px); font-weight: 400; line-height: 0.96; }
.pizza-name p { max-width: 560px; margin: 13px 0 0; color: rgba(255, 255, 255, 0.72); font-size: 11px; line-height: 1.55; }
.pizza-add {
  position: absolute;
  left: calc(100% + 34px);
  top: 50%;
  display: grid;
  min-width: 142px;
  min-height: 52px;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  align-items: center;
  padding: 7px 8px 7px 17px;
  border: 1px solid currentColor;
  border-radius: 28px;
  background: transparent;
  color: var(--deck-ink, #fff);
  transform: translateY(-50%);
}

.pizza-add span { font-size: 9px; }
.pizza-add strong { grid-column: 1; font-family: "Prata", serif; font-size: 13px; font-weight: 400; }
.pizza-add i,
.pizza-add svg { grid-column: 2; grid-row: 1 / span 2; width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--paper); color: var(--ink); }
.pizza-add:hover { background: var(--paper); color: var(--ink); }
.pizza-add:hover svg { background: var(--tomato); color: var(--paper); }
.pizza-add.added { background: var(--acid); color: var(--ink); transform: translateY(-50%) scale(1.04); }

/* 3D chrome chapter */
.cutter-section { position: relative; height: 260svh; background: var(--blue); color: #fff; }
.cutter-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  background: var(--blue);
}

#cutter3d { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; }
.cutter-sticky::before {
  content: "FORNO / STEEL / 00";
  position: absolute;
  right: -5vw;
  bottom: -3vw;
  z-index: 1;
  color: rgba(255, 255, 255, 0.09);
  font-family: "Prata", serif;
  font-size: 13vw;
  white-space: nowrap;
}

.cutter-copy {
  position: absolute;
  left: 5%;
  top: 16%;
  z-index: 5;
  width: 470px;
  pointer-events: none;
}

.cutter-copy > span { color: var(--acid); }
.cutter-copy h2 { margin: 18px 0 0; font-size: clamp(48px, 5.5vw, 82px); font-weight: 400; line-height: 0.98; }
.cutter-copy h2 em { color: rgba(255, 255, 255, 0.38); font-family: "Prata", serif; font-style: normal; }
.cutter-copy p { max-width: 360px; margin: 27px 0 0; color: rgba(255, 255, 255, 0.62); font-size: 12px; line-height: 1.7; }
.cutter-spec {
  position: absolute;
  right: 4%;
  top: 17%;
  z-index: 5;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.cutter-spec span,
.cutter-spec small { color: rgba(255, 255, 255, 0.52); font-size: 9px; text-transform: uppercase; }
.cutter-spec strong { margin: 30px 0 2px; font-family: "Prata", serif; font-size: 72px; font-weight: 400; }
.cutter-marquee {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  width: max-content;
  height: 52px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  white-space: nowrap;
  animation: cutterMarquee 26s linear infinite;
}

.cutter-marquee span { padding-right: 45px; }
@keyframes cutterMarquee { to { transform: translateX(-50%); } }

/* Kitchen editorial */
.kitchen-section {
  position: relative;
  display: grid;
  min-height: 1250px;
  grid-template-columns: 1fr 1.15fr;
  gap: 6vw;
  align-items: center;
  padding: 150px 7% 180px;
  background: var(--cream);
}

.kitchen-photo {
  position: relative;
  z-index: 2;
  width: min(480px, 38vw);
  height: 690px;
  justify-self: end;
  overflow: hidden;
  border-radius: 8px;
}

.kitchen-photo img { width: 100%; height: 100%; object-fit: cover; }
.kitchen-photo::after {
  content: "HAND / HEAT / TIME";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  font-size: 9px;
}

.kitchen-copy { max-width: 640px; }
.kitchen-copy > span { color: rgba(13, 15, 18, 0.48); }
.kitchen-copy h2 { margin: 20px 0 0; font-size: clamp(55px, 6.8vw, 104px); font-weight: 400; line-height: 0.94; }
.kitchen-copy p { max-width: 480px; margin: 35px 0 0; color: rgba(13, 15, 18, 0.58); font-size: 14px; line-height: 1.7; }
.kitchen-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kitchen-facts span { display: grid; min-height: 120px; align-content: center; gap: 4px; border-right: 1px solid var(--line); }
.kitchen-facts span:last-child { border-right: 0; padding-left: 18px; }
.kitchen-facts strong { font-family: "Prata", serif; font-size: 38px; font-weight: 400; }
.kitchen-facts small { color: rgba(13, 15, 18, 0.48); font-size: 9px; }
.kitchen-links {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  height: 100px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.kitchen-links span { display: flex; align-items: center; padding: 0 4vw; border-right: 1px solid var(--line); font-size: 24px; }

/* Visit */
.visit-section { position: relative; min-height: 100svh; overflow: hidden; background: var(--ink); color: #fff; }
.visit-section > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.visit-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 8, 10, 0.84), rgba(7, 8, 10, 0.12) 70%), linear-gradient(180deg, transparent 60%, rgba(7, 8, 10, 0.7)); }
.visit-copy { position: absolute; left: 6%; top: 50%; z-index: 3; width: min(680px, 60vw); transform: translateY(-50%); }
.visit-copy > span { color: var(--acid); }
.visit-copy h2 { margin: 18px 0 0; font-size: clamp(60px, 7.6vw, 116px); font-weight: 400; line-height: 0.9; }
.visit-copy p { margin: 35px 0 0; color: rgba(255, 255, 255, 0.68); font-family: "Prata", serif; font-size: 20px; line-height: 1.5; }
.visit-copy button {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 35px;
  margin-top: 30px;
  padding: 0 9px 0 18px;
  border-radius: 28px;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
}

.visit-copy button svg { width: 33px; height: 33px; padding: 7px; border-radius: 50%; background: var(--ink); color: #fff; }
.visit-label {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 25px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

.visit-label strong { color: #fff; font-size: 10px; }

.footer {
  display: grid;
  min-height: 390px;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: end;
  padding: 80px 5% 100px;
  background: var(--cream);
}

.footer-word { display: flex; align-items: baseline; font-size: clamp(62px, 9vw, 140px); line-height: 0.8; }
.footer-word strong { margin-left: 10px; color: var(--tomato); font-family: "Prata", serif; font-size: 0.44em; font-weight: 400; }
.footer-meta { display: grid; gap: 6px; color: rgba(13, 15, 18, 0.5); font-size: 10px; }
.footer > button { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: transparent; }
.footer > button svg { width: 18px; }

/* Overlays */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1600;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.65s;
}

.cart-drawer.open { visibility: visible; pointer-events: auto; transition-delay: 0s; }
.drawer-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; background: rgba(5, 6, 8, 0.72); opacity: 0; transition: opacity 0.35s ease; }
.cart-drawer.open .drawer-backdrop { opacity: 1; }
.cart-drawer > section {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  width: min(520px, 100vw);
  height: 100%;
  flex-direction: column;
  background: var(--cream);
  color: var(--ink);
  transform: translateX(105%);
  transition: transform 0.62s cubic-bezier(0.72, 0, 0.12, 1);
}

.cart-drawer.open > section { transform: translateX(0); }
.cart-drawer header,
.booking-dialog header { display: flex; min-height: 100px; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.cart-drawer header > div,
.booking-dialog header > div { display: grid; gap: 4px; }
.cart-drawer header span,
.booking-dialog header span { color: rgba(13, 15, 18, 0.48); font-size: 8px; }
.cart-drawer header h2,
.booking-dialog header h2 { margin: 0; font-size: 28px; font-weight: 400; }
.cart-drawer header button,
.booking-dialog header button { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.cart-drawer header svg,
.booking-dialog header svg { width: 16px; }
.fulfilment { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin: 20px 24px 0; padding: 3px; border-radius: 24px; background: rgba(13, 15, 18, 0.08); }
.fulfilment button { min-height: 38px; border-radius: 20px; background: transparent; font-size: 10px; }
.fulfilment button.active { background: var(--paper); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); }
.cart-items { flex: 1; margin-top: 18px; overflow: auto; }
.cart-item { display: grid; min-height: 92px; grid-template-columns: 58px 1fr auto; gap: 13px; align-items: center; padding: 14px 24px; border-bottom: 1px solid var(--line); }
.cart-item-thumb { width: 58px; height: 58px; overflow: hidden; border-radius: 6px; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-copy { display: grid; gap: 3px; }
.cart-item-copy strong { font-size: 13px; font-weight: 500; }
.cart-item-copy small { color: rgba(13, 15, 18, 0.5); font-family: "Prata", serif; font-size: 11px; }
.cart-item-controls { display: grid; grid-template-columns: 27px 25px 27px; align-items: center; text-align: center; }
.cart-item-controls button { width: 27px; height: 27px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.cart-item-controls span { font-size: 10px; }
.cart-empty { display: grid; flex: 1; align-content: center; justify-items: center; padding: 40px; text-align: center; }
.cart-empty.hidden { display: none; }
.cart-empty > span { color: rgba(13, 15, 18, 0.08); font-family: "Prata", serif; font-size: 120px; line-height: 0.8; }
.cart-empty strong { margin-top: -14px; font-size: 21px; font-weight: 400; }
.cart-empty p { color: rgba(13, 15, 18, 0.5); font-size: 11px; }
.cart-drawer > section > footer { padding: 22px 24px 28px; border-top: 1px solid var(--line); }
.cart-drawer > section > footer > div { display: flex; align-items: baseline; justify-content: space-between; }
.cart-drawer > section > footer span { color: rgba(13, 15, 18, 0.52); font-size: 10px; }
.cart-drawer > section > footer strong { font-family: "Prata", serif; font-size: 28px; font-weight: 400; }
.cart-drawer > section > footer > button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 10px 0 18px;
  border-radius: 28px;
  background: var(--tomato);
  color: #fff;
  font-size: 11px;
}

.cart-drawer > section > footer > button:disabled { cursor: default; opacity: 0.35; }
.cart-drawer > section > footer > button svg { width: 31px; height: 31px; padding: 7px; border-radius: 50%; background: #fff; color: var(--ink); }

.booking-dialog {
  width: min(720px, calc(100vw - 30px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.35);
}

.booking-dialog::backdrop { background: rgba(5, 6, 8, 0.76); }
.booking-dialog[open] { animation: dialogIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes dialogIn { from { opacity: 0; transform: translateY(30px) scale(0.97); } }
.booking-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 28px; }
.booking-fields label { display: grid; gap: 8px; }
.booking-fields label:nth-child(n+4) { grid-column: span 1; }
.booking-fields label:nth-child(5) { grid-column: span 2; }
.booking-fields label span { color: rgba(13, 15, 18, 0.48); font-size: 9px; }
.booking-fields input,
.booking-fields select { width: 100%; height: 45px; border: 0; border-bottom: 1px solid rgba(13, 15, 18, 0.3); border-radius: 0; background: transparent; color: var(--ink); outline: 0; }
.booking-submit {
  display: flex;
  width: calc(100% - 56px);
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  margin: 0 28px 28px;
  padding: 0 10px 0 18px;
  border-radius: 28px;
  background: var(--blue);
  color: #fff;
}

.booking-submit svg { width: 31px; height: 31px; padding: 7px; border-radius: 50%; background: #fff; color: var(--ink); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 1900;
  max-width: calc(100vw - 32px);
  padding: 12px 17px;
  border-radius: 24px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show { opacity: 1; transform: translate(-50%, 0); }

[data-reveal] {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(38px);
  transition: opacity 0.8s ease, filter 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.85, 0.2, 1);
}

[data-reveal].revealed { opacity: 1; filter: blur(0); transform: translateY(0); }

@media (max-width: 1100px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof blockquote { margin-top: 70px; }
  .proof-hours { margin-top: 70px; }
  .pizza-card { width: min(720px, 72vw); }
  .pizza-add { left: calc(100% + 20px); min-width: 125px; }
  .kitchen-section { grid-template-columns: 0.85fr 1.15fr; }
}

@media (max-width: 760px) {
  .cursor { display: none; }
  .topbar { left: 8px; right: 8px; top: 8px; grid-template-columns: 1fr auto; }
  .mini-brand { display: none; }
  .nav-capsule { min-height: 40px; }
  .nav-capsule button { min-height: 30px; padding: 0 9px; font-size: 8px; }
  .nav-capsule button:nth-child(3),
  .nav-capsule button:nth-child(4) { display: none; }
  .book-pill { display: none; }
  .cart-pill { min-width: 96px; min-height: 40px; padding-left: 12px; }

  .hero { height: 145svh; }
  .hero-sticky { min-height: 610px; }
  .hero-image { object-position: 58% center; }
  .hero-tint { background: linear-gradient(90deg, rgba(7, 8, 10, 0.72), rgba(7, 8, 10, 0.05)), linear-gradient(180deg, rgba(0,0,0,.2), transparent 50%, rgba(0,0,0,.75)); }
  .hero-copy { left: 16px; top: 105px; width: calc(100vw - 32px); }
  .hero-kicker { font-size: 8px; }
  .hero-copy h1 { display: grid; width: max-content; font-size: clamp(64px, 25vw, 100px); }
  .hero-copy h1 strong { margin: 8px 0 0 42px; font-size: 0.4em; }
  .hero-copy > p { margin: 28px 0 0 38px; font-size: 18px; }
  .hero-actions { margin: 22px 0 0 38px; }
  .hero-actions button { min-height: 46px; gap: 18px; padding-left: 14px; font-size: 9px; }
  .hero-actions button:nth-child(2) { display: none; }
  .hero-stamp { display: none; }
  .hero-temperature { right: 15px; bottom: 16%; }
  .hero-temperature strong { font-size: 50px; }
  .hero-scroll { display: none; }
  .next-taste { height: 50px; grid-template-columns: repeat(2, 1fr); }
  .next-taste span:nth-child(n+3) { display: none; }

  .proof { min-height: 1500px; padding: 90px 16px 110px; }
  .proof-heading { grid-template-columns: 1fr; }
  .proof-heading h2 { margin-top: 20px; font-size: 44px; }
  .proof-grid { grid-template-columns: 1fr; gap: 45px; margin-top: 70px; }
  .proof-photo { min-height: 450px; }
  .proof-photo img { height: 450px; }
  .proof-number { padding-top: 0; }
  .proof-number p { margin-top: 20px; }
  .proof blockquote { margin: 10px 0 0; }
  .proof-hours { min-height: 260px; margin-top: 0; }

  .deck-opening { min-height: 900px; padding: 90px 16px 0; }
  .deck-opening-copy { grid-template-columns: 1fr; }
  .deck-opening-copy h2 { margin-top: 20px; font-size: 50px; }
  .deck-opening-copy p { grid-column: 1; }
  .deck-tabs { height: 75px; grid-template-columns: repeat(3, 1fr); }
  .deck-tabs span { padding: 0 10px; font-size: 12px; }
  .deck-tabs span:nth-child(n+4) { display: none; }

  .deck-zone { min-height: 610svh; }
  .deck-fixed-title { top: 12vh; font-size: 52px; }
  .deck-progress { left: 14px; top: calc(100svh - 44px); width: 180px; }
  .pizza-stack { padding-top: 25svh; }
  .pizza-card { top: 19svh; width: calc(100vw - 24px); height: 62svh; min-height: 430px; margin-bottom: 68svh; }
  .pizza-media { border-radius: 7px; }
  .pizza-name { left: 18px; right: 18px; bottom: 18px; }
  .pizza-name h3 { font-size: 39px; }
  .pizza-name p { font-size: 10px; }
  .pizza-add {
    left: auto;
    right: 12px;
    top: auto;
    bottom: -64px;
    min-width: 142px;
    background: var(--paper);
    color: var(--ink);
    transform: none;
  }
  .pizza-add svg { background: var(--tomato); color: #fff; }
  .pizza-add.added { transform: scale(1.04); }

  .cutter-section { height: 230svh; }
  .cutter-sticky { min-height: 610px; }
  .cutter-copy { left: 16px; top: 12%; width: calc(100vw - 32px); }
  .cutter-copy h2 { font-size: 43px; }
  .cutter-copy p { display: none; }
  .cutter-spec { right: 16px; top: auto; bottom: 12%; }
  .cutter-spec strong { margin-top: 12px; font-size: 45px; }

  .kitchen-section { display: block; min-height: 1300px; padding: 100px 16px 150px; }
  .kitchen-photo { width: 78vw; height: 560px; margin: 0 auto; }
  .kitchen-copy { margin-top: 75px; }
  .kitchen-copy h2 { font-size: 49px; }
  .kitchen-copy p { font-size: 12px; }
  .kitchen-facts { margin-top: 50px; }
  .kitchen-facts strong { font-size: 26px; }
  .kitchen-links { height: 80px; }
  .kitchen-links span { padding: 0 12px; font-size: 13px; }

  .visit-section { min-height: 850px; }
  .visit-section > img { object-position: 63% center; }
  .visit-shade { background: rgba(7, 8, 10, 0.58); }
  .visit-copy { left: 16px; width: calc(100vw - 32px); }
  .visit-copy h2 { font-size: 52px; }
  .visit-copy p { font-size: 16px; }
  .visit-label { left: 16px; right: 16px; }

  .footer { min-height: 330px; grid-template-columns: 1fr auto; padding: 60px 16px 80px; }
  .footer-word { font-size: 59px; }
  .footer-meta { grid-column: 1; }
  .footer > button { grid-column: 2; grid-row: 1 / span 2; align-self: end; }

  .booking-dialog { width: calc(100vw - 12px); }
  .booking-fields { grid-template-columns: 1fr 1fr; padding: 20px; }
  .booking-fields label:nth-child(n+4),
  .booking-fields label:nth-child(5) { grid-column: 1 / -1; }
  .booking-submit { width: calc(100% - 40px); margin: 0 20px 20px; }
}

@media (max-height: 680px) and (max-width: 760px) {
  .hero-copy > p { display: none; }
  .hero-actions { margin-top: 22px; }
  .hero-temperature { bottom: 13%; }
}

@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

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