:root {
  --ink: #070507;
  --ink-soft: #100a0f;
  --panel: #160e14;
  --panel-2: #21131d;
  --cream: #f1e8d8;
  --muted: #bcb0b8;
  --line: rgba(241, 232, 216, 0.16);
  --plum: #6d3159;
  --plum-light: #a25a83;
  --wine: #6e1020;
  --red: #a91931;
  --ember: #f47a27;
  --gold: #ffc15d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --header: 78px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% -12%, rgba(109, 49, 89, 0.24), transparent 32rem),
    var(--ink);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header);
  border-bottom: 1px solid rgba(241, 232, 216, 0.12);
  background: rgba(7, 5, 7, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-row {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.site-nav > a:not(.button) {
  border-radius: 9px;
  color: #ddd3db;
  padding: 9px 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"]:not(.button) {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

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

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 2px;
  background: linear-gradient(100deg, var(--wine), var(--red), var(--plum));
  box-shadow: 0 12px 28px rgba(110, 16, 32, 0.3);
  color: #fff;
  cursor: pointer;
  padding: 13px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.button:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid rgba(241, 232, 216, 0.28);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  color: var(--cream);
}

.button-compact {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 10px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.actions-center {
  justify-content: center;
}

main {
  overflow: clip;
}

.section {
  padding-block: clamp(74px, 9vw, 124px);
}

.section-tight {
  padding-block: clamp(48px, 6vw, 82px);
}

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

.section-plum {
  background:
    radial-gradient(circle at 80% 20%, rgba(169, 25, 49, 0.15), transparent 30rem),
    linear-gradient(145deg, #11090f, #1a0d15 52%, #0b070a);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--plum-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.display,
.section-title,
.subhero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.display {
  font-size: clamp(52px, 10vw, 132px);
}

.section-title,
.subhero h1 {
  font-size: clamp(38px, 6vw, 74px);
}

.lead {
  max-width: 760px;
  color: #d2c6cf;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header));
  place-items: center;
  padding-block: clamp(54px, 8vw, 100px);
  background:
    radial-gradient(circle at 50% 64%, rgba(169, 25, 49, 0.22), transparent 28rem),
    linear-gradient(180deg, #050405, #0b070a);
  text-align: center;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(109, 16, 32, 0.12));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
}

.hero-logo {
  width: min(760px, 90vw);
  margin: clamp(16px, 3vw, 32px) auto 8px;
}

.hero-tagline {
  margin: 12px 0 26px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 4vw, 38px);
  font-style: italic;
}

.hero-copy {
  max-width: 790px;
  margin: 26px auto 0;
  color: #cabfc6;
  font-size: clamp(14px, 1.8vw, 18px);
}

.subhero {
  position: relative;
  display: grid;
  min-height: 440px;
  align-items: end;
  padding-block: 86px 74px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 5, 7, 0.98) 0%, rgba(7, 5, 7, 0.78) 52%, rgba(7, 5, 7, 0.45) 100%),
    var(--subhero-image, linear-gradient(135deg, #1e1019, #070507)) center/cover no-repeat;
}

.subhero .lead {
  margin: 22px 0 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #090709;
  box-shadow: var(--shadow);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-16x9 {
  aspect-ratio: 16 / 9;
}

.media-square {
  aspect-ratio: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 3vw, 38px);
  row-gap: clamp(34px, 4vw, 48px);
  margin-top: 42px;
}

.experience-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow:
    var(--shadow),
    0 18px 38px -24px rgba(179, 67, 176, 0.56),
    0 1px 0 rgba(220, 143, 204, 0.08) inset;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.experience-card:hover,
.experience-card:focus-visible {
  border-color: rgba(199, 111, 186, 0.38);
  box-shadow:
    var(--shadow),
    0 22px 46px -20px rgba(179, 67, 176, 0.72),
    0 1px 0 rgba(233, 174, 220, 0.14) inset;
  transform: translateY(-2px);
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover img {
  transform: scale(1.035);
}

.card-shade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  background: linear-gradient(180deg, transparent 28%, rgba(7, 5, 7, 0.94));
}

.card-shade h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
}

.card-shade p {
  max-width: 560px;
  margin: 10px 0 0;
  color: #d4c9d0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.feature {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(162, 90, 131, 0.13), transparent 16rem),
    var(--panel);
  padding: 26px;
}

.feature h2,
.feature h3,
.menu-panel h2,
.menu-panel h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

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

.feature a:not(.button) {
  color: #fff;
  font-weight: 800;
}

.icon-mark {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 17px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--wine), var(--red), var(--plum));
  font-size: 21px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ddd2da;
  padding: 8px 13px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.menu-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(22, 14, 20, 0.82);
  padding: clamp(24px, 4vw, 38px);
}

.menu-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.menu-panel li + li {
  margin-top: 9px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding-block: 15px;
  border-bottom: 1px solid rgba(241, 232, 216, 0.11);
}

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

.price-row strong {
  color: #fff;
}

.price-row span {
  color: var(--gold);
  font-weight: 900;
}

.glass-stage {
  position: relative;
  padding: clamp(28px, 6vw, 70px) clamp(16px, 3vw, 34px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 108%, rgba(255, 102, 0, 0.4), transparent 35%),
    linear-gradient(145deg, #080608, #1e0b13 58%, #080608);
  overflow: hidden;
}

.glass-fire {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 42%;
  object-fit: cover;
  opacity: 0.34;
  pointer-events: none;
  mix-blend-mode: screen;
}

.glass-board {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  margin-inline: auto;
  border: 4px solid rgba(227, 238, 255, 0.48);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.56),
    inset 12px 0 18px rgba(236, 242, 255, 0.12),
    inset -12px 0 18px rgba(91, 108, 157, 0.12),
    inset 0 14px 19px rgba(255, 255, 255, 0.11),
    inset 0 -15px 20px rgba(142, 162, 220, 0.11);
  padding: clamp(26px, 7vw, 70px);
  isolation: isolate;
}

.glass-board::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.07), transparent 32%, rgba(255, 255, 255, 0.025) 68%, transparent);
  pointer-events: none;
}

