/* ==========================================================================
   Pizza Rocks — Design System
   ========================================================================== */

:root {
  --charcoal: #0a0908;
  --charcoal-2: #14110d;
  --charcoal-3: #1d1812;
  --charcoal-line: rgba(201, 164, 87, 0.18);
  --gold: #c9a457;
  --gold-light: #e6c883;
  --gold-dim: #8a7239;
  --ivory: #f7f1e2;
  --ivory-2: #efe4c9;
  --ivory-line: rgba(20, 17, 13, 0.1);
  --tomato: #7a2a1f;
  --tomato-light: #9c3a29;
  --white: #ffffff;
  --text-on-dark: #ece5d6;
  --text-on-dark-dim: #b8ae99;
  --text-on-light: #1c1712;
  --text-on-light-dim: #5a5142;

  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 10px 40px rgba(201, 164, 87, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------------------------------- Type -------------------------------- */

h1, h2, h3, .font-serif { font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.01em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  margin-top: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-on-dark-dim);
  max-width: 640px;
  margin-top: 22px;
}
.section-light .section-lede { color: var(--text-on-light-dim); }

.gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
}
.gold-rule::before,
.gold-rule::after {
  content: "";
  height: 1px;
  width: 44px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.gold-rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.gold-rule span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ------------------------------- Sections -------------------------------- */

section { position: relative; }

.section-pad { padding: 128px 0; }
@media (max-width: 768px) { .section-pad { padding: 88px 0; } }

.section-dark { background: var(--charcoal); color: var(--text-on-dark); }
.section-panel { background: var(--charcoal-2); color: var(--text-on-dark); }
.section-light { background: var(--ivory); color: var(--text-on-light); }
.section-light h1, .section-light h2, .section-light h3 { color: var(--text-on-light); }
.section-light .eyebrow { color: var(--tomato); }
.section-light .eyebrow::before { background: var(--tomato); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--charcoal-line), transparent);
}

/* --------------------------------- Nav ----------------------------------- */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(10,9,8,0.9), rgba(10,9,8,0));
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.3s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  height: 70px;
  border-bottom: 1px solid var(--charcoal-line);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.site-nav.is-scrolled .brand img { height: 34px; }
@media (max-width: 560px) { .brand img { height: 34px; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-on-dark-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--charcoal-line);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10,9,8,0.98);
    border-top: 1px solid var(--charcoal-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
  }
  .nav-links.is-open { max-height: 520px; }
  .nav-links a {
    width: 100%;
    padding: 18px 28px;
    border-bottom: 1px solid var(--charcoal-line);
  }
  .nav-links a::after { display: none; }
  .nav-cta { padding: 20px 28px 26px; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: inline-flex; }
}

/* -------------------------------- Buttons -------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color .35s;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(120deg, var(--gold-dim), var(--gold), var(--gold-light));
  background-size: 220% 100%;
  background-position: 0% 0%;
  color: #16130f;
}
.btn-primary:hover {
  background-position: 100% 0%;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.btn-primary:hover::after { left: 130%; }

.btn-outline {
  background: transparent;
  border-color: var(--gold-dim);
  color: var(--ivory);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.section-light .btn-outline {
  border-color: rgba(28,23,18,0.3);
  color: var(--text-on-light);
}
.section-light .btn-outline:hover { border-color: var(--tomato); color: var(--tomato); }

.btn-sm { padding: 12px 34px; font-size: 12px; }

/* .nav-links a has higher specificity than .btn-sm and was stripping its padding — restore it here */
.nav-cta .btn { padding: 12px 34px; font-size: 12px; }

