:root {
  --ink: #040403;
  --black: #080705;
  --black-2: #11100d;
  --smoke: #191612;
  --bone: #f3ebd6;
  --bone-2: #ded0ab;
  --gold: #c9a45a;
  --gold-2: #e4c676;
  --bronze: #7b5526;
  --green: #72785f;
  --red: #a76755;
  --line: rgba(243, 235, 214, .13);
  --line-dark: rgba(4, 4, 3, .14);
  --muted: rgba(243, 235, 214, .62);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Archivo", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--bone);
  background:
    radial-gradient(circle at 80% 5%, rgba(201, 164, 90, .18), transparent 34rem),
    linear-gradient(135deg, #030302 0%, #13100b 46%, #050403 100%);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .08;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .14) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 82px);
  mix-blend-mode: overlay;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

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

::selection {
  color: var(--ink);
  background: var(--gold-2);
}

.site-spine {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  width: 74px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  padding: 18px 0;
  border-right: 1px solid var(--line);
  background: rgba(4, 4, 3, .78);
  backdrop-filter: blur(18px);
}

.spine-logo {
  width: 72px;
  height: 72pxpx;
  overflow: hidden;
  border: 1px solid rgba(228, 198, 118, .28);
  background: var(--ink);
}

.spine-logo img,
.brand-lockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spine-nav {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.spine-nav a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(243, 235, 214, .45);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
}

.spine-nav a:hover,
.spine-nav a:focus-visible {
  color: var(--gold-2);
  transform: rotate(180deg) translateY(-3px);
}

.spine-socials {
  display: grid;
  gap: 10px;
}

.spine-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .04em;
  background: rgba(255, 255, 255, .035);
  transition: transform .25s ease, background .25s ease;
}

.spine-socials a:hover,
.spine-socials a:focus-visible {
  transform: translateY(-4px);
  background: rgba(228, 198, 118, .12);
}

.topbar {
  position: fixed;
  top: 0;
  left: 74px;
  right: 0;
  z-index: 55;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(4, 4, 3, .9), rgba(4, 4, 3, .58));
  backdrop-filter: blur(20px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-lockup img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(228, 198, 118, .22);
}

.brand-lockup strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: .85;
  letter-spacing: .02em;
}

.brand-lockup small {
  display: block;
  margin-top: 4px;
  color: var(--gold-2);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.open-status,
.nav-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  color: rgba(243, 235, 214, .72);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dbd6e;
  box-shadow: 0 0 18px rgba(125, 189, 110, .8);
}

.status-dot.closed {
  background: var(--red);
  box-shadow: 0 0 18px rgba(167, 103, 85, .7);
}

.nav-action.gold {
  color: var(--ink);
  border-color: transparent;
  background: var(--gold-2);
}

.nav-action:hover,
.nav-action:focus-visible {
  color: var(--ink);
  background: var(--bone);
}

.menu-trigger {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.menu-trigger span,
.menu-trigger::before,
.menu-trigger::after {
  content: "";
  width: 18px;
  height: 2px;
  display: block;
  background: var(--bone);
}

.menu-trigger {
  flex-direction: column;
  gap: 5px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 75% 15%, rgba(201, 164, 90, .18), transparent 24rem),
    var(--ink);
  transform: translateX(105%);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  font-size: 2rem;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
  width: min(480px, 100%);
}

.mobile-menu a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 13vw, 5.8rem);
  line-height: .86;
}

main,
footer {
  margin-left: 74px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 118px clamp(20px, 5vw, 84px) 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 28%, rgba(228, 198, 118, .22), transparent 18rem),
    linear-gradient(135deg, rgba(4, 4, 3, .96), rgba(17, 16, 13, .88) 52%, rgba(4, 4, 3, .72)),
    var(--ink);
}

.hero::before {
  content: "LOTFI'S";
  position: absolute;
  left: clamp(18px, 7vw, 120px);
  top: 92px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228, 198, 118, .13);
  font-family: var(--font-sans);
  font-size: clamp(6rem, 19vw, 21rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .75;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: 10vh;
  width: min(56vw, 820px);
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(228, 198, 118, .16);
  transform: rotate(-14deg);
  background:
    linear-gradient(135deg, rgba(228, 198, 118, .11), transparent 44%),
    radial-gradient(circle, rgba(4, 4, 3, .12), rgba(4, 4, 3, .85) 61%, transparent 62%);
}

