/* ─────────────────────────────────────────────────────────────
   HWY 81 VODKA — LANDING PAGE STYLES
   hwy81.com
───────────────────────────────────────────────────────────── */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #06080a;
  --dark:       #0c0e11;
  --dark-card:  #111418;
  --forest:     #1a3326;
  --forest-mid: #234d38;
  --gold:       #c8a84a;
  --gold-light: #e0c46e;
  --gold-dim:   #9e8038;
  --white:      #f2f0eb;
  --muted:      #72706a;
  --light:      #b8b5af;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

::selection { background: var(--gold); color: var(--black); }

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ── Typography helpers ───────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.centered {
  justify-content: center;
}
.section-label.centered::before { display: none; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--white);
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  font-size: 0.88em;
}
.section-title.centered { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s var(--ease), transform 0.18s var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(242, 240, 235, 0.28);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.22s var(--ease), color 0.22s var(--ease), background 0.22s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Age Gate ─────────────────────────────────────────────── */
#age-gate {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}
#age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gate-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 79px,
      rgba(200, 168, 74, 0.025) 80px
    );
  pointer-events: none;
}

.gate-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gate-shield {
  margin-bottom: 2.5rem;
  animation: gateShieldIn 0.8s var(--ease) both;
}

@keyframes gateShieldIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.gate-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  animation: fadeUp 0.6s 0.3s var(--ease) both;
}

.gate-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  animation: fadeUp 0.6s 0.4s var(--ease) both;
}
.gate-title span { color: var(--gold); }

.gate-sub {
  font-family: var(--font-head);
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 200;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  animation: fadeUp 0.6s 0.5s var(--ease) both;
}

.gate-question {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s 0.6s var(--ease) both;
}

.gate-buttons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.7s var(--ease) both;
}

.btn-gate-yes {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-gate-yes:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-gate-no {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(114, 112, 106, 0.4);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-gate-no:hover { border-color: var(--white); color: var(--white); }

.gate-disclaimer {
  font-size: 0.68rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.8;
  animation: fadeUp 0.6s 0.8s var(--ease) both;
}

/* ── Navigation ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3rem;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(6, 8, 10, 0.96);
  padding: 1rem 3rem;
  border-color: rgba(200, 168, 74, 0.1);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo-text em { font-style: normal; color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.btn-nav-cta {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(200, 168, 74, 0.5);
  padding: 0.55rem 1.3rem;
  transition: background 0.2s, color 0.2s;
}
.btn-nav-cta:hover { background: var(--gold); color: var(--black); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu ul a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--gold); }

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 72% 40%, rgba(26, 51, 38, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 90% 40% at 50% 100%, rgba(200, 168, 74, 0.07) 0%, transparent 60%),
    linear-gradient(185deg, #06080a 0%, #0b0d12 55%, #06080a 100%);
}

.hero-glow {
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200, 168, 74, 0.09) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

/* Decorative road lines */
.hero-road {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 220px;
  pointer-events: none;
  opacity: 0.12;
}
.road-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  border-radius: 3px;
  background: var(--gold);
  animation: roadScroll 2.4s linear infinite;
}
.road-line:nth-child(1) { height: 60px; bottom: 20px;  animation-delay: 0s; }
.road-line:nth-child(2) { height: 60px; bottom: 100px; animation-delay: 0.8s; }
.road-line:nth-child(3) { height: 60px; bottom: 180px; animation-delay: 1.6s; }

@keyframes roadScroll {
  0%   { opacity: 0; transform: translateX(-50%) scaleY(0.6); }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) scaleY(0.6); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 9rem 5rem 5rem 5rem;
  gap: 2rem;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
}

/* Hero content */
.hero-content { padding-right: 2rem; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-head);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.title-hwy {
  display: block;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--white);
}
.title-num {
  display: block;
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 0.88;
  text-shadow: 0 0 80px rgba(200, 168, 74, 0.2);
}
.title-vodka {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 2.8rem);
  font-weight: 200;
  letter-spacing: 0.55em;
  color: var(--white);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  color: var(--muted);
  line-height: 1.85;
  max-width: 400px;
  margin: 2rem 0 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero bottle column */
.hero-bottle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
}

.bottle-halo {
  position: absolute;
  width: 280px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(200, 168, 74, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(28px);
  animation: haloPulse 4s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}

.bottle-real {
  position: relative;
  height: 620px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.9)) drop-shadow(0 0 30px rgba(200,168,74,0.12));
  z-index: 2;
  transition: transform 0.6s var(--ease);
}
.bottle-real:hover { transform: translateY(-6px); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200,168,74,0.7), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── Stats Bar ────────────────────────────────────────────── */
#stats {
  background: var(--forest);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top:    1px solid rgba(200, 168, 74, 0.18);
  border-bottom: 1px solid rgba(200, 168, 74, 0.18);
}

.stat-item {
  text-align: center;
  padding: 2.2rem 1rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(200, 168, 74, 0.2);
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 240, 235, 0.5);
  margin-top: 0.35rem;
}

/* ── Story Section ────────────────────────────────────────── */
#story {
  padding: 9rem 5rem;
  max-width: 1380px;
  margin: 0 auto;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 7rem;
  align-items: center;
}

.story-visual { position: relative; }

.story-img-frame {
  position: relative;
  overflow: hidden;
}

.story-img-bg {
  height: 600px;
  background: #080f0c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  width: 110px;
  height: 110px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.badge-year {
  font-family: var(--font-head);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(6,8,10,0.65);
}
.badge-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
}

