:root {
  --cream: #fbf6ef;
  --paper: #fffaf4;
  --ink: #201714;
  --muted: #705f55;
  --brand-red: #812437;
  --brand-red-dark: #541522;
  --olive: #5f6b3d;
  --gold: #c79a4b;
  --line: rgba(84, 21, 34, 0.16);
  --line-strong: rgba(84, 21, 34, 0.3);
  --shadow: 0 22px 50px rgba(27, 16, 11, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
}

body::selection {
  background: rgba(199, 154, 75, 0.32);
}

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

button {
  font: inherit;
}

section {
  scroll-margin-top: 116px;
}

main {
  display: flex;
  flex-direction: column;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 244, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo {
  display: block;
  width: clamp(176px, 22vw, 250px);
  height: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--brand-red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a,
.nav-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 8px 0;
  white-space: nowrap;
}

.main-nav a:hover,
.nav-button:hover {
  color: var(--brand-red);
}

.nav-button-primary {
  min-height: 38px;
  border: 1px solid var(--brand-red-dark);
  border-radius: 4px;
  padding: 8px 14px;
  background: var(--brand-red-dark);
  color: #fffaf4;
}

.nav-button-primary:hover {
  background: var(--brand-red);
  color: #fffaf4;
}

.nav-button-order {
  min-height: 38px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 8px 14px;
  background: var(--gold);
  color: #1b100b;
}

.nav-button-order:hover {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #fffaf4;
}

.main-nav a:focus-visible,
.nav-button:focus-visible,
.ordering-modal-close:focus-visible,
.ordering-location-button:focus-visible {
  outline: 3px solid rgba(199, 154, 75, 0.55);
  outline-offset: 3px;
}

.ordering-modal[hidden] {
  display: none;
}

.ordering-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
}

.ordering-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 9, 6, 0.72);
  backdrop-filter: blur(5px);
}

.ordering-modal-panel {
  position: relative;
  width: min(820px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  overflow: auto;
  border: 1px solid rgba(199, 154, 75, 0.42);
  border-radius: 6px;
  padding: clamp(28px, 5vw, 44px);
  background:
    linear-gradient(rgba(255, 250, 244, 0.97), rgba(255, 250, 244, 0.97)),
    url("assets/restaurant/vercel-gallery/spaghetti-vongole-close.jpeg") center / 360px;
  box-shadow: 0 30px 80px rgba(20, 9, 6, 0.36);
}

.ordering-modal-panel .eyebrow {
  padding-right: 92px;
}

.ordering-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 8px 12px;
  background: var(--paper);
  color: var(--brand-red-dark);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ordering-modal-close:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

.ordering-modal-panel h2 {
  margin: 0;
  color: var(--brand-red-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.ordering-modal-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.ordering-location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.ordering-location {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 14px 34px rgba(27, 16, 11, 0.09);
}

.ordering-location h3 {
  margin: 0;
  color: var(--brand-red-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1;
}

.ordering-location address {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.5;
}

.ordering-location-button {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-red-dark);
  border-radius: 4px;
  padding: 14px 22px;
  background: var(--brand-red-dark);
  color: #fffaf4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.ordering-location-button:hover {
  border-color: var(--brand-red);
  background: var(--brand-red);
  transform: translateY(-2px);
}

.ordering-empty {
  margin: 0;
  color: var(--muted);
}

body.ordering-modal-open {
  overflow: hidden;
}

.hero {
  position: relative;
  order: 0;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 168px clamp(20px, 5vw, 72px) 92px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 9, 6, 0.95), rgba(20, 9, 6, 0.78), rgba(20, 9, 6, 0.48)),
    url("assets/restaurant/vercel-gallery/lamb-chop-wine-wall.jpeg") center 58% / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(32, 23, 20, 0.32), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  color: #fffaf4;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.menu-showcase h2,
.story h2,
.experience h2,
.recognition h2,
.delivery h2,
.events-teaser h2,
.page-hero h1,
.contact-section h2,
.event-section h2,
.menu-gallery-section h2,
.menu-page-section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(58px, 8.7vw, 126px);
  line-height: 0.9;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
  gap: 14px;
}

.primary-button,
.secondary-button,
.ghost-button,
.section-button,
.platform-button,
.reserve-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.primary-button,
.secondary-button,
.ghost-button,
.platform-button,
.reserve-button {
  padding: 14px 24px;
}

.primary-button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #1b100b;
  cursor: pointer;
}

