:root {
  --cream: #f4efe4;
  --paper: #fbf8f1;
  --ink: #172018;
  --brand-orange: #ffa934;
  --brand-orange-dark: #d97900;
  --button-orange: #f7a12c;
  --button-orange-hover: #e58b18;
  --button-on-orange: #342419;
  --button-surface: linear-gradient(135deg, rgba(255, 224, 177, 0.92), rgba(226, 137, 24, 0.88));
  --button-surface-hover: linear-gradient(
    135deg,
    rgba(255, 249, 239, 0.94),
    rgba(255, 222, 174, 0.84)
  );
  --button-border: rgba(224, 139, 23, 0.62);
  --red: var(--brand-orange);
  --green: #243f30;
  --gold: #d49b45;
  --line: rgba(23, 32, 24, 0.18);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --container: min(1280px, calc(100vw - 80px));
  --marquee-speed-usp: 13.52s;
  --marquee-speed-usp-mobile: 12s;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  padding: clamp(90px, 10vw, 160px) 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  background: #fff;
  padding: 12px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 22px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.eyebrow:before {
  content: '';
  width: 36px;
  height: 1px;
  background: currentColor;
}
.eyebrow.light {
  color: #fff;
}
.button {
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.2s var(--ease);
  cursor: pointer;
}
.button span {
  font-size: 1.05rem;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.13);
}
.button.primary {
  background: var(--red);
  color: white;
}
.button.primary:hover {
  background: #a82920;
}
.button.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}
.button.ghost:hover {
  background: #fff;
  color: var(--ink);
}
.button.cream {
  background: var(--cream);
  color: var(--ink);
}
.button.dark {
  background: var(--ink);
  color: #fff;
}
.text-link {
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 8px;
  display: inline-flex;
  gap: 38px;
}
.text-link span {
  transition: 0.2s;
}
.text-link:hover span {
  transform: translateX(5px);
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.site-header {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  height: 108px;
  color: #fff;
  transition: 0.35s var(--ease);
}
.nav {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.nav-group {
  display: flex;
  gap: 42px;
}
.nav-right {
  justify-content: flex-end;
}
.nav-group a {
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.11em;
  position: relative;
}
.nav-group a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transition: 0.2s;
}
.nav-group a:hover:after {
  right: 0;
}
.brand {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  z-index: 4;
  transition: 0.4s var(--ease);
}
.brand img {
  width: 92px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.22));
  transition: 0.4s var(--ease);
}
.site-header.scrolled {
  height: 76px;
  background: rgba(244, 239, 228, 0.96);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(20, 30, 20, 0.07);
  backdrop-filter: blur(12px);
}
.site-header.scrolled .nav {
  border-color: var(--line);
}
.site-header.scrolled .brand {
  top: 5px;
}
.site-header.scrolled .brand img {
  width: 65px;
}
.menu-toggle,
.mobile-menu {
  display: none;
}
.hero {
  height: max(760px, 100svh);
  min-height: 680px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(10, 17, 12, 0.8) 0%,
      rgba(10, 17, 12, 0.44) 52%,
      rgba(10, 17, 12, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(10, 17, 12, 0.25), transparent 50%);
}
.hero-content {
  position: relative;
  padding-top: 80px;
}
.hero h1 {
  font: 500 clamp(3.8rem, 7vw, 7.6rem)/0.95 var(--serif);
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 950px;
}
.hero h1 em {
  font-weight: 500;
  color: #f1c377;
}
.hero-copy {
  max-width: 520px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.86);
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-note {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--cream);
  color: var(--ink);
  padding: 22px 55px 22px 34px;
  min-width: 300px;
}
.hero-note span {
  display: block;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero-note strong {
  font: 600 1.3rem var(--serif);
}
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 40px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  gap: 14px;
  align-items: center;
}
.scroll-cue i {
  font-style: normal;
}
.ticker {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  font: 500 1rem var(--serif);
  font-style: italic;
}
.ticker div {
  display: inline-block;
  animation: ticker 26s linear infinite;
}
.ticker span {
  padding: 0 28px;
  color: #f3c46f;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.intro {
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12vw;
  align-items: end;
}
.intro h2,
.story h2,
.location h2 {
  font: 500 clamp(2.8rem, 5vw, 5.3rem)/1.02 var(--serif);
  letter-spacing: -0.045em;
  margin: 0;
}
.intro-copy {
  font-size: 1.06rem;
}
.intro-copy p {
  margin: 0 0 34px;
}
.photo-composition {
  margin-top: 90px;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  align-items: end;
  gap: 28px;
}
.photo-composition figure {
  margin: 0;
  overflow: hidden;
}
.photo-tall {
  height: 650px;
}
.photo-tall img {
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.photo-square {
  height: 440px;
  margin-bottom: -75px !important;
}
.photo-square img {
  height: 100%;
  object-fit: cover;
}
.roundel {
  position: absolute;
  left: 58%;
  top: -48px;
  background: var(--red);
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.roundel span {
  position: absolute;
  inset: 9px;
  animation: spin 18s linear infinite;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  word-spacing: 12px;
}
.roundel b {
  font-size: 1.5rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.usp-section {
  padding-top: 200px;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.usp {
  padding: 42px 50px 0 0;
  border-right: 1px solid var(--line);
  min-height: 310px;
  position: relative;
}
.usp:not(:first-child) {
  padding-left: 50px;
}
.usp:last-child {
  border: 0;
}
.usp > span {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 0.68rem;
  color: #8b8e85;
}
.usp svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.usp h3 {
  font: 600 1.65rem var(--serif);
  margin: 26px 0 12px;
}
.usp p {
  color: #62675f;
  font-size: 0.92rem;
}
.menu-section {
  background: var(--green);
  color: #fff;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
.section-head h2,
.gallery h2 {
  font: 500 clamp(2.8rem, 5vw, 5.4rem)/0.98 var(--serif);
  letter-spacing: -0.045em;
  margin: 0;
}
.pizza-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pizza-card > div {
  height: 500px;
  overflow: hidden;
  position: relative;
}
.pizza-card img {
  height: 100%;
  object-fit: cover;
  transition: 0.55s var(--ease);
}
.pizza-card:hover img {
  transform: scale(1.035);
}
.pizza-card span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: var(--cream);
  color: var(--ink);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}
.pizza-card h3 {
  font: 500 2rem var(--serif);
  margin: 20px 0 0;
}
.pizza-card p {
  margin: 3px 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.gallery {
  padding-bottom: 180px;
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 58px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: 0.2s;
}
.circle:hover {
  background: var(--ink);
  color: #fff;
}
.carousel-controls span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-left: max(40px, calc((100vw - 1280px) / 2));
  outline: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-right: 8vw;
}
.carousel figure {
  scroll-snap-align: center;
  margin: 0;
  width: min(58vw, 700px);
  height: 570px;
  overflow: hidden;
}
.carousel figure:nth-child(even) {
  width: min(38vw, 470px);
}
.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story {
  background: var(--cream);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 10vw;
  align-items: center;
}
.story-image {
  height: 710px;
  position: relative;
}
.story-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.story-image span {
  position: absolute;
  right: -58px;
  bottom: 70px;
  background: var(--red);
  color: #fff;
  padding: 24px 28px;
  font: italic 600 1.3rem/1.1 var(--serif);
  transform: rotate(-4deg);
}
.story-copy p:not(.eyebrow) {
  color: #5b615a;
  margin: 26px 0;
}
.story-copy .text-link {
  margin-top: 18px;
}
.events {
  min-height: 800px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}
.events-bg {
  position: absolute;
  inset: 0;
}
.events-bg:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 22, 16, 0.87), rgba(13, 22, 16, 0.3));
}
.events-bg img {
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.events-content {
  position: relative;
}
.events h2 {
  font: 500 clamp(3.3rem, 6vw, 6.4rem)/0.94 var(--serif);
  letter-spacing: -0.045em;
  margin: 0;
}
.events h2 em {
  color: #f1c377;
}
.events p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.8);
}
.location {
  background: var(--paper);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}
.location-grid > div:first-child > p:not(.eyebrow) {
  max-width: 430px;
  margin: 26px 0 34px;
}
.info-card {
  border-top: 1px solid var(--line);
}
.info-card > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.info-card span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.info-card h3 {
  font: 500 1.25rem/1.45 var(--serif);
  margin: 0;
}
.final-cta {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 110px 0;
}
.final-cta p {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
}
.final-cta h2 {
  font: 500 clamp(3rem, 6vw, 6rem)/0.97 var(--serif);
  margin: 12px 0 35px;
}
.final-cta .button {
  background: var(--cream);
  color: var(--ink);
}
.info-card h3 small {
  font: 500 0.95rem/1.55 var(--sans);
  color: #62675f;
}
footer {
  background: #121713;
  color: #fff;
  padding: 85px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 7vw;
}
.footer-brand img {
  width: 105px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-brand p,
footer p {
  color: #9ca19d;
  font-size: 0.82rem;
}
footer h3 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #989e99;
  margin: 0 0 22px;
}
footer a {
  display: block;
  font-size: 0.84rem;
  margin: 0 0 10px;
  transition: 0.2s;
}
footer a:hover {
  color: #f1c377;
}
.footer-vat {
  display: block;
  margin-top: 10px;
  color: #9ca19d;
  font-size: 0.84rem;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 70px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #858b87;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  :root {
    --container: min(100% - 40px, 720px);
  }
  .nav-group {
    display: none;
  }
  .nav {
    grid-template-columns: 1fr auto;
  }
  .brand {
    left: 50%;
  }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: inherit;
    z-index: 5;
  }
  .menu-toggle span:not(.sr-only) {
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: 0.25s;
  }
  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--cream);
    color: var(--ink);
    padding: 130px 28px 40px;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    transform: translateY(-105%);
    transition: 0.45s var(--ease);
    z-index: 3;
  }
  .mobile-menu > a:not(.button) {
    font: 500 2rem var(--serif);
  }
  .menu-open .mobile-menu {
    transform: none;
  }
  .menu-open {
    overflow: hidden;
  }
  .intro-grid,
  .story-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .photo-tall {
    height: 500px;
  }
  .photo-square {
    height: 310px;
  }
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .usp {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 35px 0 !important;
  }
  .pizza-track {
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
  }
  .pizza-card {
    min-width: 70vw;
    scroll-snap-align: start;
  }
  .pizza-card > div {
    height: 430px;
  }
  .section-head {
    align-items: start;
    gap: 28px;
    flex-direction: column;
  }
  .story-image {
    height: 580px;
  }
  .story-image span {
    right: -10px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  :root {
    --container: calc(100vw - 36px);
  }
  .container {
    max-width: calc(100vw - 36px);
  }
  .section {
    padding: 84px 0;
  }
  .site-header {
    height: 86px;
  }
  .brand img {
    width: 72px;
  }
  .hero {
    min-height: 720px;
    height: 100svh;
  }
  .hero-content {
    padding-top: 70px;
  }
  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.4rem);
  }
  .hero-copy {
    font-size: 0.96rem;
  }
  .actions {
    align-items: stretch;
    flex-direction: column;
    width: max-content;
    max-width: 100%;
  }
  .actions .button {
    width: 100%;
  }
  .hero-note {
    padding: 16px 22px;
    min-width: 210px;
  }
  .scroll-cue {
    display: none;
  }
  .intro h2,
  .story h2,
  .location h2 {
    font-size: 2.8rem;
  }
  .intro-grid {
    gap: 30px;
  }
  .photo-composition {
    margin-top: 55px;
    display: block;
  }
  .photo-tall {
    height: 430px;
  }
  .photo-square {
    width: 58%;
    height: 260px;
    margin: -65px 15px 0 auto !important;
    position: relative;
    border: 8px solid var(--cream);
  }
  .roundel {
    left: 3%;
    top: auto;
    bottom: -40px;
    width: 100px;
    height: 100px;
  }
  .usp-section {
    padding-top: 145px;
  }
  .pizza-card {
    min-width: 82vw;
  }
  .pizza-card > div {
    height: 410px;
  }
  .gallery-head {
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }
  .gallery h2 {
    font-size: 3.2rem;
  }
  .carousel-controls {
    width: 100%;
    justify-content: space-between;
  }
  .carousel {
    padding-left: 18px;
  }
  .carousel figure,
  .carousel figure:nth-child(even) {
    width: 82vw;
    height: 460px;
  }
  .story-image {
    height: 500px;
  }
  .events {
    min-height: 760px;
  }
  .events h2 {
    font-size: 3.6rem;
  }
  .info-card > div {
    grid-template-columns: 110px 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    gap: 15px;
    align-items: start;
    flex-direction: column;
  }
}

