:root {
  color-scheme: dark;
  font-family: 'Manrope', Arial, sans-serif;
  --ink: #080907;
  --ink-soft: #10110f;
  --paper: #f0eadf;
  --muted: #aaa69d;
  --gold: #c99a45;
  --gold-bright: #e2ba70;
  --line: rgba(201, 154, 69, 0.42);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --gutter: clamp(1.4rem, 4vw, 4.8rem);
  --section-space: clamp(6rem, 11vw, 11rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; background: var(--ink); color: var(--paper); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 1.1rem var(--gutter);
  transition: background .35s ease, min-height .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(8, 9, 7, .92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; flex-direction: column; align-items: center; color: var(--gold-bright); line-height: 1; }
.brand span { font: 500 clamp(1.9rem, 3vw, 2.75rem)/.85 var(--serif); letter-spacing: .17em; }
.brand small { margin-top: .42rem; font-size: .54rem; letter-spacing: .33em; }

.site-nav { display: flex; align-items: center; gap: clamp(1.6rem, 3vw, 3.4rem); }
.site-nav > a:not(.button) { position: relative; font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.site-nav > a:not(.button)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -.5rem; height: 1px; background: var(--gold); transition: right .25s ease; }
.site-nav > a:not(.button):hover::after { right: 0; }
.site-nav > a.is-active:not(.button)::after { right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.55rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  background: rgba(8, 9, 7, .12);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}
.button:hover, .button:focus-visible { color: var(--ink); background: var(--gold-bright); outline: none; }
.button-small { min-width: 126px; min-height: 42px; }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 7px auto; background: var(--gold-bright); transition: transform .25s ease; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; border-bottom: 1px solid var(--line); }
.hero-image { position: absolute; inset: 0; z-index: -1; height: 100%; object-fit: cover; object-position: center; }
.hero-copy { width: min(750px, 86vw); margin: 0 0 clamp(5.5rem, 10vh, 8.5rem) var(--gutter); }
.hero h1 { margin: 0; font: 400 clamp(4.2rem, 8vw, 8rem)/.78 var(--serif); letter-spacing: -.045em; text-wrap: balance; }
.hero p { width: min(560px, 90%); margin: 2rem 0 0; font-size: clamp(.9rem, 1.15vw, 1.08rem); line-height: 1.75; color: #e2ded5; text-shadow: 0 2px 12px #000; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.1rem; }
.text-link { display: inline-flex; gap: .65rem; align-items: center; padding-block: .45rem; border-bottom: 1px solid var(--gold); font-size: .69rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue { position: absolute; right: var(--gutter); bottom: 3rem; width: 42px; height: 58px; border: 1px solid var(--line); }
.scroll-cue span { position: absolute; left: 50%; top: 13px; width: 1px; height: 22px; background: var(--gold); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: translate(-50%,0); opacity:.35; } 50% { transform: translate(-50%,9px); opacity:1; } }

.section { padding: var(--section-space) var(--gutter); }
.view-section { display: grid; grid-template-columns: minmax(260px, .66fr) minmax(0, 2fr); padding-right: 0; background: var(--ink-soft); border-bottom: 1px solid var(--line); }
.view-copy { align-self: center; max-width: 430px; padding-right: clamp(2rem, 5vw, 6rem); }
h2 { margin: 0; font: 400 clamp(3.8rem, 7vw, 7rem)/.88 var(--serif); letter-spacing: -.035em; }
.gold-rule { display: block; width: 52px; height: 1px; margin: 2rem 0; background: var(--gold); }
.view-copy p, .rooftop-copy p, .visit-intro p, .detail p { color: var(--muted); font-size: .88rem; line-height: 1.8; }
.view-media { margin: 0; min-height: 720px; position: relative; overflow: hidden; }
.view-media img { height: 100%; object-fit: cover; }
.view-media figcaption { position: absolute; right: 1.2rem; bottom: 1.2rem; padding: .7rem 1rem; background: rgba(8,9,7,.8); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }

.menu-section { border-bottom: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: clamp(3rem, 6vw, 6rem); }
.section-heading p { order: 2; margin: 0 0 .9rem; color: var(--gold-bright); font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; }
.dish-rail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 2rem); align-items: start; }
.dish { min-width: 0; overflow: hidden; }
.dish img { aspect-ratio: 4/3; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.dish:hover img { transform: scale(1.025); }
.dish-lift { margin-top: clamp(2rem, 5vw, 5rem); }
.dish > div { display: grid; grid-template-columns: 36px 1fr; align-items: start; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.dish span { color: var(--gold); font-size: .6rem; letter-spacing: .12em; }
.dish h3 { margin: 0; font: 400 clamp(1.7rem, 2.8vw, 3.1rem)/.95 var(--serif); }
.menu-link { margin-top: 4rem; }

.rooftop-section { position: relative; min-height: 92svh; display: flex; align-items: center; padding: var(--section-space) var(--gutter); border-bottom: 1px solid var(--line); isolation: isolate; }
.rooftop-section > img { position: absolute; inset: 0; z-index: -1; height: 100%; object-fit: cover; }
.rooftop-copy { width: min(480px, 88vw); padding: clamp(2.2rem, 4vw, 4.5rem); background: rgba(8, 9, 7, .92); border-left: 1px solid var(--gold); }
.rooftop-copy h2 { font-size: clamp(3.5rem, 6.1vw, 6.2rem); }
.rooftop-copy .button { margin-top: 1rem; }
.rooftop-hours { color: var(--paper) !important; font-size: .67rem !important; letter-spacing: .12em; text-transform: uppercase; }

.visit-section { display: grid; grid-template-columns: .75fr 2fr; gap: clamp(4rem, 8vw, 9rem); }
.visit-intro h2 { color: var(--gold-bright); }
.visit-intro p { max-width: 300px; margin-top: 2rem; }
.visit-details { display: grid; grid-template-columns: repeat(3, 1fr); }
.detail { min-height: 390px; padding: .2rem clamp(1.5rem, 3vw, 3.25rem); border-left: 1px solid var(--line); }
.detail-number { display: block; margin-bottom: 4rem; color: var(--gold); font: 400 1.35rem var(--serif); }
.detail h3 { margin: 0 0 1.5rem; color: var(--gold-bright); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; }
.detail .button { margin-top: 1.4rem; }

.site-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 3rem; padding: 2.5rem var(--gutter); border-top: 1px solid var(--line); }
.site-footer .brand span { font-size: 2rem; }
.footer-links { display: flex; justify-content: center; gap: 2.2rem; color: var(--muted); font-size: .66rem; letter-spacing: .08em; }
.site-footer p { margin: 0; color: #77766f; font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }

/* Menu page */
.menu-page { background: var(--ink); }
.menu-page-header { background: rgba(8, 9, 7, .9); border-color: var(--line); backdrop-filter: blur(16px); }
.menu-hero { min-height: 78svh; display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; padding: clamp(10rem, 18vh, 14rem) var(--gutter) clamp(5rem, 10vh, 8rem); border-bottom: 1px solid var(--line); }
.menu-hero-copy { max-width: 920px; }
.menu-hero h1 { margin: 0; font: 400 clamp(6rem, 14vw, 13rem)/.72 var(--serif); letter-spacing: -.055em; text-transform: lowercase; }
.menu-hero p { max-width: 620px; margin: 3rem 0 0; color: var(--muted); font-size: clamp(.92rem, 1.25vw, 1.08rem); line-height: 1.8; }
.menu-hero-note { align-self: flex-end; margin: 0 0 .8rem; color: var(--gold-bright) !important; font-size: .62rem !important; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; }

.featured-dish { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(380px, .85fr); min-height: 92svh; border-bottom: 1px solid var(--line); }
.featured-media { min-width: 0; margin: 0; overflow: hidden; }
.featured-media img { height: 100%; object-fit: cover; }
.featured-copy { align-self: center; min-width: 0; padding: clamp(3rem, 4.5vw, 6rem); }
.dish-index { color: var(--gold); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; }
.featured-copy h2 { margin-top: 2.2rem; }
.featured-copy h2 { font-size: clamp(3.8rem, 6vw, 6.4rem); }
.featured-copy p { color: var(--muted); font-size: .9rem; line-height: 1.85; }
.featured-note { margin-top: 2rem; color: var(--paper) !important; font: 400 1.5rem/1.3 var(--serif) !important; }

.menu-gallery { padding: var(--section-space) var(--gutter); border-bottom: 1px solid var(--line); }
.menu-gallery-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 4rem; margin-bottom: clamp(4rem, 9vw, 9rem); }
.menu-gallery-heading p { max-width: 360px; margin: 0 0 .8rem; color: var(--muted); font-size: .88rem; line-height: 1.8; }
.menu-dish-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(4rem, 8vw, 9rem) clamp(1.5rem, 4vw, 4rem); align-items: start; }
.menu-dish { min-width: 0; }
.menu-dish-offset { margin-top: clamp(3rem, 8vw, 8rem); }
.menu-dish img { aspect-ratio: 4/3; object-fit: cover; }
.menu-dish-copy { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.menu-dish-copy > span { color: var(--gold); font-size: .6rem; letter-spacing: .12em; }
.menu-dish h3 { max-width: 520px; margin: 0; font: 400 clamp(2rem, 4.5vw, 4.6rem)/.9 var(--serif); letter-spacing: -.025em; }
.menu-dish p { max-width: 430px; margin: 1.2rem 0 0; color: var(--muted); font-size: .82rem; line-height: 1.75; }

.menu-reserve { padding: var(--section-space) var(--gutter); text-align: center; }
.menu-reserve > p { margin: 0 0 2rem; color: var(--gold); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; }
.menu-reserve h2 { margin-inline: auto; }
.menu-reserve .button { margin-top: 3rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal-image { opacity: 0; clip-path: inset(0 0 16% 0); transform: translateY(24px); transition: opacity 1s ease, clip-path 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s ease; }
.reveal.is-visible, .reveal-image.is-visible { opacity: 1; transform: none; clip-path: inset(0); }

@media (max-width: 900px) {
  .site-header { min-height: 72px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded='true'] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 2rem; padding: 7rem 2rem; background: rgba(8,9,7,.98); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .3s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav > a:not(.button) { font: 400 2.2rem var(--serif); text-transform: none; letter-spacing: 0; }
  .hero-copy { margin-bottom: 6.5rem; }
  .scroll-cue { display: none; }
  .view-section { grid-template-columns: 1fr; padding-right: var(--gutter); }
  .view-copy { padding: 0 0 4rem; }
  .view-media { min-height: auto; aspect-ratio: 4/5; }
  .dish-rail { grid-template-columns: 1fr; gap: 4rem; }
  .dish-lift { margin-top: 0; }
  .dish img { aspect-ratio: 16/10; }
  .visit-section { grid-template-columns: 1fr; }
  .visit-details { grid-template-columns: 1fr; }
  .detail { min-height: 0; padding: 2.5rem 0; border-left: 0; border-top: 1px solid var(--line); }
  .detail-number { margin-bottom: 2rem; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; }
  .footer-links { flex-direction: column; justify-content: start; gap: .75rem; }
  .menu-hero { min-height: 70svh; display: block; }
  .menu-hero-note { margin-top: 3rem; }
  .featured-dish { grid-template-columns: 1fr; min-height: 0; }
  .featured-media { aspect-ratio: 4/3; }
  .featured-copy { padding: var(--section-space) var(--gutter); }
  .menu-gallery-heading { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { min-height: 92svh; }
  .hero-image { object-position: 62% center; }
  .hero h1 { font-size: clamp(3.45rem, 16vw, 5.25rem); }
  .hero p { font-size: .82rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.1rem; }
  .section-heading { display: block; }
  .section-heading p { margin-bottom: 1.2rem; }
  .dish img { aspect-ratio: 4/3; }
  .rooftop-section { display: block; min-height: 0; padding: 0; }
  .rooftop-section > img { position: relative; height: 72vw; object-position: 28% center; }
  .rooftop-copy { width: 100%; border-left: 0; border-top: 1px solid var(--gold); background: var(--ink-soft); }
  .menu-hero { min-height: 76svh; padding-top: 9rem; }
  .menu-hero h1 { font-size: clamp(5.3rem, 27vw, 8rem); }
  .menu-hero p { margin-top: 2rem; font-size: .84rem; }
  .featured-media { aspect-ratio: 1/1; }
  .menu-dish-grid { grid-template-columns: 1fr; gap: 5rem; }
  .menu-dish-offset { margin-top: 0; }
  .menu-gallery-heading { margin-bottom: 4.5rem; }
  .menu-dish h3 { font-size: clamp(2.6rem, 13vw, 4rem); }
}

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

@page {
  size: 1440px 9800px;
  margin: 0;
}

@media print {
  html,
  body {
    width: 1440px;
    margin: 0;
    background: var(--ink) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .site-header {
    position: absolute;
  }

  .hero {
    min-height: 900px;
  }

  .rooftop-section {
    min-height: 900px;
  }

  .reveal,
  .reveal-image {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}
