﻿:root {
  --paper: #fbfaf6;
  --chalk: #fffdf8;
  --linen: #efe7d8;
  --olive: #59653e;
  --olive-deep: #273321;
  --ink: #181915;
  --muted: #716c61;
  --wine: #7f2633;
  --tomato: #b74831;
  --gold: #caa56a;
  --line: rgba(39, 51, 33, 0.16);
  --shadow: 0 28px 90px rgba(24, 25, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(4.4rem, 9.2vw, 9.8rem);
}

h2 {
  margin-bottom: 24px;
  color: var(--olive-deep);
  font-size: clamp(2.3rem, 5.4vw, 5.7rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--olive-deep);
  font-size: 1.18rem;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px clamp(16px, 3.6vw, 48px);
  background: rgba(251, 250, 246, 0.64);
  border-bottom: 1px solid rgba(39, 51, 33, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(210px, 22vw, 330px);
  height: 42px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 18px rgba(255, 253, 248, 0.18));
  image-rendering: auto;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  position: absolute;
  left: 50%;
  display: flex;
  gap: clamp(13px, 2.1vw, 26px);
  transform: translateX(-50%);
  color: rgba(24, 25, 21, 0.74);
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-links a,
.footer a,
.visit-panel a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--tomato);
}

.header-cta {
  position: relative;
  z-index: 1;
  min-width: max-content;
  padding: 8px 15px;
  color: var(--chalk);
  background: var(--olive-deep);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  color: var(--chalk);
  background: var(--olive-deep);
}

.hero-media,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transform: translateY(calc(var(--hero-shift, 0) * 1px)) scale(1.035);
  transition: transform 180ms linear;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 11, 0.86) 0%, rgba(13, 15, 11, 0.62) 44%, rgba(13, 15, 11, 0.16) 100%),
    linear-gradient(0deg, rgba(13, 15, 11, 0.72) 0%, rgba(13, 15, 11, 0.1) 58%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  min-width: 0;
  min-height: 96svh;
  margin: 0 auto;
  padding: 176px clamp(20px, 5vw, 72px) 96px;
  text-align: center;
}

.hero h1 {
  max-width: 100%;
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--tomato);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero .eyebrow,
.oven-section .eyebrow,
.menu-panel.dark .panel-top {
  color: #f2c88d;
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  margin-bottom: 36px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.1rem, 1.55vw, 1.34rem);
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.hero-actions,
.cta-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  overflow: hidden;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  isolation: isolate;
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 16px 38px rgba(24, 25, 21, 0.18);
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% -70%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 253, 248, 0.32) 48%, transparent 62%);
  transform: translateX(-48%) rotate(8deg);
  transition: transform 650ms ease;
}

.button:hover::after {
  transform: translateX(48%) rotate(8deg);
}

.button.primary {
  color: var(--chalk);
  background: var(--tomato);
}

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

.button.secondary {
  color: var(--olive-deep);
  background: var(--chalk);
}

.button.menu-hero {
  color: var(--chalk);
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.34);
  backdrop-filter: blur(14px);
}

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

.cta-band .button.ghost {
  color: var(--chalk);
  border-color: rgba(255, 253, 248, 0.28);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin-top: 44px;
}

