:root {
  --bg: #16211d;
  --bg-deep: #0f1714;
  --bg-warm: #1c2823;
  --surface: #e8deca;
  --surface-soft: rgba(232, 222, 202, 0.08);
  --surface-strong: rgba(232, 222, 202, 0.14);
  --line: rgba(232, 222, 202, 0.16);
  --line-soft: rgba(232, 222, 202, 0.08);
  --line-strong: rgba(232, 222, 202, 0.28);
  --text: #f2eadb;
  --text-dark: #251913;
  --text-muted: rgba(242, 234, 219, 0.74);
  --text-quiet: rgba(242, 234, 219, 0.58);
  --text-soft-dark: #725f4f;
  --accent: #c89757;
  --accent-deep: #8e672f;
  --accent-soft: rgba(200, 151, 87, 0.16);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-button: 0 12px 28px rgba(0, 0, 0, 0.32);
  --header-offset: 96px;
  --focus-ring: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--text);
  background:
    radial-gradient(ellipse at 78% 18%, rgba(200, 151, 87, 0.16), transparent 36%),
    radial-gradient(ellipse at 8% 85%, rgba(200, 151, 87, 0.06), transparent 45%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 38%, var(--bg-deep) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

body.age-gate-open {
  overflow: hidden;
}

a {
  color: inherit;
}

em {
  font-style: italic;
  color: var(--surface);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.button:focus-visible,
.brand:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 200ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--focus-ring);
}

.site-shell {
  position: relative;
  z-index: 1;
}

.section,
#top {
  scroll-margin-top: var(--header-offset);
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 18px clamp(18px, 3vw, 42px) 28px;
  overflow: clip;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: min(38vw, 480px);
  height: min(38vw, 480px);
  right: 4%;
  top: 18%;
  background:
    radial-gradient(circle, rgba(200, 151, 87, 0.22) 0%, rgba(200, 151, 87, 0) 70%);
}

.hero::after {
  width: min(28vw, 340px);
  height: min(28vw, 340px);
  left: -6%;
  bottom: -2%;
  background:
    radial-gradient(circle, rgba(255, 214, 150, 0.1) 0%, rgba(255, 214, 150, 0) 70%);
}

.hero-decor {
  position: absolute;
  bottom: -6%;
  left: -2%;
  right: -2%;
  z-index: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(8rem, 22vw, 24rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: rgba(232, 222, 202, 0.028);
  text-align: center;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.site-header,
.hero-inner,
.section,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 18, 16, 0.78);
  border-color: rgba(232, 222, 202, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  padding: 4px 6px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232, 222, 202, 0.28);
  border-radius: 50%;
  color: var(--surface);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  background: rgba(232, 222, 202, 0.04);
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.005em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  color: var(--text-quiet);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 2px;
  transition: color 200ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 14px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transition: transform 240ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a[aria-current="page"]::after {
  transform: translateX(-50%) scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-button);
}

.button:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.button-solid {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #15110a;
  border-color: rgba(0, 0, 0, 0.04);
}

.button-solid:hover {
  background: linear-gradient(180deg, #d6a463 0%, #9d7536 100%);
}

.button-muted {
  border-color: rgba(232, 222, 202, 0.2);
  background: rgba(232, 222, 202, 0.04);
  color: var(--text);
}

.button-muted:hover {
  background: rgba(232, 222, 202, 0.1);
  border-color: rgba(232, 222, 202, 0.36);
}

.button-arrow,
.external-icon {
  display: inline-flex;
  align-items: center;
  font-size: 1.05em;
  line-height: 1;
  transition: transform 220ms ease;
}

.button:hover .button-arrow {
  transform: translateX(5px);
}

.button.external:hover .external-icon,
a.external:hover .external-icon {
  transform: translate(2px, -2px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(200, 151, 87, 0.36);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(200, 151, 87, 0.12), rgba(200, 151, 87, 0.04));
  color: var(--surface);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(200, 151, 87, 0.55);
  animation: status-pulse 2.6s ease-out infinite;
}

@keyframes status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 151, 87, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(200, 151, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 151, 87, 0); }
}

.hero-status {
  margin-bottom: 28px;
}

.header-status {
  padding: 7px 14px;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

.hero-inner {
  display: block;
  max-width: 1240px;
  min-height: calc(92svh - 120px);
  margin: 0 auto;
  padding: clamp(60px, 11vh, 120px) 0 24px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 820px;
}

.hero-kicker,
.section-kicker,
.micro-copy {
  margin: 0;
  color: var(--text-quiet);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.section-number {
  color: var(--accent);
  font-feature-settings: "tnum";
  letter-spacing: 0.18em;
}

.hero h1,
.section-heading h2,
.menu-stage-body h3,
.age-gate-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  margin-top: 4px;
}

.hero h1 em,
.section-heading h2 em,
.menu-stage-body h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--surface);
}

.hero-lead {
  max-width: 36rem;
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--text-quiet);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
}

.hero-meta li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 18px;
  opacity: 0.8;
}

