:root {
  --ink: #11100d;
  --ink-soft: #232018;
  --cream: #f5eadb;
  --cream-deep: #e7d4bd;
  --paper: #fff9ef;
  --tomato: #b4322c;
  --tomato-dark: #7f1f1c;
  --basil: #245f48;
  --basil-bright: #3f8a62;
  --gold: #d2a85b;
  --wine: #4a1317;
  --line: rgba(245, 234, 219, 0.18);
  --line-dark: rgba(17, 16, 13, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Italiana", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(17, 16, 13, 0.86), rgba(17, 16, 13, 0.92)),
    url("assets/images/pattern.png") center / 620px;
  opacity: 0.58;
}

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

a {
  color: inherit;
}

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

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 20;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--ink);
  background: var(--cream);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 clamp(1rem, 4vw, 3rem);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.7), rgba(9, 8, 7, 0));
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, 100%);
  min-height: 88px;
  margin: 0 auto;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(12, 11, 9, 0.92);
  border-color: rgba(245, 234, 219, 0.13);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(1.04);
}

.site-header.is-scrolled .header-inner,
.site-header.is-solid .header-inner {
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.brand span {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.9rem);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.4rem 0;
  text-decoration: none;
  color: rgba(245, 234, 219, 0.72);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--cream);
}

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

.site-nav .nav-reserve {
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(245, 234, 219, 0.36);
  color: var(--cream);
  background: rgba(180, 50, 44, 0.88);
}

.site-nav .nav-reserve::after {
  content: "↗";
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  transform: none;
  transition: transform 180ms ease;
}

.site-nav .nav-reserve:hover {
  color: var(--cream);
  border-color: var(--tomato);
  background: var(--tomato);
}

.site-nav .nav-reserve:hover::after {
  transform: translate(2px, -2px);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(245, 234, 219, 0.04);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--cream);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 8rem clamp(1rem, 4vw, 3rem) 6rem;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 42%, rgba(180, 50, 44, 0.12), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.24) 45%, rgba(0, 0, 0, 0.7)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(17, 16, 13, 0.28) 52%, var(--ink));
}

.hero-content {
  width: min(920px, 100%);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-logo {
  width: min(180px, 40vw);
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 16px 38px rgba(0, 0, 0, 0.54));
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(4.2rem, 12vw, 10rem);
}