.glass-board .eyebrow,
.glass-board h2,
.glass-board h3,
.glass-board p,
.glass-board span {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.9), 0 1px 0 rgba(255, 255, 255, 0.35);
}

.special-title {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.special-note {
  margin: 0 0 26px;
  color: #c9bdc5;
}

.event-scene {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #090609;
  box-shadow: var(--shadow);
}

.event-scene > img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.event-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(24px, 6vw, 68px);
  background: linear-gradient(90deg, rgba(7, 5, 7, 0.92), rgba(7, 5, 7, 0.62) 56%, rgba(7, 5, 7, 0.12));
}

.event-copy {
  max-width: 640px;
}

.event-copy h1,
.event-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 500;
  line-height: 0.96;
}

.loyalty-card {
  position: relative;
  overflow: hidden;
  width: min(760px, 100%);
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(162, 90, 131, 0.26), transparent 34%),
    linear-gradient(145deg, var(--panel), var(--ink) 62%);
  box-shadow: var(--shadow);
}

.loyalty-topbar {
  height: 6px;
  background: linear-gradient(90deg, var(--plum), var(--red), var(--plum-light));
}

.loyalty-inner {
  padding: clamp(26px, 6vw, 48px);
}

.loyalty-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.field-full {
  grid-column: 1 / -1;
}

.loyalty-form label {
  display: block;
  margin-bottom: 7px;
  color: #cbbec6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loyalty-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(241, 232, 216, 0.18);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--cream);
  padding: 13px 14px;
}

.loyalty-form input:focus {
  border-color: var(--plum-light);
  outline: none;
  box-shadow: 0 0 0 4px rgba(162, 90, 131, 0.18);
}

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

.form-message {
  min-height: 24px;
  margin: 0;
  text-align: center;
  font-weight: 800;
}

.fineprint {
  color: #958990;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.hours-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(241, 232, 216, 0.1);
}

.hours-list strong {
  color: #fff;
}