.story-copy p,
.story-points li,
.section-intro,
.menu-stage-body p,
.visit-blurb,
.age-gate-panel p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(18px, 3vw, 42px);
}

.section + .section {
  border-top: 1px solid var(--line-soft);
  position: relative;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 0 5px var(--bg);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.section-intro {
  max-width: 36rem;
  font-size: 1.04rem;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  line-height: 0.92;
}

.story-layout,
.visit-layout {
  display: grid;
  gap: 40px;
  margin-top: 48px;
}

.story-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 56px;
}

.story-copy {
  max-width: 40rem;
  font-size: 1.02rem;
}

.story-copy p + p {
  margin-top: 18px;
}

.story-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  align-content: start;
  border-top: 1px solid var(--line);
}

.story-points li {
  display: grid;
  grid-template-columns: 2.4ch 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.story-point-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.menu-stage {
  position: relative;
  margin-top: 48px;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(232, 222, 202, 0.06), rgba(232, 222, 202, 0.015));
  box-shadow: var(--shadow);
}

.menu-stage-status {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
}

.menu-stage-watermark {
  position: absolute;
  bottom: -22%;
  right: -8%;
  z-index: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18rem, 42vw, 36rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: rgba(200, 151, 87, 0.06);
  pointer-events: none;
  user-select: none;
}

.menu-stage-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 540px;
  padding: clamp(40px, 7vw, 88px);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200, 151, 87, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(12, 18, 16, 0.08), rgba(12, 18, 16, 0));
}

.menu-stage-body h3 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 0.96;
  color: var(--surface);
  max-width: 18ch;
}

.menu-stage-body > p:last-of-type {
  max-width: 32rem;
  margin-top: 18px;
  font-size: 1rem;
}

.visit-layout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px 48px;
}

.visit-copy {
  max-width: 42rem;
}

.visit-address {
  margin: 0;
  color: var(--surface);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.visit-blurb {
  margin-top: 22px;
  max-width: 34rem;
  font-size: 1.02rem;
}

.visit-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(18px, 3vw, 42px) 40px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-quiet);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.footer-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 600;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--surface);
  opacity: 0.4;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.footer-brand {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-warning {
  color: var(--text-quiet);
  letter-spacing: 0.04em;
}

.footer-copy {
  color: rgba(242, 234, 219, 0.4);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.age-gate {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  margin: 0;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  display: grid;
  place-items: center;
}

.age-gate:not([open]) {
  display: none;
}

.age-gate::backdrop {
  background: rgba(8, 12, 10, 0.74);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 240ms ease;
}

.age-gate[open]::backdrop {
  opacity: 1;
}

.age-gate-panel {
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(232, 222, 202, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(239, 230, 212, 0.98), rgba(228, 216, 194, 0.98));
  color: var(--text-dark);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
  text-align: center;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.age-gate[open] .age-gate-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.age-gate-panel .micro-copy {
  color: #7d6447;
}

.age-gate-panel h2 {
  margin-top: 14px;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  line-height: 0.96;
}

.age-gate-panel p {
  margin-top: 16px;
  color: var(--text-soft-dark);
}

.age-gate-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.age-gate .button-muted {
  background: rgba(37, 25, 19, 0.07);
  border-color: rgba(37, 25, 19, 0.08);
  color: var(--text-dark);
}

.age-gate .button-muted:hover {
  background: rgba(37, 25, 19, 0.12);
  border-color: rgba(37, 25, 19, 0.16);
}

.age-gate .button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--accent-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms ease,
    transform 800ms ease;
}

body.is-ready .hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .hero .reveal:nth-child(2) { transition-delay: 90ms; }
body.is-ready .hero .reveal:nth-child(3) { transition-delay: 180ms; }
body.is-ready .hero .reveal:nth-child(4) { transition-delay: 270ms; }
body.is-ready .hero .reveal:nth-child(5) { transition-delay: 360ms; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  body.is-ready .hero .reveal {
    opacity: 1;
    transform: none;
  }

  .status-dot {
    animation: none;
  }

  .age-gate-panel {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 84px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 12px;
    border-radius: 28px;
    padding: 12px 16px;
  }

  .header-status {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding: 6px 12px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero-inner,
  .story-layout,
  .visit-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .visit-actions {
    justify-content: flex-start;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 76px;
  }

  .hero {
    padding-inline: 14px;
    padding-bottom: 24px;
  }

  .section {
    padding: 64px 14px;
  }

  .site-header {
    top: 8px;
    gap: 10px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.92rem;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-actions,
  .visit-actions,
  .age-gate-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .visit-actions .button,
  .age-gate-actions .button {
    width: 100%;
  }

  .menu-stage {
    min-height: 480px;
    border-radius: 28px;
  }

  .menu-stage-body {
    min-height: 480px;
  }

  .menu-stage-status {
    top: 16px;
    right: 16px;
  }

  .visit-actions {
    margin-top: 8px;
  }

  .hero-meta {
    gap: 6px 14px;
  }

  .hero-meta li + li::before {
    margin-right: 14px;
  }

  .footer-mark {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }
}
