
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500-italic.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 500;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-600-italic.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 600;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-700-italic.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 700;
}

:root {
  --font-cormorant: "Cormorant Garamond";
  --cream: #fff0b8;
  --paper: #fffaf0;
  --ink: #17110b;
  --muted: #665a4b;
  --green: #007a45;
  --green-deep: #034c2d;
  --red: #e7352f;
  --gold: #ffca3a;
  --orange: #ff7a1a;
  --sky: #35b8e6;
  --line: rgba(23, 17, 11, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 7px 18px;
  background: var(--green-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 9px clamp(20px, 4.5vw, 74px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  color: #34332d;
  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.site-header a:focus-visible,
.location-card:focus-visible {
  outline: 3px solid rgba(216, 166, 72, 0.75);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  justify-self: end;
  padding-inline: 20px;
}

.button-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 7px 20px rgba(182, 47, 42, 0.2);
}

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(480px, 1.04fr);
  align-items: stretch;
  background:
    radial-gradient(circle at 13% 18%, rgba(216, 166, 72, 0.12), transparent 25%),
    var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(68px, 8vw, 125px) clamp(28px, 7vw, 110px);
}

.hero-copy > :not(.hero-art-seal, .hero-flour) {
  position: relative;
  z-index: 2;
}

.hero-art-seal {
  position: absolute;
  z-index: -1;
  right: clamp(-210px, -10vw, -90px);
  bottom: clamp(-210px, -11vw, -95px);
  width: min(39vw, 590px);
  min-width: 430px;
  aspect-ratio: 1;
  opacity: 0.07;
  pointer-events: none;
  animation: seal-breathe 12s ease-in-out infinite;
}

.hero-art-seal img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  animation: seal-turn 80s linear infinite;
}

.hero-flour {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(182, 47, 42, 0.22);
  box-shadow:
    42px 24px 0 -2px rgba(216, 166, 72, 0.35),
    82px -18px 0 1px rgba(23, 75, 53, 0.18),
    128px 38px 0 -1px rgba(182, 47, 42, 0.2),
    174px -3px 0 -2px rgba(216, 166, 72, 0.28);
  pointer-events: none;
  animation: flour-float 8s ease-in-out infinite;
}

.hero-flour-one {
  top: 17%;
  left: 8%;
}

.hero-flour-two {
  top: 78%;
  left: 52%;
  animation-delay: -2.8s;
}

.hero-flour-three {
  top: 28%;
  right: 25%;
  animation-delay: -5s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--red);
  font-size: 0.62rem;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 6.4vw, 7.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero h1 em {
  display: block;
  margin-top: 22px;
  color: var(--red);
  font-weight: 500;
}

.hero-lede {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 28px rgba(23, 75, 53, 0.22);
}

.button-primary:hover {
  background: var(--green-deep);
}

.button-ghost {
  border-color: rgba(23, 23, 18, 0.24);
  background: rgba(255, 253, 248, 0.58);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 19px;
  margin-top: 32px;
  color: #48463e;
  font-size: 0.76rem;
  font-weight: 700;
}

.quick-facts span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 21, 15, 0.48));
  pointer-events: none;
}

.pizza-slider {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #111;
}

.pizza-slider-track {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pizza-slide {
  min-width: 100%;
  height: 100%;
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
}

.pizza-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
}

.slider-caption {
  position: absolute;
  z-index: 3;
  bottom: 132px;
  left: 30px;
  display: grid;
  gap: 3px;
  padding: 12px 15px;
  border-left: 3px solid var(--gold);
  background: rgba(7, 21, 15, 0.72);
  color: #fff;
  backdrop-filter: blur(9px);
}

.slider-caption span {
  color: #f0cc82;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.slider-caption strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.slider-controls {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 132px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.slider-controls button,
.slider-dots button {
  border: 0;
  cursor: pointer;
}

.slider-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(7, 21, 15, 0.72);
  color: #fff;
  font-size: 0.92rem;
  backdrop-filter: blur(9px);
}

.slider-controls .slider-play {
  width: auto;
  padding-inline: 14px;
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-controls button:hover,
.slider-controls button:focus-visible {
  background: var(--red);
}

.slider-dots {
  position: absolute;
  z-index: 4;
  top: 24px;
  left: 25px;
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 180ms ease, background-color 180ms ease;
}

.slider-dots button.active {
  width: 25px;
  background: #fff;
}

.slider-dots button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 34px;
  width: 142px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: rgba(15, 52, 36, 0.92);
  color: #fff;
  text-align: center;
  transform: rotate(4deg);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.23);
}

.hero-badge::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.8rem;
}

.hero-badge span {
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge strong {
  max-width: 92px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 0.94;
}

.location-card {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 15px 19px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.93);
  color: var(--ink);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(13px);
}

