/* ============================================================
   HALSTONS OF ENGLAND — Shared Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #292B44;
  --navy-dark: #1e2038;
  --navy-mid:  #2f3152;
  --sky:       #46A6C8;
  --sky-pale:  rgba(70,166,200,0.15);
  --sand:      #EAE2CF;
  --sand-dim:  #c8bfa9;
  --black:     #100A0F;
  --citrus:    #E8742A;
  --white:     #ffffff;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius:    0;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--sand);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */

@font-face {
  font-family: 'Labor Union';
  src: url('fonts/LaborUnion-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

h1, h2, h3, h4, .display {
  font-family: 'Labor Union', sans-serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 4.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.8rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.6rem); }

p { font-size: clamp(0.9rem, 1.2vw, 1.05rem); font-weight: 300; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-flat);
  display: block;
  margin-bottom: 16px;
}

/* ── AGE GATE ─────────────────────────────────────────────── */

.age-gate {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(70,166,200,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(232,116,42,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.age-gate__inner {
  position: relative;
  text-align: center;
  max-width: 520px;
  width: 100%;
}

.age-gate__badge {
  width: 80px;
  height: auto;
  margin-bottom: 40px;
  opacity: 0.85;
}

.age-gate__title {
  font-family: 'Labor Union', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
}

.age-gate__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--sand-dim);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.age-gate__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.age-gate__declined {
  display: none;
  font-size: 0.9rem;
  color: var(--sand-dim);
  margin-bottom: 32px;
  line-height: 1.7;
}

.age-gate__privacy {
  font-size: 0.72rem;
  color: rgba(234,226,207,0.4);
  letter-spacing: 0.04em;
}

.age-gate__privacy a {
  color: rgba(234,226,207,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── NAVIGATION ───────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(30, 32, 56, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 56px;
  border-bottom: 1px solid rgba(70,166,200,0.1);
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  color: rgba(234,226,207,0.75);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sky);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--sand); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--sand); }

.nav__links .nav-cta a {
  background: var(--sky);
  color: var(--navy-dark);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav__links .nav-cta a::after { display: none; }
.nav__links .nav-cta a:hover {
  background: var(--sand);
  color: var(--navy-dark);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--sand);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.nav__mobile a {
  font-family: 'Labor Union', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav__mobile a:hover { color: var(--sky); }

/* ── COPPER METALLIC ─────────────────────────────────────── */

:root {
  --copper-dark:  #6B3318;
  --copper-base:  #B86830;
  --copper-mid:   #D4924C;
  --copper-light: #EDB878;
  --copper-shine: #F8DEBA;
  --copper-flat:  #C07840;
}

/* Metallic gradient — mimics brushed polished copper */
.copper-gradient {
  background: linear-gradient(
    112deg,
    #6B3318  0%,
    #A85C28 12%,
    #D4924C 26%,
    #F0C48A 38%,
    #F8DEBA 48%,
    #FAE5C4 52%,
    #EDB878 62%,
    #C47840 76%,
    #8B4820 88%,
    #6B3318 100%
  );
}

/* Button variant */
.btn-copper {
  background: linear-gradient(
    112deg,
    #6B3318  0%,
    #A85C28 12%,
    #D4924C 26%,
    #F0C48A 38%,
    #F8DEBA 47%,
    #FAE5C4 53%,
    #EDB878 62%,
    #C47840 76%,
    #8B4820 88%,
    #6B3318 100%
  );
  color: var(--navy-dark);
  border-color: transparent;
  font-weight: 700;
  letter-spacing: 0.2em;
  background-size: 200% 100%;
  transition: background-position 0.5s ease, transform var(--transition);
}

.btn-copper:hover {
  background-position: 60% 0;
  transform: translateY(-2px);
  color: var(--navy-dark);
  border-color: transparent;
}

/* Brand strip copper variant — chained for specificity over .brand-strip */
.brand-strip.brand-strip--copper {
  background: linear-gradient(
    112deg,
    #6B3318  0%,
    #A85C28 10%,
    #D4924C 24%,
    #EEB878 36%,
    #F8DEBA 46%,
    #FAE5C4 50%,
    #F0C48A 54%,
    #D4924C 66%,
    #A85C28 80%,
    #6B3318 100%
  );
}

.brand-strip.brand-strip--copper .brand-strip__track span {
  color: #3A1C08;
}

.brand-strip.brand-strip--copper .brand-strip__track .dot {
  color: rgba(58,28,8,0.35);
}

/* ── BUTTONS ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(
    112deg,
    #6B3318  0%,
    #A85C28 12%,
    #D4924C 26%,
    #F0C48A 38%,
    #F8DEBA 47%,
    #FAE5C4 53%,
    #EDB878 62%,
    #C47840 76%,
    #8B4820 88%,
    #6B3318 100%
  );
  color: var(--navy-dark);
  border-color: transparent;
  font-weight: 700;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: var(--navy-dark);
  border-color: transparent;
}

.btn-outline {
  background: transparent;
  color: var(--copper-flat);
  border-color: var(--copper-flat);
}

.btn-outline:hover {
  background: rgba(192,120,64,0.12);
  border-color: var(--copper-light);
  color: var(--copper-light);
  transform: translateY(-2px);
}

.btn-outline-sky {
  background: transparent;
  color: var(--copper-flat);
  border-color: var(--copper-flat);
}

.btn-outline-sky:hover {
  background: rgba(192,120,64,0.12);
  border-color: var(--copper-light);
  color: var(--copper-light);
  transform: translateY(-2px);
}

/* ── SECTIONS ─────────────────────────────────────────────── */

.section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 96px);
}

.section-dark  { background: var(--navy-dark); }
.section-mid   { background: var(--navy-mid); }
.section-navy  { background: var(--navy); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ── DIVIDER ──────────────────────────────────────────────── */

.divider {
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--copper-dark), var(--copper-light), var(--copper-dark));
  margin: 32px 0;
}

