:root {
  --ink: #14100f;
  --paper: #0f0c0b;
  --paper-soft: #17120f;
  --muted: #c7b69e;
  --red: #a61d24;
  --red-dark: #6e1218;
  --gold: #d8ad63;
  --line: rgba(216, 173, 99, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 173, 99, 0.12), transparent 28%),
    linear-gradient(180deg, #130f0d 0%, #080605 100%);
  color: #fff4e6;
}

body.no-scroll {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 720ms ease,
    filter 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(var(--reveal-final-y, 0px)) scale(1);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(20, 16, 15, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.site-header.is-scrolled {
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(216, 173, 99, 0.75);
  border-radius: 999px;
  background: var(--red);
  color: #fff7e8;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding-block: 8px;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 84px) 80px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 16, 15, 0.96), rgba(20, 16, 15, 0.7) 43%, rgba(20, 16, 15, 0.34)),
    url("./photo/38.jpg") center 46%/cover;
  transform: scale(1.02);
}

.hero-media::after {
  background: linear-gradient(180deg, rgba(20, 16, 15, 0.2), rgba(20, 16, 15, 0.85));
  content: "";
}

.hero-content {
  max-width: 760px;
}

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

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: clamp(62px, 11vw, 150px);
  line-height: 0.98;
}

h2 {
  max-width: 760px;
  font-size: clamp(36px, 6vw, 76px);
}

.hero-copy,
.section p,
.split-copy p,
.contact-copy dd {
  line-height: 1.7;
}

.hours {
  display: grid;
  gap: 8px;
  max-width: 380px;
}

.hours span {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(216, 173, 99, 0.22);
}

.hours strong {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}




.hero-copy {
  max-width: 630px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

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

.button-primary {
  background: var(--red);
  color: #fff;
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.contact .button-secondary,
.section .button-secondary {
  border-color: rgba(216, 173, 99, 0.38);
  color: #fff4e6;
  background: rgba(216, 173, 99, 0.08);
}

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

.hero-panel {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: 34px;
  display: grid;
  gap: 6px;
  max-width: 360px;
  border-left: 3px solid var(--gold);
  padding: 14px 0 14px 20px;
  color: rgba(255, 255, 255, 0.74);
}

.hero-panel strong {
  color: #fff;
  font-size: 18px;
}

.section,
.section-band {
  padding: clamp(70px, 9vw, 128px) 0;
}

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

.intro {
  padding: clamp(80px, 9vw, 120px) 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0.96), rgba(18, 13, 10, 0.96)),
    var(--ink);
  color: #fff;
}


.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: end;
}

.intro h2 {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
}

.intro p:last-child {
  max-width: 560px;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.75;
}


.intro p:last-child,
.events p,
.split-copy p,
.section-heading + p {
  color: rgba(255, 244, 230, 0.72);
}

