:root {
  --paper: #f5ebda;
  --paper-strong: #ead7b9;
  --saddle: #6f4423;
  --saddle-deep: #422413;
  --charcoal: #191412;
  --charcoal-soft: #2c211d;
  --amber: #c98a2c;
  --amber-light: #e8bf74;
  --cream: #fff9ef;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(32, 20, 13, 0.15);
  --radius: 26px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top, rgba(233, 194, 122, 0.18), transparent 33%),
    linear-gradient(180deg, #f8efdf 0%, #f4ead9 52%, #f1e7d6 100%);
  font-family: "Barlow", "Segoe UI", sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(25, 20, 18, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-nav-inner,
.section-inner,
.footer-inner,
.age-gate-card {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--cream);
}

.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.brand-copy span,
.eyebrow,
.kicker,
.event-badge,
.menu-label,
.section-tag,
.age-gate-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.brand-copy strong {
  display: block;
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 249, 239, 0.82);
}

.nav-links a {
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  border-color: var(--amber-light);
}

.nav-actions,
.hero-actions,
.menu-actions,
.visit-actions,
.events-hero-actions,
.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  box-shadow: 0 14px 32px rgba(180, 123, 34, 0.22);
}

.button-secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-ghost {
  color: var(--charcoal);
  background: transparent;
  border-color: rgba(66, 36, 19, 0.18);
}

.hero,
.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.hero-card,
.page-hero-card {
  box-shadow: var(--shadow);
  border-radius: 34px;
  overflow: hidden;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  min-height: 620px;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  background:
    linear-gradient(90deg, rgba(20, 13, 10, 0.82), rgba(20, 13, 10, 0.28)),
    url("assets/images/interior.jpg") center/cover no-repeat;
}

.page-hero-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(66, 36, 19, 0.95), rgba(24, 18, 16, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  color: var(--cream);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--cream);
}

.hero-text-block,
.section-heading {
  max-width: 44rem;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
}

.eyebrow,
.section-tag,
.age-gate-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  font-family: "Bree Serif", Georgia, serif;
}

h1 {
  margin-top: 1.2rem;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  max-width: 11ch;
}

.page-hero-card h1 {
  max-width: 14ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.hero-copy p,
.page-hero-card p,
.section-heading p,
.feature-card p,
.event-card p,
.menu-card p,
.visit-panel p,
.merch-panel p,
.content-panel p,
.events-callout p,
.age-gate-card p {
  margin: 0;
  line-height: 1.7;
}

.hero-copy p,
.page-hero-card p,
.texture-panel p,
.age-gate-card p {
  color: rgba(255, 249, 239, 0.88);
}

.hero-pills,
.entertainment-list,
.quick-facts,
.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-pills li,
.entertainment-list li,
.quick-facts li {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-pills li {
  background: rgba(255, 255, 255, 0.08);
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.hero-logo-card {
  margin-left: auto;
  width: min(100%, 360px);
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(245, 235, 218, 0.95), rgba(234, 215, 185, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px rgba(9, 8, 7, 0.22);
}

.hero-logo-card img {
  border-radius: 20px;
}

.hero-note {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

.section {
  padding: 4.75rem 0;
}

.section-inner {
  display: grid;
  gap: 1.8rem;
}

.feature-grid,
.event-grid,
.menu-grid,
.visit-grid,
.content-split,
.events-layout {
  display: grid;
  gap: 1.25rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-split {
  grid-template-columns: 1.06fr 0.94fr;
}

.event-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visit-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.feature-card,
.event-card,
.menu-card,
.visit-panel,
.merch-panel,
.content-panel,
.events-callout {
  border-radius: var(--radius);
  background: rgba(255, 249, 239, 0.76);
  border: 1px solid rgba(66, 36, 19, 0.08);
  box-shadow: var(--shadow);
}

.feature-card,
.event-card,
.visit-panel,
.merch-panel,
.content-panel,
.events-callout {
  padding: 1.5rem;
}

.events-callout strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.35rem;
}

.kicker {
  display: block;
  margin-bottom: 0.95rem;
  color: var(--saddle);
}

.feature-card h3,
.event-card h3,
.menu-card h3,
.visit-panel h3,
.merch-panel h3,
.content-panel h3 {
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
}

.texture-panel,
.merch-panel {
  background:
    linear-gradient(145deg, rgba(111, 68, 35, 0.96), rgba(37, 21, 14, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  color: var(--cream);
}

.event-card {
  position: relative;
  overflow: hidden;
}

.event-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -20% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 138, 44, 0.16), transparent 70%);
  pointer-events: none;
}

.event-badge,
.menu-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.7rem;
  color: var(--saddle);
  background: rgba(201, 138, 44, 0.12);
  border-radius: 999px;
}

.event-meta {
  margin-bottom: 0.85rem;
  color: var(--saddle);
  font-weight: 700;
}

.menu-card {
  overflow: hidden;
}

.menu-preview-shell {
  background:
    linear-gradient(180deg, rgba(25, 20, 18, 0.95), rgba(70, 39, 20, 0.88));
  padding: 1rem 1rem 0;
}

.menu-preview-frame {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 20px 20px 0 0;
  background: var(--paper);
}

.menu-card-copy {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
}

.hours-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hours-item {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 0.45rem 1rem;
  align-items: baseline;
}

.hours-day {
  font-weight: 700;
}

.hours-time {
  text-align: right;
  font-weight: 600;
}

.hours-note {
  grid-column: 1 / -1;
  color: var(--saddle);
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
}

.site-footer {
  padding: 2rem 0 4rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(66, 36, 19, 0.12);
  color: rgba(25, 20, 18, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  box-shadow: 0 18px 42px rgba(66, 36, 19, 0.28);
  font-weight: 800;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.92), rgba(12, 10, 9, 0.9)),
    url("assets/images/interior.jpg") center/cover no-repeat;
}

.age-gate-hidden {
  display: none;
}

.age-gate-card {
  display: grid;
  gap: 1.2rem;
  max-width: 32rem;
  padding: 1.4rem;
  text-align: center;
  color: var(--cream);
  background: rgba(25, 20, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

.age-gate-card img {
  width: min(100%, 300px);
  margin: 0 auto;
  border-radius: 22px;
}

.age-gate-card h2 {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
}

@media (max-width: 1080px) {
  .hero-card,
  .content-split,
  .visit-grid,
  .feature-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    justify-content: start;
  }

  .hero-logo-card {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

  .top-nav-inner,
  .footer-inner {
    display: grid;
  }

  .nav-links {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 2rem;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .page-hero-card {
    border-radius: 28px;
  }

  .menu-preview-frame {
    height: 300px;
  }

  .hours-item {
    grid-template-columns: 1fr;
  }

  .hours-time {
    text-align: left;
  }

  .floating-call {
    display: inline-flex;
  }
}

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

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