.location-pin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.25rem;
}

.location-card span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.location-card small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-card strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
}

.promise-strip {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--red);
  color: #fff;
}

.promise-viewport {
  overflow: hidden;
}

.promise-track {
  width: max-content;
  display: flex;
  animation: promise-scroll 34s linear infinite;
  will-change: transform;
}

.promise-set {
  display: flex;
  align-items: center;
}

.promise-item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(28px, 3.4vw, 58px);
  padding-left: clamp(28px, 3.4vw, 58px);
}

.promise-item strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.promise-item i {
  color: #f4d38e;
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-style: normal;
}

.promise-strip:hover .promise-track,
.promise-strip:focus-within .promise-track,
.promise-strip.is-paused .promise-track {
  animation-play-state: paused;
}

.motion-toggle {
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motion-toggle-red {
  position: relative;
  z-index: 2;
  min-width: 74px;
  margin: 0 18px;
  padding: 10px 14px;
  background: rgba(91, 13, 10, 0.28);
  color: #fff;
}

.motion-toggle:focus-visible {
  outline: 3px solid #f4d38e;
  outline-offset: 3px;
}

.brand-canvas {
  position: relative;
  padding: clamp(18px, 2.5vw, 38px);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(216, 166, 72, 0.16) 50%, transparent 50.3%),
    var(--green-deep);
}

.brand-canvas::before,
.brand-canvas::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-color: #d8a648;
  pointer-events: none;
}

.brand-canvas::before {
  top: 11px;
  left: 11px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.brand-canvas::after {
  right: 11px;
  bottom: 11px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.brand-canvas-frame {
  position: relative;
  max-width: 1536px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(240, 204, 130, 0.44);
  background: #120e0b;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.brand-canvas-frame > img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
  animation: banner-breathe 14s ease-in-out infinite alternate;
}

.brand-canvas-caption {
  position: absolute;
  right: clamp(16px, 3vw, 46px);
  bottom: clamp(15px, 2.7vw, 38px);
  display: grid;
  gap: 5px;
  max-width: min(38vw, 560px);
  padding: 16px 20px;
  border: 1px solid rgba(240, 204, 130, 0.48);
  background: rgba(13, 28, 20, 0.8);
  color: #fff;
  text-align: right;
  backdrop-filter: blur(10px);
}

.brand-canvas-caption span {
  color: #f0cc82;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-canvas-caption strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.65rem);
  line-height: 1.08;
}

.section {
  padding: clamp(86px, 10vw, 150px) clamp(22px, 6vw, 94px);
}

.section-heading {
  max-width: 720px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 17px;
}

.section-heading h2,
.dietary-intro h2,
.catering-copy h2,
.visit-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 0.93;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.menu-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 75, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 75, 53, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: 52px 52px;
}

.menu-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: clamp(20px, 6vw, 94px);
  width: 1px;
  height: 100%;
  background: rgba(182, 47, 42, 0.18);
}

.menu-watermark {
  position: absolute;
  z-index: -1;
  top: 40px;
  right: -110px;
  width: min(41vw, 610px);
  min-width: 410px;
  opacity: 0.035;
  pointer-events: none;
  transform: rotate(8deg);
}

.menu-watermark img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-heading {
  max-width: 820px;
  margin-left: clamp(14px, 4vw, 66px);
}

.menu-heading > p:last-child {
  margin-right: 0;
  margin-left: 0;
}

.price-grid {
  max-width: 1460px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 28px);
  margin: clamp(52px, 7vw, 92px) auto 0;
}

.price-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 18, 0.17);
  border-radius: 2px 2px 26px 2px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 15px 45px rgba(35, 26, 17, 0.07);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease;
}

.price-card:nth-child(4n + 2),
.price-card:nth-child(4n + 4) {
  transform: translateY(36px);
}

.price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 65px rgba(35, 26, 17, 0.14);
}

.price-card:nth-child(4n + 2):hover,
.price-card:nth-child(4n + 4):hover {
  transform: translateY(29px);
}

.price-card-image {
  position: relative;
  aspect-ratio: 4 / 4.8;
  display: block;
  overflow: hidden;
  background: #211a14;
}

.price-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(180deg, transparent 60%, rgba(8, 17, 11, 0.42));
  pointer-events: none;
}

.price-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms ease;
}

.price-card:hover .price-card-image img {
  transform: scale(1.055) rotate(0.4deg);
  filter: saturate(1.05);
}

.price-pill {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  min-width: 78px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #f2ca77;
  color: #1a1a14;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card-index {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.price-card-copy {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 2.3vw, 33px);
}

.price-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.1vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.price-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.price-card-copy > a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-footer {
  max-width: 1460px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin: 88px auto 0;
  padding-top: 27px;
  border-top: 1px solid rgba(23, 23, 18, 0.14);
}