.hero-noise {
  position: absolute;
  inset: 70px 0 0 0;
  pointer-events: none;
  opacity: .42;
  background:
    linear-gradient(115deg, transparent 0 45%, rgba(243, 235, 214, .08) 45% 45.15%, transparent 45.15%),
    repeating-linear-gradient(90deg, transparent 0 12vw, rgba(243, 235, 214, .06) 12vw calc(12vw + 1px));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  min-height: calc(100svh - 210px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero-title,
.section-head h2,
.booking-intro h2,
.review-copy h2,
.visit-copy h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .84;
}

.hero-title {
  max-width: 900px;
  margin-top: 22px;
  font-size: clamp(5rem, 14vw, 14.5rem);
}

.hero-lede {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(243, 235, 214, .72);
  font-size: clamp(1.05rem, 1.65vw, 1.34rem);
  line-height: 1.72;
}

.hero-actions,
.visit-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-105%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  transition: transform .65s cubic-bezier(.16, 1, .3, 1);
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(105%) skewX(-18deg);
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 20px 58px rgba(201, 164, 90, .26);
}

.button.secondary {
  color: var(--bone);
  border-color: var(--line);
  background: rgba(243, 235, 214, .055);
}

.button.dark {
  color: var(--bone);
  border-color: rgba(4, 4, 3, .28);
  background: var(--ink);
}

.hero-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  align-content: end;
  padding: 22px;
}

.stage-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(228, 198, 118, .26);
  background:
    linear-gradient(145deg, rgba(243, 235, 214, .1), rgba(243, 235, 214, .025)),
    var(--black);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .44);
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(243, 235, 214, .1);
}

.stage-frame::after {
  content: "";
  position: absolute;
  inset: auto -8% -28% 10%;
  height: 55%;
  background: radial-gradient(circle, rgba(228, 198, 118, .3), transparent 68%);
}

.stage-frame img {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(280px, 54%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(228, 198, 118, .2);
  transform: translate(-50%, -50%) rotate(-4deg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
  transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.stage-frame img.stage-photo {
  inset: 0;
  left: auto;
  top: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  opacity: .84;
  transform: none;
  filter: saturate(.92) contrast(1.04) brightness(.82);
}

.hero-stage:hover .stage-frame img {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.05);
}

.hero-stage:hover .stage-frame img.stage-photo {
  transform: scale(1.04);
}

.stage-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(122deg, transparent 0 38%, rgba(228, 198, 118, .4) 38% 38.25%, transparent 38.25%),
    linear-gradient(122deg, transparent 0 50%, rgba(243, 235, 214, .18) 50% 50.18%, transparent 50.18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 28px);
}

.stage-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: auto 0 0 auto;
  width: min(360px, 88%);
  padding: 24px;
  border: 1px solid rgba(228, 198, 118, .24);
  background: rgba(4, 4, 3, .78);
  backdrop-filter: blur(16px);
}

.stage-caption span {
  color: var(--gold-2);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.stage-caption strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  line-height: .88;
  letter-spacing: -.04em;
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-proof div {
  min-height: 116px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
}

.hero-proof span {
  color: rgba(243, 235, 214, .48);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-proof strong {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3.35rem);
  line-height: .9;
}

.booking-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .76fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: 102px clamp(20px, 5vw, 84px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(4, 4, 3, .96), rgba(25, 22, 18, .95) 54%, rgba(201, 164, 90, .14)),
    var(--black);
}

.booking-band::before {
  content: "";
  position: absolute;
  right: -10vw;
  top: -42%;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(228, 198, 118, .14);
  transform: rotate(23deg);
  background: radial-gradient(circle, rgba(228, 198, 118, .16), transparent 58%);
}

.booking-intro,
.booking-console,
.quick-row {
  position: relative;
  z-index: 1;
}

.booking-intro h2,
.section-head h2,
.review-copy h2,
.visit-copy h2,
.closing-cta h2 {
  margin-top: 18px;
  max-width: 980px;
  font-size: clamp(3.2rem, 8vw, 9rem);
}

.booking-intro p,
.visit-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(243, 235, 214, .66);
  font-size: 1.08rem;
  line-height: 1.75;
}

