:root {
  --bg: #f5f6f1;
  --ink: #12161c;
  --soft-ink: #59606b;
  --muted: #7b817e;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: rgba(18, 22, 28, 0.1);
  --accent: #bc7d45;
  --accent-dark: #81512f;
  --teal: #176a64;
  --blue: #243f5b;
  --sage: #dde7de;
  --shadow: 0 24px 70px rgba(18, 22, 28, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 4%, rgba(188, 125, 69, 0.18), transparent 24%),
    radial-gradient(circle at 8% 34%, rgba(23, 106, 100, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 236, 229, 0.5)),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.nav-shell {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(1120px, calc(100% - 28px));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(18, 22, 28, 0.52);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
}

.nav-solid {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  border-color: var(--line);
}

.brand,
.nav-links,
.button-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  color: #fff;
  font-size: 0.84rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nav-links {
  justify-content: center;
  gap: clamp(10px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .active {
  opacity: 1;
}

.nav-cta {
  border-radius: 999px;
  padding: 12px 18px;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.nav-solid .nav-cta {
  background: linear-gradient(135deg, var(--ink), var(--blue));
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  color: #fff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 12, 16, 0.86), rgba(18, 22, 28, 0.48) 48%, rgba(18, 22, 28, 0.12)),
    linear-gradient(180deg, rgba(18, 22, 28, 0.06), rgba(18, 22, 28, 0.64));
}

.hero-grid {
  position: relative;
  display: grid;
  width: min(1120px, calc(100% - 36px));
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 42px;
  margin: 0 auto;
  padding: 138px 0 58px;
}

.hero-copy {
  max-width: 650px;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mini-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.15rem, 6.4vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy p,
.shop-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.93rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  box-shadow: 0 14px 32px rgba(23, 106, 100, 0.25);
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
}

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

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-panel div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel span,
.ticker span,
.stock-note p,
.footer span {
  color: rgba(255, 255, 255, 0.64);
}

.hero-panel span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 1.04rem;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: #111820;
}

.ticker span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 850;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

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

.info-card,
.visit-card,
.filter-panel,
.product-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(16, 17, 20, 0.08);
  backdrop-filter: blur(18px);
}

.info-card {
  min-height: 230px;
  padding: 26px;
}

.info-card p,
.split-copy p,
.visit-card p,
.stock-note p,
.product-card p {
  color: var(--soft-ink);
}

.icon-dot {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal), #79b4a5);
}

.icon-dot.green {
  background: linear-gradient(135deg, var(--blue), #7194b5);
}

.icon-dot.gold {
  background: linear-gradient(135deg, var(--accent), #e4be86);
}

.split-feature {
  display: grid;
  width: min(1120px, calc(100% - 36px));
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
  margin: 0 auto;
  padding: 10px 0 88px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 950;
}

.product-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 180px 180px;
  gap: 16px;
}

.bottle-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #17212b, #31516d);
  color: #fff;
}

.bottle-card.tall {
  grid-row: span 2;
}

.bottle-card.accent {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--teal), #153c3a);
}

.bottle-card span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 950;
}

.bottle-card strong {
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1;
}

.visit-section {
  padding: 0 18px 90px;
}

.visit-card {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 76px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 244, 0.78)),
    radial-gradient(circle at 90% 16%, rgba(23, 106, 100, 0.13), transparent 28%);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #111820;
  color: #fff;
}

.shop-hero {
  padding: 142px clamp(18px, 5vw, 72px) 62px;
  background:
    linear-gradient(135deg, rgba(17, 24, 32, 0.94), rgba(36, 63, 91, 0.9)),
    radial-gradient(circle at 78% 22%, rgba(188, 125, 69, 0.28), transparent 28%);
  color: #fff;
}

.shop-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.shop-layout {
  display: grid;
  width: min(1220px, calc(100% - 36px));
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin: 0 auto;
  padding: 42px 0 104px;
}

.filter-panel {
  position: sticky;
  top: 112px;
  padding: 20px;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.filter-button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.filter-button.active {
  background: var(--ink);
  color: #fff;
}

.stock-note {
  margin-top: 18px;
  border-radius: 22px;
  padding: 18px;
  background: var(--ink);
  color: #fff;
}

.stock-note a {
  color: var(--gold);
  font-weight: 950;
}

.product-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.product-toolbar h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

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

.product-card {
  overflow: hidden;
  background: var(--surface-strong);
}

.product-art {
  position: relative;
  display: grid;
  min-height: 190px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--card-a), var(--card-b));
}

.product-art::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
  filter: blur(1px);
}

.bottle-shape {
  position: relative;
  width: 70px;
  height: 152px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02)), rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32), 0 22px 50px rgba(0, 0, 0, 0.24);
}

.bottle-shape::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 22px;
  width: 26px;
  height: 42px;
  border-radius: 10px 10px 4px 4px;
  background: rgba(255, 255, 255, 0.36);
}

.product-body {
  padding: 20px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.badge {
  border-radius: 999px;
  padding: 7px 10px;
  background: #f3ede2;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  color: var(--ink);
  font-weight: 950;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.product-card p {
  min-height: 48px;
  margin-bottom: 18px;
}

.product-card .btn {
  width: 100%;
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 7, 8, 0.76);
  backdrop-filter: blur(18px);
}

.age-gate.hidden {
  display: none;
}

.age-panel {
  width: min(460px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 44px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.age-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 0.96;
}

.age-panel p {
  color: var(--soft-ink);
}

@media (max-width: 920px) {
  .nav-shell {
    grid-template-columns: auto 1fr;
    border-radius: 28px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    justify-content: end;
  }

  .hero-grid,
  .section-kicker,
  .split-feature,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: end;
    min-height: 660px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

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

  .filter-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 9px;
  }

  .brand-text {
    display: none;
  }

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

  .nav-links {
    gap: 12px;
    font-size: 0.82rem;
  }

  .hero,
  .hero-grid {
    min-height: 620px;
  }

  .hero-grid {
    width: min(100% - 28px, 1120px);
    padding: 108px 0 28px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.25rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.9rem);
    line-height: 1.04;
  }

  .hero-copy p,
  .shop-hero p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .intro-cards,
  .product-preview,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-preview {
    grid-template-rows: auto;
  }

  .bottle-card.tall {
    grid-row: auto;
  }

  .product-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}
