/* Pizza Alla Porta — Multi-page scroll editorial */

:root {
  /* Scraped from pizzaallaporta.square.site */
  --ink: #000000;
  --ink-soft: #ffffff;
  --cream: #000000;
  --linen: #0a0a0a;
  --ash: #a8a8a8;
  --terracotta: #e1af5d;
  --gold: #e1af5d;
  --gold-soft: rgba(225, 175, 93, 0.35);
  --border: #1f1f1f;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 80px;
  --section-pad: clamp(1.25rem, 4vw, 3rem);
  --font-serif: "Pozra Libre", Georgia, serif;
  --font-sans: "Work Sans", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--ink); }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(225, 175, 93, 0.35); color: #fff; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); padding: 0 var(--section-pad);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  transition: background 0.4s var(--ease-out), color 0.4s;
}

.site-header.is-dark {
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: var(--border);
  color: var(--ink-soft);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1;
  color: var(--ink-soft);
}

.site-nav { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 1.75rem); }

.site-nav a {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.65; transition: opacity 0.25s;
}

.site-nav a:hover, .site-nav a.is-active { opacity: 1; }
.site-nav a.is-active { color: var(--gold); }
.site-header.is-dark .site-nav a.is-active { color: var(--gold); }

.nav-cta {
  padding: 0.5rem 1rem; border: 1px solid currentColor; opacity: 1 !important;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.menu-toggle img {
  width: 40px;
  height: 40px;
  display: block;
  transform-origin: 50% 62%;
  transition: transform 0.35s var(--ease-out), opacity 0.25s var(--ease-out);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  opacity: 1;
}

.menu-toggle:hover img,
.menu-toggle:focus-visible img {
  transform: rotate(-8deg) translateY(-1px);
}

.menu-toggle[aria-expanded="true"] img {
  transform: rotate(-14deg) scale(1.03);
}

.menu-toggle[aria-expanded="false"] img {
  transform: none;
}

/* Shared typography */
.eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--terracotta);
}

.section { position: relative; }

.section-copy h2, .page-intro h1, .split-content h2,
.teasers-header h2, .faq-header h2, .cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500; line-height: 1.02; letter-spacing: -0.02em;
  color: var(--ink-soft);
}

.section-copy p { margin-top: 1.25rem; max-width: 28rem; font-size: 1.05rem; line-height: 1.75; color: var(--ash); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: transform 0.35s var(--ease-out), background 0.35s, color 0.35s;
}

.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: #f0c06a; transform: translateY(-2px); }

.btn-outline {
  margin-top: 1.5rem; border: 1px solid var(--gold); color: var(--gold);
  padding: 0.75rem 1.25rem;
}

.btn-outline:hover { background: var(--gold); color: var(--ink); }

/* Wheel hero — scrolling story + sticky rotating image panel */
.wheel-hero {
  position: relative;
  min-height: 360vh;
  background: var(--cream);
  overflow: visible;
}

body[data-page="menus"] .wheel-hero {
  min-height: 100vh;
}

body[data-page="menus"] .wheel-hero-layout {
  min-height: 100vh;
}



.wheel-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: 360vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 0 clamp(4rem, 9vw, 7rem);
}



.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.65rem, 5.4vw, 4.6rem);
  font-weight: 600;
  line-height: 0.98;
  margin-top: 1rem;
  color: var(--ink-soft);
}

.hero-title em { font-style: normal; color: var(--gold); }



.hero-story {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: clamp(2.5rem, 6vw, 4rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}



.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(3rem, 9vh, 6rem) 0;
  opacity: 0.44;
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}

.hero-card.is-active {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="menus"] .hero-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}
body[data-page="menus"] .hero-card.is-active {
  background: transparent;
  border-color: transparent;
}



.hero-card-copy {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ash);
}

.hero-card .btn { margin-top: 1.75rem; align-self: flex-start; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-actions .btn { margin-top: 0; }

.hero-card:not([data-index="0"]) .hero-title {
  font-size: clamp(2.25rem, 4.2vw, 3.7rem);
}

.hero-steps,
.hero-detail-list {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
  max-width: 32rem;
}

.hero-steps li,
.hero-detail-list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.hero-detail-list li {
  display: block;
  grid-template-columns: none;
}

.hero-steps li:first-child,
.hero-detail-list li:first-child {
  padding-top: 0;
  border-top: none;
}

.hero-steps .step-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.2;
}