.menu-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.favorites-section {
  background: var(--paper);
}

.favorites-grid {
  max-width: 1360px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: clamp(48px, 6vw, 80px) auto 0;
}

.favorite-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.favorite-card-tall {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) 1fr;
  min-height: 490px;
}

.favorite-image {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #221b15;
}

.favorite-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.favorite-card:hover .favorite-image img {
  transform: scale(1.035);
}

.menu-tag {
  position: absolute;
  top: 17px;
  left: 17px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.93);
  color: var(--green-deep);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
}

.favorite-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(28px, 3.4vw, 48px);
}

.favorite-copy h3,
.featured-copy h3,
.dietary-cards h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.favorite-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.68;
}

.favorite-copy > a {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 0.79rem;
  font-weight: 900;
}

.favorite-copy > a span {
  margin-left: 8px;
}

.favorite-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 570px;
  background: var(--green-deep);
  color: #fff;
}

.featured-photo {
  min-height: 520px;
  overflow: hidden;
}

.featured-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 63% center;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 6vw, 86px);
}

.eyebrow-light {
  margin-bottom: 21px;
  color: #f0cc82;
}

.featured-copy h3 {
  max-width: 440px;
  font-size: clamp(3rem, 4.8vw, 5.1rem);
}

.featured-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.featured-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 35px;
  padding: 0;
  list-style: none;
}

.featured-copy li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 700;
}

.button-cream {
  background: var(--cream);
  color: var(--green-deep);
}

.atelier-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 138px) 0 clamp(42px, 5vw, 78px);
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 166, 72, 0.15), transparent 30%),
    #101d16;
  color: #fff;
}

.atelier-section::before {
  content: "LA BIANCA • NEW YORK • 14TH STREET";
  position: absolute;
  top: -0.25em;
  right: -0.05em;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.75;
  white-space: nowrap;
  pointer-events: none;
}

.atelier-heading {
  position: relative;
  z-index: 2;
  max-width: 1460px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(40px, 9vw, 150px);
  margin: 0 auto clamp(45px, 6vw, 78px);
  padding: 0 clamp(22px, 6vw, 94px);
}

.atelier-heading h2 {
  max-width: 820px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6.4vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.atelier-heading > p {
  max-width: 510px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.photo-rail {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 72px;
}

.photo-rail::before,
.photo-rail::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 60px;
  width: clamp(45px, 8vw, 140px);
  pointer-events: none;
}

.photo-rail::before {
  left: 0;
  background: linear-gradient(90deg, #101d16, transparent);
}

.photo-rail::after {
  right: 0;
  background: linear-gradient(-90deg, #101d16, transparent);
}

.photo-rail-track {
  width: max-content;
  display: flex;
  animation: gallery-scroll 58s linear infinite;
  will-change: transform;
}

.photo-rail-set {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.photo-rail:hover .photo-rail-track,
.photo-rail:focus-within .photo-rail-track,
.photo-rail.is-paused .photo-rail-track {
  animation-play-state: paused;
}

.rail-photo {
  position: relative;
  width: clamp(220px, 22vw, 360px);
  height: clamp(330px, 36vw, 560px);
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 204, 130, 0.3);
  border-radius: 180px 180px 8px 8px;
  background: #211811;
}

.rail-photo:nth-child(3n + 2) {
  height: clamp(300px, 32vw, 500px);
  margin-top: 58px;
  border-radius: 8px 8px 180px 180px;
}

.rail-photo:nth-child(3n) {
  height: clamp(350px, 39vw, 590px);
}

.rail-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rail-photo:hover img {
  transform: scale(1.055);
}

.rail-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(5, 13, 9, 0.78));
  pointer-events: none;
}

.rail-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.motion-toggle-gallery {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 6vw, 94px);
  bottom: 4px;
  padding: 11px 15px;
  background: transparent;
  color: #f0cc82;
}

.dietary-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(450px, 1.18fr);
  gap: clamp(58px, 8vw, 130px);
  padding: clamp(90px, 11vw, 165px) clamp(25px, 8vw, 125px);
  background:
    radial-gradient(circle at 2% 105%, rgba(216, 166, 72, 0.16), transparent 29%),
    var(--green-deep);
  color: #fff;
}

.eyebrow-gold {
  color: #f0cc82;
}

.dietary-intro h2 {
  max-width: 650px;
}

.dietary-intro > p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.76;
}

.dietary-cards {
  display: grid;
  align-content: center;
  gap: 14px;
}

.dietary-cards article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.option-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 204, 130, 0.5);
  border-radius: 50%;
  color: #f0cc82;
  font-size: 0.68rem;
  font-weight: 900;
}

.dietary-cards p {
  max-width: 500px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.66;
}

