:root {
  --cream: #fffaf2;
  --paper: #f5ecde;
  --paper-strong: #eadcc8;
  --ink: #201813;
  --ink-soft: #5f5148;
  --line: rgba(32, 24, 19, 0.14);
  --tomato: #bd3d30;
  --tomato-dark: #8f2b23;
  --olive: #405b3d;
  --olive-dark: #2e422c;
  --gold: #d3a145;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(38, 24, 16, 0.08);
  --shadow-md: 0 24px 60px rgba(38, 24, 16, 0.14);
  --shadow-lg: 0 38px 90px rgba(20, 12, 8, 0.24);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --site-width: 1220px;
  --header-height: 82px;
  --ribbon-height: 38px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ribbon-height) + var(--header-height) + 18px);
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(211, 161, 69, 0.1), transparent 26rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open,
body.intro-active {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 0.55em;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.3rem);
}

h2 {
  font-size: clamp(2.15rem, 4.6vw, 4.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--white);
  background: var(--tomato);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-wrap,
.section-inner {
  width: min(calc(100% - 40px), var(--site-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 136px) 0;
}

.section.compact {
  padding-block: clamp(54px, 6vw, 86px);
}

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

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(189, 61, 48, 0.25), transparent 32rem),
    linear-gradient(135deg, #201713, #120d0a);
}

.section.olive {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.09), transparent 28rem),
    var(--olive-dark);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--tomato);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.dark .eyebrow,
.dark .kicker,
.olive .eyebrow,
.olive .kicker {
  color: #f3c96f;
}