.hero-facts span {
  max-width: 100%;
  padding: 9px 13px;
  color: rgba(255, 253, 248, 0.82);
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 0.84rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.hero-facts span:hover {
  transform: translateY(-3px);
  background: rgba(255, 253, 248, 0.16);
  border-color: rgba(255, 253, 248, 0.36);
}

.hero-scroll {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 28px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.intro,
.cta-band,
.reservation-section,
.menu-section,
.experience-section,
.visit-section,
.visual-story,
.gallery-section {
  padding: clamp(68px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
  justify-items: center;
  background: var(--chalk);
}

.intro-copy,
.story-copy,
.reservation-copy,
.section-head,
.visit-copy {
  text-align: center;
}

.intro-copy,
.story-copy,
.reservation-copy,
.visit-copy {
  max-width: 720px;
}

.intro-copy {
  max-width: 920px;
}

.intro-copy h2 {
  margin-right: auto;
  margin-left: auto;
  max-width: 920px;
}

.chef-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(260px, 520px);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  width: min(100%, 980px);
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(135deg, rgba(239, 231, 216, 0.72), rgba(255, 253, 248, 0.94));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chef-portrait {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: var(--linen);
  box-shadow: 0 20px 56px rgba(24, 25, 21, 0.16);
}

.chef-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.chef-story p {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.72;
  text-align: left;
}

.chef-mark {
  position: absolute;
  top: clamp(12px, 2vw, 22px);
  left: clamp(12px, 2vw, 22px);
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(84px, 10vw, 122px);
  aspect-ratio: 1;
  color: var(--chalk);
  background: var(--wine);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(24, 25, 21, 0.18);
  text-align: center;
}

.chef-mark span {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.9;
}

.chef-mark small {
  display: block;
  max-width: 76px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.82fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  background: var(--paper);
}

.story-media {
  overflow: hidden;
  width: min(100%, 860px);
  justify-self: end;
  min-height: clamp(300px, 38vw, 520px);
  max-height: 560px;
  border-radius: 8px;
  background: var(--olive-deep);
  box-shadow: var(--shadow);
}

.story-media img,
.story-media video {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 38vw, 520px);
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.story-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p,
.reservation-copy p,
.section-head p,
.visit-copy p,
.experience-card p,
.oven-inner p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 980px);
}

.intro-stack article,
.contact-card,
.experience-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  text-align: center;
}

.intro-stack article:hover,
.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.intro-stack strong,
.experience-card span {
  display: block;
  color: var(--wine);
  font-size: 2rem;
  font-weight: 500;
}

.intro-stack span {
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--chalk);
  background: var(--olive-deep);
  text-align: center;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--chalk);
  font-size: clamp(2rem, 4.3vw, 4.4rem);
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  background: var(--linen);
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  background: rgba(255, 253, 248, 0.58);
  text-align: center;
}

.contact-card strong {
  font-size: 1.8rem;
  font-weight: 500;
}

.contact-card a {
  color: var(--olive-deep);
  font-weight: 850;
}

.reservation-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--olive-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(39, 51, 33, 0.18);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.oven-section {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 6vw, 68px);
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: clamp(76px, 11vw, 150px) clamp(20px, 5vw, 72px);
  color: var(--chalk);
  background: var(--olive-deep);
}

.oven-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 11, 0.82), rgba(13, 15, 11, 0.38)),
    linear-gradient(0deg, rgba(13, 15, 11, 0.5), rgba(13, 15, 11, 0.08));
  pointer-events: none;
}

.oven-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/portfolio-hero-room.png") center / cover;
  opacity: 0.18;
}

.gallery-section {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 0.95fr;
  gap: 18px;
  align-items: stretch;
  background: var(--ink);
}

.gallery-item {
  position: relative;
  min-height: clamp(280px, 36vw, 520px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--olive-deep);
  transform: translateZ(0);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.gallery-item.tall {
  min-height: clamp(360px, 46vw, 650px);
}

.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.gallery-ambiente img {
  object-position: center center;
}

.gallery-forno img {
  object-position: center center;
}

.gallery-details img {
  object-position: center center;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

.gallery-item:hover img {
  transform: scale(1.075);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 25, 21, 0.54), rgba(24, 25, 21, 0.04) 58%);
  pointer-events: none;
  transition: background 260ms ease;
}

.gallery-item:hover::after {
  background: linear-gradient(0deg, rgba(24, 25, 21, 0.66), rgba(24, 25, 21, 0.02) 64%);
}

.gallery-item figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--chalk);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 500;
  transition: transform 260ms ease;
}

.gallery-item:hover figcaption {
  transform: translateY(-6px);
}

.oven-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.oven-inner h2,
.oven-inner p {
  color: var(--chalk);
}

.oven-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 940px);
  min-height: 0;
  max-width: 940px;
  justify-self: center;
}

.oven-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.oven-photo,
.oven-photo img,
.oven-photo video {
  display: block;
  width: 100%;
  height: 100%;
}

.oven-photo img,
.oven-photo video {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.oven-photo:hover img,
.oven-photo:hover video {
  transform: scale(1.07);
}

.oven-photo:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 200, 141, 0.5);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.34);
}

.oven-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 15, 11, 0.46), rgba(13, 15, 11, 0.02) 56%);
  pointer-events: none;
}

.oven-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.82rem;
  font-weight: 850;
}

