:root {
  --bg: #f4f4f4;
  --text: #111;
  --placeholder: #d9d9d9;
  --page-transition-color: #1d440a;
}

html,
body,
a,
button,
input,
textarea,
select,
[role="button"] {
  cursor:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='5' fill='%23ffffff'/%3E%3Ccircle cx='12' cy='12' r='7' fill='none' stroke='%23222222' stroke-width='1.2'/%3E%3C/svg%3E")
      12 12,
    default;
}

@font-face {
  font-family: "Issenheim";
  src: url("./fonts/Isenheim_Regulier.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Issenheim";
  src: url("./fonts/Isenheim_Fin.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Issenheim", "Playfair Display", "Cormorant", Georgia, "Times New Roman", serif;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-transition-overlay {
  position: fixed;
  inset: -2px;
  background: var(--page-transition-color);
  z-index: 99999;
  pointer-events: none;
  will-change: transform;
}

.page-transition-overlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(120px, 18vw, 220px);
  height: clamp(20px, 3vw, 36px);
  transform: translate(-50%, -50%);
  background-image: url("./assets/logo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  pointer-events: none;
}

.site-entry-loader {
  position: fixed;
  inset: 0;
  z-index: 100001;
  background: var(--page-transition-color);
  opacity: 1;
  transition: opacity 320ms ease;
}

.site-entry-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.pt-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(74vw, 360px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.4vw, 22px);
  pointer-events: none;
}

.pt-loader-icons {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
}

.pt-loader-icon {
  width: clamp(26px, 4vw, 38px);
  height: clamp(26px, 4vw, 38px);
  object-fit: contain;
  filter: brightness(0) invert(1);
  animation: ptLoaderSpin 1.25s linear infinite;
  transform-origin: 50% 50%;
}

.pt-loader-icon-center {
  animation-duration: 1.05s;
}

.pt-loader-bar {
  display: block;
  width: min(58vw, 260px);
  height: 4px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.pt-loader-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: #fff;
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}

@keyframes ptLoaderSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.page-transition-overlay.forward {
  transform: translateX(-100%);
}

.page-transition-overlay.forward.is-active {
  transition: transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
  transform: translateX(0);
}

.page-transition-overlay.forward.is-exiting {
  transition: transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
  transform: translateX(100%);
}

.page-transition-overlay.reverse {
  transform: translateX(100%);
}

.page-transition-overlay.reverse.is-active {
  transition: transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
  transform: translateX(0);
}

.page-transition-overlay.reverse.is-exiting {
  transition: transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
  transform: translateX(-100%);
}

html.pt-precover-forward::before,
html.pt-precover-reverse::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--page-transition-color);
  z-index: 100000;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: #fff;
  color: #000;
}

.page {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 18px 22px 28px;
}

.page-home {
  max-width: 100%;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  margin-bottom: 0;
  padding-top: 18px;
  padding-bottom: 10px;
  padding-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1280px) / 2 + 22px));
  background: transparent;
  color: #fff;
  transition: color 180ms ease;
}

.site-header .brand-logo {
  filter: brightness(0) invert(1);
}

.page-home .site-header {
  padding-left: 18px;
  padding-right: 14px;
}

.brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: block;
  align-items: center;
  line-height: 1;
  min-width: 0;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.brand-logo {
  width: clamp(96px, 10.5vw, 155px);
  max-height: 26px;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  margin: 0;
  padding: 0;
  transform: none;
  transition: filter 180ms ease;
}

.site-header.is-light {
  color: #fff;
}

.site-header.is-light .brand-logo {
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hero-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-home .hero-split {
  min-height: 100vh;
}

.page-home .hero-split .block {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.page-home .hero-split .meta {
  margin-top: auto;
  opacity: 0;
  animation: metaFadeIn 900ms ease 220ms forwards;
}

.page-home .hero-split .text-large,
.page-home .hero-split .meta,
.page-home .hero-split .hours-arrows,
.page-home .hero-split .hours-item {
  color: #ffffff;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  z-index: 2;
}

.block {
  background: var(--placeholder);
  min-height: 330px;
  padding: 34px 18px;
}

.block-media-left {
  background: #000;
  position: relative;
  overflow: hidden;
}

.block-media-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.44) 0%,
    rgba(0, 0, 0, 0.28) 42%,
    rgba(0, 0, 0, 0.16) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

.block-media-right {
  background: #000;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-copy {
    z-index: 4;
  }

  .block-media-left {
    overflow: visible;
    z-index: 3;
  }

  .block-media-right {
    z-index: 1;
  }

  .flavors-text {
    margin-bottom: 6px;
  }
}