.booking-console {
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(228, 198, 118, .28);
  background:
    linear-gradient(150deg, rgba(243, 235, 214, .11), rgba(243, 235, 214, .025)),
    rgba(4, 4, 3, .66);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
  backdrop-filter: blur(16px);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.console-top span,
.console-top strong,
.booking-console label span,
.phone-line,
.quick-row button,
.menu-item button {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.console-top span,
.booking-console label span {
  color: rgba(243, 235, 214, .52);
}

.console-top strong,
.phone-line {
  color: var(--gold-2);
}

.field-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.booking-console label {
  display: grid;
  gap: 10px;
}

.booking-console select,
.booking-console input {
  width: 100%;
  height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(243, 235, 214, .2);
  border-radius: 0;
  outline: 0;
  color: var(--bone);
  background: rgba(255, 255, 255, .055);
  font-size: 1rem;
  font-weight: 500;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.booking-console input::placeholder {
  color: rgba(243, 235, 214, .34);
  font-weight: 400;
}

.booking-console option {
  color: var(--ink);
  background: var(--bone);
}

.booking-console select:focus,
.booking-console input:focus {
  border-color: rgba(228, 198, 118, .72);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 0 0 4px rgba(228, 198, 118, .1);
}

.booking-console .button {
  width: 100%;
  margin-top: 18px;
}

.phone-line {
  display: block;
  margin-top: 16px;
  text-align: center;
}

.quick-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 4px;
  background: rgba(243, 235, 214, .14);
}

.quick-row button {
  min-height: 82px;
  padding: 18px;
  color: var(--bone);
  background: rgba(255, 255, 255, .045);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.quick-row button:hover,
.quick-row button:focus-visible {
  color: var(--ink);
  background: var(--gold-2);
  transform: translateY(-5px);
}

.cut-menu,
.work-section,
.social-signal {
  padding: 112px clamp(20px, 5vw, 84px);
  background: var(--bone);
  color: var(--ink);
}

.cut-menu .eyebrow,
.work-section .eyebrow,
.social-signal .eyebrow {
  color: var(--bronze);
}

.section-head {
  display: grid;
  gap: 18px;
}

.menu-list {
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
}

.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 120px;
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  min-height: 150px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.menu-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateX(-100%);
  background:
    linear-gradient(90deg, var(--ink), var(--smoke)),
    var(--ink);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.menu-item > * {
  position: relative;
  z-index: 1;
}

.menu-item:hover::before,
.menu-item:focus-within::before {
  transform: translateX(0);
}

.menu-num {
  color: var(--bronze);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.menu-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6.6rem);
  line-height: .82;
  letter-spacing: -.055em;
}

.menu-item p {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(4, 4, 3, .62);
  line-height: 1.65;
}

.menu-item button {
  min-height: 48px;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  background: transparent;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.menu-item:hover,
.menu-item:focus-within {
  color: var(--bone);
}

.menu-item:hover .menu-num,
.menu-item:focus-within .menu-num {
  color: var(--gold-2);
}

.menu-item:hover p,
.menu-item:focus-within p {
  color: rgba(243, 235, 214, .62);
}

.menu-item:hover button,
.menu-item button:hover,
.menu-item button:focus-visible {
  color: var(--ink);
  border-color: transparent;
  background: var(--gold-2);
}

.work-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(201, 164, 90, .22), transparent 30rem),
    var(--bone);
}

.work-section::before {
  content: "WORK";
  position: absolute;
  right: -3vw;
  top: 76px;
  color: rgba(4, 4, 3, .045);
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .8;
}

.before-after-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  margin-top: 58px;
}

.ba-card {
  display: grid;
  grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
  min-height: 620px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 248, 231, .68);
  box-shadow: 0 34px 90px rgba(4, 4, 3, .12);
}

.ba-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .45fr);
}

.ba-card:nth-child(even) .ba-copy {
  order: 2;
}

.ba-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(140deg, rgba(4, 4, 3, .96), rgba(25, 22, 18, .94)),
    var(--ink);
  color: var(--bone);
}

.ba-copy span {
  color: var(--gold-2);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ba-copy h3 {
  max-width: 360px;
  margin: auto 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7.2rem);
  line-height: .82;
  letter-spacing: -.055em;
}

.ba-copy p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(243, 235, 214, .64);
  line-height: 1.7;
}

.ba-media {
  --split: 50%;
  position: relative;
  min-height: 620px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--ink);
}