/* --------------------------------- Hero ----------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 90% at 20% 0%, #1c1710 0%, #0a0908 55%), var(--charcoal);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.flour-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: left; }
}

.hero-logo-mark {
  height: clamp(84px, 11vw, 128px);
  width: auto;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFade 1s var(--ease) 0.2s forwards;
}

.hero-lines { min-height: 190px; }
.hero-line {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.08;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(22px);
  animation: heroFade 0.9s var(--ease) forwards;
}
.hero-line.gold { color: var(--gold-light); }
.hero-line:nth-child(1) { animation-delay: 0.6s; }
.hero-line:nth-child(2) { animation-delay: 1.05s; }

.hero-micro {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(14px);
  animation: heroFade 0.9s var(--ease) 1.5s forwards;
}

.hero-sub {
  margin-top: 26px;
  max-width: 460px;
  font-size: 1.05rem;
  color: var(--text-on-dark-dim);
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 0.9s var(--ease) 1.9s forwards;
}

.hero-cta {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 0.9s var(--ease) 2.2s forwards;
}

.hero-tag {
  margin-top: 46px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  opacity: 0;
  animation: heroFade 0.9s var(--ease) 2.5s forwards;
}

@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

.hero-poster-wrap {
  position: relative;
  opacity: 0;
  transform: translateY(30px) rotate(2deg);
  animation: posterFade 1.1s var(--ease) 1s forwards;
}
@keyframes posterFade { to { opacity: 1; transform: translateY(0) rotate(0.6deg); } }

.hero-poster-frame {
  position: relative;
  border: 1px solid var(--charcoal-line);
  padding: 14px;
  background: linear-gradient(160deg, rgba(201,164,87,0.08), transparent 60%);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}
.hero-poster-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 2px;
}
.hero-poster-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(closest-side, rgba(201,164,87,0.18), transparent 70%);
  z-index: -1;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold-dim);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFade 1s var(--ease) 2.8s forwards;
}
.scroll-cue .line {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0.3); transform-origin: bottom; }
}

/* ------------------------------ Reveal utility ---------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.12s; }
.reveal-delay-2.is-visible { transition-delay: 0.24s; }
.reveal-delay-3.is-visible { transition-delay: 0.36s; }
.reveal-delay-4.is-visible { transition-delay: 0.48s; }
.reveal-delay-5.is-visible { transition-delay: 0.6s; }

/* ------------------------------ Surprise section --------------------------- */

.card-row {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 860px) { .card-row { grid-template-columns: 1fr; } }

.craft-card {
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-line);
  padding: 40px 32px;
  border-radius: 4px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow .5s var(--ease);
}
.craft-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-gold);
}
.craft-card .num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.craft-card h3 {
  font-size: 1.4rem;
  margin-top: 18px;
  color: var(--ivory);
}
.craft-card p {
  margin-top: 14px;
  color: var(--text-on-dark-dim);
  font-size: 0.98rem;
}
.craft-card .icon {
  width: 46px; height: 46px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 6px;
}

/* -------------------------------- Split layout ----------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split.reverse .split-media { order: 0; } }

.split-media { position: relative; }
.photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}
.photo::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(201,164,87,0.18);
}
.photo-tall { aspect-ratio: 4 / 5; }
.photo-wide { aspect-ratio: 16 / 10; }
.photo-square { aspect-ratio: 1 / 1; }

.photo-frame-line {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,164,87,0.35);
  pointer-events: none;
}

/* ----------------------------------- Dough ---------------------------------- */

.dough-words {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 40px;
}
.dough-words span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--gold-dim);
  transition: color 0.6s var(--ease), opacity 0.6s var(--ease);
  opacity: 0.35;
}
.dough-words span.is-visible { color: var(--gold-light); opacity: 1; }

.micro-copy {
  margin-top: 30px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
}
.micro-copy span { display: flex; align-items: center; gap: 8px; }
.micro-copy span::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* -------------------------------- Ingredients -------------------------------- */

.ingredient-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .ingredient-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ingredient-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }

.ingredient-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-line);
  display: flex;
  align-items: flex-end;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.ingredient-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(201,164,87,0.16), rgba(10,9,8,0.05) 60%);
  opacity: 0;
  transition: opacity 0.5s;
}
.ingredient-card:hover::before { opacity: 1; }
.ingredient-card .label {
  position: relative;
  z-index: 2;
  padding: 16px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ivory);
}
.ingredient-card .icon {
  position: absolute;
  top: 16px; right: 16px;
  color: var(--gold-dim);
  font-size: 22px;
  z-index: 2;
}