.menu-section {
  background: var(--chalk);
}

.section-head {
  max-width: 1040px;
  margin: 0 auto clamp(30px, 5vw, 58px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
}

.menu-panel {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.menu-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 72, 49, 0.26);
  box-shadow: 0 32px 92px rgba(24, 25, 21, 0.18);
}

.menu-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tomato), var(--gold), var(--olive));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms ease;
}

.menu-panel:hover::before {
  transform: scaleX(1);
}

.menu-panel.dark {
  background: var(--olive-deep);
  color: var(--chalk);
}

.interactive-menu {
  grid-column: 1 / -1;
  cursor: default;
}

.weekly-menu-card {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 760px);
}

.weekly-pdf-preview {
  position: relative;
  height: clamp(360px, 58vw, 540px);
  overflow: hidden;
  background: var(--chalk);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.weekly-pdf-preview iframe {
  width: 100%;
  height: 118%;
  border: 0;
  pointer-events: none;
}

.weekly-pdf-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(39, 51, 33, 0), var(--olive-deep));
  pointer-events: none;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--olive-deep);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.menu-panel.dark .panel-top {
  color: var(--chalk);
  border-bottom-color: rgba(255, 253, 248, 0.18);
}

.panel-top em {
  color: var(--tomato);
  font-size: 0.9rem;
  font-style: normal;
}

.menu-panel.dark .panel-top em {
  color: #f2c88d;
}

.menu-preview {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
}

.menu-note {
  display: grid;
  gap: 8px;
  text-align: center;
}

.menu-note span {
  color: var(--tomato);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-panel.dark .menu-note span {
  color: #f2c88d;
}

.menu-note strong {
  color: var(--olive-deep);
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  font-weight: 600;
  line-height: 1.05;
}

.menu-panel.dark .menu-note strong {
  color: var(--chalk);
}

.menu-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
  gap: 8px;
  padding: 7px;
  background: rgba(39, 51, 33, 0.07);
  border: 1px solid rgba(39, 51, 33, 0.12);
  border-radius: 8px;
}

.menu-tabs button {
  min-width: 0;
  min-height: 40px;
  color: var(--olive-deep);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.menu-tabs button:hover,
.menu-tabs button.is-active {
  color: var(--chalk);
  background: var(--tomato);
  box-shadow: 0 12px 28px rgba(183, 72, 49, 0.22);
  transform: translateY(-1px);
}

.menu-tab-panel {
  display: none;
}

.menu-tab-panel.is-active {
  display: grid;
  animation: menuPanelIn 260ms ease both;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(39, 51, 33, 0.12);
}

.interactive-menu .menu-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(22px, 4vw, 52px);
}

.interactive-menu .menu-list li:nth-child(1),
.interactive-menu .menu-list li:nth-child(2) {
  border-top: 0;
}

.menu-panel.dark .menu-list li {
  border-top-color: rgba(255, 253, 248, 0.16);
}

.menu-list strong,
.menu-list small,
.menu-list b {
  display: block;
}

.menu-list strong {
  color: var(--olive-deep);
  font-size: 1.02rem;
  font-weight: 900;
}

.menu-panel.dark .menu-list strong {
  color: var(--chalk);
}

.allergen-code {
  color: var(--tomato);
  font-size: 0.78em;
  font-weight: 850;
  white-space: nowrap;
}

.menu-panel.dark .allergen-code {
  color: #f2c88d;
}

.menu-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.menu-panel.dark .menu-list small {
  color: rgba(255, 253, 248, 0.72);
}