.dietary-cards .allergy-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.catering-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  min-height: 660px;
  background: var(--cream);
}

.catering-offer {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 48px, rgba(255, 255, 255, 0.09) 49px 50px),
    var(--red);
  color: #fff;
  text-align: center;
}

.catering-offer::before,
.catering-offer::after {
  content: "✦";
  color: #f0cc82;
  font-size: 1.5rem;
}

.catering-offer span {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.catering-offer strong {
  margin: 8px 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 15vw, 13rem);
  line-height: 0.76;
  letter-spacing: -0.09em;
}

.catering-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(62px, 9vw, 130px);
}

.catering-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.74;
}

.catering-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.catering-copy small {
  margin-top: 21px;
  color: #777164;
  font-size: 0.68rem;
}

.visit-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 780px;
  background: var(--paper);
}

.visit-photo {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #201b17;
}

.visit-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 16, 11, 0.62));
  pointer-events: none;
}

.visit-photo > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 52%;
}

.visit-photo > a {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3px 20px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 17px;
  background: rgba(13, 52, 36, 0.88);
  color: #fff;
  backdrop-filter: blur(10px);
}

.visit-photo > a span:first-child {
  color: #f0cc82;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visit-photo > a strong {
  grid-column: 1;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.visit-photo > a span:last-child {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: 1.2rem;
}

.connect-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(216, 166, 72, 0.12), transparent 27%),
    var(--paper);
}

.connect-section::before {
  content: "“";
  position: absolute;
  top: 0.05em;
  left: -0.02em;
  color: rgba(182, 47, 42, 0.045);
  font-family: Georgia, serif;
  font-size: clamp(18rem, 32vw, 34rem);
  line-height: 0.7;
  pointer-events: none;
}

.review-carousel {
  position: relative;
  max-width: 1120px;
  margin: clamp(48px, 6vw, 78px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(240, 204, 130, 0.38);
  border-radius: 180px 180px 28px 28px;
  background:
    radial-gradient(circle at 50% 105%, rgba(216, 166, 72, 0.17), transparent 34%),
    var(--green-deep);
  color: #fff;
  box-shadow: 0 30px 80px rgba(16, 40, 28, 0.18);
}

.review-carousel::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  bottom: 28px;
  left: 28px;
  border: 1px solid rgba(240, 204, 130, 0.17);
  border-radius: 160px 160px 18px 18px;
  pointer-events: none;
}

.review-track {
  display: flex;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-slide {
  min-width: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 100%;
  padding: 92px clamp(38px, 10vw, 145px) 118px;
  text-align: center;
}

.review-stars {
  color: #f0cc82;
  font-size: 0.83rem;
  letter-spacing: 0.34em;
}

.review-slide blockquote {
  max-width: 860px;
  margin: 30px 0 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.review-slide p {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.review-slide a {
  position: relative;
  z-index: 3;
  margin-top: 17px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: #f0cc82;
  font-size: 0.72rem;
  font-weight: 800;
}

.review-controls {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 34px;
  display: flex;
  gap: 7px;
}

.review-controls button,
.review-dots button {
  border: 0;
  cursor: pointer;
}

.review-controls button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.review-controls .review-play {
  width: auto;
  padding-inline: 14px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  background: var(--red);
}

.review-dots {
  position: absolute;
  z-index: 4;
  bottom: 51px;
  left: 48px;
  display: flex;
  gap: 8px;
}

.review-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transition: width 180ms ease, background-color 180ms ease;
}

.review-dots button.active {
  width: 28px;
  background: #f0cc82;
}

.review-dots button:focus-visible {
  outline: 2px solid #f0cc82;
  outline-offset: 3px;
}

.review-platform-heading {
  max-width: 1360px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(58px, 7vw, 92px) auto 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-platform-heading::before,
.review-platform-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.profile-grid {
  max-width: 1360px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
  margin: 28px auto 0;
}

.profile-grid > a {
  min-height: 175px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 22px 10px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease;
}

.profile-grid > a:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 75, 53, 0.36);
  box-shadow: 0 16px 38px rgba(23, 23, 18, 0.09);
}

.profile-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

.profile-grid > a:nth-child(even) .profile-mark {
  background: var(--red);
}

.profile-grid > a > span:nth-child(2) {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
}

.profile-grid small {
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-grid strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(66px, 9vw, 135px);
}

.visit-copy address {
  margin-top: 30px;
  color: var(--muted);
  font-size: 1.04rem;
  font-style: normal;
  line-height: 1.65;
}

.visit-details {
  width: 100%;
  display: grid;
  gap: 0;
  margin: 36px 0 0;
}

.visit-details div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.visit-details div:last-child {
  border-bottom: 1px solid var(--line);
}

.visit-details dt {
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visit-details dd {
  margin: 0;
  color: #4f4b42;
  font-size: 0.88rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(500px, 1.38fr);
  gap: clamp(50px, 10vw, 150px);
  background: var(--cream);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 23px 0;
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 1rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: -4px 60px 27px 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(25px, 5vw, 70px);
  padding: clamp(54px, 7vw, 90px) clamp(24px, 7vw, 105px);
  background: var(--red);
  color: #fff;
}

.final-cta > img {
  width: clamp(82px, 10vw, 132px);
  height: clamp(82px, 10vw, 132px);
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #fff;
}

.final-cta p {
  margin: 0 0 8px;
  color: #f0cc82;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 850px;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 45px;
  padding: 72px clamp(24px, 7vw, 105px) 34px;
  background: #131e18;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff;
}

.footer-brand p {
  max-width: 280px;
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  color: #fff;
}

.site-footer > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.77rem;
}

.site-footer strong {
  margin-bottom: 6px;
  color: #f0cc82;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 20px !important;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
}

.mobile-order-bar {
  display: none;
}

/* Bright editorial pizzeria direction */
.brand strong,
.hero h1,
.slider-caption strong,
.hero-badge strong,
.location-card strong,
.promise-item strong,
.brand-canvas-caption strong,
.section-heading h2,
.dietary-intro h2,
.catering-copy h2,
.visit-copy h2,
.final-cta h2,
.price-pill,
.card-index,
.price-card h3,
.favorite-copy h3,
.featured-copy h3,
.atelier-heading h2,
.rail-photo figcaption,
.dietary-cards h3,
.visit-photo > a strong,
.review-slide blockquote,
.faq-list summary,
.footer-brand p {
  font-family: var(--font-cormorant), Georgia, "Times New Roman", serif;
}

.announcement {
  background: var(--green);
  color: #fff;
}

.announcement-dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 202, 58, 0.18);
}