.hero-steps strong,
.hero-detail-list strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
  color: var(--ink-soft);
}

.hero-steps span {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ash);
}

.hero-detail-meta {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.hero-detail-list p {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ash);
}

.pizza-wheel-panel {
  --pizza-size: clamp(500px, 52vw, 750px);
  --wheel-slot-x: calc(100% - clamp(4rem, 14vw, 11rem));
  position: relative;
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(
    circle calc(var(--pizza-size) / 2) at var(--wheel-slot-x) 50%,
    #000 92%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle calc(var(--pizza-size) / 2) at var(--wheel-slot-x) 50%,
    #000 92%,
    transparent 100%
  );
}

.pizza-wheel {
  --radius: clamp(560px, 78vh, 950px);
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: calc(var(--wheel-slot-x) + var(--radius));
  transform-origin: 0 0;
  will-change: transform;
}

.pizza-arm {
  --angle: 0deg;
  position: absolute;
  width: var(--pizza-size);
  height: var(--pizza-size);
  left: 0;
  top: 0;
  margin-left: calc(var(--pizza-size) / -2);
  margin-top: calc(var(--pizza-size) / -2);
  transform:
    rotate(var(--angle))
    translateY(calc(-1 * var(--radius)))
    rotate(calc(-1 * var(--angle)));
}

.pizza-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #1a120d;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
}

.pizza-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wheel-scroll-hint {
  position: sticky;
  bottom: 1.25rem;
  left: clamp(4rem, 9vw, 7rem);
  display: inline-block;
  margin-left: clamp(4rem, 9vw, 7rem);
  margin-bottom: 1.25rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}

/* Home hero right panel: flip-style spinning logo + pizza cards (moved from menus bottom rotation) */
.pizza-wheel-panel:has(.rotation-stage) {
  /* override mask for flip style on home */
  -webkit-mask-image: none;
  mask-image: none;
}
.pizza-wheel-panel .rotation-stage {
  perspective: 1200px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pizza-wheel-panel .rotation-carousel {
  width: min(391px, 78%);
  height: min(391px, 78%);
  position: relative;
  transform-style: preserve-3d;
}
.pizza-wheel-panel .pizza-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.pizza-wheel-panel .pizza-card .pizza-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #1a120d;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
}
.pizza-wheel-panel .logo-pizza-card .pizza-disc {
  background:
    radial-gradient(circle at 50% 45%, rgba(225, 175, 93, 0.2), transparent 58%),
    #050505;
  border: 1px solid var(--gold-soft);
  display: grid;
  place-items: center;
}
.pizza-wheel-panel .logo-disc img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}
.pizza-wheel-panel .pizza-card .pizza-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Menu dial (right column): radial spinning pizza wheel acting as dial across menu items (moved/adapted from home) */
.menu-dial {
  --pizza-size: clamp(200px, 92%, 280px);
  --wheel-slot-x: 50%;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  height: 420px;
  min-height: 260px;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(
    circle calc(var(--pizza-size) / 1.65) at 50% 52%,
    #000 86%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle calc(var(--pizza-size) / 1.65) at 50% 52%,
    #000 86%,
    transparent 100%
  );
}
.menu-dial .pizza-wheel {
  --radius: clamp(280px, 68vh, 380px);
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: calc(var(--wheel-slot-x) + var(--radius));
  transform-origin: 0 0;
  will-change: transform;
}
.menu-dial .pizza-arm {
  --angle: 0deg;
  position: absolute;
  width: var(--pizza-size);
  height: var(--pizza-size);
  left: 0;
  top: 0;
  margin-left: calc(var(--pizza-size) / -2);
  margin-top: calc(var(--pizza-size) / -2);
  transform:
    rotate(var(--angle))
    translateY(calc(-1 * var(--radius)))
    rotate(calc(-1 * var(--angle)));
}
.menu-dial .pizza-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #1a120d;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}
.menu-dial .pizza-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page intro (inner pages) */
.page-intro {
  padding: 4rem var(--section-pad) 3rem;
  max-width: 800px;
}

.page-intro h1 { font-family: var(--font-serif); font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 500; line-height: 1.02; color: var(--ink-soft); }
.page-intro h1 em { font-style: italic; color: var(--terracotta); }
.page-intro-copy { margin-top: 1.25rem; font-size: 1.1rem; line-height: 1.75; color: var(--ash); max-width: 32rem; }