/* V24 tijdelijke overgang van zondag naar zaterdag */
.opening-transition {
  padding: clamp(42px, 6vw, 74px) 0;
  background:
    radial-gradient(circle at 8% 15%, rgb(255 169 52 / 13%), transparent 29%),
    var(--cream);
}
.opening-transition-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 94% 5%, rgb(255 169 52 / 22%), transparent 33%),
    linear-gradient(135deg, #18291f, #243f30);
  box-shadow: 0 24px 60px rgb(23 32 24 / 16%);
}
.opening-transition-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}
.opening-transition-copy .eyebrow {
  margin-bottom: 16px;
  color: var(--brand-orange);
}
.opening-transition-copy h2 {
  max-width: 15ch;
  margin: 0;
  color: #fff;
  font: 600 clamp(2rem, 3.6vw, 3.65rem) / 1.01 var(--serif);
}
.opening-transition-copy > p:last-child {
  max-width: 48ch;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: 0.92rem;
  line-height: 1.55;
}
.opening-transition-dates {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1.16fr);
  align-items: stretch;
  gap: 12px;
  padding: 26px;
}
.opening-transition-date {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgb(23 32 24 / 10%);
  border-radius: 22px;
  color: var(--ink);
  background: rgb(255 255 255 / 93%);
  box-shadow: 0 12px 30px rgb(8 18 12 / 11%);
}
.opening-transition-date.is-new {
  border-color: rgb(255 169 52 / 43%);
  background: linear-gradient(145deg, #fffaf0, #ffd89d);
}
.opening-transition-date > span {
  color: #8a6438;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.opening-transition-date strong {
  margin-top: 10px;
  font: 600 clamp(1.55rem, 2.4vw, 2.25rem) / 1.08 var(--serif);
}
.opening-transition-date small {
  margin-top: 14px;
  color: #625b52;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}
.opening-transition-arrow {
  display: grid;
  place-items: center;
  color: var(--brand-orange);
}
.opening-transition-arrow svg {
  width: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
@media (max-width: 1050px) {
  .opening-transition-card {
    grid-template-columns: 1fr;
  }
  .opening-transition-copy {
    padding-bottom: 24px;
  }
  .opening-transition-copy h2 {
    max-width: 18ch;
  }
  .opening-transition-dates {
    padding-top: 0;
  }
  .opening-transition-date {
    min-height: 190px;
  }
}
@media (max-width: 650px) {
  .opening-transition {
    padding: 28px 0 38px;
  }
  .opening-transition-card {
    border-radius: 23px;
  }
  .opening-transition-copy {
    padding: 30px 24px 20px;
  }
  .opening-transition-copy h2 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }
  .opening-transition-copy > p:last-child {
    margin-top: 16px;
    font-size: 0.84rem;
  }
  .opening-transition-dates {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }
  .opening-transition-date {
    min-height: 0;
    padding: 23px 24px;
  }
  .opening-transition-arrow {
    height: 34px;
  }
  .opening-transition-arrow svg {
    width: 38px;
    transform: rotate(90deg);
  }
  .opening-transition-date strong {
    font-size: 1.65rem;
  }
}

/* V24 compactere homepage-editorial: planning, Benvenuti, verhaal en reviews */
body.home #main-content :where(.intro, .story, .reviews, .napo-public-calendar-section) {
  padding-block: clamp(54px, 5vw, 78px);
}
body.home .intro-grid {
  gap: clamp(48px, 7vw, 100px);
}
body.home :where(.intro, .story) h2 {
  font-size: clamp(2.7rem, 4.35vw, 4.55rem);
}
body.home .intro-copy p {
  margin-bottom: 26px;
}
body.home #main-content .photo-composition {
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.65fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 1180px;
  margin-top: clamp(34px, 3.6vw, 50px);
}
body.home .photo-tall {
  height: clamp(400px, 35vw, 520px);
}
body.home .photo-square {
  height: clamp(250px, 23vw, 340px);
  margin-bottom: -42px !important;
}
body.home #main-content .story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(40px, 6vw, 82px);
  max-width: 1180px;
}
body.home .story-image {
  height: clamp(390px, 38vw, 520px);
}
body.home .story-copy p:not(.eyebrow) {
  margin-block: 20px;
}
body.home .story-copy .text-link {
  margin-top: 10px;
}
body.home #main-content .reviews-head {
  margin-bottom: 27px;
}
body.home .review-track {
  gap: 16px;
}
body.home .review-card {
  min-height: 205px;
  padding: 24px;
  flex-basis: calc((100% - 32px) / 3);
}
body.home .review-card blockquote {
  margin: 16px 0;
  font-size: 1.06rem;
  line-height: 1.4;
}
body.home .review-cta {
  margin-top: 28px;
}
body.home .napo-calendar-heading {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 32px;
  margin-bottom: 25px;
}
body.home .napo-calendar-heading h2 {
  font-size: clamp(2.2rem, 3.55vw, 3.65rem);
}
body.home .napo-calendar-legend {
  gap: 7px 14px;
  padding: 14px 16px;
  border-radius: 15px;
}
body.home .napo-calendar-shell {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 18px;
}
body.home .napo-calendar-card,
body.home .napo-calendar-detail {
  border-radius: 22px;
}
body.home .napo-calendar-card {
  padding: clamp(16px, 2vw, 23px);
}
body.home .napo-calendar-card > header {
  grid-template-columns: 38px 1fr 38px;
  margin-bottom: 15px;
}
body.home .napo-calendar-card header button {
  width: 38px;
  height: 38px;
}
body.home :where(.napo-calendar-weekdays, .napo-calendar-grid) {
  gap: 6px;
}
body.home .napo-calendar-weekdays {
  margin-bottom: 6px;
}
body.home :where(.napo-calendar-day, .napo-calendar-empty) {
  aspect-ratio: 1.25;
}
body.home .napo-calendar-detail {
  min-height: 320px;
  padding: clamp(26px, 3vw, 38px) clamp(25px, 3.3vw, 44px);
}
body.home .napo-calendar-detail-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 15px;
  border-radius: 14px;
}
body.home .napo-calendar-detail h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}
body.home .napo-calendar-detail > p:not(.eyebrow) {
  margin-top: 11px;
}
body.home .napo-calendar-detail .button {
  margin-top: 19px;
}
@media (min-width: 601px) and (max-width: 900px) {
  body.home .photo-tall {
    height: 420px;
  }
  body.home .photo-square {
    height: 270px;
  }
  body.home .story-grid {
    grid-template-columns: 1fr;
  }
  body.home .story-image {
    height: 440px;
  }
  body.home .napo-calendar-heading,
  body.home .napo-calendar-shell {
    grid-template-columns: 1fr;
  }
  body.home .napo-calendar-detail {
    min-height: 260px;
  }
}
@media (max-width: 600px) {
  body.home #main-content :where(.intro, .story, .reviews, .napo-public-calendar-section) {
    padding-block: 42px;
  }
  body.home .intro-grid {
    gap: 22px;
  }
  body.home :where(.intro, .story) h2 {
    font-size: clamp(2.2rem, 9.7vw, 2.75rem);
  }
  body.home .intro-copy p {
    margin-bottom: 21px;
  }
  body.home #main-content .photo-composition {
    display: block;
    margin-top: 27px;
  }
  body.home .photo-tall {
    height: min(80vw, 330px);
  }
  body.home .photo-square {
    width: 54%;
    height: min(48vw, 195px);
    margin: -43px 10px 0 auto !important;
    border-width: 6px;
  }
  body.home #main-content .story-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  body.home .story-image {
    height: min(84vw, 345px);
  }
  body.home .story-copy p:not(.eyebrow) {
    margin-block: 16px;
  }
  body.home #main-content .reviews-head {
    margin-bottom: 20px;
  }
  body.home .review-track {
    gap: 12px;
  }
  body.home .review-card {
    min-height: 205px;
    padding: 21px;
    flex-basis: 82vw;
  }
  body.home .review-card blockquote {
    margin: 15px 0;
    font-size: 1.04rem;
    line-height: 1.42;
  }
  body.home .review-cta {
    margin-top: 22px;
  }
  body.home .napo-calendar-heading {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 18px;
  }
  body.home .napo-calendar-heading h2 {
    margin-bottom: 8px;
    font-size: clamp(2.05rem, 9.6vw, 2.55rem);
  }
  body.home .napo-calendar-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
    padding: 10px 11px;
  }
  body.home .napo-calendar-legend span {
    gap: 6px;
    font-size: 0.67rem;
  }
  body.home .napo-calendar-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  body.home .napo-calendar-card {
    padding: 12px 9px 14px;
  }
  body.home .napo-calendar-card > header {
    grid-template-columns: 34px 1fr 34px;
    gap: 9px;
    margin-bottom: 12px;
  }
  body.home .napo-calendar-card header button {
    width: 34px;
    height: 34px;
  }
  body.home :where(.napo-calendar-weekdays, .napo-calendar-grid) {
    gap: 4px;
  }
  body.home :where(.napo-calendar-day, .napo-calendar-empty) {
    min-height: 34px;
    aspect-ratio: 1.08;
  }
  body.home .napo-calendar-detail {
    min-height: 0;
    padding: 21px 19px 24px;
  }
  body.home .napo-calendar-detail-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 12px;
  }
  body.home .napo-calendar-detail h3 {
    margin-bottom: 9px;
    font-size: 1.65rem;
  }
  body.home .napo-calendar-detail > p:not(.eyebrow) {
    margin-top: 9px;
  }
  body.home .napo-calendar-detail .button {
    margin-top: 16px;
  }
}

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

