:root {
  color-scheme: dark;
  --bg: #10100f;
  --panel: #181818;
  --panel-soft: #20201e;
  --text: #f7f1e8;
  --muted: #b8b0a4;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d7b56d;
  --red: #e34c3f;
  --green: #37b58a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(16, 16, 15, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.visit-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #10100f;
  background: var(--gold);
  border-radius: 50%;
  font-size: 14px;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.button,
.chat-form button {
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  padding: 150px clamp(18px, 6vw, 80px) 76px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1524368535928-5b5e00ddc76b?auto=format&fit=crop&w=1800&q=84");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.94), rgba(16, 16, 15, 0.62) 46%, rgba(16, 16, 15, 0.22)),
    linear-gradient(0deg, rgba(16, 16, 15, 0.96), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(54px, 11vw, 142px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  color: #e7ddd0;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.visit-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 15px;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.button.outline {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 74px);
  bottom: 44px;
  z-index: 2;
  width: min(340px, calc(100% - 36px));
  padding: 20px;
  background: rgba(24, 24, 24, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.show-card span,
.drink-card span,
.chat-widget header span {
  color: var(--muted);
  font-size: 13px;
}

.hero-panel strong {
  display: block;
  margin: 6px 0;
  font-size: 20px;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
}

.section,
.section-band {
  padding: 92px clamp(18px, 6vw, 80px);
}

.section-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: end;
  background: #141413;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-band p:last-child,
.visit-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.show-card {
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.show-card img {
  height: 270px;
  object-fit: cover;
}

.show-card div {
  padding: 20px;
}

.show-card p,
.drink-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-section {
  background: #f0e8dc;
  color: #151515;
}

.menu-section .section-kicker {
  color: #a65d24;
}

.drink-slider {
  margin-inline: calc(clamp(18px, 6vw, 80px) * -1);
  padding: 2px 0 4px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
}

.drink-slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.drink-slider::-webkit-scrollbar {
  display: none;
}

.drink-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-inline: clamp(18px, 6vw, 80px);
  animation: drink-marquee 34s linear infinite;
}

.drink-slider:hover .drink-track,
.drink-slider:focus-within .drink-track,
.drink-slider.is-dragging .drink-track {
  animation-play-state: paused;
}

@keyframes drink-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.drink-card {
  display: grid;
  width: clamp(270px, 31vw, 360px);
  min-height: 392px;
  align-content: start;
  padding: 24px;
  background: #f7efe4;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 8px;
  flex: 0 0 auto;
  white-space: normal;
}

.drink-image {
  display: grid;
  min-height: 150px;
  margin-bottom: 22px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.78), rgba(21, 21, 21, 0.3)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 15px),
    #cbb99f;
  border-radius: 6px;
}

.drink-image span {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.drink-card span {
  display: block;
  margin-bottom: 30px;
  color: #8b6b4b;
}

.drink-card strong {
  display: block;
  margin-top: 24px;
  font-size: 22px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.visit-copy {
  align-self: center;
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: center;
  padding: 34px;
  overflow: hidden;
  color: var(--text);
  text-align: left;
  background:
    linear-gradient(135deg, rgba(31, 65, 81, 0.92), rgba(23, 58, 50, 0.82)),
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255, 255, 255, 0.08) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255, 255, 255, 0.08) 49px),
    #18201d;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.map-placeholder span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.map-placeholder strong {
  margin: 16px 0 10px;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 0.96;
}

.map-placeholder p {
  margin: 0;
  max-width: 520px;
  color: #d6e2e5;
  font-size: 18px;
}

.map-placeholder i {
  position: absolute;
  top: 46px;
  right: 46px;
  width: 42px;
  height: 42px;
  background: var(--red);
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transform: rotate(-45deg);
}

.map-placeholder i::after {
  position: absolute;
  inset: 8px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
}

.map-modal[hidden] {
  display: none;
}

.map-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.map-sheet {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 26px;
  color: #151515;
  background: #f8f3ec;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-sheet h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.map-address {
  margin-bottom: 22px;
  color: #5d554c;
}

.map-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  color: #151515;
  background: rgba(0, 0, 0, 0.06);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.map-options {
  display: grid;
  gap: 10px;
}

.map-option {
  display: grid;
  gap: 3px;
  padding: 15px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.map-option span {
  font-size: 18px;
  font-weight: 900;
}

.map-option strong {
  color: #70685f;
  font-size: 13px;
}

.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  min-width: 86px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 900;
}

.chat-launcher span {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(55, 181, 138, 0.18);
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 31;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(390px, calc(100vw - 24px));
  height: 540px;
  max-height: calc(100vh - 116px);
  overflow: hidden;
  background: #f8f3ec;
  color: #151515;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chat-widget[hidden] {
  display: none;
}

.chat-widget header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #151515;
  color: #fff;
}

.chat-widget header div {
  display: grid;
  gap: 2px;
}

.chat-close {
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
}

.message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.message.bot {
  align-self: flex-start;
  background: #e9dfd2;
}

.message.user {
  align-self: flex-end;
  background: #151515;
  color: #fff;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-replies button {
  padding: 8px 10px;
  color: #151515;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.chat-form input {
  min-width: 0;
  height: 44px;
  padding: 0 13px;
  color: #151515;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  outline: none;
}

.chat-form input:focus {
  border-color: var(--red);
}

.chat-form button {
  height: 44px;
  padding: 0 16px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding-top: 120px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(16, 16, 15, 0.96), rgba(16, 16, 15, 0.5)),
      linear-gradient(90deg, rgba(16, 16, 15, 0.76), rgba(16, 16, 15, 0.2));
  }

  .hero-panel {
    right: 18px;
    left: 18px;
  }

  .section-band,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .drink-slider {
    margin-inline: calc(clamp(18px, 6vw, 80px) * -1);
  }

  .drink-card {
    width: min(330px, 54vw);
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px;
  }

  .brand {
    font-size: 13px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 790px;
    padding: 108px 16px 180px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 78px);
  }

  .button {
    width: 100%;
  }

  .section,
  .section-band {
    padding: 64px 16px;
  }

  .section-heading {
    display: block;
  }

  .drink-slider {
    margin-inline: -16px;
  }

  .drink-track {
    padding-inline: 16px;
  }

  .drink-card {
    width: min(282px, 82vw);
  }

  .show-card img {
    height: 220px;
  }

  .drink-card {
    min-height: 360px;
  }

  .chat-launcher {
    right: 12px;
    bottom: 12px;
  }

  .chat-widget {
    right: 12px;
    bottom: 76px;
    height: min(560px, calc(100vh - 94px));
  }

  .map-modal {
    align-items: end;
    padding: 12px;
  }

  .map-sheet {
    width: 100%;
    padding: 24px 18px 18px;
  }

  .map-placeholder {
    min-height: 320px;
    padding: 28px;
  }

  .map-placeholder i {
    top: 30px;
    right: 30px;
  }
}