/* Slice-pull hero (used on about page) */
.slice-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: var(--ink);
  color: var(--ink-soft);
  overflow: hidden;
}

.slice-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem var(--section-pad);
  isolation: isolate;
}

.slice-copy {
  position: relative;
  z-index: 2;
  max-width: min(40rem, 100%);
}

.slice-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}

.slice-copy h1 em { font-style: normal; color: var(--gold); }

.slice-lead {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ash);
}

.slice-hint {
  margin-top: 1.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}

.slice-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: screen;
  overflow: hidden;
}

.slice-stack {
  position: relative;
  width: min(480px, 72vw);
  aspect-ratio: 1;
  margin-right: clamp(-3rem, -6vw, -1rem);
}

.slice-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  will-change: transform;
  pointer-events: none;
  user-select: none;
}

.menu-page-intro {
  padding: clamp(3rem, 6vh, 4.5rem) var(--section-pad) 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.menu-page-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
  margin-top: 0.75rem;
  color: var(--ink-soft);
}

.menu-page-intro p {
  margin-top: 0.85rem;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ash);
}

.menu-page-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.menu-page-jumps .btn-outline { margin-top: 0; }

.menu-page {
  background: var(--cream);
}

/* (section-rotation styles removed — animation moved and adapted inline to home/menu) */

/* rotation base styles retained for the home hero visual (pizza-cards) */
.rotation-stage {
  display: flex; align-items: center; justify-content: center;
  perspective: 1200px; min-height: 55vh;
}

.rotation-carousel {
  position: relative;
  width: min(400px, 75vw);
  height: min(400px, 75vw);
  transform-style: preserve-3d;
}

.pizza-card {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transform-style: preserve-3d; backface-visibility: hidden;
}

.pizza-card .pizza-disc {
  width: 100%;
  height: 100%;
}

.pizza-tag {
  position: absolute; bottom: -1.25rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}

.logo-pizza-card .pizza-disc,
.logo-disc {
  background:
    radial-gradient(circle at 50% 45%, rgba(225, 175, 93, 0.2), transparent 58%),
    #050505;
  border: 1px solid var(--gold-soft);
  display: grid;
  place-items: center;
}

.logo-disc img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}

/* Teasers */
.section-teasers {
  padding: clamp(4rem, 8vh, 6rem) var(--section-pad);
  background: var(--linen);
}

.teasers-header { max-width: 600px; margin-bottom: 2.5rem; }
.teasers-header h2 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 500; line-height: 1.05; margin-top: 1rem; color: var(--ink-soft); }

.teasers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  max-width: 1200px;
}

.teaser-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.75rem; background: var(--linen);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.teaser-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.teaser-num { font-family: var(--font-serif); font-size: 2rem; color: var(--terracotta); opacity: 0.45; }
.teaser-card h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--ink-soft); }
.teaser-card p { font-size: 0.9rem; line-height: 1.65; color: var(--ash); flex: 1; }
.teaser-link { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-top: 0.5rem; }

.teasers-cta { margin-top: 2.5rem; text-align: center; }

/* Menu stack hero */
.section-menu-stack {
  background: var(--linen);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding-top: 2rem;
  min-height: 100vh; overflow: hidden;
}

.menu-stack-copy { padding: 0 var(--section-pad); z-index: 5; }

.menu-stack-stage {
  position: relative;
  width: min(520px, 90vw); height: 400px;
  margin-top: 2.5rem;
}

.menu-card {
  position: absolute; left: 50%; top: 50%; width: 100%;
  padding: 2rem 2.25rem; background: var(--cream);
  border: 1px solid var(--border); text-align: left;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  will-change: transform;
}

.menu-card-num { font-family: var(--font-serif); font-size: 2.5rem; color: var(--terracotta); opacity: 0.5; }
.menu-card h3 { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 600; margin-top: 0.5rem; color: var(--ink-soft); }
.menu-card p { margin-top: 0.75rem; font-size: 0.95rem; line-height: 1.65; color: var(--ash); }
.menu-card-price { display: inline-block; margin-top: 1rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); }

/* Menu page layout */
.menu-page {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem var(--section-pad) 5rem;
  align-items: start;
}

/* Override for current menu page (no sidebar, straight to 3-col square cards) */
body[data-page="menus"] .menu-page {
  grid-template-columns: 1fr;
  padding: 1rem var(--section-pad) 3rem;
}

