:root {
  --black: #060606;
  --night: #0d0d0b;
  --panel: #14130f;
  --panel-soft: #191712;
  --ink: #fff8ec;
  --muted: rgba(255, 248, 236, 0.68);
  --quiet: rgba(255, 248, 236, 0.44);
  --line: rgba(255, 248, 236, 0.14);
  --line-strong: rgba(255, 248, 236, 0.26);
  --sand: #d8b783;
  --copper: #b87949;
  --sea: #2d6268;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(45, 98, 104, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(184, 121, 73, 0.1), transparent 42%),
    var(--black);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  color: var(--black);
  background: var(--ink);
  border-radius: 8px;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot.is-ready,
.cursor-ring.is-ready {
  opacity: 1;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--sand);
  border-radius: 50%;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 183, 131, 0.58);
  border-radius: 50%;
  transition: width 160ms ease, height 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cursor-ring.is-active {
  width: 54px;
  height: 54px;
  background: rgba(216, 183, 131, 0.08);
  border-color: rgba(216, 183, 131, 0.86);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  padding: 18px 22px;
  color: var(--ink);
  transition: background 180ms ease, padding 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(6, 6, 6, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
}

.brand-logo {
  display: inline-flex;
  width: clamp(118px, 11vw, 168px);
  height: 40px;
  align-items: center;
}

.brand-logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.nav-links a {
  color: rgba(255, 248, 236, 0.82);
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--sand);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-cta {
  min-width: 86px;
  padding: 10px 17px;
  text-align: center;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: var(--black);
  background: var(--sand);
  border-color: var(--sand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--ink);
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.hero-sticky {
  position: relative;
  display: grid;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
  color: var(--ink);
  background: var(--black);
}

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

.hero-image {
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.04) contrast(1.02) brightness(1.08);
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-video {
  animation: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.hero-video.is-playing {
  opacity: 1;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.64), rgba(6, 6, 6, 0.16) 50%, rgba(6, 6, 6, 0.38)),
    linear-gradient(180deg, rgba(6, 6, 6, 0.1), rgba(6, 6, 6, 0.04) 38%, rgba(6, 6, 6, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 150px 22px 154px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 104px;
  line-height: 0.95;
  font-weight: 700;
}

.hero-lead {
  max-width: 850px;
  margin: 20px auto 0;
  color: rgba(255, 248, 236, 0.86);
  font-size: 21px;
}

.hero-content .eyebrow {
  color: var(--ink);
  font-size: 15px;
}

.hero-logo-lockup {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 14px;
}

.hero-welcome-logo {
  display: block;
  width: clamp(360px, 52vw, 680px);
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.56));
}

.hero-logo-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.hero-logo-subtitle::before,
.hero-logo-subtitle::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.86;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 150px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--sand);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--sand);
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 10, 8, 0.64);
  backdrop-filter: blur(18px);
}

.hero-strip div {
  padding: 17px 18px;
}

.hero-strip div + div {
  border-left: 1px solid var(--line);
}

.hero-strip span {
  display: block;
  color: var(--quiet);
  font-size: 12px;
}

.hero-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.marquee-section {
  overflow: hidden;
  padding: 24px 0;
  color: var(--black);
  background: var(--sand);
  border-bottom: 1px solid rgba(6, 6, 6, 0.22);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 38px;
  animation: marquee 34s linear infinite;
}

.marquee-track span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  white-space: nowrap;
}

.intro-section,
.experience-section,
.restaurant-menu-section,
.menu-section,
.scroll-video-section,
.contact-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.intro-section {
  padding: 112px 0 96px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 64px;
  align-items: end;
}

.intro-copy h2,
.section-heading h2,
.menu-intro h2,
.menu-copy h2,
.scroll-video-copy h2,
.contact-copy h2,
.footer-statement h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1.03;
  font-weight: 700;
}

.intro-copy p,
.menu-intro p,
.menu-copy p,
.scroll-video-copy p,
.contact-copy p {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-logo-title {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.contact-logo-title img {
  width: min(360px, 100%);
  height: auto;
}

.contact-logo-title span {
  display: block;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 34px;
}

.story-stats div {
  min-height: 118px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.story-stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  color: var(--sand);
}

.story-stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.intro-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: var(--panel);
}

.intro-media::after {
  position: absolute;
  inset: 16px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(216, 183, 131, 0.26);
  border-radius: 6px;
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) brightness(0.94);
}