.menu-list b {
  padding: 7px 10px;
  color: var(--olive-deep);
  background: rgba(202, 165, 106, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-panel.dark .menu-list b {
  color: var(--chalk);
  background: rgba(255, 253, 248, 0.14);
}

.menu-link {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--chalk);
  background: var(--tomato);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.interactive-menu .menu-link {
  position: relative;
  z-index: 1;
}

.menu-panel:hover .menu-link {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(24, 25, 21, 0.18);
}

.menu-panel.dark .menu-link {
  color: var(--olive-deep);
  background: var(--chalk);
}

.weekly-menu-card .menu-link {
  justify-self: center;
  max-width: min(100%, 340px);
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
  line-height: 1.2;
  text-align: center;
}

.weekly-page {
  min-height: 100vh;
  padding: 118px clamp(18px, 5vw, 60px) 48px;
  background: var(--paper);
}

.weekly-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto 24px;
}

.weekly-page-head h1 {
  margin: 0;
  color: var(--olive-deep);
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
}

.weekly-page-head p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.weekly-viewer {
  max-width: 1160px;
  height: min(78vh, 980px);
  min-height: 620px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.weekly-viewer iframe,
.weekly-viewer object {
  width: 100%;
  height: 100%;
  border: 0;
}

.weekly-fallback {
  display: grid;
  min-height: 100%;
  place-items: center;
  gap: 18px;
  padding: 30px;
  text-align: center;
}

.weekly-fallback strong {
  color: var(--olive-deep);
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.25;
}

.allergen-note {
  margin: 0;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(39, 51, 33, 0.12);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

@keyframes menuPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.experience-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--paper);
}

.experience-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--chalk);
  text-align: center;
  overflow: hidden;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 260ms ease, transform 260ms ease;
}

.experience-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.experience-card span {
  margin-bottom: auto;
  color: var(--gold);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  justify-items: center;
  background: var(--linen);
}

.visit-card {
  width: min(100%, 520px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 74px rgba(24, 25, 21, 0.16);
}

.visit-copy {
  min-width: 0;
  max-width: 460px;
}

.visit-copy h2 {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 8px;
  max-width: 100%;
  font-size: clamp(1.72rem, 3.1vw, 3rem);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.visit-copy h2 span,
.visit-copy h2 small {
  max-width: 100%;
}

.visit-copy h2 small {
  color: var(--wine);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 850;
  line-height: 1.25;
}

.visit-address {
  margin-bottom: 18px;
  color: var(--wine);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 900;
}

.visit-card .visit-actions {
  margin-top: 26px;
}

.map-card {
  position: relative;
  width: min(100%, 620px);
  overflow: visible;
  border: 1px solid rgba(39, 51, 33, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 0;
  border: 1px solid rgba(183, 72, 49, 0.24);
  border-radius: 8px;
  opacity: 0.75;
  pointer-events: none;
  animation: mapPulse 4.8s ease-in-out infinite;
}

.map-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
}

.map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 253, 248, 0.26) 49%, transparent 58%),
    linear-gradient(0deg, rgba(24, 25, 21, 0.18), transparent 42%);
  transform: translateX(-72%);
  transition: transform 900ms ease;
  pointer-events: none;
}

.map-card:hover .map-shell::after {
  transform: translateX(72%);
}

.map {
  min-width: 0;
  width: 100%;
  min-height: clamp(280px, 34vw, 420px);
  background: var(--paper);
  border: 0;
  box-shadow: none;
  filter: saturate(0.88) contrast(1.02);
  transform: scale(1.01);
  transition: transform 650ms ease, filter 650ms ease;
}

.map-card:hover .map {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.map-pin {
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: var(--tomato);
  border: 3px solid var(--chalk);
  border-radius: 999px 999px 999px 0;
  box-shadow: 0 14px 34px rgba(24, 25, 21, 0.34);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--chalk);
  border-radius: 999px;
}

.map-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  color: var(--chalk);
  background: rgba(24, 25, 21, 0.82);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(24, 25, 21, 0.28);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.map-label span {
  font-weight: 900;
}

.map-label small {
  color: rgba(255, 253, 248, 0.78);
  font-weight: 700;
}

.footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: rgba(255, 253, 248, 0.78);
  background: var(--ink);
}

.footer span {
  color: var(--chalk);
  font-size: 1.25rem;
}

.footer a {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.footer-email {
  cursor: pointer;
}

.footer .footer-credit {
  flex: 0 0 100%;
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  width: clamp(180px, 19vw, 280px);
}

.footer-brand img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: sticky;
}

.legal-main {
  padding-top: 88px;
}

.legal-hero {
  padding: clamp(76px, 10vw, 130px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 72px);
  text-align: center;
  background: var(--linen);
}

.legal-hero h1 {
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
  color: var(--olive-deep);
  font-size: clamp(3rem, 8vw, 7rem);
}

.legal-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 36px);
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.legal-panel {
  padding: clamp(24px, 4vw, 42px);
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(24, 25, 21, 0.08);
}

.legal-panel h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.legal-panel h3 {
  margin: 26px 0 8px;
}