.ghost-button {
  border: 1px solid rgba(255, 250, 244, 0.7);
  color: #fffaf4;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.section-button:hover,
.platform-button:hover,
.location-button:hover,
.reserve-button:hover {
  transform: translateY(-2px);
}

.intro {
  order: 1;
  background: var(--paper);
  padding: 88px clamp(20px, 5vw, 72px);
}

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro h2,
.section-heading h2,
.menu-showcase h2,
.story h2,
.experience h2,
.recognition h2,
.delivery h2,
.events-teaser h2,
.contact-section h2,
.social-section h2,
.event-section h2 {
  color: var(--brand-red-dark);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.intro p:not(.eyebrow),
.section-heading p,
.menu-showcase p,
.story p,
.experience p,
.recognition p,
.delivery p,
.events-teaser p,
.contact-section p,
.social-section p,
.event-section p,
.menu-gallery-section p,
.menu-page-section p {
  color: var(--muted);
  font-size: 18px;
}

.intro p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px auto 0;
}

.photo-duo {
  order: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: clamp(14px, 2.2vw, 26px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 58px) 0;
  background: transparent;
}

.photo-duo figure {
  position: relative;
  height: clamp(320px, 42vw, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #201714;
  box-shadow: var(--shadow);
}

.home-plate-side {
  align-self: center;
  height: clamp(280px, 34vw, 470px);
}

.photo-duo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.03);
}

.home-plate-hero img {
  object-position: center 52%;
  transform: scale(1.04);
}

.home-plate-side img {
  object-position: center 50%;
  transform: scale(1.04);
}

.plate-split-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 6px;
  background: #201714;
  box-shadow: var(--shadow);
}

.plate-split-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.plate-split-photo .plate-split-left {
  object-position: center 50%;
  transform: scale(1.08);
}

.plate-split-photo .plate-split-right {
  object-position: center 54%;
  transform: scale(1.16);
}

.locations {
  order: 3;
  padding: 92px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(rgba(251, 246, 239, 0.94), rgba(251, 246, 239, 0.94)),
    url("assets/restaurant/vercel-gallery/spaghetti-vongole-close.jpeg") center / 420px;
}

.section-heading {
  max-width: 1080px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 740px;
  margin: 16px auto 0;
}

.section-button {
  min-height: 50px;
  min-width: 150px;
  border: 1px solid var(--brand-red-dark);
  padding: 13px 20px;
  background: var(--brand-red-dark);
  color: #fffaf4;
}

.section-button:hover {
  background: var(--brand-red);
}