.menu-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  max-height: calc(100vh - var(--header-h) - 3rem);
  overflow-y: auto;
  padding-right: 0.5rem;
}

.sidebar-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ash); margin-bottom: 1rem;
}

.sidebar-group { margin-bottom: 1.25rem; }

.sidebar-group-link {
  display: block; font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.sidebar-group-link:hover, .sidebar-section-link.is-active { color: var(--terracotta); }

.menu-sidebar ul { list-style: none; padding-left: 0.75rem; }

.menu-sidebar li { margin-bottom: 0.3rem; }

.sidebar-section-link {
  font-size: 0.82rem; color: var(--ash);
  transition: color 0.2s;
}

.sidebar-section-link:hover { color: var(--ink-soft); }
.sidebar-section-link.is-active { color: var(--terracotta); font-weight: 500; }

.menu-content { min-width: 0; }

.menu-group { margin-bottom: 4rem; scroll-margin-top: calc(var(--header-h) + 1rem); }

.menu-group-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.menu-group-header h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; margin-top: 0.5rem; color: var(--ink-soft); }
.menu-group-intro { margin-top: 0.75rem; color: var(--ash); line-height: 1.7; max-width: 36rem; }
.menu-group-price { display: inline-block; margin-top: 0.75rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); }

.menu-section { margin-bottom: 2.5rem; scroll-margin-top: calc(var(--header-h) + 1rem); }

.menu-section-title {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600;
  margin-bottom: 1.25rem; color: var(--ink-soft);
}

.menu-items { display: grid; gap: 1rem; }

.menu-item {
  padding: 1.25rem 1.5rem;
  background: var(--linen);
  border: 1px solid var(--border);
  transition: border-color 0.25s;
}

.menu-item:hover { border-color: var(--gold-soft); }

.menu-item h4 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--ink-soft); }
.menu-item-ingredients { margin-top: 0.35rem; font-size: 0.82rem; color: var(--terracotta); font-weight: 500; }
.menu-item-desc { margin-top: 0.5rem; font-size: 0.92rem; line-height: 1.65; color: var(--ash); }

/* Menu page styles: simple hero copy (liked), 3-col square cards for menu items */
.menu-hero {
  padding: 2rem var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
}
.menu-hero .hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
}

.menu-with-wheel {
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-pad) 3rem;
  align-items: start;
  position: relative;
  isolation: isolate;
}

.menu-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-pad) 3rem;
  position: relative;
  z-index: 1;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.menu-item {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--linen);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  overflow: hidden;
}

.menu-item h4 {
  font-size: 0.95rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.menu-item-ingredients {
  font-size: 0.7rem;
  margin-bottom: 0.25rem;
}

.menu-item-desc {
  font-size: 0.75rem;
  line-height: 1.3;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.menu-group {
  margin-bottom: 1.5rem;
}

.menu-group-header {
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
}

.menu-group-header h2 {
  font-size: 1rem;
  margin: 0;
}

.menu-section-title {
  display: none;
}



/* Split sections */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  padding: 3rem var(--section-pad) 4rem; max-width: 1200px; margin: 0 auto;
  align-items: center;
}

.split-reverse .split-media { order: 2; }
.split-reverse .split-content { order: 1; }

.split-media { overflow: hidden; aspect-ratio: 4/5; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.split-content h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; line-height: 1.05; color: var(--ink-soft); }
.split-content p { margin-top: 1rem; line-height: 1.75; color: var(--ash); }
.split-content .btn { margin-top: 1.5rem; }

/* Gallery grid */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  padding: 0 var(--section-pad) 4rem; max-width: 1200px; margin: 0 auto;
}

.gallery-grid-item { overflow: hidden; }
.gallery-grid-item.gallery-wide { grid-column: span 2; }
.gallery-grid-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-grid-item:hover img { transform: scale(1.04); }

.gallery-grid-item figcaption { margin-top: 0.75rem; display: grid; gap: 0.2rem; }
.gallery-grid-item strong { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ink-soft); }
.gallery-grid-item span { font-size: 0.88rem; color: var(--ash); }

/* Packages */
.section-packages { padding: 2rem var(--section-pad) 4rem; background: var(--linen); }

.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  max-width: 1200px; margin: 0 auto;
}

