:root {
  --cream: #f7efd8;
  --muted: #d9c7aa;
  --orange: #ff641e;
  --pink: #ff238d;
  --cyan: #08aee1;
  --green: #62ff16;
  --paper: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% -8rem, rgba(8, 174, 225, .20), transparent 32rem),
    #080808;
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .8rem;
  width: 100%;
  padding: .7rem max(1rem, env(safe-area-inset-left));
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,.30);
}
.brand { width: 4.1rem; height: 4.1rem; display: block; }
.brand img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 5px 7px rgba(0,0,0,.35)); }
.partner-logo { width: 4.35rem; height: 3.65rem; object-fit: contain; filter: drop-shadow(0 5px 7px rgba(0,0,0,.35)); }
.header-copy p, .header-copy h1, .intro p, .intro h2, footer p { margin: 0; }
.header-copy { min-width: 0; }
.header-copy p { color: var(--muted); letter-spacing: .15em; text-transform: uppercase; font-size: .66rem; font-weight: 800; }
.header-copy h1 { overflow: hidden; margin-top: .08rem; font-size: 1.02rem; letter-spacing: -.025em; text-overflow: ellipsis; white-space: nowrap; }
.open-link { margin-top: 1rem; padding: .68rem .9rem; border: 1px solid rgba(247,239,216,.28); border-radius: 999px; background: rgba(247,239,216,.06); font-size: .76rem; font-weight: 800; text-decoration: none; }
.intro { min-height: 14rem; padding: 3rem 1.2rem 2.5rem; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.eyebrow { color: var(--green); letter-spacing: .16em; text-transform: uppercase; font-size: .67rem; font-weight: 900; }
.intro h2 { max-width: 12ch; margin-top: .62rem; font-size: clamp(2.5rem, 13vw, 5.2rem); font-weight: 950; line-height: .9; letter-spacing: -.06em; text-transform: uppercase; text-wrap: balance; }
.intro-note { margin-top: 1.1rem !important; color: var(--muted); font-size: .88rem; }
.ornament { margin-top: 1.35rem; display: flex; align-items: center; gap: .6rem; color: var(--pink); }
.ornament i { width: 2.7rem; height: 2px; display: block; background: currentColor; }
.menu-stack { width: min(100%, 58rem); margin: 0 auto; padding: 0 .72rem 3.5rem; }
.menu-page { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.20); border-radius: clamp(.5rem, 2vw, 1rem); background: var(--paper); box-shadow: 0 22px 65px rgba(0,0,0,.45); }
.menu-page img { width: 100%; height: auto; display: block; }
footer { padding: 1rem 1rem calc(3.5rem + env(safe-area-inset-bottom)); display: flex; flex-direction: column; align-items: center; gap: .6rem; color: var(--muted); text-align: center; }
.footer-brand { color: var(--cream); letter-spacing: .08em; font-size: 1.2rem; font-weight: 950; }
footer p { font-size: .86rem; }
footer a { margin-top: .35rem; color: var(--cyan); font-size: .8rem; font-weight: 800; text-underline-offset: .22rem; }
@media (min-width: 760px) {
  .site-header { padding-inline: 2rem; }
  .header-copy h1 { font-size: 1.25rem; }
  .open-link { padding-inline: 1.05rem; }
  .menu-stack { padding-inline: 1.5rem; }
}
@media (max-width: 390px) {
  .brand { width: 3.6rem; height: 3.6rem; }
  .partner-logo { width: 3.85rem; height: 3.25rem; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