.story-text { padding-left: 1rem; }

.story-text p {
  color: var(--light);
  font-size: 0.98rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.4rem;
}

.story-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.6rem;
  margin: 2.5rem 0;
}
.story-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Craft Section ────────────────────────────────────────── */
#craft {
  background: var(--dark);
  padding: 9rem 5rem;
  position: relative;
}

.section-top-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 168, 74, 0.35), transparent);
}

.craft-inner { max-width: 1380px; margin: 0 auto; }

.craft-header { margin-bottom: 4rem; }

.hwy-stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.stripe-dash {
  height: 3px;
  background: var(--gold);
  opacity: 0.35;
  border-radius: 2px;
}
.stripe-dash.long  { width: 70px; }
.stripe-dash.short { width: 22px; }

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

.craft-card {
  background: var(--dark-card);
  padding: 3rem 2.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}
.craft-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.craft-card:hover { transform: translateY(-5px); }
.craft-card:hover::after { transform: scaleX(1); }

.card-num {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-head);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(200, 168, 74, 0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.card-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 2rem;
}
.card-icon svg { width: 100%; height: 100%; }

.craft-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.craft-card p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}

/* ── Cocktails Section ────────────────────────────────────── */
#cocktails {
  padding: 9rem 5rem;
  max-width: 1380px;
  margin: 0 auto;
}

.cocktails-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.cocktails-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cocktail-card {
  background: var(--dark-card);
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}
.cocktail-card:hover { transform: translateY(-5px); }

.cocktail-visual {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.c-green { background: linear-gradient(145deg, #0e2018, #182f22); }
.c-blue  { background: linear-gradient(145deg, #0e1820, #182530); }
.c-amber { background: linear-gradient(145deg, #201810, #30211a); }

.drink-icon {
  opacity: 0.55;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}
.cocktail-card:hover .drink-icon {
  opacity: 0.85;
  transform: scale(1.06);
}

.cocktail-body { padding: 1.8rem 2rem 2rem; }

.cocktail-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.55rem;
}
.cocktail-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.4rem;
  font-weight: 300;
}
.cocktail-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.cocktail-tags li {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 168, 74, 0.28);
  padding: 0.28rem 0.7rem;
  transition: background 0.2s, color 0.2s;
}
.cocktail-tags li:hover {
  background: rgba(200, 168, 74, 0.08);
}

/* ── Specs Section ────────────────────────────────────────── */
#specs {
  background: var(--dark);
  padding: 9rem 5rem;
  position: relative;
}

.specs-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.specs-desc {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.9;
  font-weight: 300;
  max-width: 380px;
  margin-top: 1.4rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(242, 240, 235, 0.06);
}
.spec-cell {
  padding: 1.8rem 2rem;
  border-bottom: 1px solid rgba(242, 240, 235, 0.06);
  border-right: 1px solid rgba(242, 240, 235, 0.06);
}
.spec-cell:nth-child(even) { border-right: none; }
.spec-cell:nth-last-child(-n+2) { border-bottom: none; }

.spec-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.spec-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
.spec-val.gold { color: var(--gold); }

/* ── Find Us Section ──────────────────────────────────────── */
#find-us {
  padding: 10rem 5rem;
  position: relative;
  overflow: hidden;
}

.find-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.shield-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.find-desc {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  max-width: 440px;
  margin: 1.5rem auto 0;
}

.find-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(242, 240, 235, 0.07);
  padding: 5rem 5rem 2.5rem;
}

.footer-inner { max-width: 1380px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(242, 240, 235, 0.06);
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.9;
  margin-top: 1.4rem;
  max-width: 260px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 240, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.social-btn svg { width: 15px; height: 15px; }

/* ── Scroll Animations ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero animate-on-load */
.animate {
  opacity: 0;
  transform: translateY(24px);
}
.animate.in {
  animation: fadeUp 0.75s var(--ease) forwards;
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner    { grid-template-columns: 1fr; padding: 9rem 3rem 5rem; text-align: center; }
  .hero-content  { padding-right: 0; }
  .hero-eyebrow  { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-tagline  { margin-left: auto; margin-right: auto; }
  .hero-actions  { justify-content: center; }
  .hero-bottle   { min-height: 420px; }
  .bottle-real   { height: 420px; }

  .story-inner   { grid-template-columns: 1fr; gap: 4rem; }
  .story-img-bg  { height: 380px; }
  .story-badge   { bottom: -1rem; right: -0.5rem; }

  .craft-grid      { grid-template-columns: 1fr; gap: 2px; }
  .cocktails-grid  { grid-template-columns: 1fr 1fr; }
  .specs-inner     { grid-template-columns: 1fr; gap: 4rem; }

  #story, #cocktails, #find-us { padding: 7rem 3rem; }
  #craft, #specs { padding: 7rem 3rem; }
  footer { padding: 4rem 3rem 2rem; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  nav { padding: 1.2rem 1.8rem; }
  nav.scrolled { padding: 0.9rem 1.8rem; }
  .nav-links, .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  #stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::before { display: none; }
  .stat-item:nth-child(3)::before { display: none; }

  .cocktails-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cocktails-grid { grid-template-columns: 1fr; }

  #story, #cocktails, #find-us { padding: 5rem 1.8rem; }
  #craft, #specs { padding: 5rem 1.8rem; }
  footer { padding: 3.5rem 1.8rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .gate-buttons { flex-direction: column; align-items: center; }

  .specs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 8rem 1.5rem 4rem; }
  .title-num  { font-size: clamp(5rem, 22vw, 8rem); }
}