.legal-panel p {
  color: var(--muted);
}

.legal-panel a {
  color: var(--olive-deep);
  font-weight: 850;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 760ms ease, transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-stack.reveal.is-visible article,
.oven-collage.reveal.is-visible .oven-photo,
.menu-grid .reveal.is-visible,
.experience-section .reveal.is-visible,
.gallery-section .reveal.is-visible {
  animation: softLift 760ms ease both;
}

.intro-stack.reveal.is-visible article:nth-child(2),
.oven-collage.reveal.is-visible .oven-photo:nth-child(2),
.menu-grid .reveal.is-visible:nth-child(2),
.experience-section .reveal.is-visible:nth-child(2),
.gallery-section .reveal.is-visible:nth-child(2) {
  animation-delay: 110ms;
}

.intro-stack.reveal.is-visible article:nth-child(3),
.oven-collage.reveal.is-visible .oven-photo:nth-child(3),
.experience-section .reveal.is-visible:nth-child(3),
.gallery-section .reveal.is-visible:nth-child(3) {
  animation-delay: 220ms;
}

@keyframes softLift {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mapPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.025);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    min-height: 92svh;
    padding-top: 152px;
    padding-bottom: 112px;
  }

  .hero h1 {
    white-space: normal;
  }

  .intro,
  .reservation-section,
  .visual-story,
  .oven-section,
  .chef-story,
  .intro-stack,
  .menu-grid,
  .experience-section,
  .gallery-section,
  .legal-grid,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .chef-story p {
    text-align: center;
  }

  .oven-collage {
    min-height: auto;
    max-width: 100%;
  }

  .oven-photo,
  .oven-photo.large {
    min-height: 0;
    transform: none;
  }

  .story-media,
  .story-media img,
  .story-media video {
    width: 100%;
    justify-self: center;
    min-height: clamp(240px, 56vw, 420px);
    max-height: 440px;
  }

  .gallery-item,
  .gallery-item.tall {
    min-height: clamp(260px, 66vw, 480px);
  }

  .cta-band {
    display: grid;
    justify-items: center;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(24, 25, 21, 0.9);
    border: 1px solid rgba(255, 253, 248, 0.32);
    border-radius: 999px;
    box-shadow: 0 20px 52px rgba(24, 25, 21, 0.3);
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 44px;
    color: var(--chalk);
    border-radius: 999px;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: var(--tomato);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 7px 14px;
  }

  .brand {
    width: clamp(208px, 58vw, 260px);
    height: 38px;
  }

  .footer-brand {
    width: 210px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.8rem);
  }

  .hero-content,
  .intro,
  .visual-story,
  .cta-band,
  .reservation-section,
  .menu-section,
  .gallery-section,
  .experience-section,
  .visit-section,
  .oven-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-content {
    padding-top: 138px;
    padding-bottom: 120px;
  }

  .hero-content > * {
    max-width: calc(100vw - 44px);
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .hero-copy {
    width: min(100%, 330px);
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-facts {
    width: min(100%, 340px);
    gap: 8px;
    margin-top: 34px;
  }

  .hero-facts span {
    padding: 8px 10px;
    font-size: 0.76rem;
  }

  .visit-copy h2 {
    font-size: clamp(1.52rem, 7vw, 2.05rem);
  }

  .visit-copy h2 small {
    font-size: 1rem;
  }

  .hero-scroll {
    display: none;
  }

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

  .hero-actions,
  .hero-actions .button {
    width: min(100%, 300px);
  }

  .oven-photo figcaption {
    display: none;
  }

  .menu-preview {
    padding: 24px 18px;
  }

  .weekly-menu-card .menu-link {
    width: auto;
    max-width: 280px;
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .weekly-pdf-preview {
    height: 360px;
  }

  .weekly-page {
    padding: 96px 16px 28px;
  }

  .weekly-page-head {
    display: grid;
    align-items: start;
  }

  .weekly-viewer {
    height: 72vh;
    min-height: 520px;
  }

  .interactive-menu .menu-list {
    grid-template-columns: 1fr;
  }

  .interactive-menu .menu-list li:nth-child(2) {
    border-top: 1px solid rgba(39, 51, 33, 0.12);
  }

  .menu-list li {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .menu-list b {
    justify-self: center;
  }

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