:root {
  --bg: #0c0908;
  --bg-elev: #14100e;
  --ink: #f3ebe0;
  --muted: #a89a8c;
  --faint: #6e6359;
  --line: rgba(196, 156, 98, 0.28);
  --line-soft: rgba(255, 255, 255, 0.08);
  --brass: #c49c62;
  --brass-light: #e4c792;
  --wine: #6e2c38;
  --wine-soft: rgba(110, 44, 56, 0.35);
  --display: "Cormorant Garamond", Georgia, serif;
  --script: "Italianno", cursive;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --shell: min(1120px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  min-height: 56px;
  border-bottom: 1px solid rgba(196, 156, 98, 0.42);
  background:
    linear-gradient(180deg, rgba(36, 26, 20, 0.98) 0%, rgba(16, 12, 10, 0.97) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(228, 199, 146, 0.28),
    inset 0 -1px 0 rgba(196, 156, 98, 0.12),
    0 10px 32px rgba(0, 0, 0, 0.4);
  animation: banner-in 0.55s var(--ease) both;
}

.site-banner::before,
.site-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(18vw, 220px);
  pointer-events: none;
  opacity: 0.55;
}

.site-banner::before {
  left: 0;
  background: linear-gradient(90deg, rgba(196, 156, 98, 0.16), transparent);
}

.site-banner::after {
  right: 0;
  background: linear-gradient(270deg, rgba(196, 156, 98, 0.16), transparent);
}

.site-banner[hidden] {
  display: none !important;
}

.site-banner.is-wine {
  border-bottom-color: rgba(180, 90, 100, 0.4);
  background:
    linear-gradient(180deg, rgba(42, 16, 20, 0.98), rgba(16, 8, 10, 0.96)),
    linear-gradient(90deg, transparent, rgba(110, 44, 56, 0.22), transparent);
  box-shadow:
    inset 0 1px 0 rgba(196, 120, 130, 0.2),
    0 8px 28px rgba(0, 0, 0, 0.35);
}

.site-banner.is-muted {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(16, 13, 11, 0.96);
}

.site-banner-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  padding: 14px 48px 14px 12px;
  position: relative;
}

.site-banner-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.site-banner-diamond {
  width: 5px;
  height: 5px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
  opacity: 0.85;
}

.site-banner-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}

.site-banner-text {
  margin: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--ink);
  max-width: 720px;
  font-variant-numeric: lining-nums tabular-nums;
}

.site-banner-link {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  border: 1px solid rgba(196, 156, 98, 0.45);
  padding: 6px 12px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s;
}

.site-banner-link:hover {
  color: var(--bg);
  background: var(--brass);
  border-color: var(--brass);
}

.site-banner-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid rgba(196, 156, 98, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.site-banner-close span {
  position: relative;
  width: 10px;
  height: 10px;
  display: block;
}

.site-banner-close span::before,
.site-banner-close span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
}

.site-banner-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-banner-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-banner-close:hover {
  color: var(--brass-light);
  border-color: var(--brass);
  background: rgba(196, 156, 98, 0.12);
}

@keyframes banner-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.has-banner {
  --banner-h: 56px;
}

body.has-banner .header {
  top: var(--banner-h);
}

body.has-banner .hero-content {
  padding-top: calc(120px + var(--banner-h));
}

@media (max-width: 720px) {
  body.has-banner {
    --banner-h: 72px;
  }

  .site-banner-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
    padding: 12px 40px 12px 8px;
  }

  .site-banner-mark {
    width: 100%;
    justify-content: center;
    order: -1;
  }

  .site-banner-text {
    font-size: 14px;
    letter-spacing: 0.03em;
  }
}

/* ——— Header ——— */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.header.is-solid {
  background: rgba(12, 9, 8, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line-soft);
}

.nav {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.25s;
}

.brand:hover {
  opacity: 0.88;
}

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.brand-logo-lg {
  height: 72px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links a {
  color: #d5cbc0;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--brass-light);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--line);
  color: var(--brass-light) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover,
.nav-cta.is-active {
  border-color: var(--brass);
  background: rgba(196, 156, 98, 0.1);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  width: 22px;
  background: var(--brass-light);
  margin-inline: auto;
  transition: transform 0.3s var(--ease);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), filter 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

.btn-primary {
  background: linear-gradient(135deg, #a87c3f, #d4b070);
  color: #140f0a;
  box-shadow: 0 10px 30px rgba(168, 124, 63, 0.18);
}

.btn-primary:not(:disabled):hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(168, 124, 63, 0.28);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(12, 9, 8, 0.35);
  color: var(--ink);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass-light);
  transform: translateY(-1px);
}

.btn.full {
  width: 100%;
}

/* ——— Intro splash ——— */
html.intro-pending,
html.intro-pending body {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  justify-items: center;
  background: #000;
  color: #c49c62;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

html.intro-pending .site-intro {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: intro-veil-out 0.55s cubic-bezier(0.22, 1, 0.36, 1) 1.55s forwards;
}

html.intro-skip .site-intro {
  display: none !important;
}

.site-intro-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(420px, 78vw);
  margin: 0 auto;
  transform: translateZ(0);
}

.site-intro-logo {
  display: block;
  width: min(360px, 72vw);
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.94);
  will-change: opacity, transform;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}

