:root {
  --red: #c83b1a;
  --red2: #a92e13;
  --gold: #b7903c;
  --cream: #f6eedf;
  --cream2: #eadcc4;
  --ink: #20201d;
  --muted: #6d665d;
  --white: #fffdf8;
  --line: rgba(32, 32, 29, 0.16);
  --font: "Arial Black", "Segoe UI", Arial, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
  --container: min(1220px, calc(100% - 48px));
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 16px/1.7 var(--body);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  padding: 120px 0;
}
.skip-link {
  position: fixed;
  z-index: 999;
  left: 15px;
  top: -80px;
  padding: 12px 18px;
  background: #fff;
}
.skip-link:focus {
  top: 15px;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker > span {
  width: 28px;
  height: 3px;
  background: currentColor;
}
.kicker.light {
  color: #e1c16f;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  margin-bottom: 28px;
  font-family: var(--font);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}
h2 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}
.lead {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.55;
}
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 13px 25px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.14);
}
.button-red {
  background: var(--red);
  color: #fff;
}
.button-red:hover {
  background: var(--red2);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-cream {
  background: var(--cream);
  color: var(--ink);
}
.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(246, 238, 223, 0.97);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled {
  position: fixed;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  animation: drop 0.3s ease;
}
@keyframes drop {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: none;
  }
}
.header-inner {
  display: grid;
  width: min(1360px, calc(100% - 40px));
  height: 102px;
  margin: auto;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  gap: 35px;
}
.brand img {
  width: 205px;
  height: auto;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}
