/* CSS Document */
:root {
  --bg: #0f0f0f;
  --bg-soft: #181818;
  --card: #222;
  --gold: #f4b942;
  --gold-dark: #c98718;
  --text: #ffffff;
  --muted: #d3d3d3;
  --border: rgba(255, 255, 255, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.social-links a {
  opacity: 0.88;
  transition: 0.2s ease;
}

.nav-links a:hover,
.social-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #111 0%, #211503 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
	linear-gradient(90deg, rgba(15, 15, 15, 0.96) 0%, rgba(15, 15, 15, 0.72) 46%, rgba(15, 15, 15, 0.24) 100%),
	radial-gradient(circle at 80% 20%, rgba(244, 185, 66, 0.24), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  border: 1px solid rgba(244, 185, 66, 0.35);
  background: rgba(244, 185, 66, 0.1);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 34px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
}

.button-primary {
  background: var(--gold);
  color: #111;
}

.button-primary:hover {
  background: #ffd16b;
  transform: translateY(-2px);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 96px 0;
}

.section-dark {
  background: var(--bg);
}

.section-soft {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.section-heading p,
.split p,
.card p,
.tap-card p,
.location-details p {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--gold);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: 22px;
}

.card h3,
.tap-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.tap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tap-card {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: 0.2s ease;
}

.tap-card:hover {
  border-color: rgba(244, 185, 66, 0.55);
  transform: translateY(-3px);
}

.tap-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.style {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 4px;
}

.abv {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.85rem;
  font-weight: 900;
  height: fit-content;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-box {
  border: 1px solid rgba(244, 185, 66, 0.28);
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.16), rgba(255, 255, 255, 0.04));
  border-radius: 28px;
  padding: 40px;
}

.location-details {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.detail-item {
  display: flex;
  gap: 16px;
}

.detail-icon {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1.3;
}

.map-wrapper {
  min-height: 390px;
  border-radius: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #111;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 390px;
  border: 0;
  display: block;
}

.map-link-bar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.map-link-bar a {
  pointer-events: auto;
  background: rgba(15, 15, 15, 0.88);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.map-link-bar a:hover {
  color: var(--gold);
}

footer {
  border-top: 1px solid var(--border);
  background: #090909;
  padding: 30px 0;
  color: #aaa;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .nav {
	min-height: auto;
	padding: 16px 0;
	flex-wrap: wrap;
  }

  .nav-links {
	order: 3;
	width: 100%;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 8px;
  }

  .social-links {
	margin-left: auto;
  }

  .grid-3,
  .tap-grid,
  .split {
	grid-template-columns: 1fr;
  }

  section {
	padding: 74px 0;
  }

  .hero-content {
	padding-top: 150px;
	padding-bottom: 60px;
  }
}

@media (max-width: 520px) {
  .container {
	width: min(100% - 28px, var(--max));
  }

  .social-links {
	width: 100%;
	justify-content: center;
  }

  .logo {
	width: 100%;
	justify-content: center;
  }

  .button {
	width: 100%;
  }
}