.location-panel {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.location-item {
  display: flex;
  flex-direction: column;
}

.location-button {
  min-height: 72px;
  width: 100%;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--brand-red-dark);
  box-shadow: 0 14px 34px rgba(27, 16, 11, 0.12);
  color: #fffaf4;
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.location-button:hover,
.location-button[aria-expanded="true"] {
  border-color: var(--gold);
  background: var(--brand-red);
}

.location-button::after {
  content: "Info";
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-button[aria-expanded="true"]::after {
  content: "Close";
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 244, 0.98);
  box-shadow: 0 14px 32px rgba(27, 16, 11, 0.09);
}

.location-details[hidden] {
  display: none;
}

.location-details p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.phone-link {
  margin-top: auto;
  color: var(--brand-red);
  font-size: 18px;
  font-weight: 800;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reserve-button {
  border: 1px solid var(--brand-red-dark);
  background: var(--brand-red-dark);
  color: #fffaf4;
  font-size: 12px;
}

.reserve-button:hover {
  background: var(--brand-red);
}

.text-link {
  color: var(--brand-red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.location-note {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.locations.is-open .location-note {
  display: none;
}

.menu-showcase {
  order: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding: 82px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(84, 21, 34, 0.96), rgba(84, 21, 34, 0.84)),
    url("assets/restaurant/vercel-gallery/filetto-red-wine.jpeg") center 62% / cover;
  color: #fffaf4;
}

.menu-copy {
  max-width: 620px;
}

.menu-showcase h2,
.menu-showcase .eyebrow {
  color: #fffaf4;
}

.menu-showcase p {
  margin: 18px 0 28px;
  color: rgba(255, 250, 244, 0.82);
}

.menu-board {
  border-top: 1px solid rgba(255, 250, 244, 0.34);
  border-bottom: 1px solid rgba(255, 250, 244, 0.34);
}

.menu-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 250, 244, 0.18);
}

.menu-row:last-child {
  border-bottom: 0;
}

.menu-row span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.menu-row p {
  margin: 0;
  color: rgba(255, 250, 244, 0.86);
  font-size: 16px;
}

.home-dish-gallery {
  order: 5;
  padding: 82px clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.home-dish-grid {
  max-width: 1180px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.home-dish-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #201714;
  box-shadow: var(--shadow);
}

.home-dish-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.home-dish-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
  transition: transform 240ms ease;
}

.home-dish-card-large img {
  min-height: clamp(470px, 52vw, 660px);
}

.home-dish-card:hover img {
  transform: scale(1.025);
}

.home-dish-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(20, 9, 6, 0.78), transparent);
  pointer-events: none;
}

.home-dish-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fffaf4;
}

.home-dish-card span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-dish-card strong {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 0.95;
}

.secondary-button {
  width: max-content;
  border: 1px solid #fffaf4;
  color: #fffaf4;
}

.secondary-button:hover {
  background: #fffaf4;
  color: var(--brand-red-dark);
}

.secondary-button-dark {
  border-color: var(--brand-red-dark);
  color: var(--brand-red-dark);
}

.secondary-button-dark:hover {
  background: var(--brand-red-dark);
  color: #fffaf4;
}

.story-photo-prelude {
  order: 6;
  padding: clamp(26px, 4vw, 58px) clamp(20px, 5vw, 72px);
  background: var(--cream);
}

.story-split-photo {
  width: min(1040px, 100%);
  height: clamp(300px, 42vw, 520px);
  margin: 0 auto;
}

.story-wide-photo {
  width: min(1040px, 100%);
  height: clamp(300px, 42vw, 520px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  background: #201714;
  box-shadow: var(--shadow);
}

.story-wide-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.02) contrast(1.04);
}

.story-split-photo .plate-split-left {
  object-position: center 58%;
  transform: scale(1.18);
}

.story-split-photo .plate-split-right {
  object-position: center 64%;
  transform: scale(1.18);
}

.story {
  order: 7;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  min-height: 560px;
  background: var(--paper);
}

.story-image {
  background:
    linear-gradient(rgba(32, 23, 20, 0.08), rgba(32, 23, 20, 0.08)),
    url("assets/restaurant/hero-atmosphere.webp") center 54% / cover;
}

.story-content {
  align-self: center;
  max-width: 760px;
  padding: 74px clamp(20px, 5vw, 72px);
}

.story-content p:not(.eyebrow) {
  margin: 18px 0 0;
}

.experience {
  order: 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.84fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: 76px clamp(20px, 5vw, 72px);
  background: #efe8dc;
}

.experience-content {
  max-width: 720px;
}

.experience p:not(.eyebrow) {
  margin: 18px 0 0;
}

.experience img {
  display: block;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.delivery,
.recognition,
.events-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 72px clamp(20px, 5vw, 72px);
}

.delivery {
  order: 9;
  padding-top: 46px;
  padding-bottom: 46px;
  background: #efe8dc;
}

.recognition {
  order: 8;
  background: var(--paper);
}

.delivery > div:first-child,
.recognition > div:first-child,
.events-teaser > div:first-child {
  max-width: 780px;
}

.delivery p,
.recognition p,
.events-teaser p {
  margin: 16px 0 0;
}

.delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.platform-button {
  border: 1px solid var(--brand-red-dark);
  background: var(--brand-red-dark);
  color: #fffaf4;
}

.platform-button:hover {
  background: var(--brand-red);
}

.events-teaser {
  order: 10;
  background: var(--paper);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--brand-red-dark);
  color: rgba(255, 250, 244, 0.74);
  border-top: 1px solid rgba(255, 250, 244, 0.12);
}

.footer-logo {
  width: min(230px, 58vw);
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  color: #fffaf4;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
}

.home-shortcut {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 30;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 244, 0.68);
  border-radius: 4px;
  padding: 10px 15px;
  background: var(--brand-red-dark);
  box-shadow: 0 14px 34px rgba(27, 16, 11, 0.24);
  color: #fffaf4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-shortcut:hover {
  background: var(--brand-red);
}

.page-hero {
  min-height: 56vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 64px;
  color: #fffaf4;
  background:
    linear-gradient(90deg, rgba(20, 9, 6, 0.86), rgba(20, 9, 6, 0.42)),
    url("assets/restaurant/hero-atmosphere.webp") center / cover;
}

.menu-hero {
  background:
    linear-gradient(90deg, rgba(20, 9, 6, 0.88), rgba(20, 9, 6, 0.48)),
    url("assets/restaurant/pasta-allo-scoglio-close.jpeg") center 50% / cover;
}

.events-hero {
  background:
    linear-gradient(135deg, rgba(20, 9, 6, 0.96), rgba(84, 21, 34, 0.88));
}

.contact-hero {
  background:
    linear-gradient(135deg, rgba(20, 9, 6, 0.96), rgba(84, 21, 34, 0.92));
}

.page-hero h1 {
  max-width: 820px;
  color: #fffaf4;
  font-size: clamp(54px, 8vw, 100px);
  line-height: 0.9;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 250, 244, 0.86);
  font-size: 20px;
}

.contact-section,
.social-section,
.event-section,
.menu-gallery-section,
.menu-page-section {
  padding: 76px clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.contact-intro,
.event-intro,
.menu-page-intro {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.contact-intro p,
.event-intro p,
.menu-page-intro p {
  margin: 16px auto 0;
}

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

.social-section {
  background: var(--cream);
}

.featured-dish-layout {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 32px);
  align-items: stretch;
}

.menu-signature-photo {
  min-height: clamp(360px, 44vw, 560px);
}

.menu-wide-photo {
  position: relative;
  min-height: clamp(360px, 44vw, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #201714;
  box-shadow: var(--shadow);
}

.menu-wide-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 44vw, 560px);
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(1.02) contrast(1.04);
}

.menu-wide-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(20, 9, 6, 0.78), transparent);
  pointer-events: none;
}

.menu-wide-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: #fffaf4;
}

.menu-wide-photo figcaption span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-wide-photo figcaption strong {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
}

.menu-wide-photo figcaption p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 250, 244, 0.84);
  font-size: 14px;
}

.menu-signature-photo .plate-split-left {
  object-position: center 45%;
  transform: scale(1.12);
}

.menu-signature-photo .plate-split-right {
  object-position: center 52%;
  transform: scale(1.08);
}

