:root {
  --black: #050403;
  --black-soft: #0b0907;
  --panel: #100d09;
  --gold: #bd7f21;
  --gold-light: #e2b15c;
  --gold-dark: #6d430c;
  --cream: #f2e8d8;
  --white: #faf7f0;
  --muted: #b9ad9b;
  --header-height: 168px;
  --content-width: 820px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 10px);
  background: var(--black);
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0, rgba(189,127,33,.09), transparent 29rem),
    repeating-linear-gradient(135deg, rgba(255,255,255,.012) 0 1px, transparent 1px 4px),
    var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.drawer-open,
body.viewer-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-220%);
  padding: .75rem 1rem;
  color: #100b04;
  background: var(--gold-light);
  border-radius: .6rem;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--cream);
  background: rgba(5,4,3,.94);
  border-bottom: 1px solid rgba(189,127,33,.52);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.brand-row {
  height: 100px;
  max-width: 1180px;
  margin: 0 auto;
  padding: max(.25rem, env(safe-area-inset-top)) .85rem .15rem;
  display: grid;
  grid-template-columns: 46px 1fr 54px;
  align-items: center;
}
.brand {
  justify-self: center;
  width: 108px;
  height: 96px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand img {
  width: auto;
  max-width: none;
  height: 94px;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.8));
}
.menu-toggle,
.header-review,
.drawer-close,
.back-to-top {
  border: 0;
  color: var(--gold-light);
  background: transparent;
}
.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 11px 8px;
  display: grid;
  align-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-review {
  justify-self: end;
  min-width: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  text-decoration: none;
  font-size: 1.2rem;
}
.header-review-text { display: none; }

.header-quote {
  min-height: 40px;
  margin: 0;
  padding: .42rem .9rem;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border-top: 1px solid rgba(189,127,33,.23);
  border-bottom: 1px solid rgba(189,127,33,.23);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.69rem, 3vw, .82rem);
  line-height: 1.25;
  letter-spacing: .02em;
  text-align: center;
  text-wrap: balance;
}
.quick-nav {
  max-width: 650px;
  height: 56px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.quick-nav a {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  color: var(--cream);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: clamp(.68rem, 2.7vw, .79rem);
}
.quick-nav a + a { border-left: 1px solid rgba(189,127,33,.2); }
.quick-nav svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quick-nav a::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transition: transform .3s ease;
}
.quick-nav a.active { color: var(--gold-light); }
.quick-nav a.active::after { transform: scaleX(1); }

.mobile-drawer {
  position: fixed;
  z-index: 200;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer.open { visibility: visible; pointer-events: auto; }
.drawer-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0,0,0,.72);
  transition: opacity .3s ease;
}
.mobile-drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(84vw, 350px);
  padding: max(2rem, env(safe-area-inset-top)) 1.4rem calc(2rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: .15rem;
  overflow-y: auto;
  background: #080705;
  border-right: 1px solid var(--gold-dark);
  transform: translateX(-103%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel img { width: 150px; margin: .25rem auto 1rem; }
.drawer-panel a {
  padding: .92rem .75rem;
  border-bottom: 1px solid rgba(189,127,33,.18);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .98rem;
}
.drawer-close {
  position: absolute;
  right: .8rem;
  top: max(.65rem, env(safe-area-inset-top));
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
}

.home {
  position: relative;
  border-bottom: 1px solid rgba(189,127,33,.22);
}
.hero-photo {
  position: relative;
  min-height: min(72svh, 760px);
  isolation: isolate;
  overflow: hidden;
  background: #090705;
}
.hero-photo picture,
.hero-photo img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-photo img {
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.015);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.08) 42%, rgba(0,0,0,.72) 78%, #050403 100%),
    linear-gradient(to right, rgba(0,0,0,.25), transparent 62%);
}
.hero-photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: .75rem;
  border: 1px solid rgba(226,177,92,.45);
  border-radius: var(--radius);
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.45rem;
  width: min(calc(100% - 2rem), 680px);
  margin: 0 auto;
  text-align: center;
}
.eyebrow,
.chapter {
  margin: 0 0 .42rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .68rem;
  font-weight: 800;
}
h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .025em;
}
h1 {
  max-width: 680px;
  margin: 0 auto 1rem;
  font-size: clamp(1.9rem, 8vw, 4.4rem);
  line-height: 1;
  text-shadow: 0 4px 24px #000;
  text-wrap: balance;
}
.primary-button,
.secondary-button {
  min-height: 50px;
  padding: .86rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .085em;
  font-size: .76rem;
  font-weight: 850;
  transition: transform .2s ease, border-color .2s ease, filter .2s ease;
}
.primary-button {
  color: #130d05;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 9px 32px rgba(189,127,33,.19);
}
.secondary-button {
  color: var(--cream);
  border: 1px solid rgba(226,177,92,.62);
  background: rgba(0,0,0,.38);
}
.primary-button:active,
.secondary-button:active,
.social-card:active { transform: scale(.98); }