.package-card {
  position: relative; padding: 2rem; background: var(--cream);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.4rem;
  color: var(--ink-soft);
}

.package-featured { border-color: var(--gold); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); transform: translateY(-6px); }
.package-badge { position: absolute; top: -0.6rem; left: 50%; transform: translateX(-50%); padding: 0.3rem 0.75rem; background: var(--gold); color: var(--ink); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.package-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--ink-soft); }
.package-price { font-size: 1.05rem; color: var(--terracotta); font-weight: 500; }
.package-guests { font-size: 0.85rem; color: var(--ash); }
.package-highlight { font-weight: 500; margin-top: 0.35rem; color: var(--ink-soft); }
.package-card ul { list-style: none; margin-top: 0.75rem; display: grid; gap: 0.35rem; flex: 1; }
.package-card li { font-size: 0.88rem; color: var(--ash); padding-left: 0.85rem; position: relative; }
.package-card li::before { content: "·"; position: absolute; left: 0; color: var(--terracotta); }
.package-for { margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); }

/* Experience */
.section-experience { background: var(--ink); color: var(--ink-soft); padding: clamp(4rem, 8vh, 6rem) var(--section-pad); }

.experience-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem;
  max-width: 1200px; margin: 0 auto; align-items: center;
}

.experience-media { overflow: hidden; aspect-ratio: 4/5; }
.experience-media img { width: 100%; height: 100%; object-fit: cover; }

.experience-content .eyebrow { color: var(--gold); }
.experience-content h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; line-height: 1.05; margin-top: 1rem; color: var(--ink-soft); }

.experience-steps { list-style: none; margin-top: 2rem; display: grid; gap: 1.25rem; }
.experience-steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(247,239,226,0.12); }
.experience-steps .step-num { font-family: var(--font-serif); font-size: 1.75rem; color: var(--gold); }
.experience-steps strong { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; display: block; color: var(--ink-soft); }
.experience-steps span { font-size: 0.9rem; line-height: 1.65; color: rgba(247,239,226,0.62); }

/* FAQ */
.section-faq { padding: 4rem var(--section-pad); max-width: 800px; margin: 0 auto; }
.faq-header h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 0.75rem; }
.faq-list { margin-top: 2rem; display: grid; gap: 0.5rem; }

.faq-item { border: 1px solid var(--border); background: #111111; }
.faq-item button {
  width: 100%; text-align: left; padding: 1.15rem 1.25rem;
  font-family: var(--font-sans); font-size: 1.02rem; font-weight: 500;
  line-height: 1.45; letter-spacing: 0.01em;
  color: #ffffff;
  background: transparent; border: none;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.2s;
}

.faq-item button:hover,
.faq-item.is-open button { color: var(--gold); }

.faq-item button::after {
  content: "+"; flex-shrink: 0;
  font-family: var(--font-sans); font-size: 1.35rem; font-weight: 300;
  color: var(--gold); transition: transform 0.25s;
}
.faq-item.is-open button::after { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-item.is-open .faq-answer { max-height: 240px; }
.faq-answer p { padding: 0 1.25rem 1.15rem; font-size: 0.95rem; line-height: 1.7; color: var(--ash); }

/* CTA band */
.cta-band {
  text-align: center; padding: 4rem var(--section-pad);
  background: var(--linen);
}

.cta-band h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }

/* Contact */
.section-inquire { background: var(--ink); color: var(--ink-soft); padding: clamp(4rem, 8vh, 6rem) var(--section-pad); min-height: calc(100vh - var(--header-h)); }

.inquire-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem;
  max-width: 1100px; margin: 0 auto; align-items: start;
}

.inquire-content .eyebrow { color: var(--gold); }
.inquire-content h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 500; line-height: 1.05; color: var(--ink-soft); }
.inquire-content > p { margin-top: 1.25rem; color: rgba(247,239,226,0.62); line-height: 1.75; }

.inquire-links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2rem; }
.inquire-links a { font-size: 0.85rem; border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; }
.inquire-links a:hover { color: var(--gold); }