.notice {
  border-left: 3px solid var(--plum-light);
  background: rgba(162, 90, 131, 0.08);
  color: #cfc2ca;
  padding: 16px 18px;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050405;
  padding-block: 58px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand img {
  width: 78px;
  margin-bottom: 15px;
}

.footer-title {
  margin: 0 0 13px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-copy {
  color: #b7abb3;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(241, 232, 216, 0.1);
  color: #8e8289;
  font-size: 11px;
}

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

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: none;
    max-height: calc(100svh - var(--header));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 5, 7, 0.985);
    padding: 18px 20px 28px;
  }

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

  .site-nav > a:not(.button) {
    padding: 13px 14px;
    font-size: 15px;
  }

  .site-nav .button {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

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

  .span-5,
  .span-6,
  .span-7 {
    grid-column: 1;
  }

  .card-grid,
  .menu-layout,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 310px;
    box-shadow:
      var(--shadow),
      0 16px 32px -24px rgba(179, 67, 176, 0.52),
      0 1px 0 rgba(220, 143, 204, 0.08) inset;
  }

  .experience-card:hover,
  .experience-card:focus-visible {
    transform: none;
  }

  .subhero {
    min-height: 390px;
    background:
      linear-gradient(180deg, rgba(7, 5, 7, 0.54), rgba(7, 5, 7, 0.97) 78%),
      var(--subhero-image, linear-gradient(135deg, #1e1019, #070507)) center/cover no-repeat;
  }

  .event-scene > img {
    min-height: 630px;
  }

  .event-overlay {
    align-items: end;
    background: linear-gradient(180deg, rgba(7, 5, 7, 0.1), rgba(7, 5, 7, 0.97) 62%);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --header: 70px;
  }

  .brand img {
    width: 38px;
  }

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

  .brand-copy small {
    display: none;
  }

  .home-hero {
    min-height: calc(100svh - var(--header));
  }

  .display {
    font-size: clamp(46px, 17vw, 78px);
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .actions .button {
    width: 100%;
  }

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

  .field-full {
    grid-column: auto;
  }

  .glass-board {
    padding: 34px 22px;
  }

  .hours-list li {
    display: grid;
    gap: 2px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 2026-08 visual and menu restoration */
.home-hero-cinematic {
  position: relative;
  display: flex;
  min-height: min(860px, calc(100svh - var(--header)));
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: #050405;
  text-align: left;
}

.home-hero-cinematic::after {
  display: none;
}

.hero-scene,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 3, 4, 0.95) 0%, rgba(4, 3, 4, 0.73) 43%, rgba(4, 3, 4, 0.22) 74%, rgba(4, 3, 4, 0.44) 100%),
    linear-gradient(180deg, rgba(4, 3, 4, 0.2), rgba(4, 3, 4, 0.1) 60%, rgba(4, 3, 4, 0.94));
}

.hero-cinematic-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 660px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 8vw, 118px) 0 150px;
}

.hero-title {
  display: grid;
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(74px, 9vw, 142px);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.8;
  text-transform: uppercase;
}

.hero-title-outline {
  color: transparent;
  font-size: 0.76em;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.92);
  text-stroke: 2px rgba(255, 255, 255, 0.92);
}

.hero-title-solid {
  font-weight: 800;
}

.home-hero-cinematic .hero-tagline {
  max-width: 660px;
  margin: 38px 0 24px;
  color: #f3e8db;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(20px, 2.4vw, 34px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.03em;
}

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

.hero-actions .button {
  min-width: 220px;
}

.hero-link-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 24px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(241, 232, 216, 0.15);
  background: rgba(7, 5, 7, 0.78);
  backdrop-filter: blur(14px);
}

.hero-link-rail a {
  padding: 20px 24px;
  border-right: 1px solid rgba(241, 232, 216, 0.12);
  text-align: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-link-rail a:last-child {
  border-right: 0;
}

.fire-glass-frame {
  overflow: hidden;
  border-color: rgba(222, 167, 208, 0.2);
  background:
    linear-gradient(145deg, rgba(4, 4, 4, 0.82), rgba(23, 8, 20, 0.62) 56%, rgba(2, 2, 2, 0.86)),
    #030203;
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.52),
    0 24px 58px -30px rgba(184, 69, 178, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(225, 138, 204, 0.08);
  isolation: isolate;
}

.fire-glass-frame::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 18% 8% 3%;
  border-radius: 18%;
  background:
    radial-gradient(ellipse at 50% 68%, rgba(198, 75, 190, 0.54), rgba(111, 31, 119, 0.22) 46%, transparent 73%);
  filter: blur(22px);
  opacity: 0.78;
  pointer-events: none;
}

.fire-glass-frame::after {
  content: attr(data-glass-word);
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.075);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(72px, 11vw, 150px);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-indent: 0.1em;
  text-shadow: 0 0 34px rgba(213, 120, 204, 0.16);
  pointer-events: none;
}

.fire-glass-frame video {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.about-subhero {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(7, 5, 7, 0.97), rgba(7, 5, 7, 0.72) 52%, rgba(7, 5, 7, 0.3)),
    var(--subhero-image) center 48% / cover no-repeat;
}

.brand-story-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(189, 101, 177, 0.26);
  border-radius: 28px;
  background: linear-gradient(145deg, #020202, #110812 72%, #020202);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.brand-story-glow {
  position: absolute;
  z-index: 0;
  inset: 38% 8% -14%;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(176, 67, 177, 0.54),
    rgba(113, 31, 119, 0.22) 46%,
    rgba(110, 16, 32, 0.08) 63%,
    transparent 74%);
  filter: blur(18px);
  pointer-events: none;
}