.site-header {
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 250, 240, 0.96);
}

.hero {
  background: #ffdc47;
}

.hero-copy {
  background:
    radial-gradient(circle at 88% 13%, var(--sky) 0 78px, transparent 80px),
    radial-gradient(circle at 8% 84%, rgba(231, 53, 47, 0.18) 0 145px, transparent 147px),
    linear-gradient(135deg, #ffe65a 0 58%, #ffc238 58% 100%);
}

.hero-copy::after {
  content: "14";
  position: absolute;
  z-index: 0;
  right: -0.04em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.24);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(16rem, 31vw, 34rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-cormorant), Georgia, "Times New Roman", serif;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--red);
  font-style: italic;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.72);
}

.hero-lede,
.quick-facts {
  color: #473415;
}

.hero .button-primary {
  background: var(--green);
  box-shadow: 0 10px 0 rgba(23, 17, 11, 0.14);
}

.hero .button-ghost {
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.promise-strip {
  min-height: 84px;
  border-block: 2px solid var(--ink);
  background: var(--red);
}

.promise-item strong {
  font-style: italic;
  font-weight: 700;
}

.signature-focus {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  padding: clamp(82px, 9vw, 136px) clamp(22px, 6vw, 94px);
  background-color: #0b0907;
  background-image: url("../images/wood-fire-oven-background.webp");
  background-position: center center;
  background-size: cover;
  color: #fff;
  animation: fire-pan 15s ease-in-out infinite alternate;
}

.signature-focus::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 3, 2, 0.92) 0%, rgba(4, 3, 2, 0.64) 47%, rgba(4, 3, 2, 0.1) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.48));
}

.signature-focus::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -38%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 130, 20, 0.3), transparent 64%);
  filter: blur(18px);
  animation: fire-flicker 2.4s ease-in-out infinite alternate;
  pointer-events: none;
}

.signature-focus-layout {
  position: relative;
  z-index: 2;
  max-width: 1420px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  margin: 0 auto;
}

.signature-focus-copy {
  order: 1;
  max-width: 780px;
  padding: clamp(28px, 4vw, 58px);
  border-left: 8px solid var(--gold);
  background: linear-gradient(115deg, rgba(10, 8, 6, 0.78), rgba(10, 8, 6, 0.28));
  backdrop-filter: blur(4px);
}

.focus-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.focus-kicker span {
  padding: 9px 12px;
  border: 2px solid #fff;
  background: var(--red);
  box-shadow: 5px 5px 0 var(--gold);
}

.signature-focus h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-cormorant), Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 7.2vw, 8.2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.78;
  text-wrap: balance;
}