.hero-copy {
  width: min(680px, 100%);
  margin: 0 auto 2rem;
  color: rgba(245, 234, 219, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.booking-inner,
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

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

.button-primary:hover {
  background: #c84535;
}

.button-ghost {
  color: var(--cream);
  border-color: rgba(245, 234, 219, 0.38);
  background: rgba(245, 234, 219, 0.06);
}

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

.button-light {
  color: var(--ink);
  background: var(--cream);
}

.hero-meta {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: min(760px, calc(100% - 2rem));
  transform: translateX(-50%);
  color: rgba(245, 234, 219, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-meta span {
  padding: 0.62rem 0.8rem;
  border: 1px solid var(--line);
  background: rgba(17, 16, 13, 0.38);
  backdrop-filter: blur(14px);
}

.band {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem);
}

.intro {
  background: var(--cream);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-kicker {
  width: min(1180px, 100%);
  margin-inline: auto;
  color: var(--tomato);
}

.intro h2,
.section-heading h2,
.story-copy h2,
.lunch-feature h2,
.aperitivo h2,
.contact h2,
.menu-hero h1,
.menu-section-heading h2 {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.intro-text {
  color: rgba(17, 16, 13, 0.74);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--tomato);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 54px;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

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

.story-media img,
.lunch-image img,
.aperitivo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-copy p:not(.eyebrow),
.aperitivo-copy p,
.contact-copy p {
  color: rgba(245, 234, 219, 0.76);
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
}

.story-stats span {
  min-height: 112px;
  padding: 1rem;
  background: var(--ink-soft);
  color: rgba(245, 234, 219, 0.72);
  font-size: 0.82rem;
}

.story-stats strong {
  display: block;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.signatures {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 2.2rem;
}

.section-heading .eyebrow {
  color: var(--tomato);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.dish {
  display: grid;
  grid-template-rows: 360px auto;
  min-height: 100%;
  background: #17130f;
  color: var(--cream);
}

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

.dish div {
  padding: 1.3rem;
}

.dish h3,
.hours h3,
.menu-item h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.05;
}

.dish p {
  margin-bottom: 0;
  color: rgba(245, 234, 219, 0.72);
}

.lunch-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  align-items: stretch;
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(4rem, 9vw, 8rem) auto;
  background: var(--wine);
  box-shadow: var(--shadow);
}

.lunch-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.lunch-panel p:not(.eyebrow) {
  color: rgba(245, 234, 219, 0.78);
}

.lunch-panel .button {
  align-self: flex-start;
}

.lunch-image {
  min-height: 520px;
}

.aperitivo {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-inline: 0;
}

.aperitivo-gallery {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  align-items: end;
}

.aperitivo-gallery img:first-child {
  aspect-ratio: 4 / 5;
}

.aperitivo-gallery img:last-child {
  aspect-ratio: 4 / 3;
  transform: translateY(3rem);
}

.booking-strip {
  padding: 3.4rem 1rem;
  background: var(--basil);
}

.booking-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  justify-content: space-between;
}

.booking-inner p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.contact > div {
  min-height: 420px;
  padding: clamp(2rem, 6vw, 5rem);
  background: var(--ink);
}

.contact a {
  color: var(--cream);
  text-decoration-color: rgba(245, 234, 219, 0.26);
}

.hours dl {
  display: grid;
  gap: 1rem;
  margin: 0 0 2rem;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  color: rgba(245, 234, 219, 0.66);
}

.hours dd {
  margin: 0;
  font-weight: 800;
}

.social-links {
  justify-content: flex-start;
}

.social-links a {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.restaurant-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) 1.4rem;
  color: var(--cream);
  background:
    radial-gradient(circle at 84% 8%, rgba(180, 50, 44, 0.11), transparent 28%),
    linear-gradient(180deg, #17130f 0%, #0b0a08 100%);
  border-top: 1px solid rgba(245, 234, 219, 0.1);
}

.restaurant-footer a {
  color: var(--cream);
  text-decoration-color: rgba(245, 234, 219, 0.25);
  text-underline-offset: 0.2em;
}

.restaurant-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--basil) 0 33.333%, var(--cream) 33.333% 66.666%, var(--tomato) 66.666%);
}

/* Open, editorial footer inspired by classic Italian hospitality sites. */

.footer-top,
.footer-main,
.footer-bottom {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: clamp(2.8rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(245, 234, 219, 0.2);
}

.footer-logo {
  display: block;
  width: clamp(96px, 10vw, 126px);
  text-decoration: none;
}

.footer-logo img {
  width: 100%;
  max-height: 196px;
  object-fit: contain;
  object-position: left bottom;
  filter: grayscale(1) brightness(1.35);
  opacity: 0.92;
  transition: filter 240ms ease, opacity 240ms ease;
}

.footer-logo:hover img {
  filter: none;
  opacity: 1;
}

.footer-top p {
  margin: 0;
  color: rgba(245, 234, 219, 0.8);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.25;
  text-align: right;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(220px, 1.35fr) 0.9fr;
  gap: clamp(1.8rem, 4vw, 4rem);
  margin-top: 0;
  padding: clamp(3rem, 5vw, 4.25rem) 0;
  border: 0;
  background: transparent;
}

.footer-main > div,
.footer-main > div:last-child {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-column span {
  display: block;
  margin-bottom: 1.15rem;
  color: rgba(210, 168, 91, 0.86);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-column p,
.footer-address {
  margin: 0;
  color: rgba(245, 234, 219, 0.68);
  font-size: 0.94rem;
  line-height: 1.75;
}

.footer-column p + p {
  margin-top: 0.7rem;
}

.footer-address {
  display: inline-block;
  text-decoration: none;
}

.footer-address b {
  color: var(--gold);
  font-weight: 400;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--cream);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.25rem;
}

.footer-social a {
  padding: 0;
  border: 0;
  color: rgba(245, 234, 219, 0.52);
  background: transparent;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-social a:hover {
  color: var(--cream);
  border-color: transparent;
  background: transparent;
}

.footer-booking {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-booking-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: clamp(132px, 11vw, 150px);
  height: clamp(132px, 11vw, 150px);
  padding: 1.25rem;
  border: 1px solid rgba(245, 234, 219, 0.62);
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.footer-booking-link strong {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 400;
}

.footer-booking-link:hover {
  color: var(--ink);
  border-color: var(--cream);
  background: var(--cream);
}

.footer-booking-link:hover strong {
  color: var(--tomato);
}

.footer-takeaway {
  color: rgba(245, 234, 219, 0.56) !important;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-takeaway:hover {
  color: var(--cream) !important;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 234, 219, 0.2);
  color: rgba(245, 234, 219, 0.52);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-bottom a {
  color: rgba(245, 234, 219, 0.58);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.menu-page {
  background: var(--cream);
  color: var(--ink);
}

.menu-page::before {
  opacity: 0.1;
}

.menu-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(620px, 84svh, 840px);
  width: 100%;
  margin: 0;
  padding: clamp(8rem, 12vw, 10rem) clamp(1rem, 4vw, 4rem) clamp(5.5rem, 9vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  background: var(--ink);
  text-align: center;
}

.menu-hero::before,
.menu-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.menu-hero::before {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 42%, rgba(180, 50, 44, 0.22), transparent 36%),
    linear-gradient(90deg, rgba(7, 6, 4, 0.82), rgba(7, 6, 4, 0.28) 48%, rgba(7, 6, 4, 0.78)),
    linear-gradient(180deg, rgba(7, 6, 4, 0.52), rgba(7, 6, 4, 0.12) 42%, rgba(17, 16, 13, 0.96));
}

.menu-hero::after {
  top: auto;
  z-index: -1;
  height: 30%;
  background: linear-gradient(180deg, transparent, var(--cream));
  opacity: 0.92;
}

.menu-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.menu-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.96) contrast(1.05);
  transform: scale(1.04);
  animation: menuHeroDrift 18s ease-in-out infinite alternate;
}

.menu-hero-copy {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  margin-inline: auto;
}

.menu-hero-copy h1 {
  margin-bottom: 1rem;
  color: var(--cream);
  font-size: clamp(5rem, 14vw, 12rem);
  text-shadow: 0 22px 58px rgba(0, 0, 0, 0.55);
}

.menu-hero-copy p:not(.eyebrow) {
  width: min(760px, 100%);
  margin-inline: auto;
  color: rgba(245, 234, 219, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
}

.menu-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.menu-hero-copy .eyebrow {
  color: var(--gold);
}

.menu-section-heading p {
  color: rgba(17, 16, 13, 0.72);
}

.menu-section-heading .eyebrow {
  color: var(--tomato);
}

.menu-shell {
  width: min(1240px, calc(100% - 2rem));
  margin: clamp(1.6rem, 4vw, 3.2rem) auto clamp(4rem, 8vw, 7rem);
}

.menu-tabs {
  position: sticky;
  top: 78px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.85rem;
  border: 1px solid var(--line-dark);
  background: rgba(245, 234, 219, 0.92);
  backdrop-filter: blur(14px);
}

.menu-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 0.9rem;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  background: transparent;
  font: 800 0.74rem var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-tabs button.is-active {
  color: var(--cream);
  background: var(--tomato);
  border-color: var(--tomato);
}

.menu-tabs button:focus-visible {
  outline: 2px solid var(--tomato);
  outline-offset: 3px;
}

.menu-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  margin-top: 2rem;
  align-items: start;
}

.menu-note {
  position: sticky;
  top: 158px;
  padding: 1.5rem;
  border: 1px solid var(--line-dark);
  background: var(--paper);
}

.menu-note img {
  width: 86px;
  margin-bottom: 1.2rem;
}

.menu-note p {
  color: rgba(17, 16, 13, 0.72);
}

.menu-note .button {
  width: 100%;
  margin-top: 0.7rem;
}

.menu-sections {
  display: block;
}

.menu-section {
  min-height: 620px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--line-dark);
  background: rgba(255, 249, 239, 0.88);
}

.menu-section.is-hidden {
  display: none;
}

.menu-section.is-active {
  animation: menuSectionIn 320ms ease both;
}

@keyframes menuSectionIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes menuHeroDrift {
  from {
    transform: scale(1.04) translate3d(-0.5%, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(0.6%, -0.6%, 0);
  }
}

.menu-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.44fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-dark);
}

.menu-section-heading h2 {
  margin-bottom: 0;
  color: var(--ink);
}

.menu-section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.7rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: transparent;
}

.menu-item {
  min-height: 158px;
  padding: 1.15rem;
  border: 1px solid var(--line-dark);
  border-width: 0 1px 1px 0;
  background: var(--paper);
}

.menu-item h3 {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  color: var(--wine);
}

.menu-item h3 span {
  flex: 0 0 auto;
  color: var(--tomato);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 900;
}

.menu-item p {
  margin-bottom: 0;
  color: rgba(17, 16, 13, 0.68);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

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

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

  .hero-video {
    display: none;
  }

  .hero {
    background: url("assets/video/il-forno-hero-poster.jpg") center / cover;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 1rem;
    background: rgba(12, 11, 9, 0.82);
    backdrop-filter: blur(16px);
  }

  .header-inner,
  .site-header.is-scrolled .header-inner,
  .site-header.is-solid .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.65rem 1rem 1rem;
    background: rgba(12, 11, 9, 0.98);
    border: 1px solid rgba(245, 234, 219, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 50px;
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid rgba(245, 234, 219, 0.1);
  }

  .site-nav a:not(.nav-reserve)::after {
    display: none;
  }

  .site-nav .nav-reserve {
    margin-top: 0.7rem;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(245, 234, 219, 0.32);
  }

  .intro-grid,
  .story,
  .lunch-feature,
  .aperitivo,
  .contact,
  .menu-layout,
  .menu-section-heading {
    grid-template-columns: 1fr;
  }

  .story-media,
  .lunch-image {
    min-height: 420px;
  }

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

  .dish {
    grid-template-rows: 300px auto;
  }

  .aperitivo-gallery img:last-child {
    transform: none;
  }

  .booking-inner {
    justify-content: center;
    text-align: center;
  }

  .menu-note,
  .menu-tabs {
    position: static;
  }

  .menu-hero {
    min-height: 720px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem clamp(2rem, 6vw, 4rem);
  }

  .footer-main > div,
  .footer-main > div:nth-child(odd),
  .footer-main > div:nth-last-child(-n + 2) {
    padding: 0;
    border: 0;
  }

  .footer-booking {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 0.8rem;
  }

  .header-inner,
  .site-header.is-scrolled .header-inner,
  .site-header.is-solid .header-inner {
    min-height: 68px;
  }

  .brand span {
    font-size: 0.88rem;
    letter-spacing: 0.055em;
  }

  .brand img {
    width: 31px;
    height: 48px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero-meta {
    position: static;
    width: 100%;
    margin-top: 2rem;
    transform: none;
  }

  .intro h2,
  .section-heading h2,
  .story-copy h2,
  .lunch-feature h2,
  .aperitivo h2,
  .contact h2,
  .menu-section-heading h2 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .menu-hero {
    min-height: 680px;
    padding: 7rem 1rem 5.5rem;
  }

  .menu-hero h1 {
    font-size: clamp(4rem, 22vw, 6.2rem);
  }

  .menu-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .menu-hero-actions {
    display: grid;
    width: min(320px, 100%);
    margin-inline: auto;
  }

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

  .story-stats,
  .menu-items,
  .aperitivo-gallery {
    grid-template-columns: 1fr;
  }

  .contact > div {
    min-height: auto;
  }

  .hours dl div {
    display: grid;
  }

  .menu-section {
    min-height: auto;
    padding: 1rem;
  }

  .menu-item {
    min-height: auto;
    border-width: 0 0 1px;
  }

  .menu-tabs {
    justify-content: flex-start;
  }

  .restaurant-footer {
    padding-inline: 1rem;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.8rem;
    padding-bottom: 2.6rem;
  }

  .footer-logo {
    width: 94px;
  }

  .footer-top p {
    font-size: 1.3rem;
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.8rem 0;
  }

  .footer-main > div,
  .footer-main > div:nth-child(odd),
  .footer-main > div:nth-last-child(-n + 2),
  .footer-main > div:last-child {
    min-height: auto;
    padding: 0;
    border: 0;
  }

  .footer-booking {
    margin-top: 0.25rem;
  }

  .footer-booking-link {
    width: 136px;
    height: 136px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .footer-bottom nav {
    gap: 1rem;
  }
}