.lead {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.dark .lead,
.olive .lead {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-heading > div {
  max-width: 820px;
}

.section-heading h2 {
  margin-bottom: 0.28em;
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.dark .section-heading p,
.olive .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.live-ribbon {
  position: sticky;
  top: 0;
  z-index: 110;
  color: var(--white);
  background: var(--olive-dark);
  box-shadow: 0 4px 14px rgba(18, 12, 9, 0.12);
  font-size: 0.86rem;
}

.live-ribbon__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.live-ribbon__status {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.live-ribbon__status strong,
.live-ribbon__status span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-ribbon__label {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-ribbon__sep {
  color: rgba(255, 255, 255, 0.32);
}

.live-pulse {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: #9fd18f;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(159, 209, 143, 0.45);
  animation: live-pulse 2s infinite;
}

[data-today-state="closed"] .live-pulse,
[data-today-state="past"] .live-pulse {
  background: #d6bd8b;
  animation: none;
}

.live-ribbon__link {
  flex: 0 0 auto;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.live-ribbon__link:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 120;
  top: var(--ribbon-height);
  border-bottom: 1px solid rgba(32, 24, 19, 0.08);
  background: rgba(255, 250, 242, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, 0.97);
  box-shadow: 0 12px 38px rgba(35, 22, 14, 0.1);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--site-width));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 54px;
  max-width: 78px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.17rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
}

.nav-links > a {
  position: relative;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links > a::after {
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.nav-links > a:hover::after,
.nav-links > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.header-contact {
  padding: 0.55rem 0.25rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.header-contact:hover,
.header-contact[aria-current="page"] {
  color: var(--tomato);
}

.menu-toggle,
.nav-backdrop,
.nav-mobile-actions {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button.primary {
  color: var(--white);
  background: var(--tomato);
  box-shadow: 0 12px 28px rgba(189, 61, 48, 0.24);
}

.button.primary:hover {
  background: var(--tomato-dark);
  box-shadow: 0 16px 36px rgba(143, 43, 35, 0.28);
}

.button.olive {
  color: var(--white);
  background: var(--olive);
  box-shadow: 0 12px 28px rgba(64, 91, 61, 0.22);
}

.button.olive:hover {
  background: var(--olive-dark);
}

.button.light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(32, 24, 19, 0.08);
  box-shadow: var(--shadow-sm);
}

.button.light:hover {
  border-color: rgba(32, 24, 19, 0.18);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.ghost:hover {
  background: rgba(32, 24, 19, 0.04);
  border-color: rgba(32, 24, 19, 0.28);
}

.dark .button.ghost,
.olive .button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.dark .button.ghost:hover,
.olive .button.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.48);
}

.button.text-link {
  min-height: auto;
  padding: 0;
  color: var(--tomato);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.button.text-link:hover {
  transform: translateX(4px);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.site-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 62%, rgba(196, 72, 40, 0.28), transparent 26rem),
    #120d0a;
  animation: intro-fallback 350ms 3.2s forwards;
}

.site-intro.is-leaving {
  pointer-events: none;
  animation: intro-leave 520ms var(--ease) forwards;
}

.intro-skip {
  position: absolute;
  z-index: 4;
  top: max(20px, env(safe-area-inset-top));
  right: max(20px, env(safe-area-inset-right));
  padding: 0.55rem 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.intro-stage {
  position: relative;
  width: min(82vw, 560px);
  height: min(66vw, 400px);
  display: grid;
  place-items: end center;
}

.oven-shell {
  position: absolute;
  bottom: 58px;
  width: min(76vw, 470px);
  height: min(48vw, 285px);
  border: clamp(12px, 2.2vw, 20px) solid #6b3e29;
  border-bottom-width: clamp(18px, 3vw, 28px);
  border-radius: 48% 48% 12% 12% / 58% 58% 12% 12%;
  background: #0a0807;
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.05),
    inset 0 -24px 55px rgba(204, 68, 32, 0.42),
    0 40px 80px rgba(0, 0, 0, 0.45);
}

.oven-shell::before {
  position: absolute;
  inset: 18% 12% 10%;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 194, 90, 0.95) 0 5%, rgba(221, 73, 30, 0.7) 18%, transparent 55%),
    #090706;
  filter: blur(0.2px);
}

.oven-floor {
  position: absolute;
  z-index: 2;
  bottom: 52px;
  width: min(82vw, 520px);
  height: 34px;
  background: linear-gradient(#b4865c, #5b3524);
  border-radius: 50%;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.46);
}

.oven-door {
  position: absolute;
  z-index: 3;
  bottom: 70px;
  width: min(36vw, 220px);
  height: min(42vw, 245px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 20% 80%, rgba(0, 0, 0, 0.16)),
    #2b1d17;
  border: 2px solid #81503a;
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.58);
}

.oven-door.left {
  left: 7%;
  border-radius: 72% 8% 8% 10% / 58% 8% 8% 10%;
  transform-origin: left center;
  animation: door-left 2.5s var(--ease) forwards;
}

.oven-door.right {
  right: 7%;
  border-radius: 8% 72% 10% 8% / 8% 58% 10% 8%;
  transform-origin: right center;
  animation: door-right 2.5s var(--ease) forwards;
}

.intro-pizza {
  position: absolute;
  z-index: 5;
  bottom: 78px;
  width: min(46vw, 270px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 8px solid #d8a258;
  border-radius: 50%;
  background: #d8a258;
  box-shadow:
    0 0 35px rgba(236, 120, 53, 0.45),
    0 30px 50px rgba(0, 0, 0, 0.48);
  transform: translateY(68px) scale(0.45) rotate(-5deg);
  animation: pizza-out 2.5s var(--ease) forwards;
}

.intro-pizza img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 38%;
}

.intro-wordmark {
  position: absolute;
  z-index: 6;
  bottom: 0;
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(12px);
  animation: wordmark-in 2.5s var(--ease) forwards;
}

.intro-wordmark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.intro-wordmark span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: min(840px, calc(100svh - 120px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0 clamp(128px, 12vw, 170px);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 38%, rgba(211, 161, 69, 0.17), transparent 26rem),
    linear-gradient(115deg, rgba(245, 236, 222, 0.82), transparent 58%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 0.2em;
}

.hero-copy h1 span {
  display: block;
  color: var(--tomato);
  font-style: italic;
  font-weight: 500;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 2rem;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin: 1.7rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-notes li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--olive);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-photo-main {
  position: absolute;
  inset: 0 7% 0 9%;
  overflow: hidden;
  border-radius: 47% 47% 30px 30px / 28% 28% 30px 30px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.3deg);
}

.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transition: transform 900ms var(--ease);
}

.hero-photo-main:hover img {
  transform: scale(1.035);
}

.hero-photo-small {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -28px;
  width: 42%;
  overflow: hidden;
  aspect-ratio: 1.15;
  border: 8px solid var(--cream);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
}

.hero-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 7%;
  left: 0;
  width: 138px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--white);
  background: var(--tomato);
  border: 5px solid var(--cream);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-8deg);
}

