:root {
  --bg: #0d0d0f;
  --bg-soft: #17181a;
  --panel: rgba(28, 23, 22, 0.92);
  --panel-alt: #1f1d1d;
  --primary: #f58220;
  --primary-strong: #ff9f1c;
  --text: #f7f3ee;
  --muted: #d4c3b6;
  --line: rgba(255, 160, 50, 0.18);
  --shadow: rgba(0, 0, 0, 0.5);
  --rust: #b94817;
  --wood: #191516;
  --wood-deep: #0c0b0d;
  --beer-gold: #ff9f1c;
  --beer-glow: rgba(245, 130, 32, 0.22);
  --black-ink: #090909;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    linear-gradient(180deg, rgba(13, 13, 15, 0.98), rgba(9, 9, 9, 0.98)),
    radial-gradient(circle at top, rgba(245, 130, 32, 0.16), transparent 30%);
  color: var(--text);
  text-shadow: 0 1px 0 rgba(0,0,0,0.35);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.02) 1px,
      transparent 2px,
      transparent 4px
    );
  opacity: 0.25;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 14, 15, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(245, 130, 32, 0.35);
  box-shadow: inset 0 -2px 0 rgba(245, 130, 32, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 159, 28, 0.9);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(245, 130, 32, 0.9), rgba(36, 16, 8, 0.9));
  color: #fff4ea;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08), 0 0 18px rgba(245, 130, 32, 0.18);
}

.brand-name,
.brand-tag {
  margin: 0;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
}

.nav-menu a:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #140d0a;
  box-shadow:
    0 12px 30px rgba(245, 130, 32, 0.2),
    inset 0 0 0 2px rgba(16, 10, 8, 0.18);
  font-weight: 900;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-inner {
  display: block;
}

.hero-copy {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--primary-strong);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-copy h1,
.section-heading h2,
.visit h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.1rem, 4.8vw, 5.6rem);
  max-width: 780px;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  line-height: 0.92;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
  margin: 1.2rem 0 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.glass-card {
  width: min(100%, 420px);
  min-height: 430px;
  padding: 2rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(26, 22, 23, 0.96), rgba(15, 12, 12, 0.9));
  border: 2px solid rgba(245, 130, 32, 0.44);
  box-shadow:
    0 0 0 5px rgba(245, 130, 32, 0.06),
    0 20px 55px rgba(0,0,0,0.38),
    inset 0 0 18px rgba(245, 130, 32, 0.08);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 15%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.25), transparent 60%);
  filter: blur(10px);
}

.card-label {
  color: var(--primary-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  margin: 0 0 1rem;
}

.glass-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.glass-card p {
  color: var(--muted);
  line-height: 1.8;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: 2rem;
}

.card-price span {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-strong);
}

.card-price small {
  color: var(--muted);
}

.section {
  padding: 4.25rem 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.visit h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.about-copy {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.04rem;
}

.featured {
  background: rgba(255, 255, 255, 0.012);
  border-block: 1px solid var(--line);
}

.drink-grid,
.menu-grid,
.visit-grid {
  display: grid;
  gap: 1.5rem;
}

.drink-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem;
}

.drink-card,
.menu-block,
.booking-box {
  background: linear-gradient(180deg, rgba(28, 23, 23, 1), rgba(15, 14, 15, 0.94));
  border: 2px solid rgba(245, 130, 32, 0.18);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.02);
}

.drink-card {
  position: relative;
  overflow: hidden;
}

.drink-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(243, 161, 59, 0.08), transparent 42%);
}

.drink-card > * {
  position: relative;
}

.drink-number {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--primary-strong);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.drink-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}

.drink-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.drink-card strong {
  color: var(--primary-strong);
  font-size: 1.2rem;
}

.full-menu-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.35rem;
  margin-top: 2.5rem;
  align-items: start;
}

.menu-category {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(28, 24, 23, 1), rgba(18, 15, 15, 1));
  border: 1px solid rgba(245, 130, 32, 0.18);
  border-radius: 20px;
  padding: 1rem 1rem 0.7rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
  min-height: auto;
}

.menu-category.full-span {
  grid-column: 1 / -1;
}

.menu-category h3 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.menu-subgroup {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.menu-subgroup:first-of-type {
  border-top: none;
  padding-top: 0;
}

.menu-subgroup h4 {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-strong);
}

.menu-category table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.menu-category td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.menu-category tr:last-child td {
  border-bottom: none;
}

.menu-category td:last-child {
  text-align: right;
  padding-left: 0.75rem;
  white-space: normal;
  color: var(--primary-strong);
  font-weight: 800;
  min-width: 72px;
}

.specials-panel {
  background: linear-gradient(180deg, rgba(39, 26, 17, 1), rgba(18, 15, 15, 1));
  border-color: rgba(245, 130, 32, 0.34);
  box-shadow: 0 18px 36px rgba(245, 130, 32, 0.08);
}

.specials-panel .menu-subgroup {
  margin-top: 0.75rem;
}

.specials-panel .menu-subgroup h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.specials-panel td {
  font-size: 0.88rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.review-card {
  background: linear-gradient(180deg, rgba(28, 24, 23, 1), rgba(18, 15, 15, 1));
  border: 1px solid rgba(245, 130, 32, 0.18);
  border-radius: 20px;
  padding: 1.25rem 1.1rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.review-stars {
  color: var(--primary-strong);
  font-size: 1rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
}

.review-quote {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.reviewer {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
}

.event-list {
  margin-top: 2.7rem;
  display: grid;
  gap: 1rem;
}

.event-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 1.4rem;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(180deg, rgba(42, 30, 25, 1), rgba(25, 18, 15, 0.95));
  border: 2px solid rgba(255, 191, 91, 0.16);
  border-radius: 20px;
}

.event-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(245,130,32,0.2), rgba(18, 12, 10, 0.2));
  color: var(--primary-strong);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(245, 130, 32, 0.28);
}

.event-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1.4rem;
}

.event-item p {
  margin: 0;
  color: var(--muted);
}

.visit {
  padding-bottom: 5.5rem;
}

.visit-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  gap: 1.5rem;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
}

.visit-list li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.7;
}

.visit-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-strong);
  font-size: 1.3rem;
  line-height: 1;
  top: 0.2rem;
}

.visit-card {
  background: linear-gradient(180deg, rgba(28, 24, 23, 1), rgba(18, 15, 15, 1));
  border: 1px solid rgba(245, 130, 32, 0.2);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-pill {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.12);
  border: 1px solid rgba(245, 130, 32, 0.22);
  color: var(--primary-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
}

.visit-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 0.96;
}

.visit-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.8;
}

.visit-meta {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.visit-meta strong {
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-card .btn {
  margin-top: 0.75rem;
  width: fit-content;
}

.booking-box {
  background: linear-gradient(180deg, rgba(243, 161, 59, 0.08), rgba(255,255,255,0.02));
}

.booking-box h3 {
  margin-top: 0;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.booking-box p {
  margin-bottom: 1.4rem;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-inner p,
.socials a {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 46px;
  height: 42px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

@media (max-width: 980px) {
  .full-menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero-inner,
  .split,
  .visit-grid,
  .drink-grid,
  .menu-grid,
  .full-menu-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(18, 13, 15, 0.97);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow) 0 20px 50px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
  }

  .hero {
    padding-top: 3rem;
  }
}