.block-approach {
  background: #1d440a;
  position: relative;
  overflow: hidden;
}

.pizza-float-layer {
  display: none;
  pointer-events: none;
}

.pizza-float {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0.22;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.page-home .block-approach .pizza-float-layer {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-home .block-approach .pizza-float-1 {
  top: 14%;
  left: 10%;
  animation: pizzaDriftA 6.5s ease-in-out infinite;
}

.page-home .block-approach .pizza-float-5 {
  top: 28%;
  right: 14%;
  width: 28px;
  height: 28px;
  animation: pizzaDriftB 7.6s ease-in-out infinite;
}

.page-home .block-approach .pizza-float-6 {
  bottom: 18%;
  left: 34%;
  width: 28px;
  height: 28px;
  animation: pizzaDriftA 8.4s ease-in-out infinite;
}

.page-home .block-italy .italy-float-layer {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-home .block-italy .pizza-float {
  opacity: 0.42;
}

.page-home .block-italy .italy-float-1 {
  top: 12%;
  left: 10%;
  animation: pizzaDriftA 7.2s ease-in-out infinite;
}

.page-home .block-italy .italy-float-2 {
  top: 34%;
  right: 12%;
  width: 28px;
  height: 28px;
  animation: pizzaDriftB 8.1s ease-in-out infinite;
}

.page-home .block-italy .italy-float-3 {
  bottom: 16%;
  left: 18%;
  width: 28px;
  height: 28px;
  animation: pizzaDriftA 7.8s ease-in-out infinite;
}

.block-approach-media {
  background: #000;
  position: relative;
  overflow: hidden;
}

.approach-video-desktop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}


.block-flavors {
  background: #000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.flavors-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

.flavors-video-mobile {
  display: none;
}

.block-italy {
  background: #1d440a;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.block-footer {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #000;
}

.footer-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

.footer-video-mobile {
  display: none;
}

.page-home .block-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.14);
  z-index: 1;
  pointer-events: none;
}

.page-home .block-footer .footer-contact,
.page-home .block-footer .footer-line,
.page-home .block-footer .credit,
.page-home .block-footer .credit-link {
  color: #fff;
}

.cta-reserver {
  display: inline-block;
  margin-top: 26px;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 14px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-family: "Cutive Mono", monospace;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  align-self: flex-start;
  position: relative;
  z-index: 3;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.italy-text {
  text-align: left;
  margin-top: 120px;
  max-width: 24ch;
  color: #fff;
}

.flavors-text {
  text-align: left;
  margin-top: 140px;
  margin-bottom: 0;
  max-width: 30ch;
  position: relative;
  z-index: 2;
  color: #fff;
}

.text-large {
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.02;
  font-weight: 500;
  max-width: 650px;
}


@media (min-width: 1280px) {
  .hero-main-title {
    font-size: clamp(62px, 6.8vw, 108px);
    max-width: 760px;
  }
}

.text-mid {
  font-size: clamp(27px, 2.8vw, 52px);
  line-height: 1.08;
  font-weight: 500;
}

.approach-text {
  font-size: clamp(34px, 3.6vw, 62px);
  max-width: 16ch;
  margin-left: 18px;
  position: relative;
  z-index: 2;
  color: #fff;
}

.text-small {
  font-size: 18px;
  line-height: 1.2;
  max-width: 680px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  line-height: 1;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0;
  font-weight: 600;
}

.footer-content {
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.footer-line {
  display: block;
  margin: 0;
  text-align: center;
}

.meta {
  font-size: 20px;
  margin-top: 70px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 34px;
}

.hours-arrows {
  display: inline-block;
  margin-top: 0;
  margin-left: auto;
  text-align: left;
  white-space: nowrap;
  opacity: 0;
  animation: metaFadeIn 900ms ease 320ms forwards, arrowsFloat 1.2s ease-in-out 1.1s infinite;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.download {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 14px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 15px;
  line-height: 0.95;
  font-family: "Cutive Mono", monospace;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

@media (min-width: 769px) and (hover: hover) {
  .cta-reserver:hover,
  .cta-reserver:focus-visible,
  .download:hover,
  .download:focus-visible {
    background: #000;
    color: #fff;
    border-color: #fff;
  }
}

.stack {
  display: grid;
  grid-template-columns: 1fr;
}

.stack .block {
  min-height: 260px;
}

.page-home .stack .block:last-child {
  border-bottom: 0 !important;
  box-shadow: none !important;
  margin-bottom: 0;
}

.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.page-home .ticker-wrap {
  border-top: 0;
  border-bottom: 0;
}

.ticker {
  display: inline-flex;
  width: max-content;
  padding: 18px 0 8px;
  font-size: clamp(28px, 2.8vw, 46px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  animation: marquee 18s linear infinite;
}

.ticker-item {
  flex: 0 0 auto;
}

.credit {
  display: inline-block;
  margin: 14px 0 0;
  padding-top: 0;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.01em;
}

.credit-link {
  text-decoration: none;
  letter-spacing: -0.02em;
  font-kerning: normal;
  display: inline-block;
}

.credit-link-underlined {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50%));
  }
}

@keyframes arrowsFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.78;
  }
  50% {
    transform: translateY(4px);
    opacity: 1;
  }
}

@keyframes metaFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cta-reserver-animated .cta-char {
  display: inline-block;
  color: inherit;
  font-style: normal;
  transition: font-style 120ms ease, color 180ms ease;
}

.hero-word-animated .cta-char {
  display: inline-block;
  font-style: normal;
  transition: font-style 120ms ease;
}

.hero-title-line-1 {
  white-space: nowrap;
}

@media (min-width: 769px) and (max-width: 1279px) {
  .page-home .hero-split .block-media-left {
    position: relative;
    overflow: visible;
    z-index: 3;
  }

  .page-home .hero-split .hero-copy {
    position: relative;
    z-index: 4;
  }

  .page-home .hero-split .hero-main-title {
    position: relative;
    z-index: 5;
  }

  .page-home .hero-split .block-media-right {
    position: relative;
    z-index: 1;
  }

  .page-home .hero-split .hero-main-title {
    font-size: clamp(50px, 5.8vw, 78px);
    line-height: 1.03;
  }
}

.cta-char.is-italic {
  font-style: italic;
}

@keyframes pizzaDriftA {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(12px, -8px) rotate(8deg);
  }
}