/* --------------------------------- How it works ------------------------------ */

.machine-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-top: 60px;
}
@media (max-width: 980px) { .machine-showcase { grid-template-columns: 1fr; } }

.machine-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.machine-image-wrap img {
  max-width: 340px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  transition: transform 0.2s linear;
}
.machine-image-wrap::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,164,87,0.16), transparent 70%);
  z-index: -1;
}

.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--charcoal-line);
  position: relative;
}
.step-item:first-child { padding-top: 0; }
.step-item .step-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  min-width: 52px;
}
.step-item h3 { font-size: 1.15rem; color: var(--ivory); }
.step-item p { margin-top: 8px; color: var(--text-on-dark-dim); font-size: 0.96rem; }

/* ---------------------------------- Menu -------------------------------------- */

.menu-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .menu-grid { grid-template-columns: 1fr; } }

.pizza-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--charcoal-line);
  background: var(--charcoal-2);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.pizza-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.pizza-media {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pizza-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.1) 55%);
}
.pizza-card.placeholder .pizza-media {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg, #17130e, #17130e 12px, #1c1710 12px, #1c1710 24px);
}
.pizza-card.placeholder .pizza-media svg { width: 64px; height: 64px; opacity: 0.5; }

/* Transparent-background pizza photography */
.pizza-media.is-transparent {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(201, 164, 87, 0.18), rgba(10, 9, 8, 0) 62%),
    radial-gradient(circle at 50% 120%, rgba(122, 42, 31, 0.22), rgba(10, 9, 8, 0) 60%),
    var(--charcoal-3);
}
.pizza-media.is-transparent::after { display: none; }
.pizza-photo {
  width: 94%;
  height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
  transform: scale(1) rotate(0deg);
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.pizza-card:hover .pizza-photo { transform: scale(1.07) rotate(-3deg); }

.pizza-body { padding: 26px 26px 30px; position: relative; }
.pizza-city {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.pizza-card h3 {
  font-size: 1.4rem;
  margin-top: 10px;
  color: var(--ivory);
}
.pizza-ingredients {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-on-dark-dim);
  transition: color 0.5s var(--ease);
}
.pizza-card:hover .pizza-ingredients,
.pizza-card:focus-within .pizza-ingredients {
  color: var(--ivory);
}
.pizza-tag {
  position: absolute;
  top: -18px; left: 26px;
  background: var(--charcoal);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}

/* -------------------------------- Craft/tech section ---------------------------- */

.craft-tech {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}
@media (max-width: 900px) { .craft-tech { grid-template-columns: 1fr; } }
.craft-tech .photo { aspect-ratio: 3/4; }
.craft-tech-line {
  width: 1px;
  height: 100%;
  min-height: 260px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  position: relative;
  justify-self: center;
}
.craft-tech-line span {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,164,87,0.15);
}
@media (max-width: 900px) { .craft-tech-line { width: 100%; height: 1px; min-height: 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); } }

/* ------------------------------------ Find pizza -------------------------------- */

.finder-panel {
  margin-top: 56px;
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-line);
  border-radius: 6px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .finder-panel { grid-template-columns: 1fr; padding: 32px 24px; } }

.search-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.search-row input {
  flex: 1;
}
.location-status {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.location-status .row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--charcoal-line);
  border-radius: 4px;
  font-size: 0.92rem;
  color: var(--text-on-dark-dim);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-dot.soon { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,164,87,0.18); }
.status-dot.live { background: #4caf6d; box-shadow: 0 0 0 4px rgba(76,175,109,0.18); }

/* ------------------------------------ Forms -------------------------------------- */

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
}
.section-light .field label { color: var(--text-on-light-dim); }