.featured-dish-panel {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.featured-dish-panel > div {
  padding: clamp(20px, 2.4vw, 30px);
}

.featured-dish-panel span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-dish-panel h3 {
  margin: 8px 0 0;
  color: var(--brand-red-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 0.96;
}

.featured-dish-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.featured-dish-panel img {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 240px;
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.16);
}

.featured-dish-grid {
  max-width: 1180px;
  margin: clamp(22px, 3vw, 34px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.featured-dish-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.featured-dish-card img {
  display: block;
  width: 100%;
  height: clamp(205px, 20vw, 280px);
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
  transition: transform 240ms ease;
}

.featured-dish-large {
  grid-column: span 2;
}

.featured-dish-large img {
  height: clamp(280px, 34vw, 420px);
}

.featured-dish-card:hover img {
  transform: scale(1.025);
}

.featured-dish-card div {
  flex: 1;
  padding: 12px;
}

.menu-featured-main img {
  height: clamp(360px, 44vw, 560px);
}

.menu-featured-main div {
  padding: clamp(14px, 2vw, 20px);
}

.featured-dish-card span,
.menu-category-heading span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-dish-card h3,
.menu-category h3 {
  margin: 6px 0 0;
  color: var(--brand-red-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.featured-dish-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

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

.menu-category-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-category {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 244, 0.97);
  box-shadow: 0 16px 42px rgba(27, 16, 11, 0.09);
}

.menu-category-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.menu-category h3 {
  margin: 0;
  font-size: 40px;
}

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

.menu-list-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.menu-list li {
  display: grid;
  gap: 4px;
}

.menu-list strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: var(--brand-red-dark);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-list span {
  color: var(--muted);
  font-size: 15px;
}

.menu-list .menu-price {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.menu-category-wide {
  grid-column: span 2;
}

.contact-grid,
.social-grid,
.event-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card,
.social-card,
.event-card {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.contact-card h3,
.social-card h3,
.event-card h3 {
  margin: 0;
  color: var(--brand-red-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.contact-card p,
.social-card p,
.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.event-card time,
.event-card .event-status {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card-featured {
  grid-column: 1 / -1;
  min-height: 260px;
  background: var(--brand-red-dark);
}

.event-card-featured h3,
.event-card-featured p {
  color: #fffaf4;
}

.event-card-featured p {
  max-width: 680px;
}

.events-feature-photo {
  max-width: 760px;
  margin: 0 auto 28px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.events-feature-photo img {
  display: block;
  width: 100%;
  height: clamp(190px, 26vw, 320px);
  object-fit: cover;
  object-position: center 46%;
}

.event-wine-gallery {
  max-width: 1120px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.event-wine-gallery figure {
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #201714;
  box-shadow: var(--shadow);
}

.event-wine-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(1.02) contrast(1.04);
  transition: transform 240ms ease;
}

.event-wine-gallery figure:nth-child(2) img {
  object-position: center 50%;
}

.event-wine-gallery figure:nth-child(3) img {
  object-position: center 46%;
}

.event-wine-gallery figure:hover img {
  transform: scale(1.025);
}

.event-card-featured .event-status {
  color: #f0c979;
}

.event-card-with-poster {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.event-card-with-poster .reserve-button {
  width: max-content;
  margin-top: 6px;
  border-color: #fffaf4;
  background: #fffaf4;
  color: var(--brand-red-dark);
}

.event-poster {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 52%;
  border-radius: 6px;
  box-shadow: 0 22px 50px rgba(12, 6, 4, 0.3);
}

.contact-photo-strip {
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 48px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.contact-photo-strip img {
  display: block;
  width: 100%;
  max-width: 960px;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
  object-position: center 52%;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.cta-band {
  padding: 66px clamp(20px, 5vw, 72px);
  background: #efe8dc;
  text-align: center;
}

.cta-band h2 {
  margin: 0;
  color: var(--brand-red-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.cta-band p {
  max-width: 720px;
  margin: 16px auto 24px;
  color: var(--muted);
  font-size: 18px;
}

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

@media (max-width: 1020px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    flex: 1 1 100%;
    justify-content: center;
  }

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

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

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

  .home-dish-card-large {
    grid-column: span 2;
  }

  .featured-dish-layout {
    grid-template-columns: 1fr;
  }

  .featured-dish-panel {
    display: flex;
  }

  .featured-dish-panel img {
    min-height: 320px;
  }

  .featured-dish-large {
    grid-column: span 2;
  }

  .menu-showcase,
  .story,
  .experience {
    grid-template-columns: 1fr;
  }

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

  .photo-duo {
    grid-template-columns: 1fr;
    width: min(820px, calc(100% - 40px));
  }

  .contact-photo-strip {
    grid-template-columns: 1fr;
  }

  .contact-photo-strip img:first-child {
    grid-column: 1 / -1;
  }

  .home-plate-side {
    height: 360px;
  }

  .story-image {
    min-height: 330px;
  }

  .event-card-with-poster {
    grid-template-columns: 1fr;
  }

  .event-poster {
    max-height: 620px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    padding: 16px 18px;
  }

  .logo-link {
    margin: 0 auto;
  }

  .main-nav {
    gap: 8px 14px;
    font-size: 11px;
  }

  .ordering-modal {
    padding: 14px;
  }

  .ordering-modal-panel {
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px);
    padding: 26px 18px 18px;
  }

  .ordering-location-list {
    grid-template-columns: 1fr;
  }

  .ordering-location {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ordering-location-button {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 228px;
    padding-bottom: 70px;
    background-position: 58% 60%;
  }

  .page-hero {
    padding-top: 216px;
  }

  .locations {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 15px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 54px;
  }

  .contact-grid,
  .social-grid,
  .event-grid,
  .menu-category-grid {
    grid-template-columns: 1fr;
  }

  .menu-category-wide {
    grid-column: auto;
  }

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

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

  .event-wine-gallery figure,
  .event-wine-gallery img {
    min-height: 220px;
  }

  .home-dish-gallery {
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .home-dish-card {
    min-height: 260px;
  }

  .home-dish-card img {
    min-height: 260px;
  }

  .home-dish-card-large {
    grid-column: 1 / -1;
  }

  .home-dish-card-large img {
    min-height: 410px;
  }

  .photo-duo,
  .featured-dish-layout {
    grid-template-columns: 1fr;
  }

  .featured-dish-panel {
    display: flex;
  }

  .contact-photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-duo {
    width: min(620px, calc(100% - 32px));
    padding: 26px 0;
  }

  .plate-split-photo {
    grid-template-columns: 1fr 1fr;
  }

  .photo-duo figure,
  .contact-photo-strip img {
    height: 315px;
    min-height: 315px;
  }

  .home-plate-side {
    height: 270px;
  }

  .menu-signature-photo,
  .menu-wide-photo,
  .story-split-photo,
  .story-wide-photo {
    min-height: 0;
    height: 340px;
  }

  .menu-wide-photo img {
    min-height: 340px;
  }

  .featured-dish-large {
    grid-column: 1 / -1;
  }

  .featured-dish-large img,
  .featured-dish-card img {
    height: clamp(190px, 34vw, 260px);
  }

  .menu-featured-main img {
    height: 340px;
  }

  .delivery,
  .recognition,
  .events-teaser,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .delivery-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .logo {
    width: min(76vw, 250px);
  }

  .hero-actions,
  .card-actions,
  .contact-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions,
  .card-actions,
  .contact-actions,
  .cta-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .ghost-button,
  .section-button,
  .platform-button,
  .reserve-button,
  .text-link {
    width: 100%;
  }

  .text-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
  }

  .location-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .location-button {
    min-height: 62px;
    padding: 10px 8px;
    font-size: clamp(21px, 7vw, 28px);
  }

  .location-button::after {
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .location-details {
    padding: 13px;
  }

  .contact-photo-strip {
    padding: 12px;
    gap: 12px;
  }

  .photo-duo figure,
  .contact-photo-strip img {
    height: 255px;
    min-height: 255px;
  }

  .menu-signature-photo,
  .menu-wide-photo,
  .story-split-photo,
  .story-wide-photo {
    height: 290px;
  }

  .menu-wide-photo img {
    min-height: 290px;
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .featured-dish-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .event-wine-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .event-wine-gallery figure,
  .event-wine-gallery img {
    min-height: 260px;
  }

  .home-dish-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-dish-card,
  .home-dish-card img,
  .home-dish-card-large img {
    min-height: 315px;
  }

  .featured-dish-card div {
    padding: 14px;
  }

  .featured-dish-card h3 {
    font-size: 24px;
  }

  .featured-dish-large img,
  .featured-dish-card img {
    height: 255px;
  }

  .menu-featured-main img {
    height: 290px;
  }

  .featured-dish-card p {
    display: block;
  }

  .menu-category-heading {
    display: grid;
    gap: 6px;
  }
}