html.intro-pending .site-intro-logo {
  animation: intro-mark-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.site-intro-line {
  display: block;
  width: min(120px, 32vw);
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, transparent, #c49c62, transparent);
  transform: scaleX(0);
  transform-origin: center;
  will-change: transform;
  opacity: 0.9;
}

html.intro-pending .site-intro-line {
  animation: intro-line-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

html.intro-pending .header,
html.intro-pending .site-banner {
  opacity: 0;
  pointer-events: none;
}

html.intro-pending.intro-reveal .header,
html.intro-pending.intro-reveal .site-banner,
html.intro-done .header,
html.intro-done .site-banner,
html.intro-skip .header,
html.intro-skip .site-banner {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.intro-pending .hero {
  opacity: 0;
  transform: scale(1.02);
}

html.intro-pending.intro-reveal .hero {
  animation: intro-hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.intro-skip .hero,
html.intro-done .hero {
  opacity: 1;
  transform: none;
}

@keyframes intro-mark-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intro-line-in {
  to {
    transform: scaleX(1);
  }
}

@keyframes intro-veil-out {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-hero-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .site-intro-logo {
    width: min(280px, 78vw);
  }

  .site-intro-line {
    width: 96px;
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.intro-pending .site-intro,
  html.intro-pending .site-intro-logo,
  html.intro-pending .site-intro-line,
  html.intro-pending .hero,
  html.intro-pending.intro-reveal .hero {
    animation: none !important;
  }

  .site-intro {
    display: none !important;
  }

  html.intro-pending .hero {
    opacity: 1;
    transform: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 110px 0 88px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 9, 8, 0.94) 0%, rgba(12, 9, 8, 0.78) 40%, rgba(12, 9, 8, 0.35) 100%),
    linear-gradient(180deg, rgba(12, 9, 8, 0.55) 0%, transparent 30%, rgba(12, 9, 8, 0.55) 72%, var(--bg) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(110, 44, 56, 0.16), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-top: 120px;
}

.hero-logo {
  width: min(360px, 82vw);
  height: auto;
  margin: 0 0 4px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.hero-enter {
  animation: hero-rise 1s var(--ease) both;
}

.hero-enter.d1 {
  animation-delay: 0.15s;
}

.hero-enter.d2 {
  animation-delay: 0.3s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-tagline {
  margin: 18px 0 14px;
  font-family: var(--script);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  color: var(--brass-light);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-lead {
  margin: 0;
  max-width: 34rem;
  color: #c5b9ac;
  font-size: 0.95rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
}

.scroll-cue i {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--brass), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.7);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ——— Sections ——— */
.section {
  padding: 120px 0;
  position: relative;
}

.section-intro h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.section-intro h2 em {
  font-style: italic;
  color: var(--brass-light);
  font-weight: 400;
}

.section-intro.center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
}

.section-sub {
  margin: 22px auto 0;
  max-width: 540px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-sub.left {
  margin-left: 0;
}

.section-sub strong {
  color: var(--brass-light);
  font-weight: 500;
}

/* ——— About ——— */
.about {
  background:
    radial-gradient(ellipse at 10% 0%, var(--wine-soft), transparent 45%),
    var(--bg);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.about-serif {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  color: #e4d9cc;
  margin: 0 0 22px;
}

.about-body > p:not(.about-serif) {
  margin: 0 0 22px;
  color: var(--muted);
}

.about-body blockquote {
  margin: 36px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.about-body blockquote p {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--brass-light);
  line-height: 1.35;
}

.about-body cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ——— Visit ——— */
.visit {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #100c0a, var(--bg));
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.visit-grid-two {
  grid-template-columns: 1fr 1fr;
}

.visit-card {
  background: #110d0b;
  padding: 36px 30px;
  min-height: 280px;
  transition: background 0.35s var(--ease);
}

.visit-card:hover {
  background: #17120f;
}

.visit-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}

.visit-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 2rem;
}

.visit-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.visit-phone {
  font-family: var(--display) !important;
  font-size: 2rem !important;
  color: var(--brass-light) !important;
  margin: 0 0 12px !important;
  letter-spacing: 0.04em;
}

.visit-note {
  margin-top: 22px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 10px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass) !important;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.9rem;
}

.hours-list li span {
  color: var(--muted);
}

.hours-list li b {
  font-family: var(--display);
  font-weight: 400;
  color: var(--brass-light);
}

/* ——— Spaces ——— */
.spaces {
  border-top: 1px solid var(--line-soft);
}

.space-stack {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.space-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.space-row.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.space-row.reverse .space-visual {
  order: 2;
}

.space-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-elev);
}

.space-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--line-soft);
  pointer-events: none;
}

.space-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.space-row:hover .space-visual img {
  transform: scale(1.045);
}

.space-num {
  font-family: var(--display);
  font-size: 12px;
  color: var(--brass);
  letter-spacing: 0.12em;
}

.space-copy h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: 0.02em;
}

.space-it {
  margin: 6px 0 18px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.space-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

/* ——— Menu ——— */
.menu {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(196, 156, 98, 0.08), transparent 40%),
    #0a0807;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 48px 0 36px;
}

.menu-tab {
  appearance: none;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--muted);
  padding: 12px 18px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.menu-tab:hover {
  color: var(--ink);
  border-color: var(--line);
}

.menu-tab.is-active {
  color: #140f0a;
  background: linear-gradient(135deg, #a87c3f, #d4b070);
  border-color: transparent;
  transform: translateY(-1px);
}

.menu-panels {
  max-width: 760px;
  margin-inline: auto;
  min-height: 280px;
}

.menu-panel {
  animation: menu-fade 0.4s var(--ease);
}

.menu-panel[hidden] {
  display: none;
}

@keyframes menu-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.menu-list li span {
  font-family: var(--display);
  font-size: 1.35rem;
  color: #ebe2d6;
}

.menu-list li i {
  border-bottom: 1px dotted rgba(196, 156, 98, 0.35);
  margin-bottom: 8px;
}

.menu-list li b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--brass-light);
}

.menu-list-dense {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}

.menu-list-dense li span {
  font-size: 1.1rem;
}

.menu-poster {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #15110d, #0b0908);
  overflow: hidden;
  min-height: 360px;
}

.menu-poster-copy {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.menu-poster-copy h3 {
  margin: 14px 0 12px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.menu-poster-copy > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 420px;
}

.menu-poster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-poster-preview {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--line);
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.menu-poster-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
}

.menu-poster-preview:hover img {
  transform: scale(1.04);
}

/* ——— Rules ——— */
.rules {
  background:
    radial-gradient(ellipse at 90% 20%, var(--wine-soft), transparent 40%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}

.rules-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.rules-mark {
  width: min(200px, 55%);
  margin-top: 40px;
  opacity: 0.9;
}

.rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.rules-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.25s;
}

.rules-list li:hover {
  background: rgba(196, 156, 98, 0.03);
}

.rules-list span {
  font-family: var(--display);
  color: var(--brass);
  font-size: 14px;
  padding-top: 4px;
}

.rules-list strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.rules-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 46rem;
}