.inquire-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.inquire-form label { display: grid; gap: 0.35rem; }
.inquire-form label span { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,239,226,0.5); }
.inquire-form input, .inquire-form select, .inquire-form textarea {
  padding: 0.8rem 1rem; background: rgba(247,239,226,0.06);
  border: 1px solid rgba(247,239,226,0.12); color: var(--ink-soft);
}
.inquire-form input::placeholder,
.inquire-form textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.inquire-form select option { background: #111; color: #fff; }
.inquire-form input:focus, .inquire-form select:focus, .inquire-form textarea:focus { outline: none; border-color: var(--gold); }
.inquire-form input[type="date"],
.inquire-form input[type="time"] { color-scheme: dark; }
.inquire-form input[type="date"]::-webkit-calendar-picker-indicator,
.inquire-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.6);
  opacity: 1;
  cursor: pointer;
}
.inquire-form .btn-primary { margin-top: 0.5rem; }
.inquire-form .btn-primary:hover { background: #f0c06a; }

/* Footer */
.site-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: 2rem var(--section-pad); background: var(--ink);
  color: rgba(255, 255, 255, 0.45); font-size: 0.8rem;
  border-top: 1px solid var(--border);
}

.footer-logo { height: 48px; width: auto; opacity: 0.9; }

.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 960px) {
  .slice-layout {
    text-align: center;
    padding-top: 1.5rem;
  }

  .slice-lead { margin-left: auto; margin-right: auto; }
  .slice-stage {
    justify-content: center;
    opacity: 0.18;
  }
  .slice-stack {
    width: min(360px, 88vw);
    margin-right: 0;
  }
  .menu-page-jumps { justify-content: center; }

  .wheel-hero-layout, .split-section,
  .experience-grid, .inquire-grid, .menu-page { grid-template-columns: 1fr; }

  .wheel-hero {
    min-height: auto;
  }

  .wheel-hero-layout {
    min-height: auto;
    padding: 0 var(--section-pad);
  }

  .wheel-scroll-hint {
    left: var(--section-pad);
    margin-left: var(--section-pad);
  }

  .split-reverse .split-media, .split-reverse .split-content { order: unset; }
  .teasers-grid, .packages-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid-item.gallery-wide { grid-column: span 1; }
  .package-featured { transform: none; }

  .menu-sidebar {
    position: relative; top: 0; max-height: none;
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    padding-bottom: 1rem; border-bottom: 1px solid var(--border);
  }

  .menu-sidebar .sidebar-label { width: 100%; }
  .sidebar-group { margin-bottom: 0; }
  .sidebar-group ul { display: none; }
  .sidebar-group-link { font-size: 0.9rem; padding: 0.4rem 0.75rem; background: var(--linen); border-radius: 2px; }

  .site-nav { display: none; position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; padding: 2rem; background: #000; border-bottom: 1px solid var(--border); }
  .site-nav.is-open { display: flex; }
  .menu-toggle { display: flex; }

  .menu-with-wheel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-page {
    grid-row: 1;
    grid-column: 1;
    padding-top: clamp(8rem, 34vw, 12rem);
    background: transparent;
  }

  .pizza-wheel-panel {
    --pizza-size: clamp(280px, 84vw, 420px);
    --wheel-slot-x: 50%;
    grid-row: 1;
    grid-column: 1;
    justify-self: center;
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 0.5rem);
    left: auto;
    width: min(100vw, 520px);
    height: clamp(320px, 92vw, 470px);
    min-height: 0;
    margin: 0;
    margin-top: clamp(-1.5rem, -3vw, -0.25rem);
    margin-bottom: calc(clamp(320px, 92vw, 470px) * -0.72);
    max-width: none;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    transform: none;
    mix-blend-mode: screen;
    filter: saturate(0.88);
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .pizza-wheel-panel .rotation-carousel {
    width: min(260px, 68%);
    height: min(260px, 68%);
  }

  .pizza-wheel-panel .pizza-wheel {
    --radius: clamp(210px, 46vw, 280px);
    top: 52%;
    left: calc(var(--wheel-slot-x) + var(--radius));
  }

  .menu-group-header,
  .menu-section,
  .menu-items {
    background: transparent;
  }

  .menu-item {
    background: rgba(10, 10, 10, 0.62);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
  }

  .menu-dial {
    position: static;
    height: 240px;
    min-height: 180px;
    margin: 1.5rem 0;
  }
  .menu-dial .pizza-wheel {
    --radius: clamp(220px, 52vh, 300px);
  }

  .hero-story {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-card {
    min-height: auto;
    padding: clamp(3.5rem, 14vh, 6rem) 0;
    opacity: 1;
  }

  .hero-card:not([data-index="0"]) .hero-title {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
