:root {
  --bg: #090b0d;
  --bg-soft: #111519;
  --surface: #171b1f;
  --surface-2: #20262b;
  --text: #f4f2ed;
  --muted: #a8a29a;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #d62b28;
  --accent-deep: #9e1f1e;
  --gold: #d8c09a;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.46);
  --max: 1240px;
}

* {
  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",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--accent);
  color: #fff;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 28px clamp(20px, 4vw, 54px);
  color: #fff;
  transition:
    background 180ms ease,
    padding 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(9, 11, 13, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  width: fit-content;
  line-height: 1;
}

.brand-logo {
  width: 118px;
  height: 64px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.42));
}

.nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
}

.nav a:hover {
  color: #fff;
}

.header-cta {
  justify-self: end;
  min-width: 112px;
  padding: 14px 18px;
  background: var(--accent);
  border: 1px solid var(--accent);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.header-cta:hover,
.btn-primary:hover {
  background: #f03531;
  border-color: #f03531;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px clamp(24px, 4vw, 54px) 80px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.22) 47%, rgba(0, 0, 0, 0.12) 100%),
    url("./assets/hero.jpeg") center / cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    radial-gradient(circle at 68% 28%, rgba(214, 43, 40, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(9, 11, 13, 0.14) 60%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
}

.hero-logo {
  width: min(360px, 72vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 22px;
  opacity: 0.9;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.52));
}

.hero h1 {
  margin: 0;
  font-size: clamp(88px, 15vw, 210px);
  line-height: 0.86;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-line {
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy {
  max-width: 520px;
  margin: 44px 0 0;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.28;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  color: #fff;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.award {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.award img {
  width: auto;
  height: 58px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.3);
}

.award img:first-child {
  border-radius: 50%;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
}

.scroll-cue svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px clamp(20px, 3vw, 34px);
  border-top: 1px solid var(--line);
}

.section-index {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 850;
}

h3,
p {
  margin-top: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(480px, 1.5fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.section-copy p,
.section-head p,
.reservation p,
.event-card p,
.drink-card p,
.info-list {
  color: var(--muted);
  line-height: 1.85;
}

.section-copy p {
  max-width: 460px;
  margin: 26px 0 0;
  font-size: 16px;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 24px;
  align-items: end;
}

.photo-frame {
  margin: 0;
  overflow: hidden;
  min-height: 420px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.photo-frame.wide {
  aspect-ratio: 1.28;
}

.photo-frame:not(.wide) {
  aspect-ratio: 0.8;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 410px;
  margin: 0;
  font-size: 15px;
}

.tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  max-width: 100%;
}

.tab {
  min-width: 84px;
  height: 38px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.tab.is-active {
  background: #fff;
  color: #111;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.is-hidden {
  display: none !important;
}

.drink-card {
  min-height: 226px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--surface);
}

.drink-card span {
  margin-bottom: 38px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.drink-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.drink-card p {
  margin-bottom: 22px;
  font-size: 14px;
}

.drink-card strong {
  margin-top: auto;
  font-size: 21px;
}

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

.event-card {
  display: grid;
  grid-template-rows: 210px auto auto;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.event-card img {
  filter: grayscale(0.1);
}

.event-card h3 {
  margin: 0;
  font-size: 20px;
}

.event-card p {
  margin: 0;
  font-size: 14px;
}

.event-card.active {
  border-color: var(--accent);
}

.gallery-preview {
  margin: 34px 0 0;
  height: min(58vw, 560px);
  overflow: hidden;
  background: var(--surface);
}

.location {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr 0.85fr;
  gap: 40px;
  align-items: stretch;
}

.info-list {
  display: grid;
  gap: 19px;
  margin: 28px 0 0;
  font-size: 15px;
}

.info-list div {
  display: grid;
  gap: 5px;
}

.info-list dt {
  color: #fff;
  font-weight: 850;
}

.info-list dd {
  margin: 0;
}

.map-card {
  position: relative;
  display: block;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(214, 43, 40, 0.12), transparent 52%),
    #13181d;
}

.map-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.map-grid {
  position: absolute;
  inset: -40px;
  opacity: 0.5;
  background-image:
    linear-gradient(25deg, transparent 0 42%, rgba(255, 255, 255, 0.14) 42% 43%, transparent 43%),
    linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.13) 38% 39%, transparent 39%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size:
    230px 170px,
    180px 120px,
    74px 74px,
    74px 74px;
  transform: rotate(-6deg);
}

.pin {
  position: absolute;
  inset: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.pin svg {
  width: 38px;
  height: 38px;
  fill: #fff;
}

.pin circle {
  fill: var(--accent);
}

.pin small {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.reservation {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.reservation h2 {
  font-size: 32px;
}

.call-button {
  width: 100%;
  margin-top: 26px;
}

.form-note {
  min-height: 28px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px clamp(20px, 3vw, 34px) 54px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro,
  .location {
    grid-template-columns: 1fr;
  }

  .photo-pair,
  .menu-grid,
  .event-strip {
    grid-template-columns: 1fr 1fr;
  }

  .reservation {
    padding: 26px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 18px 18px;
  }

  .brand-logo {
    width: 92px;
    height: 50px;
  }

  .header-cta {
    min-width: auto;
    padding: 12px 14px;
    font-size: 12px;
  }

  .hero {
    align-items: flex-end;
    min-height: 100svh;
    padding: 132px 20px 82px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.74) 66%, var(--bg) 100%),
      url("./assets/hero.jpeg") 58% center / cover;
  }

  .hero h1 {
    font-size: clamp(76px, 28vw, 118px);
  }

  .hero-logo {
    width: min(260px, 72vw);
    margin-bottom: 16px;
  }

  .hero-copy {
    margin-top: 34px;
    font-size: 30px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    flex: 1 1 150px;
    min-height: 50px;
    padding: 0 18px;
    font-size: 14px;
  }

  .award {
    margin-top: 28px;
  }

  .section {
    padding: 64px 20px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .tabs {
    width: 100%;
    overflow-x: auto;
  }

  .tab {
    flex: 1 0 auto;
  }

  .photo-pair,
  .menu-grid,
  .event-strip {
    grid-template-columns: 1fr;
  }

  .photo-frame {
    min-height: 0;
    height: 320px;
    aspect-ratio: auto;
  }

  .photo-frame.wide,
  .photo-frame:not(.wide) {
    aspect-ratio: auto;
  }

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

  .drink-card span {
    margin-bottom: 34px;
  }

  .event-card {
    grid-template-rows: 180px auto auto;
  }

  .gallery-preview {
    height: 360px;
  }

  .map-grid {
    inset: 0;
    transform: none;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
