:root {
  --ink: #171613;
  --ink-soft: #292720;
  --night: #0f0f0d;
  --night-2: #171713;
  --cream: #f6f0e6;
  --cream-2: #ece2d3;
  --paper: #fffdf8;
  --gold: #c6a15b;
  --gold-light: #ead2a3;
  --green: #315a3e;
  --red: #a53633;
  --muted: #746f65;
  --line: rgba(23, 22, 19, 0.14);
  --line-light: rgba(255, 255, 255, 0.15);
  --shadow: 0 24px 70px rgba(20, 17, 11, 0.15);
  --shadow-soft: 0 12px 34px rgba(20, 17, 11, 0.1);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

a:hover {
  color: var(--red);
}

button {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h3 {
  font-weight: 700;
}

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

.section {
  padding: 104px 0;
  position: relative;
}

.section--dark {
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 8%, rgba(198, 161, 91, 0.11), transparent 30%),
    linear-gradient(145deg, var(--night), #171713 75%, #11110f);
}

.section--soft {
  background: #eee5d8;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--night);
  background: var(--gold-light);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.section-heading--light .eyebrow {
  color: var(--gold-light);
}

.section-heading {
  max-width: 720px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading--light p {
  color: rgba(246, 240, 230, 0.72);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--gold {
  color: #15130f;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 32px rgba(198, 161, 91, 0.22);
}

.button--gold:hover {
  background: linear-gradient(135deg, #f2dcaf, #d1aa61);
}

.button--ghost {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.04);
}

.button--ghost:hover {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.button--dark {
  color: var(--cream);
  background: var(--night);
}

.button--dark:hover {
  color: white;
  background: #27251f;
}

.button--small {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 0.88rem;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

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

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--cream);
  background: rgba(15, 15, 13, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.status-bar {
  color: rgba(246, 240, 230, 0.78);
  background: #080807;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
}

.status-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.status-bar__inner > a {
  margin-left: auto;
  color: var(--gold-light);
  font-weight: 800;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #cc9d55;
  box-shadow: 0 0 0 4px rgba(204, 157, 85, 0.12);
}

.status-dot.is-open {
  background: #6eb778;
  box-shadow: 0 0 0 4px rgba(110, 183, 120, 0.12);
}

.status-dot.is-closed {
  background: #d36a65;
  box-shadow: 0 0 0 4px rgba(211, 106, 101, 0.12);
}

.main-nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.brand:hover {
  color: var(--cream);
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(198, 161, 91, 0.4);
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 600;
}

.brand__text small {
  margin-top: 4px;
  color: rgba(246, 240, 230, 0.6);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 25px);
}

.nav-links > a:not(.button) {
  position: relative;
  padding: 8px 0;
  color: rgba(246, 240, 230, 0.83);
  font-size: 0.91rem;
  font-weight: 700;
}

.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.nav-links > a:not(.button):hover {
  color: white;
}

.nav-links > a:not(.button):hover::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 88px 0 94px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -220px -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(198, 161, 91, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 76px rgba(198, 161, 91, 0.025), 0 0 0 152px rgba(198, 161, 91, 0.018);
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(52px, 8vw, 106px);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.3rem, 7vw, 6.9rem);
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(246, 240, 230, 0.74);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.hero__meta span {
  padding: 8px 12px;
  color: rgba(246, 240, 230, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-collage {
  position: relative;
  min-height: 600px;
}

.hero-collage figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 180px 180px 28px 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

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

.hero-collage__main {
  inset: 0 14% 0 15%;
  z-index: 2;
  border: 1px solid rgba(234, 210, 163, 0.35);
}

.hero-collage__small {
  width: 35%;
  height: 40%;
  z-index: 3;
  border: 7px solid var(--night-2);
}

.hero-collage__small--top {
  top: 1%;
  right: -4%;
}

.hero-collage__small--bottom {
  bottom: 2%;
  left: -4%;
}

.hero-collage__badge {
  position: absolute;
  right: 5%;
  bottom: 7%;
  z-index: 4;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  color: var(--night);
  text-align: center;
  background: var(--gold-light);
  border: 5px solid var(--night-2);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.hero-collage__badge span {
  font-family: var(--serif);
  font-size: 1.12rem;
}

.hero-collage__badge strong {
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quick-facts {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid rgba(198, 161, 91, 0.26);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.quick-facts article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-right: 1px solid var(--line);
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts strong,
.quick-facts small {
  display: block;
}

.quick-facts strong {
  font-size: 0.88rem;
}

.quick-facts small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.fact-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  color: var(--red);
  background: #f4eadb;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.68rem;
  font-weight: 800;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(56px, 8vw, 108px);
}

.intro__visual {
  position: relative;
  max-width: 520px;
  justify-self: end;
}

.intro__visual::before {
  content: "";
  position: absolute;
  inset: 9% -6% -6% 11%;
  z-index: -1;
  border: 1px solid rgba(198, 161, 91, 0.6);
  border-radius: 50%;
}

.intro__visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.intro__quote {
  position: absolute;
  right: -38px;
  bottom: 18px;
  max-width: 220px;
  padding: 16px 20px;
  color: var(--cream);
  background: var(--green);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-family: var(--serif);
  font-size: 1.14rem;
  line-height: 1.2;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.offer-card {
  position: relative;
  min-height: 275px;
  padding: 36px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(198, 161, 91, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.offer-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 50%;
}

.offer-card__number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.offer-card h3 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.offer-card p {
  color: var(--muted);
}

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

.menu-controls {
  margin-top: 40px;
}

.menu-tabs {
  display: flex;
  gap: 9px;
  padding: 6px 4px 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.menu-tab {
  flex: 0 0 auto;
  padding: 10px 15px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.menu-tab:hover,
.menu-tab[aria-selected="true"] {
  color: var(--cream);
  background: var(--night);
  border-color: var(--night);
}

.menu-view {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 570px;
  margin-top: 22px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(23, 22, 19, 0.11);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.menu-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--night);
}

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

.menu-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 8, 0.6), transparent 50%);
}

.menu-visual__label {
  position: absolute;
  left: 28px;
  bottom: 27px;
  z-index: 2;
  color: white;
}

.menu-visual__label span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-visual__label strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.menu-content {
  padding: clamp(30px, 4vw, 55px);
}

.menu-content__header {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.menu-content__header h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 4vw, 3.1rem);
  font-weight: 500;
}

.menu-content__header p {
  color: var(--muted);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 12px;
}

.menu-group {
  grid-column: 1 / -1;
  margin-top: 25px;
}

.menu-group h4 {
  margin: 0 0 7px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.menu-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item__line {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-item__line::after {
  content: "";
  flex: 1 1 auto;
  min-width: 20px;
  border-bottom: 1px dotted rgba(23, 22, 19, 0.27);
}

.menu-item__line strong:first-child {
  order: 0;
  max-width: 78%;
  font-size: 0.96rem;
}

.menu-price {
  order: 2;
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 900;
}

.menu-item p {
  max-width: 90%;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.menu-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.menu-size {
  display: inline-flex;
  gap: 7px;
  padding: 5px 9px;
  background: rgba(198, 161, 91, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
}

.menu-size strong {
  color: var(--red);
}

.allergen-note {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.allergen-note > div {
  padding: 22px 24px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.allergen-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.original-menu {
  margin-top: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.original-menu summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 800;
}

.original-menu__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  padding: 0 18px 18px;
}

.media-button {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.original-menu__grid .media-button {
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.original-menu__grid img {
  width: 100%;
  aspect-ratio: 0.56;
  object-fit: cover;
  transition: transform 220ms ease;
}

.original-menu__grid .media-button:hover img {
  transform: scale(1.035);
}

.aperitivo {
  overflow: hidden;
}

.aperitivo::after {
  content: "APERITIVO";
  position: absolute;
  right: -30px;
  top: 20px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 13rem);
  line-height: 1;
  pointer-events: none;
}

.signature-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  margin-top: 52px;
}

.signature-card-image {
  border-radius: 24px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.42);
}

.signature-card-image img {
  width: 100%;
  max-height: 740px;
  object-fit: cover;
}

.signature-list {
  display: grid;
  gap: 11px;
}

.spritz {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 16px 22px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
}

.spritz span,
.spritz small {
  display: inline-block;
}

.spritz span {
  font-family: var(--serif);
  font-size: 1.65rem;
}

.spritz small {
  margin-left: 7px;
  color: rgba(246, 240, 230, 0.58);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spritz strong {
  font-size: 1rem;
}

.spritz--sole { border-left-color: #e99b35; }
.spritz--alba { border-left-color: #db6255; }
.spritz--mare { border-left-color: #4bb8bb; }
.spritz--tropicale { border-left-color: #d2b039; }
.spritz--notte { border-left-color: #c3426d; }

.fine-print,
.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.section--dark .fine-print {
  color: rgba(246, 240, 230, 0.58);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.video-card {
  overflow: hidden;
  background: #1d1d19;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.video-card video {
  width: 100%;
  height: 420px;
  background: #070706;
  object-fit: cover;
}

.video-grid--cocktails .video-card:first-child video {
  object-fit: contain;
}

.video-card__body {
  padding: 20px 22px 22px;
}

.video-card__body h3 {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.video-card__body p {
  margin: 0;
  color: rgba(246, 240, 230, 0.6);
  font-size: 0.9rem;
}

.glutenfree-feature {
  background: var(--paper);
}

.glutenfree-feature__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.glutenfree-feature__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.glutenfree-feature__image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 38px 0 30px;
}

.filter-button {
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(23, 22, 19, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--cream);
  background: var(--green);
  border-color: var(--green);
}

.gallery-grid {
  columns: 4 240px;
  column-gap: 16px;
}

.gallery-item {
  position: relative;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  background: var(--paper);
  border: 0;
  border-radius: 16px;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  transition: transform 250ms ease, filter 250ms ease;
}

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 11px;
  color: white;
  text-align: left;
  background: rgba(12, 12, 10, 0.75);
  border-radius: 9px;
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: brightness(0.9);
}

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

.events__intro {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  align-items: end;
  gap: 60px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tag-list span {
  padding: 8px 12px;
  color: var(--gold-light);
  border: 1px solid rgba(234, 210, 163, 0.28);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.event-notice {
  display: grid;
  gap: 8px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.event-notice span {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-notice strong {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
}

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

.celebrations__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.occasion-grid article {
  min-height: 190px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.occasion-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.occasion-grid span {
  display: block;
  margin-bottom: 55px;
  color: var(--red);
  font-family: var(--serif);
}

.occasion-grid h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.reservation__grid {
  display: grid;
  grid-template-columns: 0.77fr 1.23fr;
  gap: clamp(45px, 7vw, 90px);
  align-items: start;
}

.reservation__contact {
  display: grid;
  gap: 10px;
  margin: 28px 0 16px;
}

.reservation__contact a {
  display: grid;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.reservation__contact span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reservation__contact strong {
  overflow-wrap: anywhere;
}

.reservation-form {
  padding: clamp(26px, 4vw, 44px);
  background: var(--paper);
  border: 1px solid rgba(198, 161, 91, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-grid label {
  display: grid;
  gap: 7px;
}

.form-grid label > span:first-child {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fbf8f2;
  border: 1px solid rgba(23, 22, 19, 0.18);
  border-radius: 10px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(49, 90, 62, 0.12);
}

.form-grid__full {
  grid-column: 1 / -1;
}

.checkbox {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 10px !important;
}

.checkbox input {
  width: 19px;
  min-height: 19px;
  margin-top: 3px;
}

.checkbox span {
  color: var(--muted) !important;
  font-size: 0.77rem !important;
  font-weight: 500 !important;
}

.reservation-form .button {
  margin-top: 22px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 0.88fr 1.24fr;
  gap: 18px;
  margin-top: 45px;
}

.contact-card {
  padding: 30px;
  background: var(--cream);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: var(--radius);
}

.contact-card__label {
  display: block;
  margin-bottom: 30px;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.contact-card p {
  color: var(--muted);
}

.contact-card .button {
  margin-top: 14px;
}

.hours-list {
  display: grid;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.87rem;
}

.hours-list > div.is-today {
  color: var(--red);
  font-weight: 800;
}

.hours-list strong {
  text-align: right;
}

.parking-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  padding: 17px 20px;
  background: var(--night);
  border-radius: 14px;
  color: rgba(246, 240, 230, 0.75);
  font-size: 0.82rem;
}

.parking-note strong {
  color: var(--gold-light);
}

.parking-note span::before {
  content: "•";
  margin-right: 9px;
  color: var(--gold);
}

.site-footer {
  padding: 64px 0 28px;
  color: rgba(246, 240, 230, 0.72);
  background: #0a0a09;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.85fr 0.75fr;
  gap: 44px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.footer-brand span {
  max-width: 220px;
  margin-top: 5px;
  font-size: 0.83rem;
}

.site-footer h2 {
  margin-bottom: 15px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__grid > div:not(.footer-brand) > a,
.site-footer__grid > div:not(.footer-brand) > span {
  display: block;
  margin: 7px 0;
  font-size: 0.88rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.site-footer__bottom div {
  display: flex;
  gap: 18px;
}

.mobile-actions {
  display: none;
}

.lightbox {
  width: min(94vw, 1100px);
  max-height: 92vh;
  padding: 0;
  color: white;
  background: #0b0b09;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(5px);
}

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

.lightbox p {
  margin: 0;
  padding: 13px 18px 16px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.86rem;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 3000;
  padding: 14px 18px;
  color: white;
  background: #7b2522;
  border-radius: 12px;
  text-align: center;
}

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

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

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

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

@media (max-width: 1050px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links > a:not(.button) {
    font-size: 0.83rem;
  }

  .hero__grid {
    gap: 50px;
  }

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

  .quick-facts__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-facts article:nth-child(3) {
    border-right: 0;
  }

  .quick-facts article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .original-menu__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .contact-card--hours {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 90px;
  }

  .section {
    padding: 82px 0;
  }

  .status-bar__inner {
    overflow-x: auto;
  }

  .status-bar__inner > a {
    margin-left: 10px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1010;
  }

  .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);
  }

  .nav-links {
    position: fixed;
    inset: 112px 0 0;
    z-index: 1000;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 30px 20px 120px;
    overflow-y: auto;
    background: rgba(15, 15, 13, 0.985);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links > a:not(.button) {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 500;
  }

  .nav-links .button {
    margin-top: 22px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 90px;
  }

  .hero__grid,
  .intro__grid,
  .glutenfree-feature__grid,
  .celebrations__grid,
  .reservation__grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    width: min(100%, 620px);
    min-height: 570px;
    margin-inline: auto;
  }

  .quick-facts {
    margin-top: -28px;
  }

  .intro__visual {
    width: min(88%, 500px);
    justify-self: center;
  }

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

  .offer-card {
    min-height: 220px;
  }

  .offer-card__number {
    margin-bottom: 24px;
  }

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

  .menu-visual {
    min-height: 340px;
  }

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

  .signature-card-image {
    max-width: 560px;
    margin-inline: auto;
  }

  .events__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .event-notice {
    max-width: 500px;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .status-separator,
  #todayHours {
    display: none;
  }

  .status-bar__inner {
    justify-content: space-between;
  }

  .main-nav {
    min-height: 70px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand__text strong {
    font-size: 1.16rem;
  }

  .brand__text small {
    font-size: 0.61rem;
  }

  .nav-links {
    inset: 104px 0 0;
  }

  .hero {
    padding: 54px 0 76px;
  }

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

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-collage {
    min-height: 470px;
  }

  .hero-collage__main {
    inset: 0 10% 0 10%;
  }

  .hero-collage__small {
    width: 36%;
    height: 36%;
    border-width: 5px;
  }

  .hero-collage__small--top {
    right: -1%;
  }

  .hero-collage__small--bottom {
    left: -1%;
  }

  .hero-collage__badge {
    right: 2%;
    bottom: 4%;
    width: 92px;
    height: 92px;
  }

  .quick-facts__grid {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }

  .quick-facts article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .quick-facts article:last-child {
    grid-column: 1 / -1;
    border: 0;
  }

  .intro__quote {
    right: -8px;
    bottom: -14px;
  }

  .menu-content {
    padding: 28px 20px 34px;
  }

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

  .menu-item__line strong:first-child {
    max-width: 72%;
  }

  .allergen-note {
    grid-template-columns: 1fr;
  }

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

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

  .video-card video {
    height: min(72vh, 530px);
  }

  .video-grid--cocktails .video-card:nth-child(2) video {
    height: 260px;
  }

  .gallery-grid {
    columns: 2 150px;
    column-gap: 10px;
  }

  .gallery-item {
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .gallery-item::after {
    display: none;
  }

  .occasion-grid {
    gap: 10px;
  }

  .occasion-grid article {
    min-height: 155px;
    padding: 22px;
  }

  .occasion-grid span {
    margin-bottom: 34px;
  }

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

  .form-grid__full {
    grid-column: auto;
  }

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

  .contact-card--hours {
    grid-column: auto;
  }

  .parking-note {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1400;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 58px;
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--cream);
    background: rgba(10, 10, 9, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.79rem;
    font-weight: 800;
  }

  .mobile-actions a:nth-child(2) {
    color: var(--night);
    background: var(--gold-light);
  }

  .mobile-actions a:last-child {
    border-right: 0;
  }
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  color: var(--cream);
  background: var(--night);
}

.legal-header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header .brand img {
  width: 52px;
  height: 52px;
}

.legal-header__back {
  color: var(--gold-light);
  font-weight: 800;
}

.legal-main {
  padding: 80px 0 110px;
}

.legal-main h1 {
  margin-bottom: 36px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-content {
  max-width: 820px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--paper);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

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

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--red);
  font-weight: 700;
}

.legal-notice {
  margin-top: 32px;
  padding: 18px 20px;
  background: #f1e7d8;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  color: var(--muted);
}