/* Iteratie 2: gedeelde navigatie, pagina's, carrousels en formulieren */
@media (min-width: 901px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
  }
  .nav-left {
    justify-content: flex-end;
    padding-right: 48px;
  }
  .nav-right {
    grid-column: 3;
    justify-content: flex-start;
    padding-left: 48px;
  }
  .nav-group {
    gap: clamp(28px, 3vw, 52px);
  }
  .inner-header:not(.scrolled) {
    background: rgba(18, 23, 19, 0.5);
    backdrop-filter: blur(8px);
  }
}
.nav-group .active:after {
  right: 0;
}
.head-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.light-controls .circle {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}
.light-controls .circle:hover {
  background: var(--cream);
  color: var(--ink);
}
.menu-carousel {
  overflow: hidden;
}
.menu-carousel .pizza-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 28px;
  padding-bottom: 8px;
}
.menu-carousel .pizza-track::-webkit-scrollbar {
  display: none;
}
.menu-carousel .pizza-card {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
}
.usp strong {
  color: var(--red);
  font-size: 1.05em;
}
.reviews {
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 10vw;
  align-items: center;
}
.reviews h2,
.menu-intro h2,
.editorial h2,
.event-intro h2,
.form-layout h2 {
  font: 500 clamp(2.8rem, 5vw, 5.2rem)/1 var(--serif);
  letter-spacing: -0.045em;
  margin: 0;
}
.reviews-grid > div:first-child > p:not(.eyebrow) {
  max-width: 520px;
  color: #5f655e;
}
.review-panel {
  background: var(--paper);
  padding: 55px;
}
.review-panel > svg {
  width: 48px;
}
.review-panel h3 {
  font: 600 2rem var(--serif);
  margin: 22px 0 8px;
}
.review-panel p {
  color: #62675f;
  margin-bottom: 28px;
}
.footer-brand img {
  width: 118px;
  height: auto;
  aspect-ratio: 240/247;
  object-fit: contain;
  filter: none;
}
.social-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.social-link svg path {
  fill: currentColor;
  stroke: none;
}
.page-hero {
  height: 76vh;
  min-height: 650px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 0 0 90px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg:after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 20, 15, 0.82), rgba(13, 20, 15, 0.2)),
    linear-gradient(0deg, rgba(13, 20, 15, 0.45), transparent 60%);
}
.page-hero-bg img {
  height: 100%;
  object-fit: cover;
}
.menu-hero .page-hero-bg img {
  object-position: center 55%;
}
.story-hero .page-hero-bg img,
.event-hero .page-hero-bg img {
  object-position: center 42%;
}
.page-hero > .container {
  position: relative;
}
.page-hero h1 {
  font: 500 clamp(4rem, 8vw, 8rem)/0.9 var(--serif);
  letter-spacing: -0.05em;
  margin: 0;
}
.page-hero p:not(.eyebrow) {
  font-size: 1.08rem;
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
}
.page-hero .button {
  margin-top: 30px;
}
.menu-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 65px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 85px 35px;
}
.menu-item > div {
  height: 520px;
  position: relative;
  overflow: hidden;
}
.menu-item img {
  height: 100%;
  object-fit: cover;
  transition: 0.55s var(--ease);
}
.menu-item:hover img {
  transform: scale(1.035);
}
.menu-item span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: var(--red);
  color: #fff;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.menu-item h3 {
  font: 600 2rem var(--serif);
  margin: 20px 0 5px;
}
.menu-item p {
  margin: 0;
  color: #656a63;
}
.menu-item:last-child {
  grid-column: 1/-1;
  width: calc(50% - 18px);
}
.editorial-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 10vw;
  align-items: center;
}
.editorial-row.reverse {
  grid-template-columns: 1fr 0.9fr;
}
.editorial-row.reverse > figure {
  grid-row: 1;
  grid-column: 1;
}
.editorial-row.reverse > div {
  grid-column: 2;
}
.editorial-row figure {
  height: 650px;
  margin: 0;
}
.editorial-row img {
  height: 100%;
  object-fit: cover;
}
.editorial-row p:not(.eyebrow) {
  color: #5e645d;
  font-size: 1.05rem;
}
.cream {
  background: var(--cream);
}
.outline-dark {
  border-color: var(--ink);
}
.story-facts {
  background: var(--green);
  color: #fff;
}
.fact {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 8vw;
  padding: 55px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.fact:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.fact > strong {
  font: 500 clamp(2.5rem, 5vw, 5rem) var(--serif);
  color: #f1c377;
}
.fact h2 {
  font: 500 2.2rem var(--serif);
  margin: 0;
}
.fact p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.7);
}
.booking-accordion {
  width: 100%;
}
.booking-accordion > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 4px 0;
  list-style: none;
  cursor: pointer;
}
.booking-accordion > summary::-webkit-details-marker {
  display: none;
}
.booking-accordion > summary::marker {
  content: '';
}
.booking-accordion-heading .eyebrow {
  margin-bottom: 13px;
}
.booking-accordion-heading h2 {
  max-width: 900px;
  margin: 0;
  font: 500 clamp(2.8rem, 5vw, 5.2rem)/0.98 var(--serif);
  letter-spacing: -0.045em;
}
.booking-accordion-heading > p:last-child {
  max-width: 630px;
  margin: 17px 0 0;
  color: #686d66;
  font-size: 0.95rem;
}
.booking-accordion-toggle {
  display: inline-flex;
  min-width: 138px;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.booking-accordion-toggle i {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.booking-accordion-toggle i::before,
.booking-accordion-toggle i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: '';
  transform: translate(-50%, -50%);
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.booking-accordion-toggle i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.booking-accordion-close {
  display: none;
}
.booking-accordion[open] .booking-accordion-open {
  display: none;
}
.booking-accordion[open] .booking-accordion-close {
  display: inline;
}
.booking-accordion[open] .booking-accordion-toggle i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}
.booking-accordion > summary:hover .booking-accordion-toggle {
  border-color: rgba(226, 137, 24, 0.6);
  background: rgba(255, 224, 177, 0.58);
  transform: translateY(-2px);
}
.booking-accordion > summary:focus-visible {
  border-radius: 12px;
  outline: 3px solid var(--gold);
  outline-offset: 8px;
}
.booking-accordion-content {
  padding-top: 40px;
}
.booking-accordion[open] .booking-accordion-content {
  animation: booking-accordion-enter 0.32s var(--ease) both;
}
@keyframes booking-accordion-enter {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.booking-accordion-dark .booking-accordion-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}
.booking-accordion-dark .booking-accordion-toggle {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.booking-accordion-dark > summary:hover .booking-accordion-toggle {
  border-color: rgba(241, 195, 119, 0.72);
  background: rgba(241, 195, 119, 0.14);
}
.occasions {
  background: var(--green);
  color: #fff;
}
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.occasion-grid article {
  padding: 38px 30px 70px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.occasion-grid article:nth-child(3n) {
  border-right: 0;
}
.occasion-grid span {
  font-size: 0.7rem;
  color: #f1c377;
}
.occasion-grid h3 {
  font: 500 1.8rem var(--serif);
  margin: 45px 0 0;
}
.process ol {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.process li {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.process li > span {
  font-size: 0.72rem;
  color: var(--red);
}
.process h3 {
  font: 600 1.65rem var(--serif);
  margin: 0;
}
.process p {
  margin: 5px 0;
  color: #686d66;
}
.process-note {
  max-width: 760px;
  margin: 28px 0 0 !important;
  padding-left: 100px;
  color: #686d66;
  font-size: 0.88rem;
}
.form-section {
  background: var(--cream);
}
.form-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr;
  gap: 9vw;
  align-items: start;
}
.form-layout > div > p:not(.eyebrow) {
  color: #656a63;
}
.contact-note {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.contact-note span,
.contact-note a {
  display: block;
}
.contact-note span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.event-form {
  background: var(--paper);
  padding: 50px;
}
.event-form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 40px;
}
.event-form legend {
  font: 600 1.5rem var(--serif);
  margin-bottom: 20px;
}
.form-help {
  max-width: 680px;
  margin: -8px 0 20px;
  color: #686d66;
  font-size: 0.84rem;
  line-height: 1.55;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.field-grid > label {
  min-width: 0;
}
.field-grid .full {
  grid-column: 1/-1;
}
.event-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.event-form input,
.event-form select,
.event-form textarea {
  width: 100%;
  border: 1px solid #c7c7be;
  background: #fff;
  padding: 14px 15px;
  font: 400 1rem var(--sans);
  color: var(--ink);
  border-radius: 0;
}
.event-form input,
.event-form select {
  height: 52px;
}
.event-datetime-control {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}
.event-form .event-datetime-control :is(input, select) {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  -webkit-min-logical-width: 0;
  padding-inline: 15px 46px;
  line-height: 1.2;
  text-align: left;
  color-scheme: light;
}
.event-form .event-datetime-control select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.event-time-picker {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  width: 100%;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid #d7c9b8;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #fffaf3 100%);
  box-shadow: 0 8px 24px rgba(66, 43, 24, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.event-time-picker:focus-within {
  border-color: var(--brand-orange-dark, #a45110);
  box-shadow: 0 0 0 3px rgba(181, 92, 22, 0.12), 0 10px 28px rgba(66, 43, 24, 0.1);
}
.event-time-picker-icon {
  display: grid;
  place-items: center;
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--brand-orange, #c66c24), var(--brand-orange-dark, #9e4910));
  box-shadow: 0 6px 14px rgba(158, 73, 16, 0.22);
}
.event-time-picker-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.event-time-part {
  position: relative;
  display: block;
  min-width: 0;
}
.event-time-part::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #9b6b42;
  border-bottom: 1.5px solid #9b6b42;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.event-form .event-time-picker select {
  height: 42px;
  min-width: 0;
  padding: 0 28px 0 11px;
  border: 1px solid #e2d8cc;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  cursor: pointer;
}
.event-form .event-time-picker select:focus {
  border-color: var(--brand-orange-dark, #a45110);
  box-shadow: 0 0 0 2px rgba(181, 92, 22, 0.1);
  outline: none;
}
.event-time-separator {
  align-self: center;
  color: var(--brand-orange-dark, #a45110);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 42px;
}
.event-form .event-datetime-control input::-webkit-date-and-time-value {
  min-height: 1.2em;
  margin: 0;
  text-align: left;
}
.event-form .event-datetime-control input::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46px;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}
.event-datetime-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--brand-orange-dark, #a45110);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.event-time-help {
  display: block;
  margin-top: 7px;
  color: #6f6a61;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
}
.event-form input:focus,
.event-form select:focus,
.event-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: transparent;
}
.booking-guests-help {
  color: #686d66;
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 1.45;
}
.booking-guests-error {
  padding: 9px 11px;
  border: 1px solid rgba(168, 41, 32, 0.2);
  border-radius: 9px;
  color: #8c251e;
  background: #fff1ee;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}
.booking-guests-error[hidden] {
  display: none;
}
.event-form label.has-minimum-error input[name='guests'] {
  border-color: #a82920;
  background: #fff9f7;
}
.pizza-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.pizza-choice {
  position: relative;
  min-height: 76px;
  padding: 14px 15px;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px !important;
  border: 1px solid #d9d1c5;
  border-radius: 14px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 5px 16px rgb(47 39 28 / 3%);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s var(--ease);
}
.pizza-choice:has(input:checked) {
  border-color: rgb(189 103 18 / 58%);
  background: linear-gradient(135deg, #fffaf1, #fff3df);
  box-shadow:
    0 7px 20px rgb(112 67 23 / 7%),
    inset 3px 0 0 rgb(189 103 18 / 72%);
}
.pizza-choice:hover {
  transform: translateY(-2px);
  border-color: rgb(189 103 18 / 52%);
  box-shadow: 0 9px 22px rgb(74 51 28 / 8%);
}
.pizza-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.pizza-choice-indicator {
  width: 23px;
  height: 23px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border: 1.5px solid #b9b2a8;
  border-radius: 7px;
  background: #fff;
  color: transparent;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.pizza-choice-indicator svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pizza-choice:has(input:checked) .pizza-choice-indicator {
  border-color: #a95412;
  background: linear-gradient(145deg, #c86b18, #a64d0d);
  color: #fff;
  box-shadow: 0 4px 10px rgb(169 84 18 / 22%);
}
.pizza-choice:has(input:focus-visible) {
  outline: 3px solid rgb(212 155 69 / 72%);
  outline-offset: 3px;
}
.pizza-choice-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.pizza-choice b {
  color: var(--ink);
  font-size: 0.83rem;
}
.pizza-choice small {
  color: #77746e;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
}
.extra-information {
  margin-bottom: 0;
}
.privacy {
  flex-direction: row !important;
  align-items: flex-start;
  margin: 24px 0 28px;
  font-weight: 500 !important;
}
.privacy input {
  width: 20px;
  height: 20px;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--brand-orange-dark);
}

/* Professionele en duidelijk verplichte toestemmingskeuze */
.event-form .privacy {
  position: relative;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px !important;
  align-items: start;
  margin: 24px 0 28px;
  padding: 15px 16px;
  border: 1px solid rgba(166, 81, 26, 0.2);
  border-radius: 14px;
  background: linear-gradient(135deg, #fffdf9, #fff6e9);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.event-form .privacy:hover,
.event-form .privacy:has(input:focus-visible) {
  border-color: rgba(166, 81, 26, 0.48);
  background: #fff9ef;
  box-shadow: 0 8px 22px rgba(84, 58, 31, 0.07);
}
.event-form .privacy:has(input:checked) {
  border-color: rgba(166, 81, 26, 0.48);
  background: linear-gradient(135deg, #fffaf2, #ffefd8);
}
.event-form .privacy > input {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
.event-form .privacy-checkbox {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-top: 1px;
  border: 1.5px solid #c7aa8b;
  border-radius: 8px;
  color: transparent;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(61, 43, 25, 0.06);
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}
.event-form .privacy-checkbox svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.event-form .privacy > input:checked + .privacy-checkbox {
  border-color: var(--brand-orange-dark);
  color: #fff;
  background: var(--brand-orange-dark);
  transform: scale(1.03);
}
.event-form .privacy > input:focus-visible + .privacy-checkbox {
  outline: 3px solid rgba(245, 166, 35, 0.3);
  outline-offset: 2px;
}
.event-form .privacy-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.event-form .privacy-copy b {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.25;
}
.event-form .privacy-copy em {
  padding: 4px 7px 3px;
  border-radius: 999px;
  color: #8f421d;
  background: rgba(245, 166, 35, 0.18);
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-form .privacy-copy small {
  color: #70685f;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}
.form-status {
  font-weight: 700;
}
.form-status.error {
  color: #a82920;
}
.form-status.success {
  color: #245d3b;
}
.booking-success-wrap {
  display: grid;
  place-items: center;
}
.booking-success-card {
  width: min(100%, 780px);
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid rgba(23, 32, 24, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 166, 35, 0.2), transparent 28%), var(--paper);
  box-shadow: 0 24px 65px rgba(23, 32, 24, 0.09);
  text-align: center;
}
.booking-success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  color: #32704c;
}
.booking-success-icon svg {
  width: 100%;
  height: 100%;
  fill: rgba(50, 112, 76, 0.08);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.booking-success-card h2 {
  max-width: 15ch;
  margin: 8px auto 20px;
  font: 500 clamp(2.5rem, 5.5vw, 4.6rem)/0.98 var(--serif);
  letter-spacing: -0.045em;
}
.booking-success-card > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 auto;
  color: #62675f;
  font-size: 1rem;
  line-height: 1.7;
}
.booking-success-note {
  max-width: 590px;
  margin: 30px auto 0;
  padding: 18px 20px;
  display: grid;
  gap: 7px;
  border-radius: 14px;
  background: #edf3ed;
  color: #4f5e52;
  font-size: 0.86rem;
  line-height: 1.55;
}
.booking-success-note strong {
  color: #245d3b;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.booking-success-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.booking-success-actions .button {
  min-width: 220px;
}
.booking-success-actions .booking-new-request {
  border-color: rgb(179 94 23 / 32%);
  background: rgb(255 255 255 / 82%);
  color: #71390d;
  box-shadow: 0 8px 22px rgb(75 49 21 / 7%);
}
.booking-success-actions .booking-new-request::before {
  width: 22px;
  height: 22px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgb(179 94 23 / 12%);
  content: '+';
  font-size: 1rem;
  line-height: 1;
}
.booking-success-actions .booking-new-request:hover {
  border-color: rgb(179 94 23 / 58%);
  background: #fff7eb;
  color: #5f2f0a;
}
.form-note {
  font-size: 0.75rem;
  color: #70756f;
}
@media (max-width: 900px) {
  .head-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .menu-carousel .pizza-card {
    flex-basis: 70vw;
  }
  .reviews-grid,
  .editorial-row,
  .editorial-row.reverse,
  .form-layout {
    grid-template-columns: 1fr;
  }
  .editorial-row.reverse > figure,
  .editorial-row.reverse > div {
    grid-column: auto;
    grid-row: auto;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-item:last-child {
    grid-column: auto;
    width: auto;
  }
  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .occasion-grid article:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }
  .occasion-grid article:nth-child(2n) {
    border-right: 0;
  }
}
@media (max-width: 600px) {
  .page-hero {
    min-height: 620px;
    padding-bottom: 60px;
  }
  .page-hero h1 {
    font-size: 3.8rem;
  }
  .menu-carousel .pizza-card {
    flex-basis: 82vw;
  }
  .menu-carousel .pizza-track {
    padding-left: 18px;
  }
  .review-panel,
  .event-form {
    padding: 30px 22px;
  }
  .menu-item > div {
    height: 420px;
  }
  .editorial-row figure {
    height: 480px;
  }
  .fact {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .occasion-grid {
    grid-template-columns: 1fr;
  }
  .occasion-grid article {
    border-right: 0 !important;
  }
  .booking-accordion > summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .booking-accordion-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }
  .booking-accordion-heading > p:last-child {
    margin-top: 12px;
    font-size: 0.88rem;
  }
  .booking-accordion-toggle {
    min-width: 132px;
    min-height: 46px;
    justify-self: start;
  }
  .booking-accordion-content {
    padding-top: 28px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .event-form .event-datetime-control :is(input, select) {
    padding-inline: 14px 44px;
  }
  .event-datetime-icon {
    right: 14px;
  }
  .pizza-choice-grid {
    grid-template-columns: 1fr;
  }
  .booking-success-actions {
    flex-direction: column;
    gap: 18px;
  }
  .field-grid .full {
    grid-column: auto;
  }
  .process li {
    grid-template-columns: 55px 1fr;
  }
  .process-note {
    padding-left: 55px;
  }
}

/* Homepage motion & Napoletana brand orange */
.button.primary {
  background: var(--brand-orange);
  color: var(--ink);
}
.button.primary:hover {
  background: #f29a1f;
  color: var(--ink);
}
.final-cta {
  color: var(--ink);
}
.usp strong {
  color: var(--brand-orange-dark);
}
.ticker {
  background: var(--brand-orange);
  color: var(--ink);
  padding: 15px 0;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.ticker .ticker-track {
  display: flex;
  width: max-content;
  min-width: 200vw;
  will-change: transform;
  animation: marquee 24s linear infinite;
}
.ticker .ticker-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 0 0 100vw;
  min-width: 100vw;
  white-space: nowrap;
  animation: none;
}
.ticker-group span {
  padding: 0 clamp(22px, 3vw, 58px);
  color: var(--ink);
}
@keyframes marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.artisan-badge {
  position: absolute;
  left: 57%;
  top: -38px;
  width: 150px;
  height: 82px;
  color: var(--ink);
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
  animation: badge-float 4.8s ease-in-out infinite;
  z-index: 2;
}
.artisan-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.badge-stroke {
  fill: var(--brand-orange);
  stroke: var(--ink);
  stroke-width: 1.4;
}
.badge-spark {
  fill: var(--ink);
  transform-origin: 127px 22px;
  animation: spark 3.2s ease-in-out infinite;
}
.artisan-badge span {
  position: relative;
  text-align: center;
  font: 600 0.72rem/1.15 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.artisan-badge b {
  position: absolute;
  right: 23px;
  bottom: 13px;
  font-size: 0.8rem;
}
@keyframes badge-float {
  50% {
    transform: translateY(-5px) rotate(-2deg);
  }
}
@keyframes spark {
  50% {
    transform: scale(0.72) rotate(25deg);
  }
}
.menu-carousel .pizza-track {
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
}
.continuous-active {
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
  will-change: scroll-position;
}
.carousel.carousel-track {
  display: flex;
  gap: 24px;
  width: auto;
  padding-right: 8vw;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
}
.carousel.carousel-track figure {
  flex: 0 0 min(58vw, 700px);
}
.carousel.carousel-track figure:nth-child(even) {
  flex-basis: min(38vw, 470px);
}
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 55px;
}
.reviews-head h2 {
  font: 500 clamp(2.8rem, 5vw, 5.2rem)/1 var(--serif);
  letter-spacing: -0.045em;
  margin: 0;
}
.reviews-head p:not(.eyebrow) {
  color: #62675f;
}
.review-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
}
.review-track::-webkit-scrollbar {
  display: none;
}
.review-card {
  background: var(--paper);
  padding: 36px;
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--brand-orange-dark);
  letter-spacing: 0.12em;
  font-size: 1.1rem;
}
.review-card blockquote {
  font: 500 1.35rem/1.45 var(--serif);
  margin: 28px 0;
  flex: 1;
}
.review-card footer {
  background: none;
  color: var(--ink);
  padding: 0;
}
.review-card footer strong,
.review-card footer span {
  display: block;
}
.review-card footer span {
  font-size: 0.7rem;
  color: #73776f;
  margin-top: 3px;
}
.review-cta {
  margin-top: 38px;
  text-align: center;
}
@media (max-width: 900px) {
  .artisan-badge {
    left: auto;
    right: 4%;
    top: -30px;
  }
  .review-card {
    flex-basis: calc((100% - 24px) / 2);
  }
  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .ticker .ticker-track {
    animation-duration: 30s;
  }
  .artisan-badge {
    width: 128px;
    height: 70px;
    right: 2%;
    top: -25px;
  }
  .artisan-badge span {
    font-size: 0.61rem;
  }
  .artisan-badge b {
    right: 19px;
    bottom: 10px;
  }
  .carousel.carousel-track figure,
  .carousel.carousel-track figure:nth-child(even) {
    flex-basis: 82vw;
  }
  .review-card {
    flex-basis: 86vw;
    min-height: 260px;
    padding: 28px;
  }
  .review-card blockquote {
    font-size: 1.2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker .ticker-track {
    animation-play-state: paused;
    transform: none;
  }
  .artisan-badge,
  .badge-spark {
    animation: none !important;
  }
}
.final-cta {
  background: #d99558;
  color: var(--ink);
}
.final-cta .button {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.final-cta .button:hover {
  background: #2d382f;
  color: #fff;
  border-color: #2d382f;
}
.final-cta .button:focus-visible {
  outline-color: #fff;
}
.order-nav-cta {
  position: absolute;
  right: 0;
  min-height: 42px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  background: var(--brand-orange);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.2s;
}
.order-nav-cta:hover {
  background: #f29a1f;
  transform: translateY(-2px);
}
.mobile-order-cta {
  display: none;
}
@media (max-width: 1100px) {
  html,
  body {
    overflow-x: hidden;
  }
  .nav-group {
    display: none !important;
  }
  .nav {
    grid-template-columns: 1fr auto;
  }
  .brand {
    left: 50%;
  }
  .order-nav-cta {
    display: none !important;
  }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: inherit;
    z-index: 5;
  }
  .menu-toggle span:not(.sr-only) {
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: 0.25s;
  }
  .mobile-menu {
    display: flex;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    color: var(--ink);
    padding: 130px 28px 40px;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    transform: translateY(-105%);
    transition:
      transform 0.45s var(--ease),
      visibility 0s linear 0.45s;
    z-index: 3;
  }
  .mobile-menu > a:not(.button) {
    font: 500 2rem var(--serif);
  }
  .mobile-order-cta {
    display: inline-flex !important;
  }
  .menu-open .mobile-menu {
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }
  .menu-open {
    overflow: hidden;
  }
  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* V4 mobile-first polish */
@media (max-width: 1100px) {
  .site-header {
    height: 82px;
    padding-top: env(safe-area-inset-top);
    box-sizing: content-box;
  }
  .site-header.scrolled {
    height: 68px;
  }
  .site-header .nav {
    width: min(100% - 40px, 1040px);
  }
  .brand {
    top: 7px;
  }
  .brand img {
    width: 68px;
  }
  .site-header.scrolled .brand {
    top: 4px;
  }
  .site-header.scrolled .brand img {
    width: 58px;
  }
  .menu-toggle {
    margin-left: auto;
    min-width: 48px;
    min-height: 48px;
    touch-action: manipulation;
  }
  .mobile-menu {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    padding: max(112px, calc(88px + env(safe-area-inset-top))) max(22px, env(safe-area-inset-right))
      max(30px, calc(22px + env(safe-area-inset-bottom))) max(22px, env(safe-area-inset-left));
    align-items: stretch;
    justify-content: center;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: linear-gradient(145deg, #fbf8f1 0%, #f4efe4 72%, #eee2ca 100%);
  }
  .mobile-menu:before {
    content: 'NAVIGATIE';
    position: absolute;
    top: max(94px, calc(74px + env(safe-area-inset-top)));
    left: max(24px, env(safe-area-inset-left));
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #7b7d76;
  }
  .mobile-menu > a:not(.button) {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(23, 32, 24, 0.13);
    font: 500 clamp(1.75rem, 5vw, 2.35rem)/1 var(--serif);
    letter-spacing: -0.025em;
    transition:
      color 0.18s,
      transform 0.18s,
      opacity 0.18s;
    touch-action: manipulation;
  }
  .mobile-menu > a:not(.button):active {
    color: var(--brand-orange-dark);
    transform: translateX(5px);
    opacity: 0.72;
  }
  .mobile-menu > a.active {
    color: var(--brand-orange-dark);
  }
  .mobile-order-cta {
    width: 100%;
    min-height: 58px;
    margin-top: 26px;
    padding: 0 24px;
    background: var(--brand-orange) !important;
    color: var(--ink) !important;
    font-size: 0.78rem;
    box-shadow: 0 12px 30px rgba(74, 49, 14, 0.14);
  }
  .mobile-menu-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(23, 32, 24, 0.13);
  }
  .mobile-menu-socials a {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .menu-open {
    overflow: hidden;
    touch-action: none;
  }
  .menu-open .site-header {
    color: var(--ink);
  }
}

/* V5 mobile carousel, marquee and CTA refinement */
:root {
  --mobile-page-padding: 20px;
  --mobile-section-gap: 64px;
  --mobile-carousel-gap: 14px;
}
.ticker-group {
  flex: 0 0 auto !important;
  min-width: max-content !important;
  justify-content: flex-start !important;
  padding-inline: clamp(28px, 5vw, 70px);
  white-space: nowrap;
}
.ticker-group span {
  display: inline-block;
  margin-inline: clamp(22px, 4vw, 54px);
  padding: 0;
}
.ticker.is-offscreen .ticker-track {
  animation-play-state: paused;
}
.pizza-card h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.pizza-price {
  font: 700 0.78rem var(--sans);
  letter-spacing: 0.04em;
  color: var(--brand-orange);
  white-space: nowrap;
}
.pizza-track,
.carousel-track,
.review-track {
  touch-action: pan-x pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pizza-track::-webkit-scrollbar,
.carousel-track::-webkit-scrollbar,
.review-track::-webkit-scrollbar {
  display: none;
}
.review-card footer span {
  color: #656a62;
}
@media (max-width: 1100px) {
  .ticker {
    width: 100vw;
    font-size: clamp(0.76rem, 3.4vw, 0.9rem);
    line-height: 1;
    padding: 13px 0;
  }
  .ticker .ticker-track {
    min-width: 0;
    width: max-content;
    animation-duration: 42s;
  }
  .ticker-group {
    padding-inline: 28px;
  }
  .ticker-group span {
    margin-inline: 24px;
  }
  .menu-section {
    padding-block: var(--mobile-section-gap);
  }
  .menu-section .section-head {
    margin-bottom: 32px;
  }
  .menu-section .head-actions {
    width: 100%;
    gap: 20px;
  }
  .menu-section .head-actions > .button {
    width: fit-content;
    max-width: calc(100vw - 2 * var(--mobile-page-padding));
    align-self: center;
    padding-inline: 20px;
  }
  .menu-section .carousel-controls {
    display: none;
  }
  .menu-carousel .pizza-track {
    width: auto;
    margin-left: var(--mobile-page-padding);
    margin-right: 0;
    padding-right: var(--mobile-page-padding);
    gap: var(--mobile-carousel-gap);
  }
  .menu-carousel .pizza-card {
    flex: 0 0 82vw;
    min-width: 0;
  }
  .pizza-card > div {
    height: auto;
    aspect-ratio: 4/5;
  }
  .pizza-card h3 {
    font-size: 1.65rem;
    margin-top: 15px;
  }
  .pizza-card p {
    font-size: 0.76rem;
    line-height: 1.55;
    letter-spacing: 0.045em;
    min-height: 3.1em;
  }
  .pizza-price {
    font-size: 0.76rem;
  }
  .gallery {
    padding-bottom: 88px;
  }
  .gallery-head {
    margin-bottom: 30px;
  }
  .carousel.carousel-track {
    gap: var(--mobile-carousel-gap);
    padding-left: var(--mobile-page-padding);
    padding-right: var(--mobile-page-padding);
  }
  .carousel.carousel-track figure,
  .carousel.carousel-track figure:nth-child(even) {
    flex-basis: 82vw;
    width: 82vw;
    height: auto;
    aspect-ratio: 4/5;
    border-radius: 2px;
  }
  .review-track {
    gap: var(--mobile-carousel-gap);
    padding-right: var(--mobile-page-padding);
  }
  .review-card {
    flex-basis: calc(100vw - 2 * var(--mobile-page-padding));
    min-height: 0;
    padding: 26px;
  }
  .review-card blockquote {
    margin: 22px 0;
    font-size: 1.12rem;
    line-height: 1.5;
  }
  .full-menu {
    padding-block: var(--mobile-section-gap);
  }
  .menu-intro {
    display: block;
    margin-bottom: 34px;
  }
  .menu-intro h2 {
    margin-top: 10px;
  }
  .menu-grid {
    gap: 42px;
  }
  .menu-item > div {
    height: auto;
    aspect-ratio: 4/3;
  }
  .menu-item h3 {
    margin-top: 14px;
    font-size: 1.65rem;
  }
  .menu-item p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #62675f;
  }
  .menu-item span {
    width: 56px;
    height: 48px;
    right: 12px;
    bottom: 12px;
  }
  .events-content .button,
  .final-cta .button,
  .compact-cta {
    width: fit-content !important;
    max-width: calc(100vw - 2 * var(--mobile-page-padding));
    padding-inline: 22px;
  }
  .final-cta .button {
    margin-inline: auto;
  }
  .events-content .button {
    font-size: 0.72rem;
    gap: 14px;
  }
  .final-cta {
    padding-block: 74px;
  }
  .final-cta h2 {
    max-width: 10ch;
    margin-inline: auto;
  }
}
@media (max-width: 350px) {
  .menu-carousel .pizza-card {
    flex-basis: 80vw;
  }
  .pizza-card h3 {
    font-size: 1.5rem;
  }
  .events-content .button {
    padding-inline: 16px;
    font-size: 0.68rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker {
    overflow-x: auto;
  }
  .ticker .ticker-track {
    animation: none !important;
    transform: none !important;
  }
  .ticker-group[aria-hidden='true'] {
    display: none;
  }
  .continuous-active {
    scroll-snap-type: x mandatory !important;
  }
  .menu-carousel .pizza-card,
  .carousel.carousel-track figure {
    scroll-snap-align: start;
  }
}

/* V6 responsive menu page and conversion section */
.menu-item-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.menu-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-item-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  margin-top: 17px;
}
.menu-item-head h3 {
  min-width: 0;
  margin: 0;
  font: 600 1.85rem/1.08 var(--serif);
  overflow-wrap: anywhere;
}
.menu-item-head strong {
  display: grid;
  place-items: center;
  min-width: 58px;
  min-height: 42px;
  padding: 5px 10px;
  background: var(--brand-orange);
  color: var(--ink);
  font-size: 0.82rem;
  white-space: nowrap;
}
.menu-item > p {
  margin: 8px 0 0;
  color: #565c55;
  line-height: 1.55;
}
.menu-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.menu-cta-row .button {
  min-width: 190px;
}
.order-cta {
  position: relative;
  overflow: hidden;
  background: #eee3d0;
  padding: clamp(70px, 8vw, 115px) 0;
}
.order-cta:before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--brand-orange);
}
.order-cta-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}
.order-cta-copy {
  max-width: 560px;
}
.order-cta h2 {
  font: 500 clamp(3rem, 5.5vw, 5.6rem)/0.96 var(--serif);
  letter-spacing: -0.045em;
  margin: 0;
}
.order-cta-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 27px 0 32px;
  color: #4f564f;
  font-size: 1.04rem;
}
.order-cta figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.order-cta figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}
.order-cta .button {
  background: var(--brand-orange);
  color: var(--ink);
  border-color: var(--brand-orange-dark);
}
@media (min-width: 1101px) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 78px 30px;
  }
  .menu-item:last-child {
    grid-column: auto;
    width: auto;
  }
}
@media (min-width: 601px) and (max-width: 1100px) {
  .full-menu {
    padding-block: 90px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 24px;
  }
  .menu-item:last-child {
    grid-column: auto;
    width: auto;
  }
  .menu-item-media {
    aspect-ratio: 4/3;
  }
  .menu-item-head h3 {
    font-size: 1.65rem;
  }
  .menu-carousel .pizza-card {
    flex: 0 0 40vw;
    min-width: 0;
  }
  .menu-carousel .pizza-track {
    gap: 20px;
  }
  .order-cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
  .order-cta h2 {
    font-size: clamp(3rem, 6vw, 4.4rem);
  }
}
@media (max-width: 600px) {
  .menu-hero {
    min-height: 510px;
    height: 68svh;
  }
  .menu-hero .page-hero-bg img {
    object-position: center 48%;
  }
  .full-menu {
    padding-block: 58px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .menu-item:last-child {
    grid-column: auto;
    width: auto;
  }
  .menu-item-media {
    aspect-ratio: 1/1;
  }
  .menu-item-head {
    gap: 14px;
    margin-top: 13px;
  }
  .menu-item-head h3 {
    font-size: 1.55rem;
  }
  .menu-item-head strong {
    min-width: 54px;
    min-height: 40px;
  }
  .menu-item > p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 7px;
  }
  .menu-cta-row {
    margin-top: 30px;
    gap: 10px;
  }
  .menu-cta-row .button {
    min-width: 0;
    width: fit-content;
    padding-inline: 18px;
  }
  .order-cta {
    padding: 62px 0;
  }
  .order-cta:before {
    inset: 0 0 auto;
    height: 6px;
    width: auto;
  }
  .order-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .order-cta figure {
    grid-row: 1;
    aspect-ratio: 16/10;
  }
  .order-cta-copy {
    text-align: center;
  }
  .order-cta-copy .eyebrow {
    justify-content: center;
  }
  .order-cta h2 {
    font-size: clamp(2.75rem, 12vw, 3.55rem);
  }
  .order-cta-copy > p:not(.eyebrow) {
    font-size: 0.97rem;
    line-height: 1.58;
    margin: 20px auto 25px;
  }
  .order-cta .button {
    margin-inline: auto;
  }
}
@media (max-width: 600px) {
  :root {
    --container: calc(100vw - 40px);
  }
  .container {
    max-width: calc(100vw - 40px);
  }
  .section {
    padding: 72px 0;
  }
  .hero {
    height: 100svh;
    min-height: 640px;
    max-height: 860px;
  }
  .hero-content {
    padding-top: 52px;
  }
  .hero h1 {
    font-size: clamp(2.9rem, 13.5vw, 4rem);
    max-width: 9ch;
  }
  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
    margin: 22px 0;
  }
  .hero-note {
    right: 0;
    padding: 14px 20px;
    min-width: 0;
  }
  .hero-note strong {
    font-size: 1.08rem;
  }
  .page-hero {
    height: 78svh;
    min-height: 560px;
    max-height: 760px;
    padding-bottom: 48px;
  }
  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.15rem);
    overflow-wrap: anywhere;
  }
  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
    margin-top: 20px;
  }
  .page-hero .button {
    width: 100%;
    padding-inline: 18px;
  }
  .section-head h2,
  .gallery h2,
  .reviews-head h2,
  .menu-intro h2,
  .editorial h2,
  .event-intro h2,
  .form-layout h2,
  .final-cta h2 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }
  .intro h2,
  .story h2,
  .location h2 {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }
  .photo-tall {
    height: min(112vw, 440px);
  }
  .photo-square {
    height: min(68vw, 270px);
  }
  .story-image,
  .editorial-row figure {
    height: min(120vw, 480px);
  }
  .events {
    min-height: 650px;
  }
  .events h2 {
    font-size: clamp(2.8rem, 12vw, 3.6rem);
  }
  .pizza-card {
    min-width: 84vw;
  }
  .pizza-card > div {
    height: min(112vw, 430px);
  }
  .pizza-card p {
    white-space: normal;
  }
  .carousel figure,
  .carousel figure:nth-child(even),
  .carousel.carousel-track figure,
  .carousel.carousel-track figure:nth-child(even) {
    width: 84vw;
    height: min(112vw, 440px);
    flex-basis: 84vw;
  }
  .review-card {
    flex-basis: 88vw;
    min-height: 250px;
  }
  .review-card blockquote {
    font-size: 1.15rem;
  }
  .ticker {
    font-size: 0.86rem;
    padding: 12px 0;
  }
  .menu-item > div {
    height: min(112vw, 430px);
  }
  .menu-item h3 {
    font-size: 1.75rem;
  }
  .menu-item p {
    line-height: 1.55;
  }
  .occasion-grid article {
    padding: 32px 12px 44px;
  }
  .event-form {
    padding: 28px 20px;
  }
  .event-form input,
  .event-form select,
  .event-form textarea {
    font-size: 16px;
  }
  .event-form > .button {
    width: 100%;
    padding-inline: 14px;
  }
  .final-cta {
    padding: 78px 0;
  }
  .final-cta h2 br {
    display: none;
  }
  .final-cta .button {
    width: 100%;
  }
  footer {
    padding: 64px 0 max(26px, env(safe-area-inset-bottom));
    text-align: center;
  }
  .footer-grid {
    justify-items: center;
    gap: 32px;
  }
  .footer-grid > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand img {
    width: 104px;
    margin: 0 auto 20px;
  }
  .footer-grid h3 {
    margin-bottom: 14px;
  }
  .footer-grid a {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  .footer-grid .social-link {
    display: inline-flex !important;
    min-width: 132px;
    min-height: 44px;
  }
  .footer-bottom {
    margin-top: 48px;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom span {
    width: 100%;
  }
  .button,
  .circle,
  .qty button {
    min-height: 44px;
  }
  .reveal {
    transform: translateY(16px);
    transition-duration: 0.55s;
  }
}
@media (max-width: 600px) {
  .menu-hero {
    min-height: 510px;
    height: 68svh;
  }
  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .menu-item {
    min-width: 0;
  }
  .menu-item-media,
  .menu-item > div.menu-item-media {
    height: auto;
    aspect-ratio: 1/1;
  }
  .menu-item-head,
  .menu-item > div.menu-item-head {
    width: 100%;
    height: auto !important;
    min-width: 0;
    aspect-ratio: auto !important;
    position: static;
    overflow: visible;
  }
  .menu-item-head h3,
  .menu-item h3 {
    font-size: 1.55rem;
    margin: 0;
  }
  .menu-item > p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .order-cta .button {
    width: fit-content !important;
  }
}

/* V7 centralized motion speeds and compact mobile CTA alignment */
.ticker .ticker-track {
  animation-duration: var(--marquee-speed-usp);
}
@media (max-width: 767px) {
  .ticker .ticker-track {
    animation-duration: var(--marquee-speed-usp-mobile);
  }
  body:not(.admin-body):not(.app-body) main .button,
  body:not(.admin-body):not(.app-body) main .text-link,
  body:not(.admin-body):not(.app-body) .mobile-order-cta {
    display: flex;
    width: fit-content !important;
    max-width: calc(100vw - 40px);
    min-height: 44px;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  body:not(.admin-body):not(.app-body) main .button {
    padding-left: 22px;
    padding-right: 22px;
  }
  body:not(.admin-body):not(.app-body) main .actions {
    width: 100%;
    align-items: center;
  }
  body:not(.admin-body):not(.app-body) .mobile-order-cta {
    min-width: min(220px, calc(100vw - 40px));
  }
  body:not(.admin-body):not(.app-body) .event-form > .button {
    max-width: min(330px, calc(100vw - 40px));
  }
}

/* WordPress theme integration */
.custom-logo-link.brand img {
  width: 92px;
  height: auto;
}
.mobile-menu ul,
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu .menu {
  display: contents;
}
.footer-grid .menu {
  display: grid;
  gap: 4px;
}
.entry-content {
  max-width: 780px;
}
.entry-content img {
  height: auto;
}
.not-found {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding-top: 170px;
}
.not-found h1 {
  font: 500 clamp(3rem, 7vw, 6rem)/1 var(--serif);
  margin: 15px auto 35px;
  max-width: 14ch;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.wp-site-blocks {
  overflow-x: hidden;
}
.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
  .admin-bar .mobile-menu {
    padding-top: max(158px, calc(134px + env(safe-area-inset-top)));
  }
}

/* V8 editorial mobile navigation */
@media (max-width: 1100px) {
  .menu-toggle {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(20, 28, 21, 0.12);
    backdrop-filter: blur(8px);
    transition:
      background 0.25s,
      border-color 0.25s,
      transform 0.25s;
  }
  .site-header.scrolled .menu-toggle,
  .menu-open .menu-toggle {
    border-color: rgba(23, 32, 24, 0.18);
    background: rgba(255, 255, 255, 0.58);
  }
  .menu-toggle:active {
    transform: scale(0.94);
  }
  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    border-radius: 2px;
  }
  .menu-toggle span:nth-child(2) {
    width: 15px;
    margin-left: auto;
  }
  .menu-open .menu-toggle span:nth-child(2) {
    width: 22px;
  }
  .mobile-menu {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    align-content: start;
    justify-content: stretch;
    padding: max(118px, calc(92px + env(safe-area-inset-top))) max(24px, calc((100vw - 720px) / 2))
      max(24px, calc(18px + env(safe-area-inset-bottom)));
    background:
      radial-gradient(circle at 92% 12%, rgba(255, 169, 52, 0.28), transparent 31%),
      linear-gradient(155deg, #fbf8f1 0%, #f3ecdf 62%, #eadcc5 100%);
    transform: translate3d(0, -102%, 0);
    opacity: 0.5;
    transition:
      transform 0.5s var(--ease),
      opacity 0.35s ease,
      visibility 0s linear 0.5s;
  }
  .mobile-menu:before {
    content: '';
    position: absolute;
    top: 18%;
    right: -75px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(189, 103, 18, 0.16);
    border-radius: 50%;
    box-shadow:
      0 0 0 28px rgba(189, 103, 18, 0.045),
      0 0 0 57px rgba(189, 103, 18, 0.035);
    pointer-events: none;
  }
  .mobile-menu:after {
    content: 'NAPOLETANA';
    position: absolute;
    right: 17px;
    bottom: 17%;
    font: 700 clamp(3.8rem, 15vw, 8rem)/1 var(--serif);
    letter-spacing: -0.07em;
    color: rgba(23, 32, 24, 0.035);
    writing-mode: vertical-rl;
    pointer-events: none;
  }
  .menu-open .mobile-menu {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
  .mobile-menu-intro {
    position: relative;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(23, 32, 24, 0.14);
  }
  .mobile-menu-intro span {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: var(--brand-orange-dark);
  }
  .mobile-menu-intro p {
    margin: 6px 0 0;
    font: 0.95rem/1.4 var(--serif);
    color: #60655e;
  }
  .mobile-menu-links {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 0;
  }
  .mobile-menu-links .mobile-menu-list,
  .mobile-menu-links > ul {
    width: 100%;
    display: grid !important;
    gap: 0;
    counter-reset: mobile-nav;
  }
  .mobile-menu-links li {
    display: block;
    counter-increment: mobile-nav;
  }
  .mobile-menu-links li a {
    position: relative;
    width: 100%;
    min-height: clamp(54px, 8vh, 72px);
    display: flex;
    align-items: center;
    padding: 5px 48px 5px 0;
    border-bottom: 1px solid rgba(23, 32, 24, 0.12);
    font: 500 clamp(1.85rem, 6vw, 2.7rem)/1 var(--serif);
    letter-spacing: -0.035em;
    transition:
      color 0.2s,
      transform 0.25s var(--ease);
  }
  .mobile-menu-links li a:before {
    content: '0' counter(mobile-nav);
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font: 700 0.62rem/1 var(--sans);
    letter-spacing: 0.1em;
    color: #89877e;
  }
  .mobile-menu-links li a:after {
    content: '→';
    position: absolute;
    right: 23px;
    top: 50%;
    opacity: 0;
    transform: translate(-8px, -50%);
    font: 400 1rem var(--sans);
    color: var(--brand-orange-dark);
    transition: 0.2s;
  }
  .mobile-menu-links li a:hover,
  .mobile-menu-links li a:focus-visible {
    color: var(--brand-orange-dark);
    transform: translateX(6px);
  }
  .mobile-menu-links li a:hover:after,
  .mobile-menu-links li a:focus-visible:after {
    opacity: 1;
    transform: translate(0, -50%);
  }
  .mobile-order-cta {
    position: relative;
    z-index: 1;
    width: 100% !important;
    max-width: none !important;
    min-height: 60px !important;
    margin: 13px 0 0 !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    border-radius: 0;
    background: var(--brand-orange) !important;
    box-shadow: 0 13px 30px rgba(75, 48, 10, 0.13);
    font-size: 0.72rem !important;
    letter-spacing: 0.13em;
  }
  .mobile-order-cta span:last-child {
    font-size: 1.25rem;
    transition: transform 0.2s;
  }
  .mobile-order-cta:hover span:last-child {
    transform: translateX(5px);
  }
  .mobile-menu-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 14px;
  }
  .mobile-menu-footer > p {
    margin: 0;
    font: 0.7rem/1.4 var(--sans);
    color: #6e716a;
  }
  .mobile-menu-socials {
    margin: 0;
    padding: 0;
    border: 0;
    gap: 20px;
  }
  .mobile-menu-socials a {
    min-height: 36px;
    font-size: 0.61rem;
  }
  .menu-open .mobile-menu-intro,
  .menu-open .mobile-menu-links li,
  .menu-open .mobile-order-cta,
  .menu-open .mobile-menu-footer {
    animation: nav-reveal 0.55s both;
  }
  .menu-open .mobile-menu-links li:nth-child(2) {
    animation-delay: 0.04s;
  }
  .menu-open .mobile-menu-links li:nth-child(3) {
    animation-delay: 0.08s;
  }
  .menu-open .mobile-menu-links li:nth-child(4) {
    animation-delay: 0.12s;
  }
  .menu-open .mobile-order-cta {
    animation-delay: 0.15s;
  }
  .menu-open .mobile-menu-footer {
    animation-delay: 0.19s;
  }
}
@keyframes nav-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 520px) {
  .mobile-menu {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mobile-menu-footer > p {
    display: none;
  }
  .mobile-menu-footer {
    justify-content: center;
  }
  .mobile-menu-links li a {
    font-size: clamp(1.7rem, 8.5vw, 2.25rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .menu-open .mobile-menu-intro,
  .menu-open .mobile-menu-links li,
  .menu-open .mobile-order-cta,
  .menu-open .mobile-menu-footer {
    animation: none;
  }
  .mobile-menu {
    transition-duration: 0.01ms;
  }
}

/* Compact Napoletana promise section */
.usp-section {
  padding-top: 135px;
  padding-bottom: 105px;
}
.usp {
  min-height: 235px;
  padding-top: 32px;
}
.usp h3 {
  margin-top: 20px;
}
@media (max-width: 900px) {
  .usp-section {
    padding-top: 100px;
    padding-bottom: 82px;
  }
  .usp {
    min-height: 0;
    padding: 27px 0 !important;
  }
  .usp h3 {
    margin-top: 16px;
  }
}
@media (max-width: 600px) {
  .usp-section {
    padding-top: 82px;
    padding-bottom: 68px;
  }
  .usp {
    padding: 23px 0 !important;
  }
  .usp h3 {
    margin: 13px 0 8px;
  }
}

/* Mouse and pen drag affordance for every carousel */
[data-carousel] [data-track] {
  cursor: grab;
  -webkit-user-drag: none;
}
[data-carousel] [data-track].is-dragging {
  cursor: grabbing;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}
[data-carousel] [data-track].is-dragging * {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
[data-carousel] [data-track] img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

/* V16 uniforme, directe carrouselinteractie op muis, trackpad en touch */
[data-carousel] [data-track] {
  overscroll-behavior-inline: contain;
  scroll-behavior: auto;
  scroll-snap-type: x proximity;
}
[data-carousel] [data-track].continuous-active {
  scroll-snap-type: none;
}

/* V9 continuous motion, social details, promise icons and polished menu */
.ticker .ticker-track {
  display: flex !important;
  width: max-content !important;
  min-width: 0 !important;
  gap: 0;
  animation-name: napoletana-seamless-marquee !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
}
.ticker .ticker-group {
  display: flex !important;
  flex: 0 0 auto !important;
  width: max-content !important;
  min-width: max-content !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: clamp(22px, 3vw, 48px);
  padding-inline: clamp(28px, 5vw, 70px) !important;
  animation: none !important;
}
.ticker.is-offscreen .ticker-track {
  animation-play-state: running;
}
@keyframes napoletana-seamless-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--ticker-loop-distance, -50%), 0, 0);
  }
}
.social-link,
.mobile-menu-socials a {
  display: flex;
  align-items: center;
  gap: 9px;
}
.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-facebook .social-icon,
.mobile-menu-socials a:last-child .social-icon {
  fill: currentColor;
  stroke: none;
}
.social-icon-dot {
  fill: currentColor;
  stroke: none;
}
.usp {
  position: relative;
}
.usp-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand-orange-dark) 42%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-orange) 10%, transparent);
  color: var(--brand-orange-dark);
}
.usp-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.usp > .usp-icon + span {
  position: absolute;
  top: 24px;
  right: 0;
}
.menu-hero {
  height: min(74vh, 760px);
  min-height: 610px;
}
.menu-hero .page-hero-bg:after {
  background:
    linear-gradient(
      90deg,
      rgba(13, 20, 15, 0.86) 0%,
      rgba(13, 20, 15, 0.38) 56%,
      rgba(13, 20, 15, 0.18)
    ),
    linear-gradient(0deg, rgba(13, 20, 15, 0.5), transparent 62%);
}
.full-menu {
  background: linear-gradient(180deg, #fbf8f1 0%, #f6f0e5 100%);
}
.full-menu .menu-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.full-menu .menu-intro .eyebrow {
  margin: 0 0 10px;
}
.full-menu .menu-intro h2 {
  max-width: 12ch;
  margin: 0;
  font: 500 clamp(3.1rem, 5.6vw, 5.8rem)/0.94 var(--serif);
  letter-spacing: -0.045em;
}
.full-menu .menu-grid {
  margin-top: 64px;
}
.menu-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.menu-item-media {
  background: #e8dfd1;
  box-shadow: 0 18px 45px rgba(34, 39, 32, 0.08);
}
.menu-item-media:after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 24, 0.06);
  pointer-events: none;
}
.menu-item-head strong {
  border-radius: 99px;
}
.menu-item > p {
  max-width: 42ch;
}
.month-pizza-description {
  max-width: 46ch;
  margin-top: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(211, 110, 42, 0.24);
  border-radius: 12px;
  color: #5e5145;
  background: linear-gradient(135deg, rgba(255, 249, 237, 0.98), rgba(255, 238, 211, 0.94));
}
.pizza-card > .month-pizza-description,
.menu-item > .month-pizza-description {
  position: static;
  height: auto;
  min-height: 0;
  aspect-ratio: auto !important;
  overflow: visible;
}
.month-pizza-description small {
  display: block;
  margin-bottom: 4px;
  color: #a34f25;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.month-pizza-description p {
  margin: 0 !important;
  color: inherit !important;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  line-height: 1.48;
  text-transform: none;
  white-space: pre-line;
}
.menu-section .month-pizza-description {
  border-color: rgba(246, 196, 111, 0.34);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
}
.menu-section .month-pizza-description small {
  color: #f6c46f;
}
@media (max-width: 600px) {
  .full-menu .menu-item > .month-pizza-description {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 7px 8px;
    align-self: start;
  }
  .full-menu .month-pizza-description small {
    margin-bottom: 2px;
    font-size: 0.52rem;
  }
  .full-menu .month-pizza-description p {
    font-size: 0.7rem;
    line-height: 1.32;
  }
}
.final-cta {
  padding: clamp(86px, 10vw, 145px) 0;
  text-align: center;
}
.final-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta p {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.final-cta h2 {
  margin: 0 0 35px;
  font: 500 clamp(3.2rem, 6vw, 6rem)/0.94 var(--serif);
  letter-spacing: -0.045em;
}
@media (max-width: 900px) {
  .usp-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 17px;
  }
  .usp > .usp-icon + span {
    top: 27px;
  }
  .full-menu .menu-intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .full-menu .menu-intro h2 {
    max-width: 13ch;
  }
  .full-menu .menu-grid {
    margin-top: 44px;
  }
}
@media (max-width: 600px) {
  .ticker .ticker-group {
    flex-basis: auto !important;
    width: max-content !important;
    min-width: max-content !important;
    gap: 22px;
  }
  .menu-hero {
    height: 65svh;
    min-height: 500px;
  }
  .full-menu .menu-intro {
    padding-bottom: 25px;
  }
  .full-menu .menu-intro h2 {
    font-size: clamp(2.6rem, 12vw, 3.45rem);
  }
  .full-menu .menu-grid {
    margin-top: 34px;
  }
  .menu-item-media {
    border-radius: 2px;
  }
  .usp > .usp-icon + span {
    top: 21px;
  }
  .mobile-menu-socials a {
    gap: 6px;
  }
  .mobile-menu-socials .social-icon {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }
}