.intro p:last-child,
.events p {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.menu-pdf-button {
  flex: 0 0 auto;
}

.menu-heading {
  align-items: center;
  margin-bottom: 30px;
}

.menu-heading h2 {
  max-width: 620px;
  color: #fff4e6;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.04;
}

.menu-heading p:last-child {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(255, 244, 230, 0.68);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.section-heading.compact {
  display: block;
}

.gallery-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.gallery-section {
  background:
    radial-gradient(circle at 15% 12%, rgba(216, 173, 99, 0.12), transparent 34%),
    linear-gradient(180deg, #17120f 0%, #0f0c0b 100%);
  color: #fff;
}

.gallery-heading h2 {
  max-width: 720px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
}

.gallery-heading p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}


.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.price-card {
  --reveal-final-y: 0px;
  display: flex;
  min-height: 270px;
  height: 100%;
  flex-direction: column;
  border: 1px solid rgba(216, 173, 99, 0.24);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 244, 230, 0.06), rgba(216, 173, 99, 0.04)),
    rgba(20, 16, 15, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.price-card.featured {
  --reveal-final-y: 0px;
  background:
    linear-gradient(145deg, rgba(216, 173, 99, 0.18), transparent 44%),
    #100c0b;
  color: #fff;
  box-shadow: var(--shadow);
  transform: none;
}

.price-card:hover {
  border-color: rgba(216, 173, 99, 0.44);
  box-shadow: 0 24px 70px rgba(20, 16, 15, 0.14);
}

.price-label {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(216, 173, 99, 0.14);
  padding: 8px 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured .price-label {
  background: rgba(216, 173, 99, 0.16);
  color: var(--gold);
}

.price {
  display: block;
  margin-top: 34px;
  color: #f2d193;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.featured .price {
  color: #fff4e6;
}

.price-card p {
  margin: 14px 0 6px;
  color: inherit;
}

.coperto {
  display: block;
  margin-bottom: 0;
  color: rgba(255, 244, 230, 0.72);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.featured .coperto {
  color: rgba(255, 255, 255, 0.78);
}

.price-card small {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  color: rgba(255, 244, 230, 0.62);
  line-height: 1.45;
}

.featured small {
  color: rgba(255, 255, 255, 0.72);
}

.promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 18px;
}

.promo-card {
  --reveal-final-y: 0px;
  min-height: 180px;
  border: 1px solid rgba(216, 173, 99, 0.32);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(20, 16, 15, 0.96), rgba(20, 16, 15, 0.86)),
    var(--ink);
  color: #fff;
  box-shadow: 0 18px 50px rgba(20, 16, 15, 0.12);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.promo-card:hover {
  border-color: rgba(216, 173, 99, 0.54);
  box-shadow: 0 28px 80px rgba(20, 16, 15, 0.22);
}

.promo-kicker {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card > strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.95;
}

.promo-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.takeaway-discounts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.takeaway-discounts span {
  display: grid;
  gap: 8px;
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.takeaway-discounts strong {
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  padding-right: max(20px, calc((100vw - 1160px) / 2));
}

.split-copy h2,
.events h2,
.contact-copy h2 {
  line-height: 1.08;
}

.split-image {
  min-height: 660px;
  background: center/cover;
}

.about-image {
  background-image:
    linear-gradient(180deg, rgba(20, 16, 15, 0.04), rgba(20, 16, 15, 0.42)),
    url("./photo/28.jpg");
  background-position: center 58%;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border-bottom: 1px solid rgba(216, 173, 99, 0.2);
  padding: 12px 0;
  color: #fff4e6;
  font-weight: 800;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-item {
  --reveal-final-y: 0px;
  position: relative;
  border: 1px solid rgba(216, 173, 99, 0.22);
  border-radius: var(--radius);
  padding: 0;
  background: #050403;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(216, 173, 99, 0.28), transparent 38%),
    linear-gradient(180deg, rgba(255, 249, 241, 0.08), transparent 58%);
  content: "";
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  pointer-events: none;
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 56px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
  font-weight: 800;
  content: attr(data-caption);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.is-visible::before {
  opacity: 0;
  transform: translateY(-12px);
}

.gallery-item.reveal:not(.is-visible)::before {
  opacity: 0.8;
}

.gallery-item img {
  object-fit: contain;
  padding: 16px;
  transition: transform 260ms ease, opacity 260ms ease;
}

.gallery-item.portrait-focus img {
  object-fit: cover;
  object-position: center 56%;
  padding: 0;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.events {
  position: relative;
  padding-block: clamp(76px, 9vw, 118px);
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.96), rgba(20, 16, 15, 0.72) 48%, rgba(20, 16, 15, 0.5)),
    url("./photo/28.jpg") center 58%/cover;
  color: #fff;
  overflow: hidden;
}

.events::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 15, 0.18), rgba(20, 16, 15, 0.78)),
    radial-gradient(circle at 20% 20%, rgba(216, 173, 99, 0.18), transparent 32%);
  content: "";
  pointer-events: none;
}

.events-inner {
  position: relative;
  z-index: 1;
  display: block;
}

.events-inner > div {
  max-width: 760px;
}

.contact {
  background:
    radial-gradient(circle at 80% 12%, rgba(216, 173, 99, 0.12), transparent 30%),
    linear-gradient(180deg, #120e0c, #080605);
  color: #fff4e6;
}

.contact-copy dl {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.contact-copy h2 {
  max-width: 520px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
}

.contact-intro {
  max-width: 500px;
  margin: 18px 0 0;
  color: rgba(255, 244, 230, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.contact-copy dl > div {
  border: 1px solid rgba(216, 173, 99, 0.18);
  border-radius: var(--radius);
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(216, 173, 99, 0.08), transparent 52%),
    rgba(255, 244, 230, 0.035);
}

.contact-copy dt {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-copy .hours-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hours-title span {
  color: rgba(255, 244, 230, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.contact-copy dd {
  margin: 0;
  color: rgba(255, 244, 230, 0.76);
}

.map-card {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(166, 29, 36, 0.95), rgba(20, 16, 15, 0.92)),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.12) 49%, rgba(255, 255, 255, 0.12) 51%, transparent 52%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-card::before,
.map-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
}

.map-card::before {
  inset: 10% 14%;
  transform: rotate(-18deg);
}

.map-card::after {
  inset: 26% 8%;
  transform: rotate(12deg);
}

.map-line {
  position: absolute;
  inset: 48% -10% auto;
  height: 8px;
  background: var(--gold);
  transform: rotate(-28deg);
}

.pin {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 999px 999px 999px 6px;
  background: #14100f;
  color: var(--gold);
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(-45deg);
}



.pin span {
  transform: rotate(45deg);
}

.real-map {
  min-height: 520px;
  border: 1px solid rgba(216, 173, 99, 0.42);
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(216, 173, 99, 0.18), transparent 34%),
    linear-gradient(180deg, #1a1411, #090706);
  box-shadow:
    0 34px 90px rgba(20, 16, 15, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.real-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  filter: saturate(1.02) contrast(1.02);
  opacity: 0.96;
}

.real-map .map-line,
.real-map .pin {
  display: none;
}

.real-map::before,
.real-map::after {
  z-index: 1;
  display: block;
  border: 0;
  pointer-events: none;
}

.real-map::before {
  inset: 10px;
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(90deg, rgba(20, 16, 15, 0.22), transparent 34%, rgba(20, 16, 15, 0.08)),
    linear-gradient(180deg, rgba(20, 16, 15, 0.08), transparent 46%, rgba(20, 16, 15, 0.18));
  transform: none;
}

.real-map::after {
  inset: 22px;
  border: 1px solid rgba(216, 173, 99, 0.22);
  border-radius: calc(var(--radius) - 4px);
  box-shadow: inset 0 0 28px rgba(20, 16, 15, 0.12);
  transform: none;
}

.map-brand-card {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(330px, calc(100% - 36px));
  border: 1px solid rgba(216, 173, 99, 0.34);
  border-radius: var(--radius);
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(216, 173, 99, 0.16), transparent 48%),
    rgba(20, 16, 15, 0.92);
  color: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.map-brand-card img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(216, 173, 99, 0.62);
  border-radius: 999px;
}

.map-brand-card strong,
.map-brand-card small {
  display: block;
}

.map-brand-card strong {
  font-size: 16px;
}

.map-brand-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.map-meta {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  max-width: 230px;
  border: 1px solid rgba(216, 173, 99, 0.28);
  border-radius: var(--radius);
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(216, 173, 99, 0.18), transparent 50%),
    rgba(20, 16, 15, 0.9);
  color: #fff4e6;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.map-meta span,
.map-meta strong {
  display: block;
}

.map-meta span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-meta strong {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
}

.map-actions {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 173, 99, 0.42);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(20, 16, 15, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.map-actions a:first-child {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: transparent;
}

.map-actions a:hover {
  border-color: rgba(216, 173, 99, 0.72);
  transform: translateY(-2px);
}


.footer {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer strong,
.footer span {
  display: block;
}

.footer span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.footer a {
  color: var(--gold);
  font-weight: 800;
}

.lightbox {
  width: min(920px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #0c0a09;
  color: #fff;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #000;
}

.lightbox p {
  margin: 0;
  padding: 18px 20px 22px;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 244, 230, 0.92);
  color: #14100f;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 14px;
    background: rgba(20, 16, 15, 0.98);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 130px;
  }

  .hero-panel {
    position: static;
    margin-top: 42px;
  }

  .intro-grid,
  .contact-grid,
  .events-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    align-items: start;
  }

  .intro h2 {
    font-size: clamp(34px, 8vw, 52px);
  }

  .intro p:last-child {
    font-size: 16px;
  }

  .section-heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }



  .split {
    padding-right: 0;
  }

.split-copy {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
}

.split-copy h2,
.events h2,
.contact-copy h2 {
  line-height: 1.08;
}

  .split-image {
    min-height: 430px;
  }

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

  .price-card {
    min-height: auto;
  }

  .price-card small {
    margin-top: 0;
    padding-top: 0;
  }

  .coperto {
    margin-bottom: 10px;
  }

  .promo-grid,
  .takeaway-discounts {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    --reveal-final-y: 0px;
    transform: none;
  }

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

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: translateY(var(--reveal-final-y, 0px)) scale(1);
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .site-header {
    padding-inline: 16px;
  }

  .hero {
    padding: 116px 18px 48px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .section-heading {
    display: block;
  }

  .menu-heading h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .contact-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .contact-intro {
    font-size: 16px;
  }

  .menu-heading p:last-child {
    font-size: 16px;
  }

  .menu-pdf-button {
    margin-top: 22px;
  }

  .feature-list,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 260px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .map-card {
    min-height: 440px;
  }

  .real-map iframe {
    min-height: 420px;
  }

  .map-brand-card {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 10px 12px;
  }

  .map-brand-card img {
    width: 42px;
    height: 42px;
  }

  .map-meta {
    top: 88px;
    right: 12px;
    left: 12px;
    max-width: none;
    padding: 10px 12px;
  }

  .map-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .map-actions a {
    flex: 1 1 120px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .gallery-heading p:last-child {
    font-size: 16px;
  }


}