.signature-focus h2 em {
  display: block;
  margin-top: 0.22em;
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.signature-focus-copy > p:not(.focus-kicker) {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.96rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}

.signature-focus-photo {
  position: relative;
  order: 2;
  width: 100%;
  max-width: 510px;
  justify-self: end;
  margin: 0;
  padding: 10px;
  border: 4px solid var(--ink);
  background: #fff;
  box-shadow:
    15px 15px 0 var(--red),
    28px 28px 0 var(--gold),
    0 35px 90px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.signature-focus-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center 46%;
}

.signature-focus-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 11px 14px;
  border: 2px solid #fff;
  background: var(--green);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.focus-order-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.focus-price {
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 14px 18px 12px;
  border: 2px solid #fff;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  transform: rotate(-2deg);
  box-shadow: 7px 7px 0 var(--red);
}

.focus-price strong {
  font-family: var(--font-cormorant), Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 0.9;
}

.focus-price span {
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.focus-button {
  border: 2px solid #fff;
  background: var(--red);
  color: #fff;
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.2);
}

.fire-embers {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.fire-embers span {
  position: absolute;
  bottom: -40px;
  width: 5px;
  height: 13px;
  border-radius: 50%;
  background: #ffd86a;
  box-shadow: 0 0 12px 3px rgba(255, 107, 0, 0.8);
  animation: ember-rise 5.6s linear infinite;
}

.fire-embers span:nth-child(1) { left: 58%; animation-delay: -0.7s; }
.fire-embers span:nth-child(2) { left: 67%; width: 3px; height: 8px; animation-delay: -3.2s; }
.fire-embers span:nth-child(3) { left: 75%; animation-delay: -1.8s; }
.fire-embers span:nth-child(4) { left: 84%; width: 4px; height: 9px; animation-delay: -4.5s; }
.fire-embers span:nth-child(5) { left: 91%; animation-delay: -2.4s; }
.fire-embers span:nth-child(6) { left: 48%; width: 3px; height: 7px; animation-delay: -5s; }

.brand-canvas {
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255, 255, 255, 0.22) 50%, transparent 50.3%),
    var(--red);
}

.brand-canvas-frame {
  border: 2px solid var(--gold);
  box-shadow: 14px 14px 0 var(--gold), 0 30px 90px rgba(0, 0, 0, 0.3);
}

.menu-section {
  background:
    linear-gradient(rgba(0, 122, 69, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 122, 69, 0.08) 1px, transparent 1px),
    #fff1ad;
  background-size: 48px 48px;
}

.menu-section::before {
  width: 3px;
  background: var(--red);
}

.price-card {
  --card-accent: var(--green);
  border: 2px solid var(--ink);
  border-radius: 2px 2px 28px 2px;
  background: #fff;
  box-shadow: 9px 9px 0 rgba(23, 17, 11, 0.12);
}

.price-card:nth-child(4n + 2) { --card-accent: var(--red); }
.price-card:nth-child(4n + 3) { --card-accent: var(--sky); }
.price-card:nth-child(4n + 4) { --card-accent: var(--orange); }

.price-card-copy {
  border-top: 9px solid var(--card-accent);
}

.price-pill {
  min-width: 88px;
  border: 2px solid var(--ink);
  background: var(--gold);
  font-family: var(--font-cormorant), Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  box-shadow: 6px 6px 0 var(--red);
}

.card-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-cormorant), Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.price-card h3 {
  font-family: var(--font-cormorant), Georgia, "Times New Roman", serif;
  font-style: italic;
}

.price-card-copy > a {
  color: var(--card-accent);
}

.favorites-section {
  background:
    radial-gradient(circle at 7% 12%, rgba(53, 184, 230, 0.19), transparent 26%),
    radial-gradient(circle at 93% 88%, rgba(255, 202, 58, 0.2), transparent 28%),
    var(--paper);
}

.favorite-card {
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(0, 122, 69, 0.12);
}

.connect-section {
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 202, 58, 0.32), transparent 27%),
    #e8f8ff;
}

.review-carousel {
  border: 3px solid var(--ink);
  background:
    radial-gradient(circle at 50% 105%, rgba(255, 202, 58, 0.32), transparent 34%),
    var(--green-deep);
  box-shadow: 14px 14px 0 var(--red), 0 30px 80px rgba(16, 40, 28, 0.2);
}

.profile-grid > a {
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(23, 17, 11, 0.12);
}

.profile-grid > a:nth-child(1) { background: #ffd553; }
.profile-grid > a:nth-child(2) { background: #ff8a42; }
.profile-grid > a:nth-child(3) { background: #fefcf5; }
.profile-grid > a:nth-child(4) { background: #ff6d65; }
.profile-grid > a:nth-child(5) { background: #6bd3ee; }

.mobile-order-bar {
  border: 2px solid #fff;
  background: rgba(3, 76, 45, 0.97);
  box-shadow: 0 14px 0 rgba(23, 17, 11, 0.22);
}

@keyframes promise-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes fire-pan {
  from {
    background-position: 48% center;
  }
  to {
    background-position: 54% center;
  }
}

@keyframes fire-flicker {
  0% {
    opacity: 0.48;
    transform: scale(0.9) translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1.08) translate3d(-2%, -1%, 0);
  }
}

@keyframes ember-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  12% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translate3d(70px, -780px, 0) rotate(360deg);
  }
}

@keyframes gallery-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes seal-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes seal-breathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.98);
  }
  50% {
    transform: translate3d(-13px, -9px, 0) scale(1.035);
  }
}