/* ——— Team ——— */
.team {
  background: linear-gradient(180deg, #100c0a, #0a0807);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
  margin-top: 64px;
}

.team-card {
  border: 1px solid var(--line-soft);
  background: rgba(17, 13, 11, 0.85);
  padding: 32px 28px;
  min-height: 280px;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}

.team-card:hover {
  border-color: var(--line);
  transform: translateY(-3px);
  background: rgba(22, 17, 14, 0.95);
}

.team-card-lead {
  border-color: var(--line);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 156, 98, 0.12), transparent 50%),
    rgba(17, 13, 11, 0.95);
}

.team-crest {
  width: min(220px, 70%);
  margin-bottom: 22px;
}

.team-crest img {
  width: 100%;
  height: auto;
}

.team-role {
  margin: 0 0 8px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

.team-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 2rem;
}

.team-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.team-tags li {
  border: 1px solid var(--line);
  padding: 7px 12px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.team-status {
  margin-top: 28px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 10px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint) !important;
}

/* ——— Private ——— */
.private {
  padding: 0;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.private-bg {
  position: absolute;
  inset: 0;
}

.private-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.55);
}

.private-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 9, 8, 0.94) 0%, rgba(12, 9, 8, 0.82) 48%, rgba(12, 9, 8, 0.45) 100%),
    linear-gradient(180deg, rgba(12, 9, 8, 0.3), rgba(12, 9, 8, 0.75));
}