/* V10 subtle carousel navigation */
[data-carousel] {
  position: relative;
}
.carousel-stage {
  position: relative;
  width: 100%;
}
.carousel-arrows {
  position: absolute;
  z-index: 20;
  left: clamp(14px, 2.2vw, 34px);
  right: clamp(14px, 2.2vw, 34px);
  top: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
}
.carousel-arrow {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 32, 24, 0.2);
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.9);
  color: var(--ink);
  box-shadow: 0 7px 22px rgba(18, 24, 19, 0.13);
  backdrop-filter: blur(8px);
  cursor: pointer;
  pointer-events: auto;
  transition:
    transform 0.2s var(--ease),
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.carousel-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel-arrow:hover {
  transform: scale(1.07);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.carousel-arrow:active {
  transform: scale(0.94);
}
.menu-section .carousel-arrow {
  background: rgba(244, 239, 228, 0.94);
  border-color: rgba(255, 255, 255, 0.46);
}
.gallery.story-gallery {
  margin-top: 0;
}
@media (max-width: 600px) {
  .carousel-arrows {
    left: 8px;
    right: 8px;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  .carousel-arrow svg {
    width: 18px;
    height: 18px;
  }
  .reviews .carousel-arrows {
    top: 66%;
  }
}

/* V11 desktop menu proportions, complete reviews and story fact icons */
.review-card-rating-only {
  justify-content: space-between;
}
.review-card-rating-only .review-stars {
  font-size: 1.35rem;
}
.review-card-rating-only footer {
  margin-top: auto;
}
.story-facts .fact {
  grid-template-columns: 74px 210px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.story-facts .fact:before {
  content: '';
  width: 64px;
  height: 64px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.story-facts .fact:nth-child(1):before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23f1c377' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 47c0-10 9-18 20-18s20 8 20 18H12Z M22 29c-3-8 2-16 10-19 8 3 13 11 10 19 M32 11v18 M20 40h24'/%3E%3C/svg%3E");
}
.story-facts .fact:nth-child(2):before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23f1c377' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='8' width='44' height='48' rx='3'/%3E%3Cpath d='M10 21h44 M18 15h1 M27 15h1 M21 48c0-10 5-18 11-23 6 5 11 13 11 23H21Z M32 44c-4-4-4-10 0-14 4 4 4 10 0 14Z'/%3E%3C/svg%3E");
}
.story-facts .fact:nth-child(3):before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23f1c377' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 49c12-2 22-11 27-24 6 10 5 22-2 30 M42 25c5-8 11-13 19-15-2 10-8 18-18 21 M21 44c-5-6-7-13-5-21 8 3 13 9 15 17'/%3E%3C/svg%3E");
}
@media (min-width: 1101px) {
  .full-menu {
    padding-top: 105px;
    padding-bottom: 120px;
  }
  .full-menu .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 58px 28px;
    margin-top: 52px;
  }
  .full-menu .menu-item-media {
    aspect-ratio: 4/3;
  }
  .full-menu .menu-item-head {
    margin-top: 14px;
  }
  .full-menu .menu-item-head h3 {
    font-size: 1.65rem;
  }
  .full-menu .menu-item > p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .menu-hero {
    height: 66vh;
    min-height: 540px;
    max-height: 680px;
    padding-bottom: 68px;
  }
}
@media (max-width: 900px) {
  .story-facts .fact {
    grid-template-columns: 58px minmax(120px, 0.45fr) minmax(0, 1fr);
    gap: 24px;
  }
  .story-facts .fact:before {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 600px) {
  .story-facts .fact {
    grid-template-columns: 52px 1fr;
    gap: 12px 18px;
  }
  .story-facts .fact:before {
    width: 48px;
    height: 48px;
  }
  .story-facts .fact > strong {
    align-self: center;
  }
  .story-facts .fact > div {
    grid-column: 1/-1;
    padding-left: 70px;
  }
  .full-menu .menu-item-media {
    aspect-ratio: 1/1;
  }
}

/* V12 title punctuation and tighter menu-card alignment */
.story-facts .fact > strong {
  white-space: nowrap;
}
.menu-item-media + .menu-item-head {
  margin-top: 12px !important;
}
.menu-item-head + p {
  margin-top: 6px !important;
}
@media (min-width: 1101px) {
  .full-menu .menu-item-media,
  .full-menu .menu-item > div.menu-item-media {
    height: auto !important;
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .full-menu .menu-item-head,
  .full-menu .menu-item > div.menu-item-head {
    height: auto !important;
    min-height: 0;
    position: static;
    overflow: visible;
    aspect-ratio: auto;
  }
  .full-menu .menu-grid {
    align-items: start;
  }
}

/* V13 flush, permanently fixed mobile header */
@media (max-width: 782px) {
  html {
    margin-top: 0 !important;
  }
  body.admin-bar {
    padding-top: 0 !important;
  }
  #wpadminbar {
    display: none !important;
  }
  .site-header,
  .admin-bar .site-header {
    top: 0 !important;
    margin-top: 0 !important;
    position: fixed;
  }
  .site-header:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: calc(-1 * env(safe-area-inset-top));
    height: env(safe-area-inset-top);
    background: inherit;
  }
}