.ba-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  filter: saturate(.96) contrast(1.03);
}

.ba-media > img,
.ba-before {
  position: absolute;
  inset: 0;
}

.ba-before {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  z-index: 2;
}

.ba-label {
  position: absolute;
  z-index: 5;
  top: 18px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--bone);
  border: 1px solid rgba(243, 235, 214, .18);
  background: rgba(4, 4, 3, .66);
  backdrop-filter: blur(12px);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ba-label.before {
  left: 18px;
}

.ba-label.after {
  right: 18px;
  color: var(--ink);
  background: var(--gold-2);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 6;
  width: 2px;
  transform: translateX(-1px);
  background: var(--gold-2);
  box-shadow: 0 0 24px rgba(228, 198, 118, .55);
}

.ba-handle {
  position: absolute;
  left: var(--split);
  top: 50%;
  z-index: 7;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(4, 4, 3, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .36);
  cursor: ew-resize;
}

.ba-handle::before,
.ba-handle::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.ba-handle::before {
  border-right: 9px solid var(--ink);
}

.ba-handle::after {
  border-left: 9px solid var(--ink);
}

.gallery-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 1px;
  margin-top: 34px;
  background: var(--line-dark);
}

.gallery-strip figure {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.gallery-strip figure:nth-child(2) {
  min-height: 360px;
  align-self: end;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04) brightness(.86);
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .7s ease;
}

.gallery-strip figure:hover img {
  transform: scale(1.055);
  filter: saturate(1.02) contrast(1.02) brightness(.96);
}

.gallery-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--gold-2);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.review-theatre {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  padding: 112px clamp(20px, 5vw, 84px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(114, 120, 95, .18), transparent 32rem),
    var(--black);
}

.review-score {
  position: sticky;
  top: 96px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(228, 198, 118, .22);
  background:
    linear-gradient(160deg, rgba(243, 235, 214, .1), rgba(243, 235, 214, .025)),
    rgba(255, 255, 255, .03);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .36);
}

.review-score::after {
  content: "4.8";
  position: absolute;
  right: -32px;
  bottom: -60px;
  color: rgba(228, 198, 118, .12);
  font-family: var(--font-display);
  font-size: clamp(13rem, 23vw, 25rem);
  line-height: .78;
}

.review-score span {
  position: relative;
  z-index: 1;
  color: var(--gold-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.review-score strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(7rem, 13vw, 14rem);
  line-height: .78;
  letter-spacing: -.08em;
}

.review-score p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  color: rgba(243, 235, 214, .66);
  line-height: 1.7;
}

.review-grid {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.review-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.review-card:nth-child(2) {
  margin-left: 7%;
}

.review-card:nth-child(3) {
  margin-left: 14%;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 198, 118, .35);
  background: rgba(228, 198, 118, .08);
}

.review-card span {
  color: var(--gold-2);
  letter-spacing: .22em;
}