.live-location-wrap {
  position: relative;
  z-index: 5;
  margin-top: clamp(-92px, -7vw, -62px);
}

.live-location-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.3rem);
  padding: clamp(22px, 3.2vw, 38px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.11), transparent 18rem),
    var(--olive-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.live-location-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-size: 1.8rem;
}

.live-location-copy {
  min-width: 0;
}

.live-location-copy .eyebrow {
  margin-bottom: 0.55rem;
  color: #f2c96f;
}

.live-location-copy h2 {
  margin-bottom: 0.2rem;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.live-location-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.live-location-copy .location-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  color: #dcebd6;
  font-size: 0.84rem;
  font-weight: 800;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.intent-card {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.intent-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 20%, rgba(16, 10, 7, 0.82) 100%);
}

.intent-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.intent-card:hover img {
  transform: scale(1.055);
}

.intent-card__body {
  width: 100%;
  padding: clamp(24px, 3vw, 36px);
}

.intent-card__body .kicker {
  color: #f4d17e;
}

.intent-card__body h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.intent-card__body p {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.76);
}

.intent-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.intent-card__link span {
  transition: transform 180ms var(--ease);
}

.intent-card:hover .intent-card__link span {
  transform: translateX(5px);
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.story-media {
  position: relative;
  min-height: 620px;
}

.story-media__main {
  position: absolute;
  inset: 0 13% 8% 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.story-media__main img,
.story-media__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  overflow: hidden;
  aspect-ratio: 0.82;
  border: 8px solid var(--cream);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.story-copy h2 {
  margin-bottom: 0.35em;
}

.story-copy p {
  color: var(--ink-soft);
}

.fact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 0.75rem;
  color: var(--ink-soft);
}

.fact-list li::before {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--olive);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 92px;
  gap: 14px;
}

.gallery-tile {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 20px;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  text-align: left;
}

.gallery-tile.wide {
  grid-column: span 7;
}

.gallery-themes .gallery-tile,
.prestations-themes .gallery-tile {
  cursor: pointer;
  text-decoration: none;
}

.gallery-tile.tall {
  grid-column: span 5;
  grid-row: span 5;
}

.gallery-tile.small {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-tile.square {
  grid-row: span 4;
}

.gallery-themes {
  grid-auto-rows: 238px;
}

.gallery-themes .gallery-tile {
  grid-column: span 4;
  grid-row: span 1;
  min-height: 0;
}

.gallery-themes .gallery-tile:nth-child(-n + 2) {
  grid-column: span 6;
}

.prestations-themes {
  grid-auto-rows: 238px;
}

.prestations-themes .gallery-tile {
  grid-column: span 6;
  grid-row: span 1;
  min-height: 0;
}

.prestations-themes .gallery-tile:last-child {
  grid-column: 1 / -1;
}

.gallery-tile::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(12, 8, 6, 0.78));
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 650ms ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.045);
}

.gallery-tile__caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-tile__caption span:first-child {
  display: grid;
  gap: 0.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
}

.gallery-tile__caption small {
  color: rgba(255, 255, 255, 0.7);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-tile__zoom {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.dark-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.dark-feature__copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.dark-feature__media {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 14px;
}

.dark-feature__media figure {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
}

.dark-feature__media figure:first-child {
  aspect-ratio: 0.78;
  transform: translateY(32px);
}

.dark-feature__media figure:last-child {
  aspect-ratio: 1.12;
}

.dark-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(32px, 5vw, 58px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(255, 255, 255, 0.14), transparent 22rem),
    var(--tomato);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.final-cta h2 {
  max-width: 850px;
  margin-bottom: 0.22em;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.final-cta p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.page-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #1a110d;
  isolation: isolate;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 11, 8, 0.92) 0%, rgba(18, 11, 8, 0.66) 42%, rgba(18, 11, 8, 0.12) 78%),
    linear-gradient(0deg, rgba(18, 11, 8, 0.78), transparent 48%);
}