/* V14 slightly more compact public-page rhythm */
body:not(.admin-body):not(.app-body) .section {
  padding-top: clamp(72px, 8vw, 125px);
  padding-bottom: clamp(72px, 8vw, 125px);
}
body:not(.admin-body):not(.app-body) .hero {
  height: max(680px, 92svh);
  min-height: 640px;
}
body:not(.admin-body):not(.app-body) .page-hero {
  height: 68vh;
  min-height: 560px;
  padding-bottom: 70px;
}
body:not(.admin-body):not(.app-body) .section-head {
  margin-bottom: 46px;
}
body:not(.admin-body):not(.app-body) .gallery-head {
  margin-bottom: 44px;
}
body:not(.admin-body):not(.app-body) .reviews-head {
  margin-bottom: 42px;
}
body:not(.admin-body):not(.app-body) .photo-composition {
  margin-top: 70px;
}
body:not(.admin-body):not(.app-body) .story-grid {
  gap: clamp(45px, 7vw, 90px);
}
body:not(.admin-body):not(.app-body) .events {
  min-height: 650px;
}
body:not(.admin-body):not(.app-body) .fact {
  padding-top: 43px;
  padding-bottom: 43px;
}
body:not(.admin-body):not(.app-body) .order-cta {
  padding-top: clamp(58px, 6.5vw, 92px);
  padding-bottom: clamp(58px, 6.5vw, 92px);
}
body:not(.admin-body):not(.app-body) .final-cta {
  padding-top: clamp(68px, 8vw, 110px);
  padding-bottom: clamp(68px, 8vw, 110px);
}
body:not(.admin-body):not(.app-body) footer {
  padding-top: 68px;
}
@media (max-width: 600px) {
  body:not(.admin-body):not(.app-body) .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  body:not(.admin-body):not(.app-body) .hero {
    height: 92svh;
    min-height: 600px;
    max-height: 800px;
  }
  body:not(.admin-body):not(.app-body) .page-hero {
    height: 67svh;
    min-height: 500px;
    padding-bottom: 40px;
  }
  body:not(.admin-body):not(.app-body) .section-head,
  body:not(.admin-body):not(.app-body) .gallery-head,
  body:not(.admin-body):not(.app-body) .reviews-head {
    margin-bottom: 28px;
  }
  body:not(.admin-body):not(.app-body) .photo-composition {
    margin-top: 45px;
  }
  body:not(.admin-body):not(.app-body) .events {
    min-height: 590px;
  }
  body:not(.admin-body):not(.app-body) .fact {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  body:not(.admin-body):not(.app-body) .order-cta,
  body:not(.admin-body):not(.app-body) .final-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  body:not(.admin-body):not(.app-body) footer {
    padding-top: 52px;
  }
}

/* V15 compactere inhoud; navigatie en herohoogtes blijven ongewijzigd */
body:not(.admin-body):not(.app-body) .section {
  padding-top: clamp(60px, 6.5vw, 105px);
  padding-bottom: clamp(60px, 6.5vw, 105px);
}
body:not(.admin-body):not(.app-body) .section-head {
  margin-bottom: 38px;
}
body:not(.admin-body):not(.app-body) .gallery-head,
body:not(.admin-body):not(.app-body) .reviews-head {
  margin-bottom: 34px;
}
body:not(.admin-body):not(.app-body) .photo-composition {
  margin-top: 58px;
}
body:not(.admin-body):not(.app-body) .events {
  min-height: 560px;
}
body:not(.admin-body):not(.app-body) .fact {
  padding-top: 34px;
  padding-bottom: 34px;
}
body:not(.admin-body):not(.app-body) .order-cta,
body:not(.admin-body):not(.app-body) .final-cta {
  padding-top: clamp(50px, 5.5vw, 78px);
  padding-bottom: clamp(50px, 5.5vw, 78px);
}
body.page-template-page-bestellen .site-header,
body.page-template-page-bestellen .site-header.scrolled,
body.page-template-page-bestellen-php .site-header,
body.page-template-page-bestellen-php .site-header.scrolled {
  color: #111 !important;
  background: rgba(244, 239, 228, 0.97);
}
body.page-template-page-bestellen .site-header .nav,
body.page-template-page-bestellen-php .site-header .nav {
  border-color: var(--line);
}
@media (max-width: 600px) {
  body:not(.admin-body):not(.app-body) .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  body:not(.admin-body):not(.app-body) .section-head,
  body:not(.admin-body):not(.app-body) .gallery-head,
  body:not(.admin-body):not(.app-body) .reviews-head {
    margin-bottom: 23px;
  }
  body:not(.admin-body):not(.app-body) .photo-composition {
    margin-top: 38px;
  }
  body:not(.admin-body):not(.app-body) .events {
    min-height: 530px;
  }
  body:not(.admin-body):not(.app-body) .fact {
    padding-top: 26px;
    padding-bottom: 26px;
  }
  body:not(.admin-body):not(.app-body) .order-cta,
  body:not(.admin-body):not(.app-body) .final-cta {
    padding-top: 46px;
    padding-bottom: 46px;
  }
}

/* V17 gelijke afmetingen voor knoppen die als groep bij elkaar staan */
body:not(.admin-body):not(.app-body) :where(.actions, .menu-cta-row) > .button {
  width: 230px;
  min-width: 230px;
  min-height: 54px;
  padding-inline: 24px;
  text-align: center;
}

/* V18 homepagevolgorde: conversiepad direct onder de kenmerkenbalk */
body.home #main-content {
  display: flex;
  flex-direction: column;
}
body.home #main-content > .hero {
  order: 0;
}
body.home #main-content > .ticker {
  order: 1;
}
body.home #main-content > .opening-transition {
  order: 2;
}
body.home #main-content > .order-cta {
  order: 2;
}
body.home #main-content > .napo-public-calendar-section {
  order: 3;
}
body.home #main-content > .menu-section {
  order: 4;
}
body.home #main-content > .events {
  order: 5;
}
body.home #main-content > .intro {
  order: 6;
}
body.home #main-content > .usp-section {
  order: 7;
}
body.home #main-content > .story {
  order: 8;
}
body.home #main-content > .location {
  order: 9;
}
body.home #main-content > .reviews {
  order: 10;
}