.divider-center { margin: 32px auto; }

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 clamp(24px, 6vw, 96px);
  background: var(--navy-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(70,166,200,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(232,116,42,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 20%, rgba(41,43,68,0.9) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 120px 0 80px;
}

.hero__content { }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-flat);
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--copper-flat);
}

.hero__headline {
  font-family: 'Labor Union', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 28px;
}

.hero__headline span { color: var(--sky); }

.hero__sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 300;
  color: var(--sand-dim);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 48px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero__bottle {
  max-height: 680px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 40px 80px rgba(16,10,15,0.6));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */

.page-hero {
  padding: 160px clamp(24px, 6vw, 96px) 100px;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(70,166,200,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* ── BRAND STRIP ─────────────────────────────────────────── */

.brand-strip {
  padding: 20px clamp(24px, 6vw, 96px);
  background: var(--sky);
  overflow: hidden;
}

.brand-strip__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.brand-strip__track span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.brand-strip__track .dot {
  color: rgba(30,32,56,0.4);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── BETTER SHARED SECTION ───────────────────────────────── */

.better-shared {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.better-shared__text h2 {
  margin-bottom: 32px;
  color: var(--sand);
}

.better-shared__text p {
  color: var(--sand-dim);
  margin-bottom: 20px;
  max-width: 480px;
}

.better-shared__visual {
  display: flex;
  justify-content: center;
}

.better-shared__badge {
  width: clamp(200px, 30vw, 320px);
  opacity: 0.9;
  transition: transform 0.8s ease;
}

.better-shared__badge:hover { transform: rotate(5deg) scale(1.02); }

/* ── PRODUCT CARDS ───────────────────────────────────────── */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  border: 1px solid rgba(70,166,200,0.15);
  border-radius: 0;
  overflow: hidden;
  background: rgba(47,49,82,0.4);
  backdrop-filter: blur(4px);
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(70,166,200,0.4);
}

.product-card__image {
  background: rgba(30,32,56,0.5);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.product-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(70,166,200,0.08) 0%, transparent 70%);
}

.product-card__image img {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(16,10,15,0.5));
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04) translateY(-4px);
}

.product-card__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__sku {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}

.product-card__name {
  font-family: 'Labor Union', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
  line-height: 0.95;
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--sand-dim);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}

.product-card__details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(70,166,200,0.1);
}

.product-card__detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card__detail-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 600;
}

.product-card__detail-value {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sand);
}

/* ── FLAVOR TAGS ──────────────────────────────────────────── */

.flavor-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.flavor-tag {
  padding: 8px 20px;
  border: 1px solid rgba(70,166,200,0.3);
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(70,166,200,0.06);
  transition: all var(--transition);
}

.flavor-tag:hover {
  background: var(--sky);
  color: var(--navy-dark);
  border-color: var(--sky);
  transform: translateY(-2px);
}

/* ── TASTE GRID ───────────────────────────────────────────── */

.taste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.taste-card {
  padding: clamp(40px, 6vw, 80px);
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.taste-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 60px;
  background: var(--sky);
}

.taste-card__number {
  font-family: 'Labor Union', sans-serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(70,166,200,0.06);
  position: absolute;
  top: 20px;
  right: 30px;
  pointer-events: none;
}

.taste-card__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-flat);
  margin-bottom: 16px;
  display: block;
}

.taste-card h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--sand);
  margin-bottom: 24px;
}

.taste-card p {
  color: var(--sand-dim);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ── SERVE ────────────────────────────────────────────────── */

.serve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.serve-recipe {
  background: rgba(47,49,82,0.4);
  border: 1px solid rgba(70,166,200,0.15);
  border-radius: 0;
  padding: clamp(32px, 5vw, 64px);
}

.serve-recipe__title {
  font-family: 'Labor Union', sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
  line-height: 0.95;
}

.serve-recipe__subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 40px;
}

.ingredients-list {
  list-style: none;
  margin-bottom: 40px;
}

.ingredients-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(70,166,200,0.1);
  font-size: 0.92rem;
  color: var(--sand);
}

.ingredients-list li:last-child { border-bottom: none; }

.ingredients-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

.serve-steps {
  counter-reset: steps;
}