.experience-section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 42px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.experience-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.experience-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(145deg, rgba(216, 183, 131, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  background: var(--panel-soft);
  border-color: rgba(216, 183, 131, 0.34);
}

.experience-card:hover::before {
  opacity: 1;
}

.experience-card span {
  position: relative;
  color: var(--sand);
  font-weight: 800;
}

.experience-card h3 {
  position: relative;
  margin: 62px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.experience-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.restaurant-menu-section {
  padding: 102px 0 96px;
  border-top: 1px solid var(--line);
}

.menu-page .hero,
.menu-page .marquee-section,
.menu-page .intro-section,
.menu-page .experience-section,
.menu-page .menu-section,
.menu-page .scroll-video-section,
.menu-page .contact-section {
  display: none;
}

.menu-page .restaurant-menu-section {
  overflow-anchor: none;
  padding-top: 154px;
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
}

.menu-intro p {
  margin: 0;
}

.menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.menu-jump a,
.menu-jump button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.menu-jump a:hover,
.menu-jump a:focus-visible,
.menu-jump button:hover,
.menu-jump button:focus-visible,
.menu-jump button.is-active {
  transform: translateY(-2px);
  color: var(--black);
  background: var(--sand);
  border-color: var(--sand);
}

.menu-teaser-actions {
  display: flex;
  margin-top: 34px;
}

.menu-teaser-section .menu-categories,
.menu-teaser-section .menu-allergy-note {
  display: none;
}

.menu-categories {
  display: grid;
  gap: 64px;
  margin-top: 56px;
}

.menu-category[hidden] {
  display: none;
}

.menu-category {
  scroll-margin-top: 96px;
}

.menu-category-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  margin-bottom: 24px;
}

.menu-category-head span {
  color: var(--sand);
  font-size: 14px;
  font-weight: 900;
}

.menu-category-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.05;
}

.menu-block + .menu-block {
  margin-top: 38px;
}

.menu-block h4 {
  margin: 0 0 16px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.menu-dish {
  display: grid;
  align-content: start;
  min-height: 188px;
  padding: 20px;
  background: rgba(255, 248, 236, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-dish-top {
  display: flex;
  gap: 14px;
  align-items: baseline;
  justify-content: space-between;
}

.menu-dish h5 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
  text-transform: uppercase;
}

.menu-dish-top span {
  flex: 0 0 auto;
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

.menu-dish p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.menu-dish .menu-translation {
  margin-top: 8px;
  color: var(--quiet);
  font-size: 13px;
}

.menu-dish small {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 6px 9px;
  color: rgba(255, 248, 236, 0.72);
  background: rgba(216, 183, 131, 0.1);
  border: 1px solid rgba(216, 183, 131, 0.18);
  border-radius: 999px;
  font-size: 12px;
}

.menu-allergy-note {
  max-width: 780px;
  margin: 46px 0 0;
  color: var(--quiet);
  font-size: 14px;
}

.menu-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.62fr);
  gap: 46px;
  align-items: stretch;
  min-height: 460px;
  margin-top: 14px;
  padding: 72px;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(45, 98, 104, 0.36), rgba(6, 6, 6, 0.08)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-copy {
  max-width: 760px;
  align-self: center;
}

.event-media {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.event-media::after {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(216, 183, 131, 0.24);
  border-radius: 6px;
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) brightness(0.96);
}

.event-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.event-list span {
  padding: 16px 18px;
  color: rgba(255, 248, 236, 0.86);
  background: rgba(255, 248, 236, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
}

.scroll-video-section {
  --scroll-video-scale: 1.06;
  --scroll-video-shift: 0px;
  position: relative;
  min-height: 145svh;
  padding: 96px 0 40px;
}

.scroll-video-sticky {
  position: sticky;
  top: 88px;
  min-height: 560px;
  height: min(78svh, 760px);
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.scroll-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--scroll-video-shift), 0) scale(var(--scroll-video-scale));
  transition:
    transform 120ms linear,
    opacity 500ms ease;
}

.scroll-video-poster {
  z-index: 0;
}

video.scroll-video {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

video.scroll-video.is-playing {
  opacity: 1;
}

video.scroll-video::-webkit-media-controls,
video.scroll-video::-webkit-media-controls-panel,
video.scroll-video::-webkit-media-controls-start-playback-button,
video.scroll-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}

.scroll-video-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.76), rgba(6, 6, 6, 0.24) 58%, rgba(6, 6, 6, 0.18)),
    linear-gradient(0deg, rgba(6, 6, 6, 0.76), transparent 46%);
}

.scroll-video-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: end;
  max-width: 760px;
  min-height: 100%;
  padding: 56px;
}