.brand-story-visual img {
  position: relative;
  z-index: 1;
  width: min(92%, 660px);
  margin: 28px auto 0;
}

.brand-story-visual p {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 22px;
  left: 28px;
  display: grid;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.brand-story-visual p span {
  color: var(--plum-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.brand-story-visual p strong {
  margin-top: 6px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: none;
}

.details-section {
  position: relative;
  background:
    radial-gradient(circle at 13% 50%, rgba(109, 49, 89, 0.22), transparent 28rem),
    #070507;
}

.about-details-media {
  aspect-ratio: 5 / 4;
}

.about-details-media img {
  object-position: center 44%;
}

.details-copy {
  position: relative;
}

.details-copy::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28px;
  width: 1px;
  background: linear-gradient(transparent, var(--plum-light), transparent);
}

.detail-line {
  margin: 24px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-downloads-section {
  padding-top: clamp(64px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 15%, rgba(109, 49, 89, 0.2), transparent 30rem),
    #0b080a;
}

.menu-downloads-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: end;
}

.menu-downloads-heading .lead {
  margin: 0;
}

.menu-download-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.menu-download-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(22, 14, 20, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.menu-download-card > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-bottom: 1px solid var(--line);
  object-fit: cover;
  object-position: top;
}

.menu-download-card > div {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
  padding: 19px;
}

.menu-download-card h3 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.menu-download-card p {
  flex: 1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.menu-download-card .button {
  width: 100%;
  min-height: 44px;
  padding: 11px 10px;
  font-size: 9px;
}

.menu-freshness-note {
  margin: 24px 0 0;
  color: #998d95;
  font-size: 12px;
  text-align: right;
}

.entree-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 22px;
  padding-left: 18px;
}

.entree-list li + li {
  margin-top: 0;
}

.entree-list small {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.glass-board {
  overflow: hidden;
}

.glass-board .glass-fire {
  z-index: 0;
  inset: auto 0 0;
  height: 46%;
  opacity: 0.38;
}

.glass-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 1050px) {
  .menu-download-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-hero-cinematic {
    min-height: calc(100svh - var(--header));
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(4, 3, 4, 0.28), rgba(4, 3, 4, 0.42) 42%, rgba(4, 3, 4, 0.94) 77%),
      linear-gradient(90deg, rgba(4, 3, 4, 0.56), rgba(4, 3, 4, 0.12));
  }

  .hero-scene img {
    object-position: center 48%;
  }

  .hero-cinematic-inner {
    min-height: calc(100svh - var(--header));
    justify-content: end;
    padding-bottom: 170px;
  }

  .hero-title {
    font-size: clamp(58px, 17vw, 104px);
    line-height: 0.82;
  }

  .hero-title-outline {
    -webkit-text-stroke-width: 1.4px;
  }

  .hero-link-rail {
    bottom: 14px;
  }

  .hero-link-rail a {
    padding: 15px 8px;
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .about-subhero {
    min-height: 480px;
    background:
      linear-gradient(180deg, rgba(7, 5, 7, 0.34), rgba(7, 5, 7, 0.96) 78%),
      var(--subhero-image) center / cover no-repeat;
  }

  .details-copy::before {
    display: none;
  }

  .menu-downloads-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

@media (max-width: 560px) {
  .hero-cinematic-inner {
    padding-top: 58px;
    padding-bottom: 142px;
  }

  .home-hero-cinematic .hero-tagline {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.35;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-link-rail {
    width: calc(100% - 20px);
  }

  .hero-link-rail a {
    padding: 13px 5px;
    font-size: 8px;
  }

  .brand-story-visual {
    min-height: 340px;
  }

  .brand-story-visual img {
    width: 100%;
    margin-top: 22px;
  }

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

  .menu-download-card {
    display: grid;
    grid-template-columns: 36% 64%;
  }

  .menu-download-card > img {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .menu-download-card > div {
    padding: 16px;
  }

  .menu-download-card h3 {
    font-size: 23px;
  }

  .menu-download-card p {
    margin: 6px 0 12px;
  }

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

  .glass-stage {
    padding-inline: 10px;
  }
}

/* 2026-08-05 refinement: crisp controls, layered glass, local copy, and About depth */
.home-seo-copy {
  max-width: 880px;
  margin: 36px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(241, 232, 216, 0.13);
  color: #bfb3bb;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.78;
}

.home-sushi-section {
  background:
    radial-gradient(circle at 16% 52%, rgba(109, 49, 89, 0.18), transparent 30rem),
    #070507;
}

.sushi-celebration-media {
  border-radius: 18px;
  background: #020202;
}

.sushi-celebration-media img {
  object-position: center 48%;
}

.glass-board .price-row > span {
  background: linear-gradient(120deg, #f5e3ef 8%, #d486b6 56%, #b85f98 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(198, 96, 166, 0.18);
}

.glass-board {
  border-color: rgba(211, 201, 217, 0.5);
  background:
    linear-gradient(145deg, rgba(13, 10, 13, 0.79), rgba(29, 13, 25, 0.74)),
    rgba(5, 4, 5, 0.82);
}

.glass-stage {
  background:
    radial-gradient(circle at 50% 105%, rgba(169, 60, 152, 0.28), transparent 38%),
    linear-gradient(145deg, #080608, #1b0b16 58%, #080608);
}

.glass-board .glass-fire {
  opacity: 0.22;
}

.about-prose > p:not(.eyebrow):not(.detail-line) {
  margin: 20px 0 0;
  color: #c9bdc5;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.78;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.mission-copy {
  padding-left: clamp(22px, 4vw, 52px);
  border-left: 1px solid rgba(221, 142, 201, 0.36);
}

.mission-copy p {
  margin: 0;
  color: #d7cbd3;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.72;
}

.mission-copy p + p {
  margin-top: 18px;
  color: #ad9fa8;
  font-size: clamp(14px, 1.6vw, 17px);
}

.about-section-heading {
  max-width: 880px;
}

.about-feature-grid {
  margin-top: 48px;
}

.about-feature-grid .feature {
  border-radius: 12px;
  padding: clamp(26px, 3vw, 34px);
}

.about-feature-grid .feature h3 {
  font-size: clamp(25px, 2.5vw, 32px);
  line-height: 1.12;
}

.about-feature-grid .feature p {
  line-height: 1.72;
}

.about-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.about-editorial-card {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(241, 232, 216, 0.15);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(162, 90, 131, 0.16), transparent 18rem),
    rgba(18, 11, 16, 0.84);
}

.about-editorial-card h2 {
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-editorial-card p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #c5b9c1;
  line-height: 1.76;
}

.about-editorial-card .text-link {
  margin-top: 26px;
}

.about-closing-section {
  background:
    radial-gradient(circle at 50% 100%, rgba(109, 49, 89, 0.18), transparent 28rem),
    #070507;
}

@media (max-width: 820px) {
  .card-grid {
    gap: 22px;
  }

  .mission-grid,
  .about-two-column {
    grid-template-columns: 1fr;
  }

  .mission-copy {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(221, 142, 201, 0.28);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .hero-title {
    letter-spacing: -0.045em;
  }

  .home-seo-copy {
    margin-top: 30px;
    padding-top: 24px;
    text-align: left;
  }

  .fire-glass-frame::after {
    font-size: clamp(58px, 21vw, 92px);
  }

  .about-editorial-card {
    padding: 28px 23px;
  }
}

/* Interactive homepage menu sphere */
.menu-sphere-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(126, 30, 72, 0.2), transparent 34rem),
    linear-gradient(180deg, #080608 0%, #0d090d 52%, #070507 100%);
}

.menu-sphere-section::before {
  content: "MITO";
  position: absolute;
  top: 48%;
  left: 50%;
  color: rgba(255, 255, 255, 0.018);
  font-size: clamp(120px, 23vw, 360px);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 0.8;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.menu-sphere-section .shell {
  position: relative;
  z-index: 1;
}

.menu-sphere-lead {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
}

.menu-sphere-frame {
  position: relative;
  width: min(100%, 1040px);
  height: clamp(610px, 67vw, 720px);
  margin: clamp(30px, 5vw, 52px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(241, 232, 216, 0.16);
  border-radius: 10px;
  background: rgba(4, 3, 5, 0.78);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.46),
    0 0 58px rgba(126, 30, 72, 0.12);
}

.menu-sphere-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.menu-sphere-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  color: #8f858c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 250ms ease;
}

.menu-sphere-placeholder img {
  width: 72px;
  height: 72px;
  opacity: 0.52;
}

.menu-sphere-frame.is-loaded .menu-sphere-placeholder {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  .menu-sphere-frame {
    height: 630px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .menu-sphere-section .shell {
    width: 100%;
  }

  .menu-sphere-section .eyebrow,
  .menu-sphere-section .section-title,
  .menu-sphere-lead {
    width: min(100% - 36px, 680px);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-sphere-placeholder { transition: none; }
}