.page-hero__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__content {
  max-width: 820px;
  padding: clamp(90px, 11vw, 150px) 0 clamp(72px, 8vw, 106px);
}

.page-hero__content h1 {
  margin-bottom: 0.18em;
  font-size: clamp(3.3rem, 7.2vw, 6.5rem);
}

.page-hero__content > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.page-hero .eyebrow {
  color: #f4cd78;
}

.page-hero .button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.page-intro-media {
  position: relative;
  min-height: 540px;
}

.page-intro-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.prestation-trio {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.prestation-trio figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.prestation-trio figure:first-child {
  grid-row: 1 / -1;
}

.prestation-trio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-intro-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tag {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  color: var(--ink-soft);
  background: rgba(32, 24, 19, 0.05);
  border: 1px solid rgba(32, 24, 19, 0.09);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.tag.tomato {
  color: var(--tomato-dark);
  background: rgba(189, 61, 48, 0.09);
  border-color: rgba(189, 61, 48, 0.17);
}

.tag.olive {
  color: var(--olive-dark);
  background: rgba(64, 91, 61, 0.09);
  border-color: rgba(64, 91, 61, 0.16);
}

.tag.gold {
  color: #745317;
  background: rgba(211, 161, 69, 0.15);
  border-color: rgba(211, 161, 69, 0.25);
}

.month-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.4rem);
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.month-banner__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--tomato);
  border-radius: 50%;
  font-size: 1.65rem;
}