.review-card blockquote {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 4rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.review-card cite {
  display: block;
  margin-top: 18px;
  color: rgba(243, 235, 214, .48);
  font-size: .68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(260px, .74fr);
  gap: 1px;
  margin-top: 58px;
  background: var(--line-dark);
}

.signal-card,
.signal-poster {
  min-height: 460px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  background: #fff8e7;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  background:
    linear-gradient(145deg, rgba(4, 4, 3, .96), rgba(25, 22, 18, .94)),
    var(--ink);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.signal-card:hover::before,
.signal-card:focus-visible::before {
  transform: translateY(0);
}

.signal-card::after {
  content: attr(data-mark);
  position: absolute;
  left: 26px;
  top: 22px;
  color: rgba(4, 4, 3, .06);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 900;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.signal-card span,
.signal-card strong,
.signal-card small {
  position: relative;
  z-index: 1;
}

.signal-card span {
  color: var(--bronze);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: .85;
  letter-spacing: -.055em;
}

.signal-card small {
  display: block;
  max-width: 370px;
  margin-top: 16px;
  color: rgba(4, 4, 3, .6);
  font-size: .98rem;
  line-height: 1.6;
}

.signal-card:hover,
.signal-card:focus-visible {
  color: var(--bone);
}

.signal-card:hover span,
.signal-card:focus-visible span {
  color: var(--gold-2);
}

.signal-card:hover small,
.signal-card:focus-visible small {
  color: rgba(243, 235, 214, .62);
}

.signal-poster {
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle, rgba(228, 198, 118, .2), transparent 58%),
    var(--ink);
}

.signal-poster img {
  width: min(260px, 70%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(228, 198, 118, .24);
  transform: rotate(-5deg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  padding: 112px clamp(20px, 5vw, 84px);
  background:
    linear-gradient(135deg, rgba(114, 120, 95, .14), transparent 42%),
    var(--black);
}

.visit-copy {
  position: sticky;
  top: 98px;
}

.visit-board {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 32px 86px rgba(0, 0, 0, .32);
}

.hours-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  color: rgba(243, 235, 214, .68);
  background: rgba(4, 4, 3, .82);
}

.hours-list span {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hours-list strong {
  color: var(--bone);
}

.hours-list li.today {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.hours-list li.today strong {
  color: var(--ink);
}

.visit-board iframe {
  width: 100%;
  min-height: 420px;
  display: block;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(.78);
}

.closing-cta {
  padding: 130px clamp(20px, 5vw, 84px);
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0, rgba(201, 164, 90, .28), transparent 34rem),
    var(--bone);
}

.closing-cta .eyebrow {
  justify-content: center;
  color: var(--bronze);
}

.closing-cta .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.closing-cta h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

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

footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 42px clamp(20px, 5vw, 84px) 112px;
  border-top: 1px solid var(--line);
  color: rgba(243, 235, 214, .55);
  background: var(--ink);
}

footer strong {
  color: var(--bone);
}

footer a {
  color: var(--gold-2);
}

.booking-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 54;
  display: flex;
  align-items: center;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(228, 198, 118, .28);
  background: rgba(4, 4, 3, .78);
  box-shadow: 0 24px 74px rgba(0, 0, 0, .44);
  backdrop-filter: blur(18px);
}

.booking-dock span,
.booking-dock a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.booking-dock span {
  color: rgba(243, 235, 214, .62);
}

.booking-dock a {
  color: var(--ink);
  background: var(--gold-2);
}

.booking-dock a:last-child {
  color: var(--bone);
  background: rgba(255, 255, 255, .075);
}

.booking-dock a:hover,
.booking-dock a:focus-visible {
  color: var(--ink);
  background: var(--bone);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-parallax] {
  will-change: transform;
}

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

/* ── Desktop: spine already shows the logo, hide duplicate in topbar ── */
@media (min-width: 821px) {
  .brand-lockup img {
    display: none;
  }

  .brand-lockup {
    gap: 0;
    padding-left: 16px;
    border-left: 2px solid rgba(228, 198, 118, .36);
  }
}

@media (max-width: 1180px) {
  .hero-inner,
  .booking-band,
  .review-theatre,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 480px;
  }

  .review-score,
  .visit-copy {
    position: relative;
    top: auto;
  }

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

  .signal-card,
  .signal-poster {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .site-spine {
    display: none;
  }

  .topbar {
    left: 0;
    height: 64px;
    padding: 0 14px;
  }

  .open-status,
  .top-actions .nav-action {
    display: none;
  }

  .menu-trigger {
    display: flex;
  }

  main,
  footer {
    margin-left: 0;
  }

  .hero,
  .booking-band,
  .cut-menu,
  .review-theatre,
  .social-signal,
  .visit-section,
  .closing-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(4.3rem, 21vw, 8rem);
  }

  .hero-stage {
    min-height: 390px;
    padding: 14px;
  }

  .stage-caption {
    width: 100%;
  }

  .hero-proof,
  .quick-row {
    grid-template-columns: 1fr;
  }

  .booking-intro h2,
  .section-head h2,
  .review-copy h2,
  .visit-copy h2,
  .closing-cta h2 {
    font-size: clamp(3.2rem, 16vw, 6.6rem);
  }

  .console-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions,
  .visit-actions,
  .closing-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding: 28px 0;
  }

  .menu-item h3 {
    font-size: clamp(3rem, 15vw, 5.8rem);
  }

  .menu-item button {
    width: 100%;
  }

  .review-card:nth-child(2),
  .review-card:nth-child(3) {
    margin-left: 0;
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  footer {
    flex-direction: column;
    padding-bottom: 112px;
  }

  .booking-dock {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .booking-dock span {
    display: none;
  }

  .booking-dock a {
    min-height: 54px;
  }
}