.private-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 120px 0;
  align-items: center;
}

.private-points {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.private-points li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}

.private-points span {
  font-family: var(--display);
  color: var(--brass);
  font-size: 13px;
  padding-top: 4px;
}

.private-points strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.private-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.private-pillars {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
}

.private-pillars li {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  padding: 18px 0;
  border-bottom: 1px solid rgba(196, 156, 98, 0.3);
}

.private-cta {
  margin: 40px 0 0;
}

.private-inner:has(.private-pillars) {
  grid-template-columns: minmax(0, 720px);
  justify-content: start;
}

/* ——— Featured menu ——— */
.featured-grid {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.featured-grid li {
  background: var(--bg-elev);
  padding: 28px 24px;
  display: grid;
  gap: 10px;
  min-height: 140px;
}

.featured-cat {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

.featured-grid strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--ink);
}

.featured-grid b {
  margin-top: auto;
  font-weight: 400;
  color: var(--brass-light);
  font-variant-numeric: lining-nums;
}

.featured-actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.menu-full {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line-soft);
}

.menu-full[hidden] {
  display: none !important;
}

/* ——— Etiquette ——— */
.etiquette {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #100c0a, var(--bg));
}

.etiquette-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.etiquette-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.etiquette-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ——— Events ——— */
.events {
  background: var(--bg);
}

.event-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.event {
  background: #110d0b;
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.event:hover {
  background: #16110e;
  transform: translateY(-2px);
}

.event-when {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

.event h3 {
  margin: 48px 0 14px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
}

.event p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: auto;
}

/* ——— Reservation ——— */
.reservation {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(110, 44, 56, 0.22), transparent 42%),
    linear-gradient(180deg, #100c0a, #0c0908);
  border-top: 1px solid var(--line-soft);
}

.reservation-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.reservation-forms {
  display: grid;
  gap: 24px;
}

.track-panel {
  border: 1px solid var(--line);
  background: rgba(20, 16, 14, 0.72);
  padding: 28px 28px 24px;
}

.track-panel h3 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.6rem;
}

.track-lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.track-code-sample,
.track-code-out {
  font-family: var(--sans);
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.06em;
  color: var(--brass-light);
}

.track-form {
  display: grid;
  gap: 14px;
}

.track-form label {
  display: grid;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.track-form input {
  width: 100%;
  border: 1px solid var(--line-soft);
  background: rgba(8, 7, 6, 0.55);
  color: var(--ink);
  padding: 14px 14px;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-form input:focus {
  outline: none;
  border-color: var(--brass);
}

.track-result {
  margin-top: 18px;
}

.track-card {
  border: 1px solid var(--line-soft);
  padding: 18px;
  background: rgba(8, 7, 6, 0.45);
}

.track-status {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.track-status.is-ok {
  color: #7dcea0;
}

.track-status.is-wait {
  color: var(--brass-light);
}

.track-status.is-err {
  color: #e07a7a;
}

.track-id {
  margin: 0 0 16px;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-size: 1.05rem;
}

.track-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.track-meta li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 8px;
}

.track-meta span {
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
}

.track-meta b {
  font-weight: 400;
  color: var(--ink);
  font-variant-numeric: lining-nums;
}

.track-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

#reservation.section > .shell {
  width: min(1240px, calc(100% - 40px));
}

.meta-list {
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.meta-list > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.meta-list dt {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

.meta-list dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--brass-light);
}

.res-form {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(16, 12, 10, 0.72);
  backdrop-filter: blur(10px);
  padding: 44px 46px;
}

.form-soon {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-left: 2px solid var(--brass);
  background: rgba(196, 156, 98, 0.08);
}

.form-soon span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 6px;
}

.form-soon p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.res-form label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b5aa9f;
  margin-bottom: 16px;
}

.res-form label.full {
  margin-top: 2px;
}

.res-form input,
.res-form select,
.res-form textarea {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line-soft);
  background: #0e0b09;
  color: var(--ink);
  padding: 16px 16px;
  outline: none;
  border-radius: 0;
  appearance: none;
  font-size: 15px;
}

.res-form textarea {
  resize: vertical;
  min-height: 130px;
}

.res-form input:focus,
.res-form select:focus,
.res-form textarea:focus {
  border-color: var(--brass);
}

.res-form .btn.full {
  min-height: 56px;
  margin-top: 6px;
  font-size: 12px;
}

.form-hint {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--faint);
  line-height: 1.5;
}