.month-banner h2 {
  margin-bottom: 0.18em;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.month-banner p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.signature-pizza {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.signature-pizza__media {
  min-height: 520px;
  overflow: hidden;
}

.signature-pizza__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-pizza__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.signature-pizza__copy h2 {
  margin-bottom: 0.22em;
}

.signature-pizza__copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.signature-price {
  margin-top: 1rem;
  color: var(--tomato);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.filter-bar {
  position: sticky;
  z-index: 20;
  top: calc(var(--ribbon-height) + var(--header-height) + 10px);
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  margin: 0 0 2.1rem;
  padding: 0.75rem;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0.6rem 0.95rem;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.filter-button:hover {
  color: var(--ink);
  background: rgba(32, 24, 19, 0.06);
}

.filter-button.active {
  color: var(--white);
  background: var(--tomato);
  box-shadow: 0 8px 18px rgba(189, 61, 48, 0.2);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.pizza-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  transition: background 180ms ease;
}

.pizza-item:hover {
  background: #fffdf9;
}

.pizza-item.featured {
  background:
    linear-gradient(rgba(189, 61, 48, 0.055), rgba(189, 61, 48, 0.055)),
    var(--white);
}

.pizza-item h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.28rem, 2.2vw, 1.65rem);
}

.pizza-item p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.pizza-item__price {
  align-self: start;
  color: var(--tomato);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.pizza-item__tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-block {
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.info-block h3 {
  margin-bottom: 0.35rem;
}

.info-block p {
  color: var(--ink-soft);
}

.today-feature {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.12), transparent 20rem),
    var(--olive-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.today-feature h2 {
  margin-bottom: 0.18em;
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.today-feature p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.today-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.location-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(112px, 0.32fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}

.location-card:hover {
  border-color: rgba(64, 91, 61, 0.34);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.location-card.today {
  background:
    linear-gradient(rgba(64, 91, 61, 0.065), rgba(64, 91, 61, 0.065)),
    var(--white);
  border-color: rgba(64, 91, 61, 0.65);
  box-shadow: 0 16px 40px rgba(64, 91, 61, 0.14);
}

.location-day {
  display: grid;
  gap: 0.2rem;
}

.location-day strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.1;
}

.location-day span {
  color: var(--tomato);
  font-size: 0.8rem;
  font-weight: 850;
}

.location-address {
  min-width: 0;
}

.location-address strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.location-address span {
  display: block;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-overflow: ellipsis;
}

.location-card .button {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
}

.today-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  padding: 0.3rem 0.65rem;
  color: var(--white);
  background: var(--olive);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-card.weekend {
  grid-column: 1 / -1;
  background: var(--paper);
}

.note-box {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 1.4rem;
  padding: 1.1rem 1.25rem;
  color: var(--ink-soft);
  background: rgba(211, 161, 69, 0.1);
  border: 1px solid rgba(211, 161, 69, 0.22);
  border-radius: 16px;
  font-size: 0.9rem;
}

.note-box strong {
  color: var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
  min-height: 290px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card__media {
  min-height: 100%;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 38px);
}

.service-card__body p {
  color: var(--ink-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.process-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  counter-increment: process;
}

.process-card::before {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  content: counter(process, decimal-leading-zero);
  color: var(--white);
  background: var(--tomato);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.process-card p {
  color: var(--ink-soft);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

.contact-only-layout {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}

.contact-panel {
  position: sticky;
  top: calc(var(--ribbon-height) + var(--header-height) + 24px);
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0, rgba(255, 255, 255, 0.12), transparent 18rem),
    var(--olive-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-panel p,
.contact-panel li {
  color: rgba(255, 255, 255, 0.74);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 0.16rem;
}

.contact-list strong {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--white);
  font-weight: 750;
}

.form-card {
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.form-card > p {
  color: var(--ink-soft);
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.95rem;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid rgba(32, 24, 19, 0.16);
  border-radius: 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--tomato);
  box-shadow: 0 0 0 4px rgba(189, 61, 48, 0.1);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #9a8c82;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  color: #1d4d31;
  background: #edf7ee;
  border: 1px solid rgba(29, 77, 49, 0.2);
  border-radius: 10px;
  font-weight: 750;
}

.form-status.is-error {
  color: #8c2f24;
  background: #fff0ed;
  border-color: rgba(140, 47, 36, 0.2);
}

.form-grid button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.gallery-filter-shell {
  display: grid;
  gap: 2rem;
}

.gallery-full {
  columns: 3 320px;
  column-gap: 16px;
}

.gallery-full .gallery-tile {
  width: 100%;
  min-height: 0;
  display: block;
  margin: 0 0 16px;
  break-inside: avoid;
  aspect-ratio: var(--ratio, 1.15);
}

.gallery-full .gallery-tile.portrait {
  --ratio: 0.78;
}

.gallery-full .gallery-tile.landscape {
  --ratio: 1.45;
}

.gallery-full .gallery-tile.square {
  --ratio: 1;
}

.lightbox {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 52px);
  background: rgba(12, 8, 6, 0.93);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.lightbox.open {
  display: flex;
  animation: lightbox-in 220ms ease both;
}

.lightbox__dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: 92vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.85rem;
}

.lightbox__figure {
  min-height: 0;
  display: grid;
  place-items: center;
  margin: 0;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lightbox__close {
  top: -10px;
  right: -10px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav.prev {
  left: -18px;
}

.lightbox__nav.next {
  right: -18px;
}

.legal-card {
  max-width: 900px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  margin-top: 1.5em;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.site-footer {
  padding: clamp(64px, 8vw, 100px) 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: #17100d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-brand {
  max-width: 420px;
}

.footer-brand .brand {
  margin-bottom: 1.2rem;
  color: var(--white);
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.54);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(48px, 7vw, 76px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.66);
}

.mobile-dock {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes live-pulse {
  70% { box-shadow: 0 0 0 9px rgba(159, 209, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(159, 209, 143, 0); }
}

@keyframes door-left {
  0%, 22% { transform: translateX(0) rotateY(0); }
  58%, 100% { transform: translateX(-78%) rotateY(-28deg); }
}

@keyframes door-right {
  0%, 22% { transform: translateX(0) rotateY(0); }
  58%, 100% { transform: translateX(78%) rotateY(28deg); }
}

@keyframes pizza-out {
  0%, 30% { transform: translateY(68px) scale(0.45) rotate(-5deg); }
  68% { transform: translateY(-5px) scale(0.92) rotate(2deg); }
  100% { transform: translateY(-26px) scale(1.05) rotate(0); }
}

@keyframes wordmark-in {
  0%, 48% { opacity: 0; transform: translateY(12px); }
  76%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes intro-leave {
  to { opacity: 0; visibility: hidden; transform: scale(1.025); }
}

@keyframes intro-fallback {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 74px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle__lines {
    width: 20px;
    display: grid;
    gap: 4px;
  }

  .menu-toggle__lines span {
    width: 100%;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    z-index: 122;
    top: calc(var(--ribbon-height) + var(--header-height) + 12px);
    right: 20px;
    left: 20px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.985);
    transform-origin: top;
    transition: opacity 200ms ease, transform 220ms var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links > a {
    padding: 0.95rem 0.8rem;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
  }

  .nav-links > a::after {
    display: none;
  }

  .nav-links > a[aria-current="page"] {
    color: var(--tomato);
  }

  .nav-mobile-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .nav-mobile-actions .button:first-child {
    grid-column: 1 / -1;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 110;
    inset: 0;
    display: block;
    background: rgba(18, 12, 9, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .header-actions {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 2.5rem;
  }

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

  .hero-stamp {
    width: 116px;
  }

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

  .intent-card:last-child {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .story-split,
  .dark-feature,
  .page-intro-grid {
    gap: 3.5rem;
  }

  .photo-mosaic {
    grid-auto-rows: 78px;
  }

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

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

@media (max-width: 820px) {
  .section-heading,
  .final-cta,
  .today-feature {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading {
    display: grid;
  }

  .home-hero {
    min-height: auto;
    padding-top: 72px;
  }

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

  .hero-copy {
    max-width: 680px;
  }

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

  .live-location-card {
    grid-template-columns: auto 1fr;
  }

  .live-location-card .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .story-split,
  .dark-feature,
  .page-intro-grid,
  .form-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-media {
    min-height: 540px;
  }

  .dark-feature__copy {
    order: -1;
  }

  .signature-pizza {
    grid-template-columns: minmax(0, 1fr);
  }

  .signature-pizza__media {
    min-height: 430px;
  }

  .menu-list,
  .schedule-grid,
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .info-block:last-child,
  .process-card:last-child {
    grid-column: 1 / -1;
  }

  .form-layout > *,
  .menu-list > *,
  .schedule-grid > *,
  .service-grid > * {
    min-width: 0;
  }

  .contact-panel {
    position: static;
  }

  .final-cta__actions {
    justify-content: flex-start;
  }

  .page-hero {
    min-height: 540px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
    --radius-lg: 28px;
    --radius-md: 20px;
  }

  html {
    scroll-padding-top: calc(var(--ribbon-height) + var(--header-height) + 12px);
  }

  body.has-mobile-dock {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .site-wrap,
  .section-inner,
  .nav-shell {
    width: min(calc(100% - 28px), var(--site-width));
  }

  .section {
    padding-block: 74px;
  }

  .section.compact {
    padding-block: 48px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .live-ribbon__inner {
    width: 100%;
    padding-inline: 14px;
  }

  .live-ribbon__label,
  .live-ribbon__sep,
  .live-ribbon__status > span:last-child {
    display: none;
  }

  .live-ribbon__status {
    flex: 1 1 auto;
  }

  .live-ribbon__link {
    font-size: 0.78rem;
  }

  .brand img {
    width: auto;
    height: 44px;
    max-width: 64px;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small {
    font-size: 0.6rem;
  }

  .nav-links {
    top: calc(var(--ribbon-height) + var(--header-height) + 8px);
    right: 14px;
    left: 14px;
  }

  .home-hero {
    padding: 58px 0 118px;
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-actions,
  .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-notes {
    display: grid;
    gap: 0.45rem;
  }

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

  .hero-photo-main {
    inset: 0 2% 0 6%;
  }

  .hero-photo-small {
    width: 47%;
    right: 0;
    bottom: -22px;
    border-width: 5px;
  }

  .hero-stamp {
    top: 4%;
    width: 102px;
    font-size: 0.87rem;
  }

  .live-location-wrap {
    margin-top: -70px;
  }

  .live-location-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .live-location-icon {
    width: 58px;
    height: 58px;
  }

  .live-location-card .button {
    grid-column: auto;
  }

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

  .intent-card,
  .intent-card:last-child {
    grid-column: auto;
    min-height: 420px;
  }

  .story-media {
    min-height: 460px;
  }

  .story-media__main {
    inset: 0 9% 7% 0;
  }

  .story-media__secondary {
    width: 50%;
    border-width: 5px;
  }

  .photo-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .gallery-tile,
  .gallery-tile.wide,
  .gallery-tile.tall,
  .gallery-tile.small,
  .gallery-tile.square {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-tile:first-child,
  .gallery-tile:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .gallery-tile__caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .gallery-tile__caption span:first-child {
    font-size: 1rem;
  }

  .gallery-tile__zoom {
    width: 30px;
    height: 30px;
  }

  .dark-feature__media {
    gap: 9px;
  }

  .dark-feature__media figure:first-child {
    transform: translateY(18px);
  }

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

  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(18, 11, 8, 0.88), rgba(18, 11, 8, 0.35)),
      linear-gradient(0deg, rgba(18, 11, 8, 0.9), transparent 65%);
  }

  .page-hero__image {
    object-position: center;
  }

  .page-hero__content {
    padding-bottom: 64px;
  }

  .month-banner {
    grid-template-columns: 1fr;
  }

  .month-banner__icon {
    width: 56px;
    height: 56px;
  }

  .signature-pizza__media {
    min-height: 330px;
  }

  .prestation-trio {
    min-height: 430px;
    gap: 8px;
  }

  .filter-bar {
    top: calc(var(--ribbon-height) + var(--header-height) + 8px);
    margin-inline: -14px;
    padding-inline: 14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .pizza-item {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 22px;
  }

  .pizza-item p {
    font-size: 0.9rem;
  }

  .info-strip,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .info-block:last-child,
  .process-card:last-child {
    grid-column: auto;
  }

  .today-feature {
    padding: 28px;
  }

  .location-card {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem 1rem;
    padding: 1.15rem;
  }

  .location-address {
    grid-column: 1 / -1;
  }

  .location-card .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__media {
    min-height: 240px;
  }

  .form-card {
    padding: 26px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-full {
    columns: 2 145px;
    column-gap: 10px;
  }

  .gallery-full .gallery-tile {
    margin-bottom: 10px;
    border-radius: 14px;
  }

  .gallery-full .gallery-tile__caption {
    display: none;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox__close {
    top: 6px;
    right: 6px;
  }

  .lightbox__nav {
    top: auto;
    bottom: -4px;
    transform: none;
  }

  .lightbox__nav.prev {
    left: 0;
  }

  .lightbox__nav.next {
    right: 0;
  }

  .lightbox__caption {
    min-height: 48px;
    padding-inline: 58px;
    font-size: 0.84rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

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

  .footer-bottom {
    display: grid;
    justify-content: start;
  }

  .mobile-dock {
    position: fixed;
    z-index: 75;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    min-height: 62px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    padding: 6px;
    background: rgba(23, 16, 13, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(20, 12, 8, 0.35);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

body.menu-open .mobile-dock {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
}

  .mobile-dock a {
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 0.45rem;
    color: rgba(255, 255, 255, 0.76);
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
  }

  .mobile-dock a.primary {
    color: var(--white);
    background: var(--tomato);
  }

  .intro-stage {
    height: 390px;
  }

  .oven-shell {
    bottom: 82px;
    height: 230px;
  }

  .oven-floor {
    bottom: 74px;
  }

  .oven-door {
    bottom: 93px;
    height: 205px;
  }

  .intro-pizza {
    bottom: 98px;
  }

  .intro-wordmark {
    bottom: 16px;
  }
}

@media (max-width: 820px) {
  .gallery-themes,
  .prestations-themes {
    grid-auto-rows: 210px;
  }

  .prestation-trio {
    min-height: 420px;
    grid-template-rows: 250px 160px;
  }
}

@media (max-width: 640px) {
  .gallery-themes,
  .prestations-themes {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 215px;
  }

  .gallery-themes .gallery-tile,
  .gallery-themes .gallery-tile:nth-child(-n + 2),
  .prestations-themes .gallery-tile,
  .prestations-themes .gallery-tile:last-child {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .prestation-trio {
    min-height: 388px;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-rows: 230px 150px;
  }
}

@media (max-width: 410px) {
  .brand-copy small {
    display: none;
  }

  .gallery-tile__zoom {
    display: none;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