.home-actions {
  width: min(calc(100% - 1.5rem), 720px);
  margin: 0 auto;
  padding: 1rem 0 2.35rem;
  display: grid;
  gap: .7rem;
}
.social-card {
  min-height: 82px;
  padding: .82rem .9rem;
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) 20px;
  gap: .72rem;
  align-items: center;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(189,127,33,.7);
  border-radius: 15px;
  background: linear-gradient(120deg, rgba(0,0,0,.88), rgba(28,19,8,.76));
  box-shadow: inset 0 0 24px rgba(189,127,33,.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.social-icon {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(189,127,33,.7);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}
.social-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.social-card strong {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .96rem;
}
.social-card small {
  display: block;
  margin-top: .12rem;
  color: #d9d1c5;
  font-size: .75rem;
  line-height: 1.35;
}
.social-card .arrow {
  color: var(--gold-light);
  font-size: 1.9rem;
  font-weight: 200;
}

.menu-section {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 10px);
  padding: 3.6rem .5rem 4.4rem;
  border-bottom: 1px solid rgba(189,127,33,.2);
  content-visibility: auto;
  contain-intrinsic-size: auto 1800px;
}
.menu-section::before {
  content: "";
  position: absolute;
  width: min(92vw, 680px);
  aspect-ratio: 1;
  left: 50%;
  top: 4%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(189,127,33,.085), transparent 68%);
  pointer-events: none;
}
.section-intro {
  position: relative;
  width: min(calc(100% - 1rem), var(--content-width));
  margin: 0 auto 1.25rem;
  text-align: center;
}
.section-intro h2 {
  color: var(--gold-light);
  font-size: clamp(2.05rem, 9vw, 4.6rem);
  line-height: 1;
}
.section-intro > p:last-child {
  max-width: 550px;
  margin: .68rem auto 0;
  color: var(--muted);
  font-size: .82rem;
}
.menu-poster {
  position: relative;
  width: min(100%, 700px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(189,127,33,.66);
  border-radius: 9px;
  background: #050505;
  box-shadow: 0 24px 65px rgba(0,0,0,.52);
  cursor: zoom-in;
}
.menu-poster-wide { width: min(100%, 820px); }
.menu-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(226,177,92,.09), inset 0 0 42px rgba(0,0,0,.22);
}
.menu-poster picture,
.menu-poster img { width: 100%; }
.menu-poster img { height: auto; }
.expand-poster {
  position: absolute;
  z-index: 2;
  right: .7rem;
  bottom: .7rem;
  min-height: 42px;
  padding: .55rem .75rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--cream);
  border: 1px solid rgba(226,177,92,.72);
  border-radius: 999px;
  background: rgba(5,4,3,.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .68rem;
  font-weight: 800;
  cursor: pointer;
}
.expand-poster svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-cta {
  padding: 4.5rem 1rem calc(4.5rem + env(safe-area-inset-bottom));
  text-align: center;
  background: radial-gradient(circle at 50% 20%, rgba(189,127,33,.12), transparent 22rem);
}
.final-cta img { width: 142px; margin: 0 auto 1rem; }
.final-cta h2 {
  max-width: 650px;
  margin: 0 auto;
  font-size: clamp(1.9rem, 8vw, 3.8rem);
  text-wrap: balance;
}
.final-actions {
  max-width: 430px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .72rem;
}
footer {
  padding: 1.15rem 1rem;
  color: #918678;
  border-top: 1px solid rgba(189,127,33,.2);
  text-align: center;
  font-size: .75rem;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: .85rem;
  bottom: calc(.85rem + env(safe-area-inset-bottom));
  width: 45px;
  height: 45px;
  border: 1px solid rgba(189,127,33,.68);
  border-radius: 50%;
  background: rgba(5,4,3,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.menu-viewer {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--white);
  border: 0;
  background: #030302;
}
.menu-viewer::backdrop { background: rgba(0,0,0,.94); }
.viewer-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0,1fr);
}
.viewer-toolbar {
  min-height: 58px;
  padding: max(.45rem, env(safe-area-inset-top)) .65rem .45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  border-bottom: 1px solid rgba(189,127,33,.48);
  background: rgba(5,4,3,.97);
}
.viewer-toolbar h2 {
  min-width: 0;
  overflow: hidden;
  color: var(--gold-light);
  font-size: 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.viewer-controls { display: flex; align-items: center; gap: .35rem; }
.viewer-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(189,127,33,.5);
  border-radius: 50%;
  background: #0b0907;
  font-size: 1.25rem;
  cursor: pointer;
}
.viewer-controls button:disabled { opacity: .35; cursor: default; }
.viewer-controls output {
  min-width: 47px;
  color: var(--muted);
  text-align: center;
  font-size: .72rem;
}
.viewer-close { margin-left: .18rem; color: var(--gold-light) !important; font-size: 1.7rem !important; }
.viewer-stage {
  min-height: 0;
  padding: .5rem .35rem calc(.5rem + env(safe-area-inset-bottom));
  overflow: auto;
  overscroll-behavior: contain;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.viewer-stage img {
  width: var(--viewer-width, 100%);
  max-width: none;
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(189,127,33,.5);
  border-radius: 5px;
  background: #050505;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (hover:hover) {
  .social-card:hover { transform: translateY(-3px); border-color: var(--gold-light); }
  .primary-button:hover, .secondary-button:hover { transform: translateY(-2px); filter: brightness(1.06); }
  .quick-nav a:hover { color: var(--gold-light); }
  .expand-poster:hover { border-color: var(--gold-light); }
}

@media (min-width: 760px) {
  :root { --header-height: 112px; }
  .site-header {
    display: grid;
    grid-template-columns: minmax(190px,1fr) minmax(390px,620px) minmax(190px,1fr);
    grid-template-rows: 72px 40px;
    padding-inline: max(1rem, calc((100vw - 1250px)/2));
  }
  .brand-row {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 112px;
    padding: .35rem 0;
    grid-template-columns: 1fr;
  }
  .menu-toggle { display: none; }
  .brand { justify-self: start; width: 118px; height: 104px; }
  .brand img { width: auto; height: 104px; }
  .header-review {
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: end;
    padding: 0 .95rem;
    border: 1px solid rgba(189,127,33,.5);
    border-radius: 999px;
    font-size: 1rem;
  }
  .header-review-text {
    display: inline;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .7rem;
    font-weight: 850;
  }
  .header-quote {
    grid-column: 2;
    grid-row: 1;
    min-height: 54px;
    align-self: end;
    border-top: 0;
    font-size: .78rem;
  }
  .quick-nav {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: 58px;
  }
  .hero-photo { min-height: min(82svh, 900px); }
  .home-actions { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .menu-section { padding: 5.2rem 1rem 6rem; }
  .section-intro { margin-bottom: 1.7rem; }
  .final-actions { max-width: 720px; flex-direction: row; justify-content: center; }
  .final-actions a { min-width: 220px; }
  .viewer-toolbar { padding-inline: 1rem; }
  .viewer-stage { padding: 1rem; }
  .viewer-stage img { --viewer-width: min(100%, 900px); }
}

@media (min-width: 1120px) {
  .menu-section {
    display: grid;
    grid-template-columns: minmax(240px,320px) minmax(600px,820px);
    gap: clamp(2rem,5vw,5rem);
    justify-content: center;
    align-items: start;
    padding-inline: 2.5rem;
  }
  .section-intro {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
    margin: 2rem 0 0;
    text-align: left;
  }
  .section-intro > p:last-child { margin-left: 0; }
  .menu-poster { margin: 0; }
}

@media (max-width: 370px) {
  .brand-row { grid-template-columns: 42px 1fr 42px; }
  .brand { width: 86px; }
  .brand img { width: auto; height: 88px; }
  .header-quote { padding-inline: .45rem; font-size: .66rem; }
  .quick-nav a { gap: .28rem; letter-spacing: .035em; }
  .quick-nav svg { width: 18px; height: 18px; }
  .social-card { grid-template-columns: 46px minmax(0,1fr) 16px; padding-inline: .72rem; }
  .social-icon { width: 45px; }
  .social-card strong { font-size: .86rem; }
}

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