/* V19 footerdetails, rondere bediening en gecentreerde mobiele ticker */
body:not(.admin-body):not(.app-body) :where(button:not(.circle):not(.carousel-arrow), .button) {
  border-radius: 12px;
}
body:not(.admin-body):not(.app-body)
  :where(.button.primary, .order-nav-cta, .mobile-order-cta, .order-cta .button) {
  border-color: var(--button-border) !important;
  background: var(--button-surface) !important;
  color: var(--button-on-orange) !important;
  box-shadow: 0 8px 20px rgba(159, 87, 12, 0.12);
}
body:not(.admin-body):not(.app-body)
  :where(.button.primary, .order-nav-cta, .mobile-order-cta, .order-cta .button):hover {
  border-color: rgba(211, 133, 23, 0.72) !important;
  background: var(--button-surface-hover) !important;
  color: var(--button-on-orange) !important;
}
@media (max-width: 600px) {
  body.page-template-page-bestellen .order-page > .section,
  body.page-template-page-bestellen-php .order-page > .section {
    padding-top: calc(102px + env(safe-area-inset-top)) !important;
  }
}
footer a {
  width: fit-content;
  padding-bottom: 3px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
}
footer a:hover {
  background-image: linear-gradient(currentColor, currentColor);
}
@media (max-width: 600px) {
  .ticker {
    display: flex;
    align-items: center;
    height: 52px;
    padding-block: 0 !important;
  }
  .ticker .ticker-track,
  .ticker .ticker-group {
    align-items: center !important;
    height: 100%;
  }
  .ticker .ticker-track {
    animation-duration: var(--marquee-speed-usp-mobile) !important;
  }
  .ticker .ticker-group {
    min-height: 52px;
    line-height: 52px;
    transform: translateY(2px);
  }
  .ticker .ticker-group span {
    display: inline-flex;
    height: 52px;
    align-items: center;
    line-height: 52px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .ticker .ticker-track {
    animation-duration: var(--marquee-speed-usp-mobile) !important;
  }
}
@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
  .ticker .ticker-track {
    gap: 18px !important;
  }
  .ticker .ticker-group {
    gap: 18px;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .ticker .ticker-group span {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
.action-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button .action-icon {
  margin-left: -14px;
}
.text-link .action-icon {
  margin-left: -24px;
}
.order-nav-cta {
  gap: 8px;
  border-radius: 12px;
}

.footer-grid .menu {
  justify-items: center;
}
.footer-grid h3 {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.footer-grid a {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand img {
  margin-right: auto;
  margin-left: auto;
}
.footer-brand p {
  max-width: 290px;
  margin-right: auto;
  margin-left: auto;
}

/* V54 actuele winkelmandwaarde op de bestelknoppen van de homepage */
[data-cart-total-cta].has-cart-total {
  gap: 9px;
}
.button .cart-cta-label {
  font: inherit;
}
.cart-cta-total {
  display: inline-flex;
  min-height: 25px;
  padding: 3px 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(150, 78, 9, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #7f3e08;
  box-shadow: 0 3px 10px rgba(90, 48, 10, 0.08);
  font: 800 0.68rem/1 var(--sans) !important;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.cart-cta-total[hidden] {
  display: none !important;
}
[data-cart-total-cta].has-cart-total .action-icon {
  margin-left: 0;
}
main .actions > [data-cart-total-cta].has-cart-total {
  padding-inline: 16px;
}
.order-nav-cta .cart-cta-total {
  min-height: 22px;
  padding-inline: 7px;
  font-size: 0.64rem !important;
}
@media (max-width: 600px) {
  main [data-cart-total-cta].has-cart-total {
    width: min(100%, 270px) !important;
  }
  .mobile-order-cta .cart-cta-total {
    margin-left: auto;
  }
}
@media (max-width: 1100px) {
  .mobile-order-cta {
    justify-content: center !important;
    gap: 10px !important;
  }
  .mobile-order-cta .action-icon {
    margin-left: 0;
  }
  .mobile-order-cta span:last-child {
    font-size: inherit;
  }
}
@media (max-width: 600px) {
  body:not(.admin-body):not(.app-body) main :where(.actions, .menu-cta-row) > .button {
    width: min(100%, 270px) !important;
    min-width: min(100%, 270px);
    max-width: 270px;
    min-height: 52px;
    margin-inline: auto;
  }
}

/* V20 compacte mobiele menukaart */
@media (max-width: 600px) {
  .menu-hero {
    height: 46svh;
    min-height: 360px;
    max-height: 450px;
    padding-bottom: 32px;
  }
  .menu-hero h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }
  .menu-hero .container > p:last-child {
    max-width: 30ch;
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .full-menu {
    padding-block: 40px 48px;
  }
  .full-menu .menu-intro {
    gap: 7px;
    padding-bottom: 18px;
  }
  .full-menu .menu-intro h2 {
    max-width: 14ch;
    font-size: clamp(2.15rem, 10vw, 2.75rem);
  }
  .full-menu .menu-grid {
    gap: 12px;
    margin-top: 22px;
  }
  .full-menu .menu-item {
    display: grid;
    grid-template-columns: clamp(96px, 27vw, 112px) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    gap: 5px 13px;
    min-height: 124px;
    padding: 9px;
    border: 1px solid rgba(23, 32, 24, 0.12);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 22px rgba(40, 34, 25, 0.055);
  }
  .full-menu .menu-item-media,
  .full-menu .menu-item > div.menu-item-media {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 100% !important;
    min-height: 104px;
    aspect-ratio: 1 !important;
    border-radius: 11px;
  }
  .full-menu .menu-item-head,
  .full-menu .menu-item > div.menu-item-head {
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    gap: 8px;
    margin: 2px 0 0 !important;
  }
  .full-menu .menu-item-head h3,
  .full-menu .menu-item h3 {
    font-size: clamp(1.08rem, 5vw, 1.3rem);
    line-height: 1.05;
  }
  .full-menu .menu-item-head strong {
    min-width: 48px;
    min-height: 34px;
    padding: 4px 8px;
    background: var(--button-surface);
    font-size: 0.72rem;
  }
  .full-menu .menu-item > p {
    display: -webkit-box;
    grid-column: 2;
    grid-row: 2;
    margin: 0 !important;
    overflow: hidden;
    color: #62675f;
    font-size: 0.73rem;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .full-menu + .final-cta {
    padding-block: 54px;
  }
}

/* V21 actuele openingsdag en compact foodtruckmenu */
.live-availability {
  display: grid;
  width: min(100%, 470px);
  gap: 5px;
  margin: 20px 0 22px;
  padding: 17px 18px;
  border: 1px solid rgb(23 32 24 / 13%);
  border-radius: 15px;
  background: rgb(255 255 255 / 55%);
  box-shadow: 0 12px 30px rgb(42 33 22 / 7%);
}
.live-availability-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6f5542;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.live-availability-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c78632;
  box-shadow: 0 0 0 4px rgb(199 134 50 / 13%);
}
.live-availability.is-open .live-availability-status {
  color: #2d6c3b;
}
.live-availability.is-open .live-availability-status i {
  background: #4a9b5b;
  box-shadow: 0 0 0 4px rgb(74 155 91 / 13%);
}
.live-availability.is-sold-out .live-availability-status {
  color: #9d3026;
}
.live-availability.is-sold-out .live-availability-status i {
  background: #b33a2e;
}
.live-availability.is-live {
  border-color: rgb(64 132 78 / 28%);
  background: linear-gradient(135deg, rgb(255 255 255 / 72%), rgb(233 246 233 / 68%));
}
.live-availability.is-paused {
  border-color: rgb(188 111 40 / 25%);
  background: linear-gradient(135deg, rgb(255 255 255 / 70%), rgb(255 241 219 / 67%));
}
.live-availability.is-paused .live-availability-status {
  color: #915c1d;
}
.live-availability.is-paused .live-availability-status i {
  background: #c88731;
  box-shadow: 0 0 0 4px rgb(200 135 49 / 13%);
}
.live-availability.is-seasonal {
  border-color: rgb(68 96 94 / 27%);
  background:
    radial-gradient(circle at 92% 12%, rgb(199 125 50 / 12%), transparent 30%),
    linear-gradient(135deg, rgb(255 255 255 / 78%), rgb(226 235 231 / 72%));
  box-shadow: 0 14px 34px rgb(44 67 67 / 11%);
}
.live-availability.is-seasonal .live-availability-status {
  color: #3e6461;
}
.live-availability.is-seasonal .live-availability-status i {
  background: #527774;
  box-shadow: 0 0 0 4px rgb(82 119 116 / 14%);
}
.live-availability.is-seasonal > strong {
  color: #294745;
}
.live-availability.is-seasonal > [data-live-location] {
  color: #647875;
  font-weight: 650;
}
.live-availability > strong {
  margin-top: 3px;
  color: var(--ink);
  font: 600 clamp(1.05rem, 2vw, 1.3rem) / 1.25 var(--display);
}
.live-availability > small {
  color: #676158;
}
.live-availability > [data-live-detail] {
  max-width: 42ch;
  margin-top: 2px;
  color: #514b44;
  font-size: 0.8rem;
  line-height: 1.4;
}
.live-availability > [data-live-location] {
  margin-top: 2px;
  color: #777067;
  font-size: 0.73rem;
}
.live-availability > em {
  width: fit-content;
  margin-top: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #8d4213;
  background: #fff0d6;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}
.menu-mode-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.menu-mode-options > label {
  position: relative;
  display: grid;
  min-height: 108px;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 48px 18px 17px;
  border: 1px solid #d9d0c5;
  border-radius: 16px;
  background: rgb(255 255 255 / 78%);
  box-shadow: 0 7px 22px rgb(51 42 31 / 4%);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.menu-mode-options > label:hover {
  border-color: #c8883b;
  transform: translateY(-2px);
  box-shadow: 0 11px 28px rgb(79 53 26 / 8%);
}
.menu-mode-options input {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 21px;
  height: 21px;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 1.5px solid #b8b0a5;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 5px #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-appearance: none;
}
.menu-mode-options input:checked {
  border-color: #a95412;
  background: #b75b12;
  box-shadow:
    inset 0 0 0 4px #fff,
    0 0 0 3px rgb(189 103 18 / 12%);
}
.menu-mode-options input:focus-visible {
  outline: 3px solid rgb(212 155 69 / 70%);
  outline-offset: 3px;
}
.menu-mode-options label:has(input:checked) {
  border-color: #c57727;
  background: linear-gradient(140deg, #fffaf0, #ffefd5);
  box-shadow:
    0 10px 28px rgb(112 67 23 / 9%),
    inset 0 0 0 1px rgb(197 119 39 / 10%);
}
.menu-mode-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #f1ede5;
  color: #756b5f;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.menu-mode-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-mode-options label:has(input:checked) .menu-mode-icon {
  background: linear-gradient(145deg, #c86b18, #a64d0d);
  color: #fff;
  box-shadow: 0 6px 15px rgb(169 84 18 / 22%);
  transform: scale(1.03);
}
.menu-mode-options b,
.menu-mode-options small,
.custom-pizza-menu > p span {
  display: block;
}
.menu-mode-copy {
  min-width: 0;
}
.menu-mode-options b {
  color: #282c27;
  font-size: 0.84rem;
  letter-spacing: 0.025em;
}
.menu-mode-options small {
  margin-top: 4px;
  color: #70685f;
  font-size: 0.7rem;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.4;
}
.custom-pizza-menu {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgb(23 32 24 / 12%);
}
.custom-pizza-menu[hidden] {
  display: none;
}
.custom-pizza-menu > p {
  margin: 0 0 13px;
}
.custom-pizza-menu > p span {
  margin-top: 2px;
  color: #70685f;
  font-size: 0.82rem;
}
.custom-pizza-menu.has-choice-notice {
  padding-inline: 14px;
  padding-bottom: 13px;
  border: 1px solid rgb(189 103 18 / 34%);
  border-radius: 14px;
  background: rgb(255 248 236 / 72%);
}
.custom-pizza-menu-error {
  margin: 11px 0 0 !important;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  background: rgb(189 103 18 / 11%);
  color: #85440f;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}
.custom-pizza-menu-error::before {
  width: 18px;
  height: 18px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #b35e17;
  color: #fff;
  content: 'i';
  font-family: Georgia, serif;
  font-size: 0.7rem;
  font-weight: 800;
}
.custom-pizza-menu-error[hidden] {
  display: none;
}
@media (max-width: 600px) {
  .live-availability {
    margin-block: 16px 18px;
    padding: 14px 15px;
  }
  .menu-mode-options {
    grid-template-columns: 1fr;
  }
  .menu-mode-options > label {
    min-height: 90px;
    padding: 14px 46px 14px 14px;
  }
  .menu-mode-icon {
    width: 40px;
    height: 40px;
  }
  .pizza-choice {
    min-height: 70px;
    padding: 12px 13px;
  }
}

/* V22 final public-site review: clearer responsive rhythm and trust signals */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1;
}
.hero-trust > span {
  color: #f1c377;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}
.hero-trust strong {
  color: #fff;
}
.hero-trust small {
  color: rgba(255, 255, 255, 0.76);
  font-size: inherit;
}
.hero-trust:hover small {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-note {
  min-width: 325px;
}
.hero-note span,
.hero-note strong {
  white-space: nowrap;
}
.review-cta .action-icon-review {
  transition:
    color 0.2s ease,
    fill 0.2s ease,
    stroke 0.2s ease,
    transform 0.2s ease;
}
.review-cta .button:hover .action-icon-review,
.review-cta .button:focus-visible .action-icon-review {
  color: #f5c542;
  fill: #f5c542;
  stroke: #f5c542;
  transform: rotate(-7deg) scale(1.08);
}
.form-section.section {
  padding-block: clamp(68px, 7.5vw, 112px);
}
.form-section .form-layout {
  gap: clamp(38px, 6vw, 82px);
}
.menu-item-head {
  height: auto !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
}
@media (min-width: 601px) and (max-width: 1100px) {
  .full-menu .menu-grid {
    align-items: start;
  }
  .full-menu .menu-item > .menu-item-head {
    position: static;
    min-height: 0;
    margin-top: 12px !important;
  }
  .full-menu .menu-item > p {
    margin-top: 6px !important;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px 24px;
    text-align: center;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    max-width: 520px;
    margin-inline: auto;
  }
  .footer-brand img {
    margin-inline: auto;
  }
  .footer-grid > div:not(.footer-brand) {
    min-width: 0;
  }
}

/* V23 distinct review and directions actions */
.button.review-button {
  border-color: rgba(113, 35, 28, 0.38);
  color: #fff;
  background: linear-gradient(135deg, #a74737, #7f2e27);
  box-shadow: 0 9px 24px rgba(113, 35, 28, 0.2);
}
.button.review-button:hover {
  border-color: rgba(113, 35, 28, 0.55);
  color: #fff;
  background: linear-gradient(135deg, #ba5744, #914037);
  box-shadow: 0 12px 28px rgba(113, 35, 28, 0.25);
}
.button.route-button {
  border-color: rgba(39, 75, 47, 0.42);
  color: #fff;
  background: linear-gradient(135deg, #4e704f, #304b36);
  box-shadow: 0 9px 24px rgba(35, 67, 42, 0.2);
}
.button.route-button:hover {
  border-color: rgba(39, 75, 47, 0.58);
  color: #fff;
  background: linear-gradient(135deg, #638465, #3d5d44);
  box-shadow: 0 12px 28px rgba(35, 67, 42, 0.25);
}
@media (max-width: 600px) {
  .hero-trust {
    margin: 15px auto 0;
  }
  .hero-note {
    min-width: 0;
  }
  .form-section.section {
    padding-block: 52px;
  }
  .form-section .form-layout {
    gap: 30px;
  }
  .form-section .contact-note {
    margin-top: 24px;
    padding-top: 18px;
  }
}