@keyframes flour-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(8px, -14px, 0) rotate(7deg);
  }
}

@keyframes banner-breathe {
  from {
    transform: scale(1.01);
  }
  to {
    transform: scale(1.035);
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

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

  .hero-copy {
    min-height: 660px;
    padding: 82px clamp(24px, 8vw, 78px);
  }

  .hero h1 {
    font-size: clamp(4.4rem, 12vw, 7rem);
  }

  .hero-visual {
    min-height: 620px;
  }

  .signature-focus {
    background-position: 62% center;
  }

  .signature-focus-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .signature-focus-copy {
    max-width: 760px;
  }

  .signature-focus-photo {
    width: min(78vw, 530px);
    justify-self: center;
  }

  .favorite-card-tall {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .price-card,
  .price-card:nth-child(4n + 2),
  .price-card:nth-child(4n + 4),
  .price-card:hover,
  .price-card:nth-child(4n + 2):hover,
  .price-card:nth-child(4n + 4):hover {
    transform: none;
  }

  .atelier-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .favorite-card-featured,
  .dietary-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .dietary-section {
    gap: 55px;
  }

  .catering-section {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .profile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .final-cta {
    grid-template-columns: auto 1fr;
  }

  .final-cta > .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .announcement {
    min-height: 31px;
    gap: 8px;
    padding-inline: 10px;
    font-size: 0.57rem;
    letter-spacing: 0.08em;
  }

  .site-header {
    min-height: 68px;
    gap: 8px;
    padding: 7px 15px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 49px;
    height: 49px;
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .brand small {
    font-size: 0.49rem;
    letter-spacing: 0.1em;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 15px;
    font-size: 0.72rem;
  }

  .button-small span {
    display: none;
  }

  .hero-copy {
    min-height: auto;
    padding: 66px 22px 62px;
  }

  .hero-art-seal {
    right: -175px;
    bottom: -150px;
    min-width: 390px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.67rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.4rem);
    line-height: 0.85;
  }

  .hero h1 em {
    margin-top: 17px;
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 0.98rem;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    margin-top: 29px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    display: grid;
    margin-top: 27px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .slider-caption {
    bottom: 104px;
    left: 18px;
  }

  .slider-controls {
    right: 18px;
    bottom: 108px;
  }

  .slider-controls .slider-play {
    display: none;
  }

  .slider-dots {
    top: 20px;
    left: 18px;
  }

  .hero-badge {
    top: 22px;
    right: 18px;
    width: 118px;
  }

  .hero-badge strong {
    font-size: 1.12rem;
  }

  .location-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 70px;
    padding: 12px 14px;
  }

  .promise-strip {
    min-height: 66px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .promise-item {
    gap: 25px;
    padding-left: 25px;
  }

  .promise-item strong {
    font-size: 1.35rem;
  }

  .signature-focus {
    min-height: auto;
    padding: 72px 20px 88px;
    background-position: 70% center;
  }

  .signature-focus::before {
    background:
      linear-gradient(180deg, rgba(4, 3, 2, 0.84) 0%, rgba(4, 3, 2, 0.64) 62%, rgba(4, 3, 2, 0.38) 100%),
      linear-gradient(90deg, rgba(4, 3, 2, 0.7), transparent);
  }

  .signature-focus-layout {
    gap: 48px;
  }

  .signature-focus-copy {
    padding: 28px 20px 31px;
    border-left-width: 5px;
  }

  .focus-kicker {
    align-items: flex-start;
    flex-direction: column;
    font-size: 0.6rem;
  }

  .signature-focus h2 {
    font-size: clamp(3.55rem, 17vw, 5rem);
    line-height: 0.82;
  }

  .signature-focus-copy > p:not(.focus-kicker) {
    margin-top: 25px;
    font-size: 0.94rem;
  }

  .focus-order-row {
    align-items: stretch;
    flex-direction: column;
  }

  .focus-price,
  .focus-button {
    width: 100%;
  }

  .focus-price {
    transform: none;
  }

  .signature-focus-photo {
    width: calc(100% - 26px);
    box-shadow:
      10px 10px 0 var(--red),
      19px 19px 0 var(--gold),
      0 25px 70px rgba(0, 0, 0, 0.42);
    transform: rotate(1deg);
  }

  .motion-toggle-red {
    min-width: 56px;
    margin: 0 9px;
    padding: 9px 10px;
    font-size: 0.5rem;
  }

  .brand-canvas {
    padding: 12px;
  }

  .brand-canvas::before,
  .brand-canvas::after {
    width: 48px;
    height: 48px;
  }

  .brand-canvas-caption {
    position: static;
    max-width: none;
    padding: 14px 15px;
    border: 0;
    border-top: 1px solid rgba(240, 204, 130, 0.36);
    background: #101d16;
    text-align: center;
  }

  .section {
    padding: 76px 20px;
  }

  .menu-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .menu-section::before {
    left: 16px;
  }

  .menu-heading {
    margin-left: 8px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 44px;
  }

  .price-card-image {
    aspect-ratio: 4 / 4.5;
  }

  .price-card-copy {
    min-height: 210px;
    padding: 25px;
  }

  .price-pill {
    right: 13px;
    bottom: 13px;
    min-width: 82px;
    padding: 9px 11px;
    font-size: 1.3rem;
  }

  .menu-footer {
    align-items: stretch;
    flex-direction: column;
    margin-top: 42px;
  }

  .menu-footer .button {
    width: 100%;
  }

  .section-heading h2,
  .dietary-intro h2,
  .catering-copy h2,
  .visit-copy h2 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .favorites-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 42px;
  }

  .favorite-card-tall,
  .favorite-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .favorite-image {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .favorite-copy {
    min-height: 310px;
    padding: 28px;
  }

  .favorite-copy h3 {
    font-size: 2.55rem;
  }

  .featured-photo {
    min-height: 390px;
  }

  .featured-copy {
    padding: 42px 27px 48px;
  }

  .atelier-section {
    padding-top: 76px;
  }

  .atelier-heading {
    margin-bottom: 42px;
    padding-inline: 20px;
  }

  .atelier-heading h2 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .rail-photo {
    width: 235px;
    height: 360px;
  }

  .rail-photo:nth-child(3n + 2) {
    height: 320px;
    margin-top: 40px;
  }

  .rail-photo:nth-child(3n) {
    height: 390px;
  }

  .motion-toggle-gallery {
    right: 20px;
  }

  .dietary-section {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 78px 20px;
  }

  .dietary-cards article {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 27px 24px;
  }

  .catering-section {
    grid-template-columns: 1fr;
  }

  .catering-offer {
    min-height: 430px;
    padding: 45px 20px;
  }

  .catering-offer strong {
    font-size: 9rem;
  }

  .catering-copy {
    padding: 72px 22px;
  }

  .catering-actions,
  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .visit-section {
    grid-template-columns: 1fr;
  }

  .visit-photo {
    min-height: 540px;
  }

  .visit-photo > a {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review-carousel {
    border-radius: 100px 100px 22px 22px;
  }

  .review-carousel::before {
    top: 13px;
    right: 13px;
    bottom: 13px;
    left: 13px;
    border-radius: 88px 88px 14px 14px;
  }

  .review-slide {
    min-height: 455px;
    padding: 72px 35px 118px;
  }

  .review-slide blockquote {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .review-controls {
    right: 22px;
    bottom: 24px;
  }

  .review-dots {
    bottom: 40px;
    left: 24px;
  }

  .review-platform-heading {
    font-size: 0.54rem;
    text-align: center;
  }

  .profile-grid > a {
    min-height: 112px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    align-content: center;
    gap: 14px;
    padding: 18px;
  }

  .profile-grid > a > span:nth-child(2) {
    grid-column: auto;
  }

  .visit-copy {
    padding: 72px 22px 84px;
  }

  .visit-details div {
    grid-template-columns: 70px 1fr;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 1.28rem;
  }

  .faq-list details > p {
    margin-right: 38px;
    font-size: 0.9rem;
  }

  .final-cta {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 64px 22px 72px;
  }

  .final-cta > .button {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 46px 30px;
    padding: 62px 22px 120px;
  }

  .footer-brand,
  .copyright {
    grid-column: 1 / -1;
  }

  .site-footer > div:nth-of-type(4) {
    grid-column: 1 / -1;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 50;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 17px;
    background: rgba(13, 52, 36, 0.96);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(13px);
  }

  .mobile-order-bar a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
  }

  .mobile-order-bar a:last-child {
    gap: 10px;
    background: var(--red);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .pizza-slider-track {
    transition: none;
  }

  .promise-track,
  .photo-rail-track,
  .hero-art-seal,
  .hero-art-seal img,
  .hero-flour,
  .brand-canvas-frame > img,
  .signature-focus,
  .signature-focus::after,
  .fire-embers span {
    animation: none !important;
  }

  .review-track {
    transition: none;
  }
}