@keyframes pizzaDriftB {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-8deg);
  }
}



.mt {
  margin-top: 26px;
}

.h-fill {
  min-height: 78vh;
}

.reserve-full {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

.reserve-video-mobile {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

.reserve-video-desktop {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

.reserve-full > *:not(.reserve-video-mobile):not(.reserve-video-desktop) {
  position: relative;
  z-index: 2;
}

.reserve-page-body .site-header {
  color: #fff;
}

.reserve-page-body .site-header .brand-logo {
  filter: brightness(0) invert(1);
}

.reserve-text {
  max-width: 100%;
  color: #fff;
}

.reserve-text a {
  color: inherit;
}

.reserve-line {
  display: block;
}

@media (min-width: 769px) {
  .page-home .block-approach .download {
    margin-left: 18px;
  }

  .reserve-full,
  .vins-hero {
    height: 100vh;
    min-height: 100vh;
  }

  .vins-hero .text-mid {
    margin-top: 0;
    font-size: clamp(34px, 3.4vw, 64px);
  }

  .reserve-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
  }

  .reserve-text {
    color: #fff;
    font-size: clamp(18px, 1.8vw, 28px);
    line-height: 1;
  }

  .reserve-text a {
    color: #fff;
  }

  .reserve-page-body .reserve-text,
  .reserve-page-body .reserve-text a {
    color: #000;
  }

  .reserve-page-body .reserve-text .reserve-line {
    background: #fff;
    padding: 2px 6px;
  }

  .reserve-line {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.35;
  }

  .reserve-line + .reserve-line {
    margin-top: 3px;
  }
}

.reserve-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reserve-page-body .reserve-content {
  width: 100%;
  align-items: center;
  text-align: center;
}

.reserve-page-body .reserve-text {
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
  display: block;
}

.reserve-page-body .reserve-text .reserve-line {
  display: block;
  position: static;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

.reserve-page-body .reserve-call-btn {
  align-self: center;
  display: inline-block;
  position: static;
  left: auto;
  transform: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.reserve-page-body .reserve-full .reserve-credit,
.reserve-page-body .reserve-full .reserve-credit .credit-link {
  color: #fff;
}

.reserve-page-body .reserve-full .reserve-credit {
  display: block;
  opacity: 1;
  visibility: visible;
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.vins-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #000;
}

.vins-video-mobile {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

.vins-video-desktop {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

.vins-hero > *:not(.vins-video-mobile):not(.vins-video-desktop) {
  position: relative;
  z-index: 2;
}

.vins-hero .download {
  margin-top: 18px;
}

.vins-hero .vins-credit .credit-link {
  color: #fff;
}

.vins-page-body .vins-hero .vins-credit {
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  padding-top: 0;
  align-self: center;
  color: #fff;
}

.vins-hero .text-mid {
  margin-top: 24px;
  font-size: clamp(24px, 2.3vw, 42px);
  max-width: 50%;
  color: #fff;
}

@media (min-width: 769px) {
  .vins-page-body .vins-hero .text-mid {
    margin-top: 1.2em;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-size: clamp(34px, 3.4vw, 64px);
  }

  .vins-page-body .vins-hero {
    padding-top: 34px;
  }

  .menu-page-body .reserve-full .text-large {
    margin-top: 1.2em;
    margin-bottom: 0;
  }

  .menu-page-body .reserve-full .download {
    margin-top: 18px;
  }

.menu-page-body .reserve-full .text-large,
.menu-page-body .reserve-full .menu-credit,
.menu-page-body .reserve-full .menu-credit .credit-link {
  color: #fff;
}

.menu-page-body .reserve-full .text-large {
  margin-bottom: 0;
  font-size: clamp(46px, 5.2vw, 78px);
}

.menu-page-body .reserve-full .menu-credit {
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  padding-top: 0;
}
}

.reserve-call-btn {
  margin-top: 22px;
  margin-right: 0;
  align-self: center;
  font-weight: 700;
  background: #fff;
  color: #000;
  border-color: #000;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1279px) {
  .page {
    max-width: 100%;
    padding: 12px 14px 22px;
  }

  .page-home {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    background: transparent;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    border: 0;
    box-shadow: none;
    outline: 0;
  }

  .page-home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }


  .brand,
  .nav {
    font-size: 10px;
  }

  .brand-logo {
    width: clamp(86px, 24vw, 130px);
    max-height: 22px;
    transform: none;
  }

  .nav {
    gap: 10px;
    align-items: center;
    transform: translateY(1.5px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .page-home .hero-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .block {
    min-height: 200px;
    padding: 24px 10px;
  }

  .text-large {
    font-size: clamp(24px, 11vw, 40px);
    max-width: 100%;
    line-height: 1.12;
  }

  .text-mid {
    font-size: clamp(18px, 8.8vw, 30px);
  }

  .approach-text {
    font-size: clamp(18px, 6.2vw, 27px);
    max-width: 18ch;
    margin-left: 0;
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
  }

  .text-small {
    font-size: 15px;
  }

  .meta {
    margin-top: 24px;
    font-size: 16px;
  }

  .hours-arrows {
    display: inline-block;
    margin-top: 0;
    margin-left: 10px;
  }

  .download {
    font-size: 13px;
    padding: 8px 12px;
    margin-top: 0;
    align-self: flex-start;
  }

  .stack .block {
    min-height: 140px;
  }

  .flavors-text {
    margin-top: 165px;
    max-width: 28ch;
    color: #fff;
    font-size: clamp(16px, 5.6vw, 24px);
    line-height: 1.1;
  }

  .italy-text {
    margin-top: 72px;
    max-width: 28ch;
  }

  .cta-reserver {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    align-self: flex-start;
    font-size: 13px;
    padding: 8px 12px;
    color: #000;
    border-color: #000;
    background: #fff;
    animation: none;
  }

  .ticker {
    padding: 12px 0 6px;
    font-size: clamp(16px, 5.5vw, 24px);
    line-height: 1;
  }

  .credit {
    font-size: 9px;
    padding-top: 12px;
  }
}

@media (max-width: 768px) {
  .menu-page-body,
  .vins-page-body,
  .reserve-page-body {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .menu-page-body .page,
  .vins-page-body .page,
  .reserve-page-body .page {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    padding-bottom: 0;
  }

  .menu-page-body .reserve-full,
  .vins-page-body .vins-hero,
  .reserve-page-body .reserve-full {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .page-home .hero-split .block-media-left .hero-video {
    pointer-events: none;
  }

  .page-home .hero-split .block-media-left .hero-video::-webkit-media-controls,
  .page-home .hero-split .block-media-left .hero-video::-webkit-media-controls-panel,
  .page-home .hero-split .block-media-left .hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
  }

  .menu-page-body .reserve-full .text-large {
    margin-top: 34px;
    margin-bottom: 18px;
    font-size: clamp(34px, 9vw, 52px);
  }

  .menu-page-body .reserve-full .download {
    margin-top: 0;
  }

  .menu-page-body .reserve-full .text-large,
  .menu-page-body .reserve-full .menu-credit,
  .menu-page-body .reserve-full .menu-credit .credit-link {
    color: #fff;
  }

  .menu-page-body .reserve-full .menu-credit {
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 3;
    padding-top: 0;
  }

  .vins-page-body .site-header {
    color: #fff;
  }

  .vins-page-body .site-header .brand-logo {
    filter: brightness(0) invert(1);
  }

  .home-page-body {
    background: #d4d4d4;
  }

  .page-home {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .page-home .hero-split {
    grid-template-columns: 1fr;
    min-height: 100svh;
    grid-template-rows: 1fr 1fr;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
  }

  .page-home .hero-split + .hero-grid {
    margin-top: 0;
  }

  .page-home .block-approach-media {
    display: none;
  }

  .page-home .block-approach,
  .page-home .block-italy {
    background: #1d440a;
  }

  .page-home .block-approach .pizza-float-layer {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .page-home .block-approach .pizza-float-1 {
    top: 14%;
    left: 10%;
    animation: pizzaDriftA 6.5s ease-in-out infinite;
  }

  .page-home .block-approach .pizza-float-5 {
    top: 28%;
    right: 14%;
    width: 28px;
    height: 28px;
    animation: pizzaDriftB 7.6s ease-in-out infinite;
  }

  .page-home .block-approach .pizza-float-6 {
    bottom: 18%;
    left: 34%;
    width: 28px;
    height: 28px;
    animation: pizzaDriftA 8.4s ease-in-out infinite;
  }

  .page-home .block-italy .italy-float-layer {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .page-home .block-italy .pizza-float {
    opacity: 0.42;
  }

  .page-home .block-italy .italy-float-1 {
    top: 12%;
    left: 10%;
    animation: pizzaDriftA 7.2s ease-in-out infinite;
  }

  .page-home .block-italy .italy-float-2 {
    top: 34%;
    right: 12%;
    width: 28px;
    height: 28px;
    animation: pizzaDriftB 8.1s ease-in-out infinite;
  }

  .page-home .block-italy .italy-float-3 {
    bottom: 16%;
    left: 18%;
    width: 28px;
    height: 28px;
    animation: pizzaDriftA 7.8s ease-in-out infinite;
  }


  .page-home .block-approach .approach-text,
  .page-home .block-italy .italy-text {
    color: #fff;
    margin-top: 46px;
    margin-bottom: 46px;
  }

  .page-home .block-approach .approach-text {
    margin-top: 74px;
    margin-bottom: 74px;
  }

  .page-home .block-italy .italy-text {
    --italy-edge-space: 100px;
    margin-top: var(--italy-edge-space, 100px);
    margin-bottom: 72px;
  }

  .page-home .block-italy {
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .page-home .block-italy .cta-reserver {
    align-self: start;
    justify-self: start;
    width: max-content;
    margin-top: -32px;
    margin-bottom: var(--italy-edge-space, 72px);
  }

  .page-home .footer-video-mobile {
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .page-home .footer-video-desktop {
    display: none;
  }

  .page-home .block-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.14);
    z-index: 1;
    pointer-events: none;
  }

  .page-home .block-footer::before {
    content: none;
  }

  .page-home .block-footer .footer-contact,
  .page-home .block-footer .footer-line,
  .page-home .block-footer .credit,
  .page-home .block-footer .credit-link {
    color: #fff;
  }

  .page-home .block-footer .footer-contact {
    padding: 0;
  }

  .page-home .block-footer {
    background: #000;
    padding: 0 !important;
    margin: 0;
  }

  .page-home .block-footer .footer-contact {
    min-height: auto;
    justify-content: flex-start;
  }

  .page-home .block-footer .footer-content {
    min-height: 100%;
    justify-content: center;
    padding: 16px 10px 14px;
  }

  .page-home .block-flavors {
    background: #000;
  }

  .page-home .block-flavors::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
  }

  .page-home .flavors-video-mobile {
    display: block;
  }

  .page-home .flavors-video-desktop {
    display: none;
  }

  .page-home .block-approach .approach-text {
    opacity: 1;
    transform: none;
  }

  .page-home .hero-split .block {
    min-height: 50svh;
  }

  .page-home .hero-split .block-media-left {
    position: relative;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
    overflow: visible;
    z-index: 4;
  }

  .page-home .hero-split .block-media-right {
    position: relative;
    z-index: 1;
    margin-top: -1px;
  }

  .page-home .hero-split .block-media-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.16);
    z-index: 2;
    pointer-events: none;
  }

  .page-home .hero-split .hero-copy {
    min-height: 100%;
    position: static;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    z-index: 2;
  }

  .page-home .hero-split .hero-copy .text-large {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50svh;
    transform: translateY(-50%);
    margin: 0;
    z-index: 4;
  }

  .page-home .hero-split .hero-copy .hero-main-title {
    font-size: clamp(28px, 11.2vw, 41px);
    line-height: 1.08;
  }


  .page-home .hero-split .hero-copy .meta {
    margin-top: 0;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: calc(12px - 50svh);
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
  }

  .page-home .hero-split .hero-copy .meta .hours-item {
    white-space: nowrap;
  }

  .page-home .hero-split .hero-copy .meta .hours-arrows {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
  }

  .page-home .site-header {
    top: 10px;
    margin-top: 0;
  }

  .reserve-full {
    min-height: 100svh;
  }

  .reserve-video-mobile {
    display: block;
  }

  .reserve-video-desktop {
    display: none;
  }

  .reserve-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
  }

  .reserve-text,
  .reserve-text a {
    color: #fff;
  }

  .reserve-text {
    font-size: clamp(14px, 4.8vw, 20px);
    line-height: 1.15;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
    display: block;
  }

  .reserve-text a {
    color: #000;
  }

  .reserve-text .reserve-line {
    display: block;
    width: 100%;
    max-width: calc(100% - 20px);
    position: static;
    left: auto;
    transform: none;
    background: #fff;
    color: #000;
    padding: 1px 4px;
    margin-top: 4px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .reserve-text .reserve-line a {
    display: inline-block;
    text-align: center;
  }

  .reserve-content {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .reserve-text .reserve-line:first-child {
    margin-top: 0;
  }

  .reserve-call-btn {
    margin-top: 16px;
    font-size: 13px;
    padding: 11px 14px;
    line-height: 1.1;
    font-weight: 700;
    color: #000;
    border-color: #000;
    background: #fff;
    align-self: center;
    position: static;
    left: auto;
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }

  .page-home .stack .block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
    min-height: 220px;
  }

  .page-home .footer-contact {
    margin-bottom: 0;
  }

  .page-home .block-footer {
    background: #000;
  }

  .vins-hero .vins-video-mobile {
    display: block;
  }

  .vins-hero {
    min-height: 100svh;
  }

  .vins-hero .vins-video-mobile {
    min-height: 100svh;
  }

  .vins-hero .vins-video-desktop {
    display: none;
  }

  .vins-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.16);
    z-index: 1;
    pointer-events: none;
  }

  .vins-hero .text-mid,
  .vins-hero .vins-credit,
  .vins-hero .vins-credit .credit-link {
    color: #fff;
  }

  .vins-hero .download {
    color: #000;
    border-color: #000;
    margin-top: 0;
  }

  .vins-hero .text-mid {
    margin-top: 34px;
    font-size: clamp(16px, 6vw, 24px);
    line-height: 1.08;
  }

}

@media (prefers-reduced-motion: reduce) {
  .page-home .block-approach .approach-text {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Final centering lock for reservation contact block (desktop + mobile) */
.reserve-page-body .reserve-full .reserve-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(92vw, 900px);
  margin: 0;
  text-align: center;
}

.reserve-page-body .reserve-full .reserve-text {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
}

.reserve-page-body .reserve-full .reserve-text .reserve-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 769px) {
  .reserve-page-body .reserve-full .reserve-text .reserve-line + .reserve-line {
    margin-top: 10px;
  }
}

@media (min-width: 769px) and (max-width: 1279px) {
  .reserve-page-body .reserve-full .reserve-call-btn {
    margin-top: 34px;
  }
}

.reserve-page-body .reserve-full .reserve-text .reserve-line a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.reserve-page-body .reserve-full .reserve-call-btn {
  display: inline-block;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.reserve-page-body .reserve-full .reserve-video-play-btn {
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.44);
  color: #fff;
  font-family: "Cutive Mono", monospace;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