.scroll-video-copy h2 {
  max-width: 700px;
}

.scroll-video-copy p {
  color: rgba(255, 248, 236, 0.82);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 64px;
  align-items: start;
  padding: 112px 0;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list > a,
.contact-item {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 20px 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, border-color 160ms ease;
}

.contact-list > a:hover,
.contact-list > a:focus-visible,
.contact-button:hover,
.contact-button:focus-visible {
  color: var(--sand);
  border-color: rgba(216, 183, 131, 0.42);
}

.contact-button {
  cursor: pointer;
}

.contact-list span {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 18px;
}

.inline-contact-button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 10px;
  padding: 11px 18px;
  color: var(--black);
  background: linear-gradient(135deg, var(--sand), #f3d9a4);
  border: 1px solid rgba(216, 183, 131, 0.86);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(216, 183, 131, 0.16);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0.9;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.contact-list .inline-contact-button {
  width: fit-content;
  padding: 11px 18px;
  color: var(--black);
  border: 1px solid rgba(216, 183, 131, 0.86);
  border-radius: 999px;
}

.inline-contact-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list .inline-contact-button:hover,
.contact-list .inline-contact-button:focus-visible {
  transform: translateY(-2px);
  color: var(--black);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 18px 42px rgba(216, 183, 131, 0.24);
  opacity: 1;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 28px 22px 46px;
  color: var(--ink);
  background: #120d0a;
  border-top: 1px solid rgba(255, 248, 236, 0.06);
  border-radius: 0;
}

.site-footer::before {
  display: none;
}

.footer-shell {
  width: min(1500px, 100%);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 36px;
  padding: 0 0 52px;
  color: rgba(255, 248, 236, 0.58);
  font-size: 17px;
}

.footer-top a,
.footer-top span {
  color: inherit;
}

.footer-top a:hover,
.footer-top a:focus-visible {
  color: var(--sand);
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 248, 236, 0.12);
}

.footer-legal {
  display: grid;
  gap: 22px;
  justify-items: center;
  padding-top: 42px;
  color: rgba(255, 248, 236, 0.38);
  text-align: center;
}

.footer-legal p {
  max-width: 920px;
  margin: 0;
  font-size: 16px;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 36px;
}

.footer-legal a {
  color: rgba(255, 248, 236, 0.58);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--sand);
}

.footer-credit {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-credit a {
  color: rgba(226, 192, 130, 0.86);
  font-weight: 700;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--ink);
}

.footer-social {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  padding-right: 15px;
  padding-bottom: 25px;
  background: var(--black);
  border-radius: 0 0 20px 0;
}

.footer-social::before,
.footer-social::after {
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 40px;
  content: "";
  background: transparent;
  border-top-left-radius: 20px;
  box-shadow: 0 -18px 0 0 var(--black);
}

.footer-social::after {
  top: -1px;
  right: -20px;
}

.footer-social::before {
  bottom: -39px;
  left: 0;
}

.footer-social a,
.footer-social button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--black);
  background: var(--sand);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-16px);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.footer-social button:disabled {
  cursor: default;
}

.footer-social a:not(:last-child),
.footer-social button:not(:last-child) {
  margin-bottom: 8px;
}

