:root {
  --bg: #050505;
  --panel: rgba(255,255,255,.065);
  --text: #f5f5f5;
  --muted: #b9b9b9;
  --line: rgba(255,255,255,.18);
  --shadow: 0 28px 90px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }

.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

body {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 24rem),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.06), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #0c0c0c 48%, #050505 100%);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  color: #050505;
  background: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.btn.alt {
  color: #fff;
  background: transparent;
  border-color: var(--line);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 68px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  align-items: center;
  gap: clamp(26px, 5vw, 74px);
}

.logo-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding: clamp(18px, 4vw, 34px);
}

.logo-card img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 22px;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(46px, 8vw, 92px);
  line-height: .9;
  margin: 0 0 22px;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 660px;
  color: #e8e8e8;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.35;
  margin: 0 0 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.actions-center {
  justify-content: center;
  margin-bottom: 0;
}

.quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick div,
.card,
.feature,
.drink-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.quick strong,
.feature strong,
.drink-card strong {
  display: block;
  font-size: 26px;
}

.quick span,
.feature span,
.drink-card span {
  display: block;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.35;
}

section, #location { padding: 82px 0; }

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

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin: 0;
}

.section-head p {
  color: var(--muted);
  max-width: 420px;
  line-height: 1.5;
  margin: 0;
}

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

.feature {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature .num {
  color: rgba(255,255,255,.28);
  font-weight: 900;
  letter-spacing: .1em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card.big {
  min-height: 430px;
  padding: clamp(22px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card.big p {
  color: #dedede;
  font-size: 21px;
  line-height: 1.45;
  max-width: 560px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: #e8e8e8;
  background: rgba(0,0,0,.24);
}

.drinks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.location {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
}

.map {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.9);
}

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

.info-list a,
.info-list div {
  display: block;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: var(--panel);
  text-decoration: none;
  color: #fff;
}

.info-list small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  margin-bottom: 7px;
}

.cta {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(34px, 7vw, 76px) 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.13), transparent 28rem),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}

.cta p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  max-width: 720px;
  margin: 18px auto 26px;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .location { grid-template-columns: 1fr; }

  .features { grid-template-columns: repeat(2, 1fr); }
  .drinks { grid-template-columns: repeat(2, 1fr); }
  .quick { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 24px, 1120px); }
  .features,
  .drinks { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero { padding-top: 34px; }
  section, #location { padding: 56px 0; }
}