.serve-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(70,166,200,0.08);
  counter-increment: steps;
}

.serve-step:last-child { border-bottom: none; }

.serve-step__num {
  font-family: 'Labor Union', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(70,166,200,0.2);
  flex-shrink: 0;
  width: 60px;
}

.serve-step__content h4 {
  font-family: 'Labor Union', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.serve-step__content p {
  font-size: 0.88rem;
  color: var(--sand-dim);
  line-height: 1.75;
}

/* ── MOMENTS / IMAGE GRID ────────────────────────────────── */

.moments-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.moment-item {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: var(--navy-mid);
}

.moment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.85) saturate(0.9);
}

.moment-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.0);
}

.moment-item:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 500px; }
.moment-item:nth-child(2) { grid-column: span 5; min-height: 240px; }
.moment-item:nth-child(3) { grid-column: span 5; min-height: 240px; }
.moment-item:nth-child(4) { grid-column: span 4; min-height: 300px; }
.moment-item:nth-child(5) { grid-column: span 4; min-height: 300px; }
.moment-item:nth-child(6) { grid-column: span 4; min-height: 300px; }

.moment-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: var(--navy-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px dashed rgba(70,166,200,0.2);
  border-radius: 0;
}

.moment-placeholder__icon {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

.moment-placeholder__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(70,166,200,0.4);
  font-weight: 500;
}

/* ── ABOUT ────────────────────────────────────────────────── */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.value-card {
  padding: 28px;
  border: 1px solid rgba(70,166,200,0.12);
  border-radius: 0;
  background: rgba(47,49,82,0.3);
  transition: border-color var(--transition);
}

.value-card:hover { border-color: rgba(70,166,200,0.4); }

.value-card__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.value-card h4 {
  font-family: 'Labor Union', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--sand-dim);
  line-height: 1.7;
}

/* ── SEAL / CIRCULAR TEXT DECORATION ────────────────────── */

.seal-decoration {
  position: relative;
  width: clamp(140px, 20vw, 200px);
  height: clamp(140px, 20vw, 200px);
  flex-shrink: 0;
}

.seal-decoration__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── STATS ROW ───────────────────────────────────────────── */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  padding: 48px 32px;
  background: var(--navy-mid);
  text-align: center;
}

.stat-item__value {
  font-family: 'Labor Union', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  color: var(--sand);
  margin-bottom: 12px;
}

.stat-item__value span { color: var(--copper-flat); }

.stat-item__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-dim);
}

/* ── FOOTER ───────────────────────────────────────────────── */

.footer {
  background: var(--black);
  padding: 80px clamp(24px, 6vw, 96px) 40px;
  border-top: 1px solid rgba(70,166,200,0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(70,166,200,0.08);
}

.footer__brand img { height: 32px; margin-bottom: 24px; }

.footer__brand p {
  font-size: 0.82rem;
  color: rgba(234,226,207,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__tagline {
  font-family: 'Labor Union', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: rgba(70,166,200,0.5);
}

.footer__col h5 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 20px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer__col ul a {
  font-size: 0.82rem;
  color: rgba(234,226,207,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__col ul a:hover { color: var(--sand); }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.7rem;
  color: rgba(234,226,207,0.3);
}

.footer__bottom a {
  color: rgba(234,226,207,0.35);
  text-decoration: none;
}

.footer__bottom a:hover { color: rgba(70,166,200,0.7); }

.footer__warning {
  font-size: 0.65rem;
  color: rgba(234,226,207,0.25);
  text-align: center;
  max-width: 1280px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* ── ANIMATIONS / REVEAL ─────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PRIVACY PAGE ─────────────────────────────────────────── */

.prose {
  max-width: 760px;
}

.prose h2 {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  margin-top: 56px;
  color: var(--sand);
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  color: var(--sand-dim);
  line-height: 1.85;
  margin-bottom: 20px;
}

.prose ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.prose ul li {
  font-size: 0.92rem;
  color: var(--sand-dim);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .nav { padding: 20px 32px; }
  .nav.scrolled { padding: 14px 32px; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__content { order: 2; }
  .hero__image { order: 1; }
  .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__buttons { justify-content: center; }
  .hero__bottle { max-height: 400px; }
  .better-shared { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .taste-grid { grid-template-columns: 1fr; }
  .serve-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-gin-grid { grid-template-columns: 1fr !important; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 80px; }
  .moments-grid {
    grid-template-columns: 1fr 1fr;
  }
  .moment-item:nth-child(1) { grid-column: span 2; min-height: 300px; }
  .moment-item:nth-child(2),
  .moment-item:nth-child(3) { grid-column: span 1; min-height: 180px; }
  .moment-item:nth-child(4),
  .moment-item:nth-child(5),
  .moment-item:nth-child(6) { grid-column: span 2; min-height: 200px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .age-gate__buttons { flex-direction: column; align-items: center; }
  .age-gate__buttons .btn { width: 100%; max-width: 280px; }
  .stats-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .hero__headline { font-size: clamp(2.4rem, 11vw, 4rem); }
}