.site-footer.is-visible .footer-social a,
.site-footer.is-visible .footer-social button {
  animation: socialDrop 620ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.footer-social :nth-child(2) {
  animation-delay: 80ms;
}

.footer-social :nth-child(3) {
  animation-delay: 160ms;
}

.footer-social :nth-child(4) {
  animation-delay: 240ms;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateX(4px);
  color: var(--black);
  background: var(--ink);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social :nth-child(2) svg path {
  fill: none;
  stroke: currentColor;
}

.footer-side-note {
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px 22px 20px;
  color: rgba(255, 248, 236, 0.9);
  background: var(--black);
  border-radius: 0 0 0 20px;
  font-size: 15px;
  line-height: 1;
  transition: color 160ms ease;
}

.footer-side-note::before,
.footer-side-note::after {
  position: absolute;
  width: 20px;
  height: 40px;
  content: "";
  background: transparent;
  border-top-right-radius: 20px;
  box-shadow: 0 -18px 0 0 var(--black);
}

.footer-side-note::after {
  right: 0;
  bottom: -40px;
}

.footer-side-note::before {
  bottom: 11px;
  left: -19px;
}

.footer-side-note:hover,
.footer-side-note:focus-visible {
  color: var(--sand);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr) minmax(260px, 0.72fr);
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  padding-top: 160px;
  padding-bottom: 42px;
  align-items: center;
}

.footer-statement h2 {
  max-width: 440px;
  font-size: 76px;
  line-height: 1;
}

.footer-links,
.footer-contact {
  align-content: start;
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  padding-left: 70px;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links h3,
.footer-contact h3 {
  width: 100%;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.footer-links h3::before,
.footer-contact h3::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  content: "";
  background: var(--sand);
  border-radius: 50%;
  transform: translateY(-2px);
}

.footer-links a {
  display: inline-block;
  padding: 13px 20px;
  color: rgba(255, 248, 236, 0.82);
  background: transparent;
  border: 1px solid rgba(255, 248, 236, 0.1);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-contact a,
.footer-contact button,
.footer-contact span {
  display: block;
  color: rgba(255, 248, 236, 0.82);
  font-size: 16px;
  line-height: 1.5;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-contact button {
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-contact button:hover,
.footer-contact button:focus-visible {
  color: var(--black);
  background: var(--sand);
  border-color: var(--sand);
  transform: translateY(-2px);
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-contact button:hover,
.footer-contact button:focus-visible {
  color: var(--sand);
  background: transparent;
  border-color: transparent;
  transform: translateX(3px);
}

.footer-wordmark {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding-top: 8px;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(86px, 15.8vw, 259px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 248, 236, 0.92);
  text-align: center;
  border-top: 0;
}

.footer-wordmark img {
  width: min(960px, 82vw);
  height: auto;
  max-height: 280px;
  object-fit: contain;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  align-items: start;
  justify-content: start;
  width: 100%;
  margin: -12px auto 0;
  padding: 24px 40px 20px 330px;
  color: rgba(255, 248, 236, 0.72);
  border-top: 1px solid rgba(255, 248, 236, 0.14);
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(760px, calc(100svh - 44px));
  overflow: auto;
  padding: 32px;
  background: #0e0f11;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.modal-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.modal-close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.email-form {
  display: grid;
  gap: 18px;
}

.email-form input[name="website"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

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

.field-note {
  margin: -6px 0 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.35;
}

.email-form label span {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.email-form input,
.email-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(255, 248, 236, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.email-form textarea {
  resize: vertical;
}

.email-form input:focus,
.email-form textarea:focus {
  border-color: rgba(216, 183, 131, 0.72);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--sand);
}

.email-form .checkbox-field span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.checkbox-field a {
  color: var(--sand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--sand);
  font-size: 14px;
}

.form-status.is-error {
  color: #ffb199;
}

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

.modal-actions .button-ghost {
  color: var(--black);
  background: var(--ink);
  border-color: var(--ink);
}

.modal-actions .button-ghost:hover,
.modal-actions .button-ghost:focus-visible {
  color: var(--black);
  background: var(--sand);
  border-color: var(--sand);
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(680px, calc(100% - 44px));
  padding: 20px;
  color: var(--ink);
  background: rgba(14, 15, 17, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-toggle {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 10px;
  color: rgba(255, 248, 236, 0.82);
  cursor: pointer;
}

.cookie-toggle input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sand);
}

.cookie-toggle span {
  display: grid;
  gap: 2px;
}

.cookie-toggle strong {
  color: var(--ink);
  font-size: 14px;
}

.cookie-toggle small {
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.25;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--sand);
  font-weight: 800;
}

.legal-header {
  padding: 26px 22px;
  border-bottom: 1px solid var(--line);
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1100px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.legal-nav a:not(.brand) {
  color: var(--muted);
}

.legal-main {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
  padding: 84px 0 110px;
}

.legal-main h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.95;
}

.legal-main .legal-updated {
  margin: 18px 0 0;
  color: var(--quiet);
}

.legal-content {
  display: grid;
  gap: 34px;
  margin-top: 56px;
}

.legal-content section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

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

.legal-content p {
  margin: 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateY(0);
  }

  to {
    transform: scale(1.06) translateY(-10px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes socialDrop {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  65% {
    opacity: 1;
    transform: translateY(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1000px) and (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    display: block;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 136px;
  }

  .footer-wordmark {
    font-size: clamp(165px, 15.6vw, 259px);
  }
}

@media (max-width: 1199px) {
  .site-footer {
    padding-right: 30px;
    padding-left: 30px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr) minmax(230px, 0.72fr);
    gap: 34px;
  }

  .footer-links {
    padding-left: 0;
  }

  .footer-statement h2 {
    font-size: 54px;
  }

  .footer-bottom {
    padding-left: 215px;
  }
}

@media (max-width: 1000px) {
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .menu-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .scroll-video-section {
    min-height: auto;
    padding-top: 56px;
  }

  .scroll-video-sticky {
    position: relative;
    top: auto;
  }

  .event-media {
    min-height: 420px;
  }

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

@media (max-width: 900px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    gap: 16px;
    padding: 18px;
    color: var(--ink);
    background: rgba(6, 6, 6, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .site-header.is-open .nav-links {
    display: grid;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 4px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: center 42%;
  }

  .hero-sticky {
    grid-template-rows: minmax(650px, 1fr) auto;
  }

  .hero-content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 140px 22px 58px;
  }

  .hero h1 {
    font-size: 82px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-content .eyebrow {
    font-size: 14px;
  }

  .hero-welcome-logo {
    width: min(560px, 86vw);
  }

  .hero-logo-subtitle {
    font-size: 17px;
  }

  .hero-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: min(560px, calc(100% - 44px));
    margin: 0 auto 30px;
    transform: none;
  }

  .hero-strip div {
    padding: 12px 14px;
  }

  .hero-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .marquee-track span {
    font-size: 28px;
  }

  .intro-section,
  .experience-section,
  .restaurant-menu-section,
  .menu-section,
  .scroll-video-section,
  .contact-section {
    width: min(100% - 32px, 680px);
  }

  .intro-section,
  .experience-section,
  .restaurant-menu-section,
  .contact-section {
    padding: 72px 0;
  }

  .intro-grid,
  .contact-section,
  .section-heading,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-copy h2,
  .section-heading h2,
  .menu-intro h2,
  .menu-copy h2,
  .scroll-video-copy h2,
  .contact-copy h2 {
    font-size: 42px;
  }

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

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

  .menu-category-head h3 {
    font-size: 38px;
  }

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

  .experience-card h3 {
    margin-top: 34px;
  }

  .menu-section {
    padding: 44px 28px;
  }

  .scroll-video-sticky {
    min-height: 560px;
    height: auto;
  }

  .scroll-video {
    object-position: center center;
  }

  .scroll-video-shade {
    background:
      linear-gradient(0deg, rgba(6, 6, 6, 0.86), rgba(6, 6, 6, 0.26) 62%, rgba(6, 6, 6, 0.18)),
      linear-gradient(90deg, rgba(6, 6, 6, 0.28), rgba(6, 6, 6, 0.1));
  }

  .scroll-video-copy {
    min-height: 560px;
    padding: 34px 24px;
  }

  .event-media {
    min-height: 320px;
  }

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

  .footer-social {
    display: flex;
    gap: 5px;
    padding: 0 0 15px 20px;
  }

  .footer-social a:not(:last-child),
  .footer-social button:not(:last-child) {
    margin-bottom: 0;
  }

  .footer-side-note {
    display: none;
  }

  .site-footer {
    margin: 0;
    padding: 28px 20px 34px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .footer-main {
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .footer-links {
    padding-left: 0;
  }

  .footer-statement h2 {
    font-size: 42px;
  }

  .footer-wordmark {
    font-size: 115px;
    text-align: center;
  }

  .footer-bottom {
    display: grid;
    margin-top: 0;
    padding: 0 0 20px;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }

  .footer-top {
    padding-bottom: 34px;
    gap: 12px 22px;
    font-size: 15px;
  }

  .footer-legal {
    padding-top: 30px;
    gap: 18px;
  }

  .cookie-banner {
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .cookie-actions {
    justify-content: flex-start;
  }

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

  .legal-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100svh;
  }

  .hero-sticky {
    grid-template-rows: 1fr;
  }

  .hero-content {
    padding: 132px 18px 328px;
  }

  .hero-logo-lockup {
    gap: 7px;
    margin-top: 16px;
  }

  .hero-welcome-logo {
    width: min(360px, 90vw);
  }

  .hero-logo-subtitle {
    gap: 12px;
    font-size: 14px;
  }

  .hero-logo-subtitle::before,
  .hero-logo-subtitle::after {
    width: 30px;
  }

  .hero-strip {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 72px;
    width: auto;
    margin: 0 auto;
  }

  .hero + .marquee-section {
    margin-top: 0;
  }

  .hero h1 {
    font-size: 64px;
  }

  .button {
    width: 100%;
  }

  .intro-copy h2,
  .section-heading h2,
  .menu-intro h2,
  .menu-copy h2,
  .scroll-video-copy h2,
  .contact-copy h2,
  .footer-statement h2 {
    font-size: 34px;
  }

  .footer-wordmark {
    font-size: 62px;
  }
}

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

  .scroll-video {
    transform: none;
  }
}
