:root {
  --black: #171717;
  --black-soft: #211b18;
  --oxblood: #7d1e24;
  --cream: #f1e2c3;
  --mustard: #d39a27;
  --steel: #a6a39b;
  --white: #fffaf0;
  --line: rgba(241, 226, 195, .2);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: .5rem;
  left: .5rem;
  padding: .75rem 1rem;
  color: var(--black);
  background: var(--cream);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  background: linear-gradient(to bottom, rgba(0,0,0,.86), rgba(0,0,0,.3), transparent);
  transition: background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.inner-page .site-header {
  background: rgba(23, 23, 23, .96);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 185px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 3vw, 3.2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  font-weight: 800;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 2px;
  background: var(--mustard);
  transition: right .25s ease;
}
.nav-list a:hover::after,
.nav-list a.active::after { right: 0; }
.nav-cta {
  border: 1px solid var(--mustard);
  padding: .65rem 1rem;
}
.nav-list .nav-cta::after { display: none; }
.nav-cta:hover { background: var(--mustard); color: var(--black); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.open span { opacity: 0; }
.menu-toggle.open::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  isolation: isolate;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(23, 23, 23, .35);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(23,23,23,.92));
}
.hero-content {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto clamp(3rem, 8vw, 7rem);
}
.eyebrow {
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  color: var(--mustard);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 900;
}
.eyebrow::before { content: ""; width: 2.5rem; height: 2px; background: currentColor; }
.hero h1,
.page-hero h1,
.display-title {
  margin: .65rem 0 1.25rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(4.3rem, 12vw, 10.5rem);
  line-height: .82;
  font-weight: 900;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero h1 span { display: block; color: var(--mustard); }
.hero-lead {
  max-width: 630px;
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--white);
}
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  border: 1px solid var(--mustard);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn-primary { color: var(--black); background: var(--mustard); }
.btn-secondary { color: var(--cream); background: rgba(23,23,23,.35); border-color: var(--cream); }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { background: var(--cream); }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 4vw, 4.5rem); }
.section-inner { width: min(1180px, 100%); margin: 0 auto; }
.section-dark { background: #101010; }
.section-cream { color: var(--black); background: var(--cream); }
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.section-header h2,
.story-copy h2,
.contact-panel h2 {
  max-width: 780px;
  margin: .5rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: .9;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.section-header p { max-width: 430px; margin: 0; color: var(--steel); }
.section-cream .section-header p { color: #534b40; }

.intro-grid,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.editorial-image { position: relative; min-height: 520px; overflow: hidden; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.editorial-image::after {
  content: "NEW YORK · 1982";
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .8rem 1rem;
  color: var(--black);
  background: var(--mustard);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.intro-copy { max-width: 520px; }
.intro-copy .big-copy {
  margin: .7rem 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .92;
  text-transform: uppercase;
}
.intro-copy p { color: #50483c; }
.ticket {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  border-block: 1px dashed rgba(23,23,23,.35);
}
.ticket div { padding: 1.1rem .7rem; border-right: 1px dashed rgba(23,23,23,.35); }
.ticket div:last-child { border-right: 0; }
.ticket b { display: block; color: var(--oxblood); font-family: var(--display); font-size: 1.55rem; line-height: 1; }
.ticket span { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }

.portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.portal-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2rem;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}
.portal-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.portal-card::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(transparent 25%, rgba(0,0,0,.92)); }
.portal-card:hover img { transform: scale(1.04); }
.portal-number { color: var(--mustard); font-weight: 900; letter-spacing: .1em; }
.portal-card h3 { margin: .25rem 0 .5rem; font-family: var(--display); font-size: 2.5rem; line-height: 1; text-transform: uppercase; }
.portal-card p { margin: 0; color: #ddd2be; }

.manifesto {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 5rem 1.25rem;
  text-align: center;
  background: var(--oxblood);
}
.manifesto p {
  max-width: 1000px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: .9;
  text-transform: uppercase;
}
.manifesto em { color: var(--mustard); font-style: normal; }

.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: end;
  padding: 10rem clamp(1.25rem, 4vw, 4.5rem) 4rem;
  overflow: hidden;
  isolation: isolate;
  background: #0c0c0c;
}
.page-hero::after {
  content: attr(data-code);
  position: absolute;
  z-index: -1;
  right: -1vw;
  bottom: -5vw;
  color: rgba(211,154,39,.08);
  font-family: var(--display);
  font-size: clamp(14rem, 40vw, 37rem);
  line-height: .75;
}
.page-hero-content { width: min(1180px, 100%); margin: 0 auto; }
.page-hero h1 { font-size: clamp(4.5rem, 14vw, 11rem); }
.page-hero p { max-width: 620px; margin: 0; color: var(--steel); font-size: 1.1rem; }

.burger-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.burger-card { position: relative; background: #0d0d0d; overflow: hidden; cursor: pointer; }
.burger-card:focus-visible { z-index: 2; outline: 3px solid var(--mustard); outline-offset: -3px; }
.burger-card figure { position: relative; margin: 0; }
.burger-card img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.burger-card:hover img { transform: scale(1.025); filter: brightness(1.08); }
.play-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  padding-left: .18rem;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  color: var(--black);
  background: var(--mustard);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  font-size: 1rem;
  transition: transform .25s ease, background .25s ease;
}
.burger-card:hover .play-badge,
.burger-card:focus-visible .play-badge { transform: scale(1.1); background: var(--cream); }
.burger-info { min-height: 145px; display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.25rem; }
.burger-num { color: var(--mustard); font-family: var(--display); font-size: 2rem; line-height: 1; }
.burger-info h2 { margin: 0 0 .25rem; color: var(--cream); font-family: var(--display); font-size: 1.65rem; line-height: 1; text-transform: uppercase; }
.burger-info p { margin: 0; color: var(--steel); font-size: .92rem; }
.burger-price {
  display: inline-flex;
  align-items: center;
  margin-top: .85rem;
  padding: .38rem .62rem;
  border-left: 4px solid var(--oxblood);
  color: var(--black);
  background: var(--mustard);
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: .035em;
  box-shadow: 4px 4px 0 rgba(125,30,36,.55);
}
.flagship { outline: 2px solid var(--mustard); outline-offset: -2px; }
.flagship-badge { position: absolute; top: 1rem; right: 1rem; z-index: 2; padding: .45rem .65rem; color: var(--black); background: var(--mustard); font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.menu-note { margin-top: 2rem; padding: 1.25rem; border: 1px solid var(--line); color: var(--steel); font-size: .9rem; }

.video-dialog {
  width: min(900px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(211,154,39,.7);
  color: var(--cream);
  background: #090909;
  box-shadow: 0 30px 90px rgba(0,0,0,.75);
  overflow: hidden;
}
.video-dialog::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(7px); }
.video-dialog-bar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem .85rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.video-dialog-bar span { color: var(--mustard); font-size: .68rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.video-dialog-bar h2 { margin: .05rem 0 0; font-family: var(--display); font-size: clamp(1.5rem,4vw,2.5rem); line-height: 1; text-transform: uppercase; }
.video-close {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--cream);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.video-close:hover, .video-close:focus-visible { color: var(--black); background: var(--mustard); outline: none; }
.video-dialog video { width: 100%; max-height: calc(100svh - 110px); aspect-ratio: 5 / 4; object-fit: contain; background: #000; }
body.modal-open { overflow: hidden; }

.story-hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: end;
  padding: 10rem clamp(1.25rem, 4vw, 4.5rem) 5rem;
  isolation: isolate;
  background: url('assets/exterior.webp') center/cover no-repeat;
}
.story-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.2)), rgba(23,23,23,.35); }
.story-hero-content { width: min(1180px,100%); margin: 0 auto; }
.story-hero h1 { max-width: 900px; margin: .5rem 0 1rem; font-family: var(--display); font-size: clamp(4rem, 11vw, 9rem); line-height: .86; text-transform: uppercase; }
.story-hero p { max-width: 580px; font-size: 1.08rem; }
.story-copy p { color: #574f42; font-size: 1.06rem; }
.story-copy .lead { color: var(--black); font-size: 1.3rem; font-weight: 700; }
.story-grid .editorial-image { min-height: 650px; }
.timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.timeline article { min-height: 330px; padding: clamp(2rem, 5vw, 4rem); background: #101010; }
.timeline time { color: var(--mustard); font-family: var(--display); font-size: clamp(4rem, 8vw, 7rem); line-height: 1; }
.timeline h2 { margin: 1rem 0 .5rem; font-family: var(--display); font-size: 2rem; text-transform: uppercase; }
.timeline p { max-width: 520px; color: var(--steel); }

.contact-grid { align-items: start; }
.contact-panel { padding: clamp(2rem, 5vw, 4rem); color: var(--black); background: var(--cream); }
.contact-list { margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(23,23,23,.2); }
.contact-list li { padding: 1.1rem 0; border-bottom: 1px solid rgba(23,23,23,.2); }
.contact-list span { display: block; color: var(--oxblood); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-list a, .contact-list address { font-style: normal; font-size: 1.08rem; text-decoration: none; }
.reservation-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; padding-top: .5rem; }
.field { display: grid; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--cream); font-size: .78rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(241,226,195,.35);
  border-radius: 0;
  padding: .8rem;
  color: var(--cream);
  background: #101010;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--mustard); outline-offset: 2px; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--steel); font-size: .85rem; }
.form-status { grid-column: 1 / -1; min-height: 1.5rem; color: var(--mustard); font-weight: 700; }
.hours { margin-top: 2rem; border: 1px solid var(--line); }
.hours div { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 1rem; border-bottom: 1px solid var(--line); }
.hours div:last-child { border-bottom: 0; }
.hours span:last-child { color: var(--steel); }

.site-footer { padding: 3rem clamp(1.25rem,4vw,4.5rem); border-top: 1px solid var(--line); background: #0a0a0a; }
.footer-inner { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
.footer-brand img { width: 190px; height: 72px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 360px; margin: .5rem 0; color: var(--steel); }
.footer-col h2 { margin: .5rem 0 1rem; color: var(--mustard); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; margin: .45rem 0; color: var(--cream); text-decoration: none; }
.footer-bottom { width: min(1180px,100%); margin: 2rem auto 0; padding-top: 1.2rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; color: var(--steel); font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 72px; padding-inline: 1rem; }
  .brand img { width: 145px; height: 54px; }
  .menu-toggle { display: block; }
  .nav-list {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: rgba(23,23,23,.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list a { display: block; padding: 1rem; font-size: 1rem; }
  .nav-list a::after { display: none; }
  .nav-cta { margin-top: .5rem; }
  .intro-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .portal-card { min-height: 380px; }
  .burger-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-grid .editorial-image, .editorial-image { min-height: 500px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .hero-content { width: calc(100% - 2rem); }
  .hero h1 { font-size: clamp(4rem, 20vw, 6rem); }
  .hero-lead { max-width: 92%; }
  .button-row .btn { width: 100%; }
  .section { padding-inline: 1rem; }
  .section-header { display: block; }
  .section-header p { margin-top: 1rem; }
  .editorial-image { min-height: 420px; }
  .ticket { grid-template-columns: 1fr; }
  .ticket div { border-right: 0; border-bottom: 1px dashed rgba(23,23,23,.35); }
  .ticket div:last-child { border-bottom: 0; }
  .burger-grid { grid-template-columns: 1fr; }
  .burger-info { min-height: auto; }
  .video-dialog { width: calc(100% - 1rem); max-height: calc(100svh - 1rem); }
  .video-dialog-bar { min-height: 64px; }
  .video-dialog video { max-height: calc(100svh - 80px); }
  .timeline { grid-template-columns: 1fr; }
  .reservation-form { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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