.form-note {
  text-align: center;
  color: #7f776f;
  font-size: 12px;
  margin: 16px 0 0;
  min-height: 1.2em;
}

.form-note.is-ok {
  color: #9bb89e;
}

.form-note.is-err {
  color: #d89c94;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 130;
  max-width: 380px;
  padding: 16px 18px;
  background: #17120e;
  border: 1px solid var(--brass);
  color: var(--text, var(--ink));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  font-size: 12px;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s var(--ease);
}

.toast.show {
  transform: none;
  opacity: 1;
}

/* ——— Footer ——— */
.footer {
  border-top: 1px solid var(--line);
  background: #080605;
  padding: 52px 0 22px;
}

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 3, 0.78);
  backdrop-filter: blur(14px);
  animation: lb-fade 0.3s var(--ease);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 92vw);
  max-height: min(88vh, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: lb-rise 0.4s var(--ease);
}

.lightbox-dialog img {
  width: 100%;
  height: auto;
  max-height: calc(88vh - 80px);
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #14100e;
  color: var(--brass-light);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.2s, background 0.2s;
}

.lightbox-close:hover {
  border-color: var(--brass);
  background: #1c1612;
}

.lightbox-download {
  min-height: 44px;
}

body.lightbox-open {
  overflow: hidden;
}

@keyframes lb-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lb-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 24px;
}

.footer-rich {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.footer-brand .brand-logo {
  height: 48px;
  width: auto;
}

.footer-place {
  margin: 14px 0 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.footer-rich .footer-line {
  text-align: left;
  font-size: 1.55rem;
  margin-top: 4px;
}

.footer-rich .footer-nav {
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.footer-meta {
  display: grid;
  gap: 12px;
  padding-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-meta span {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

.footer-discord {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: var(--faint);
  line-height: 1.45;
  max-width: 220px;
}

.footer-line {
  margin: 0;
  text-align: center;
  font-family: var(--script);
  font-size: 1.85rem;
  color: var(--brass-light);
  line-height: 1;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav a {
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--brass-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

.footer-bottom > span:last-child {
  text-align: right;
}

.footer-credit {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line-soft);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footer-credit small {
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--faint);
}

.footer-credit strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--brass-light);
}

.footer-credit:hover {
  border-color: var(--line);
  background: rgba(196, 156, 98, 0.06);
}

.footer-credit:hover strong {
  color: #f0d39a;
}

/* ——— Motion ——— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

/* ——— Responsive ——— */
@media (max-width: 1020px) {
  .nav-links {
    gap: 16px;
    font-size: 10px;
  }

  .brand-logo {
    height: 52px;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 96px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(14, 11, 9, 0.97);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:last-child {
    border-bottom: 0;
    text-align: center;
    margin-top: 8px;
  }

  .about-layout,
  .space-row,
  .space-row.reverse,
  .private-inner,
  .reservation-layout,
  .event-rail,
  .visit-grid,
  .rules-layout,
  .team-grid,
  .menu-poster,
  .etiquette-layout,
  .footer-rich,
  .featured-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .space-row.reverse .space-visual {
    order: 0;
  }

  .private {
    min-height: 0;
  }

  .private-inner {
    padding: 96px 0;
  }

  .menu-list-dense {
    grid-template-columns: 1fr;
  }

  .menu-poster-preview {
    border-left: 0;
    border-top: 1px solid var(--line);
    max-height: 420px;
  }

  .footer-line,
  .footer-nav {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom > span:last-child {
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 32px, 1120px);
  }

  .section {
    padding: 88px 0;
  }

  .nav {
    height: 78px;
  }

  .brand-logo {
    height: 48px;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 56px;
  }

  body.has-banner .hero {
    padding-top: calc(96px + var(--banner-h, 56px));
  }

  .hero-content {
    padding-top: 24px;
    max-width: none;
  }

  body.has-banner .hero-content {
    padding-top: 24px;
  }

  .hero-logo {
    width: min(260px, 78vw);
  }

  .hero-tagline {
    margin-top: 12px;
    font-size: 1.55rem;
  }

  .hero-lead {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .hero-actions,
  .menu-poster-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .menu-poster-actions .btn {
    width: 100%;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .private-pillars {
    grid-template-columns: 1fr;
  }

  .etiquette-layout,
  .footer-rich {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .res-form,
  .track-panel {
    padding: 28px 20px;
  }

  .scroll-cue {
    display: none;
  }

  .menu-poster-copy {
    padding: 32px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-enter,
  .scroll-cue i,
  .reveal,
  .menu-panel {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