.field input,
.field select,
.field textarea {
  background: transparent;
  border: 1px solid var(--charcoal-line);
  border-radius: 3px;
  padding: 14px 16px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.96rem;
  transition: border-color 0.3s;
}
.section-light .field input,
.section-light .field select,
.section-light .field textarea {
  border-color: var(--ivory-line);
  color: var(--text-on-light);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .field.full { grid-column: 1 / -1; }

.form-note {
  font-size: 0.85rem;
  color: var(--text-on-dark-dim);
  margin-top: 4px;
}

.form-success {
  display: none;
  padding: 22px 24px;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-top: 18px;
}
.form-success.is-visible { display: block; }

/* -------------------------------------- FAQ ---------------------------------------- */

.faq-list { margin-top: 50px; max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--charcoal-line);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ivory);
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.faq-question .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  position: relative;
  transition: transform 0.4s var(--ease), border-color .4s;
}
.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.faq-question .plus::before { width: 10px; height: 1px; }
.faq-question .plus::after { width: 1px; height: 10px; }
.faq-item.is-open .plus { transform: rotate(135deg); border-color: var(--gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-answer p {
  padding-bottom: 26px;
  color: var(--text-on-dark-dim);
  max-width: 640px;
  font-size: 0.98rem;
}

/* -------------------------------------- Footer ---------------------------------------- */

.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--charcoal-line);
  padding: 90px 0 34px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }

.footer-logo { height: 84px; width: auto; margin-bottom: 22px; opacity: 0; transform: translateY(14px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.footer-logo.is-visible { opacity: 1; transform: translateY(0); }

.footer-tag { color: var(--gold-dim); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 22px; }
.footer-phrases p { color: var(--text-on-dark-dim); font-size: 0.95rem; margin-top: 6px; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 13px; }
.footer-col a { color: var(--text-on-dark-dim); font-size: 0.95rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--charcoal-line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-on-dark-dim);
}

/* -------------------------------------- Misc pages ------------------------------------- */

.page-hero {
  padding: calc(var(--nav-h) + 90px) 0 90px;
  background: radial-gradient(120% 100% at 15% 0%, #1c1710, #0a0908 60%);
  border-bottom: 1px solid var(--charcoal-line);
}
.page-hero .eyebrow { margin-bottom: 4px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 16px; max-width: 760px; }
.page-hero p.lede { margin-top: 20px; max-width: 620px; color: var(--text-on-dark-dim); font-size: 1.08rem; }

.legal-content { padding: 90px 0 120px; }
.legal-content .container { max-width: 860px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 56px; color: var(--ivory); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-on-dark-dim); font-size: 1rem; margin-top: 16px; }
.legal-content ul { margin-top: 16px; padding-left: 22px; list-style: disc; }
.legal-content li { margin-top: 8px; }
.legal-note {
  margin-top: 40px;
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: var(--charcoal-2);
  font-size: 0.92rem;
  color: var(--text-on-dark-dim);
}
.legal-updated { color: var(--gold-dim); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 22px; }

/* Partners page specific */

.pain-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 780px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-line);
  border-radius: 4px;
  padding: 34px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.pain-card:hover { transform: translateY(-6px); border-color: var(--gold-dim); }
.pain-card h3 {
  font-size: 1.2rem;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pain-card h3 .idx {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1rem;
}
.pain-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tomato-light); margin-top: 18px; }
.pain-card .pain-text { color: var(--text-on-dark-dim); font-size: 0.94rem; margin-top: 8px; }
.pain-label.solution { color: var(--gold); margin-top: 18px; }

.benefit-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit-item {
  border: 1px solid var(--charcoal-line);
  border-radius: 4px;
  padding: 22px;
  font-size: 0.92rem;
  color: var(--text-on-dark-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefit-item::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.stat-row {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.stat-item .num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--gold);
}
.stat-item .label {
  font-size: 0.85rem;
  color: var(--text-on-dark-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* Contact page */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 780px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-info-card {
  border: 1px solid var(--charcoal-line);
  border-radius: 4px;
  padding: 34px;
}
.contact-info-card h3 { color: var(--ivory); font-size: 1.2rem; }
.contact-info-card p { color: var(--text-on-dark-dim); margin-top: 12px; font-size: 0.95rem; }
.contact-info-card a.mail { color: var(--gold); margin-top: 16px; display: inline-block; font-weight: 600; }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.center-head { max-width: 720px; margin: 0 auto; text-align: center; }
.center-head .section-lede { margin-left: auto; margin-right: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