.main-nav a {
  position: relative;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  transition: right 0.2s;
}
.main-nav a:hover::after {
  right: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  line-height: 1.25;
}
.header-phone small {
  display: block;
  color: var(--red);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phone-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
}
.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px;
  background: var(--ink);
}
.hero {
  position: relative;
  min-height: 880px;
  padding: 175px 0 80px;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 670px;
  height: 670px;
  right: -80px;
  top: 115px;
  border: 2px dashed rgba(183, 144, 60, 0.55);
  border-radius: 50%;
}
.hero-shape {
  position: absolute;
  background: var(--red);
  opacity: 0.13;
}
.shape-one {
  width: 420px;
  height: 280px;
  left: -160px;
  top: 155px;
  border-radius: 40% 60% 64% 36%/47% 34% 66% 53%;
  transform: rotate(18deg);
}
.shape-two {
  width: 260px;
  height: 220px;
  right: 27%;
  bottom: -120px;
  border-radius: 62% 38% 30% 70%/45% 65% 35% 55%;
  background: var(--gold);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: 45px;
}
.hero-copy {
  padding-bottom: 45px;
}
.hero h1 {
  font-size: clamp(4.7rem, 8.2vw, 8.6rem);
}
.hero h1 em {
  display: inline-block;
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -11px;
  width: 150px;
  height: 13px;
  border-top: 6px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-5deg);
}
.hero-text {
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.round-link {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 1.3rem;
  transition: 0.2s;
}
.round-link:hover {
  background: var(--ink);
  color: #fff;
}
.action-label {
  font-size: 0.67rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}
.pizza-ring {
  position: relative;
  width: min(590px, 46vw);
  aspect-ratio: 1;
  border: 18px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 25px 65px rgba(44, 35, 25, 0.25);
  overflow: hidden;
  transform: rotate(-5deg);
}
.pizza-ring::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px dashed rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}
.pizza-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.burst {
  position: absolute;
  z-index: 3;
  top: 25px;
  left: 0;
  display: grid;
  width: 145px;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  background: var(--red);
  color: #fff;
  clip-path: polygon(
    50% 0,
    59% 15%,
    74% 6%,
    77% 23%,
    94% 21%,
    86% 37%,
    100% 50%,
    85% 59%,
    94% 75%,
    76% 77%,
    73% 94%,
    58% 85%,
    50% 100%,
    41% 85%,
    25% 94%,
    23% 76%,
    6% 74%,
    15% 58%,
    0 50%,
    15% 41%,
    6% 25%,
    24% 23%,
    26% 6%,
    42% 15%
  );
  transform: rotate(-10deg);
}
.burst strong {
  font: 900 1.35rem/1 var(--font);
  text-transform: uppercase;
}
.burst span {
  font-size: 0.72rem;
  font-weight: 800;
}
.ingredient {
  position: absolute;
  color: var(--gold);
  font-size: 4rem;
}
.ingredient-one {
  right: 0;
  top: 80px;
}
.ingredient-two {
  left: 30px;
  bottom: 55px;
  color: var(--red);
  font-size: 2rem;
}
.hero-ticker {
  position: absolute;
  z-index: 4;
  right: -2%;
  bottom: 10px;
  left: -2%;
  padding: 16px 0;
  background: var(--red);
  color: #fff;
  transform: rotate(-2deg);
  overflow: hidden;
}
.hero-ticker div {
  width: max-content;
  font: 900 1.1rem/1 var(--font);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9vw;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 690px;
}
.photo-blob {
  overflow: hidden;
}
.photo-blob-main {
  position: absolute;
  inset: 20px 30px 70px 0;
  border-radius: 46% 54% 60% 40%/39% 42% 58% 61%;
  transform: rotate(-3deg);
}
.photo-blob img,
.photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-small {
  position: absolute;
  right: -30px;
  bottom: 25px;
  width: 48%;
  height: 270px;
  border: 12px solid var(--white);
  border-radius: 30px 30px 90px 30px;
  overflow: hidden;
  transform: rotate(6deg);
}
.round-stamp {
  position: absolute;
  z-index: 2;
  right: -28px;
  top: 30px;
  display: flex;
  width: 130px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(8deg);
}
.round-stamp strong {
  font: 900 1.6rem var(--font);
}
.about-copy > p:not(.kicker) {
  color: var(--muted);
}
.feature-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0;
}
.feature-pills span {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}
.why {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.why::after {
  content: "PIZZA";
  position: absolute;
  right: -20px;
  bottom: -90px;
  color: rgba(255, 255, 255, 0.035);
  font: 900 15rem/1 var(--font);
}
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  align-items: center;
}
.why-copy > p:not(.kicker) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.68);
}
.why h2 em {
  color: #e1c16f;
}
.check-list {
  display: grid;
  margin: 35px 0 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e1c16f;
}
.why-visual {
  padding: 35px;
}
.tilt-card {
  position: relative;
  height: 570px;
  border: 14px solid #fff;
  border-radius: 35px;
  box-shadow: 25px 25px 0 var(--red);
  overflow: hidden;
  transform: rotate(4deg);
}
.tilt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tilt-card span {
  position: absolute;
  right: 25px;
  bottom: 22px;
  padding: 16px 20px;
  border-radius: 10px;
  background: var(--gold);
  color: #fff;
  font: 900 1.3rem/1.05 var(--font);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
}
.flavours {
  background: var(--cream);
}
.section-heading {
  display: flex;
  margin-bottom: 60px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading > p {
  max-width: 390px;
  color: var(--muted);
}
.flavour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.flavour-card {
  position: relative;
  padding: 22px 22px 30px;
  border: 1px solid var(--line);
  border-radius: 90px 90px 18px 18px;
  background: var(--white);
  text-align: center;
  transition: 0.3s;
}
.flavour-card:hover,
.flavour-card.featured {
  background: var(--red);
  color: #fff;
  transform: translateY(-10px);
}
.flavour-photo {
  width: 100%;
  aspect-ratio: 1;
  border: 9px solid var(--cream);
  border-radius: 50%;
  overflow: hidden;
}
.flavour-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-number {
  display: inline-block;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 900;
}
.flavour-card h3 {
  margin: 8px 0 10px;
  font: 900 1.25rem var(--font);
  text-transform: uppercase;
}
.flavour-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.flavour-card:hover p,
.flavour-card.featured p {
  color: rgba(255, 255, 255, 0.77);
}
.delivery {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: 1fr 1fr;
  background: var(--red);
  color: #fff;
  overflow: hidden;
}
.delivery-image {
  clip-path: ellipse(79% 83% at 18% 50%);
}
.delivery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.delivery-copy {
  display: flex;
  padding: 90px clamp(35px, 7vw, 105px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.delivery-copy h2 {
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
}
.delivery-copy h2 em {
  color: #f2d985;
}
.delivery-copy > p:not(.kicker) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}
.delivery-word {
  position: absolute;
  right: -25px;
  bottom: -42px;
  color: rgba(255, 255, 255, 0.07);
  font: 900 7.5rem/1 var(--font);
}
.gallery {
  background: var(--white);
}
.gallery-heading {
  text-align: center;
}
.gallery-grid {
  display: grid;
  height: 650px;
  margin-top: 55px;
  grid-template-columns: 0.72fr 1.35fr 0.93fr;
  gap: 18px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: 25px;
  overflow: hidden;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-grid figure:hover img {
  transform: scale(1.04);
}
.gallery-a {
  transform: translateY(55px);
}
.gallery-c {
  transform: translateY(-35px);
}
.contact {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
}
.contact-info .lead {
  color: var(--muted);
}
.info-list {
  margin-top: 45px;
}
.info-list > div {
  display: grid;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  gap: 14px;
}
.info-list > div:last-child {
  border-bottom: 1px solid var(--line);
}
.info-list > div > span {
  color: var(--red);
  font-weight: 900;
}
.info-list h3 {
  margin: 0 0 6px;
  font: 900 0.85rem var(--font);
  text-transform: uppercase;
}
.info-list p {
  margin: 0;
  color: var(--muted);
}
.info-list a {
  color: var(--red);
  font-weight: 800;
}
.contact-form {
  position: relative;
  padding: 55px;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
  box-shadow: 20px 20px 0 var(--gold);
}
.form-tag {
  color: #e1c16f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-form h3 {
  margin-bottom: 32px;
  font: 900 clamp(2rem, 3.5vw, 3rem)/1 var(--font);
  text-transform: uppercase;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: transparent;
  color: #fff;
}
.field input:focus,
.field textarea:focus {
  border-color: #e1c16f;
  outline: 0;
}
.field [aria-invalid="true"] {
  border-color: #ff8c79;
}
.privacy-check {
  display: flex;
  gap: 10px;
  margin: 2px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}
.privacy-check input {
  margin-top: 5px;
  accent-color: var(--red);
}
.privacy-check a {
  text-decoration: underline;
}
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}
.form-status {
  min-height: 1.7em;
  margin: 15px 0 0;
  font-weight: 800;
}
.form-status.success {
  color: #9ce0a8;
}
.form-status.error {
  color: #ff9d8c;
}
.site-footer {
  padding: 85px 0 25px;
  background: #151512;
  color: rgba(255, 255, 255, 0.68);
}
.footer-main {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 1.5fr 0.65fr 1fr 0.65fr;
  gap: 60px;
}
.footer-brand img {
  width: 210px;
  margin-bottom: 22px;
  padding: 10px;
  background: #fff;
}
.footer-brand p {
  max-width: 330px;
}
.footer-main strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font: 900 0.78rem var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-main a:hover {
  color: #fff;
}
.footer-main p {
  margin-bottom: 8px;
}
.footer-bottom {
  display: flex;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: space-between;
  gap: 20px;
  font-size: 0.76rem;
}
.footer-bottom p {
  margin: 0;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.floating-call {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: none;
  padding: 13px 19px;
  border-radius: 30px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 210px 1fr auto;
  }
  .header-phone span:last-child small {
    display: none;
  }
  .header-phone > span:last-child {
    font-size: 0;
  }
  .phone-icon {
    font-size: 1rem;
  }
  .main-nav {
    gap: 22px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: clamp(4rem, 8vw, 6rem);
  }
  .about-grid,
  .why-grid,
  .contact-grid {
    gap: 6vw;
  }
  .flavour-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }
}
@media (max-width: 820px) {
  .section {
    padding: 85px 0;
  }
  .header-inner {
    height: 82px;
    grid-template-columns: 1fr auto;
  }
  .brand img {
    width: 175px;
  }
  .header-phone {
    display: none;
  }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 110px 25px 45px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: 0.25s;
  }
  .main-nav a {
    font: 900 1.7rem var(--font);
  }
  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero {
    min-height: auto;
    padding-top: 135px;
  }
  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-visual {
    min-height: 560px;
  }
  .pizza-ring {
    width: min(540px, 85vw);
  }
  .about-grid {
    gap: 70px;
  }
  .about-visual {
    min-height: 570px;
    order: 2;
  }
  .about-copy {
    order: 1;
  }
  .why-grid {
    gap: 55px;
  }
  .why-visual {
    padding: 0 35px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .delivery {
    grid-template-columns: 1fr;
  }
  .delivery-image {
    min-height: 480px;
    clip-path: ellipse(80% 70% at 50% 30%);
  }
  .delivery-copy {
    padding: 70px 30px 100px;
  }
  .gallery-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid figure {
    height: 400px;
    transform: none;
  }
  .gallery-b {
    grid-row: span 2;
    height: auto !important;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  :root {
    --container: calc(100% - 34px);
  }
  .section {
    padding: 72px 0;
  }
  h2 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }
  .hero {
    padding-bottom: 60px;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }
  .hero-actions {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .action-label {
    display: none;
  }
  .hero-visual {
    min-height: 410px;
  }
  .pizza-ring {
    border-width: 10px;
  }
  .burst {
    top: 5px;
    width: 105px;
  }
  .burst strong {
    font-size: 1rem;
  }
  .ingredient-one {
    font-size: 2.4rem;
  }
  .hero-ticker {
    bottom: 0;
  }
  .about-visual {
    min-height: 420px;
  }
  .photo-blob-main {
    right: 10px;
    bottom: 35px;
  }
  .photo-small {
    right: -7px;
    height: 170px;
    border-width: 7px;
  }
  .round-stamp {
    right: -5px;
    top: 2px;
    width: 95px;
    border-width: 4px;
  }
  .feature-pills,
  .check-list {
    grid-template-columns: 1fr;
  }
  .tilt-card {
    height: 380px;
    border-width: 9px;
    box-shadow: 14px 14px 0 var(--red);
  }
  .flavour-grid {
    grid-template-columns: 1fr;
  }
  .flavour-card {
    max-width: 380px;
    margin: auto;
  }
  .delivery-image {
    min-height: 350px;
  }
  .delivery-copy h2 {
    font-size: 3.3rem;
  }
  .delivery-word {
    font-size: 4rem;
  }
  .gallery-grid {
    display: flex;
    flex-direction: column;
  }
  .gallery-grid figure,
  .gallery-b {
    height: 330px !important;
  }
  .contact-form {
    padding: 34px 24px;
    box-shadow: 10px 10px 0 var(--gold);
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    padding-bottom: 65px;
    flex-direction: column;
  }
  .floating-call {
    display: flex;
    gap: 8px;
  }
  .round-link {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
.hero-copy,
.hero-visual {
  min-width: 0;
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(3rem, 13vw, 4rem);
    overflow-wrap: anywhere;
  }
}

/* Hero spacing and continuous ticker */
@media (min-width: 821px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 90px;
  }
  .hero-copy {
    position: relative;
    z-index: 3;
  }
  .hero-visual {
    z-index: 1;
    margin-left: 28px;
  }
  .hero h1 {
    font-size: clamp(4.7rem, 7vw, 7rem);
  }
  .pizza-ring {
    width: min(520px, 40vw);
  }
  .burst {
    left: 50%;
  }
}
.hero-ticker {
  display: flex;
}
.hero-ticker .ticker-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  animation: ticker-scroll 17s linear infinite;
  will-change: transform;
}
.hero-ticker .ticker-track span {
  display: block;
  flex: none;
  padding-right: 0.35em;
  font: 900 1.1rem/1 var(--font);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.hero-ticker:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  to {
    transform: translateX(-25%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ticker .ticker-track {
    animation: none;
    transform: none;
  }
}

/* Extended editorial content from the source site */
.stories{background:var(--cream2)}
.stories-intro{display:grid;grid-template-columns:.9fr 1.1fr;gap:8vw;align-items:end;margin-bottom:58px}
.stories-intro h2{margin-bottom:0}
.stories-lead{color:var(--muted);font-size:1.05rem}
.stories-lead p:last-child{margin-bottom:0}
.story-cards{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.story-card{position:relative;padding:48px;border:1px solid var(--line);border-radius:26px;background:var(--white)}
.story-card-red{background:var(--red);color:#fff;border-color:var(--red)}
.story-index{display:block;margin-bottom:25px;color:var(--gold);font-weight:900}
.story-card-red .story-index{color:#f1d47d}
.story-card h3{max-width:520px;margin-bottom:22px;font:900 clamp(1.7rem,3vw,2.6rem)/1.08 var(--font);text-transform:uppercase}
.story-card p{color:var(--muted)}
.story-card-red p{color:rgba(255,255,255,.78)}
.story-card a{display:inline-block;margin-top:8px;color:var(--red);font-size:.75rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.story-card-red a{color:#fff}
.gallery-copy{max-width:650px;margin:22px auto 0;color:var(--muted);font-size:1.05rem}
@media(max-width:820px){.stories-intro{grid-template-columns:1fr;gap:28px}.story-cards{grid-template-columns:1fr}}
@media(max-width:560px){.story-card{padding:32px 24px}}
