@font-face {
  font-family: 'Prata';
  src: url('../fonts/prata.woff2') format('woff2'),
       url('../fonts/prata.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Franklin';
  src: url('../fonts/franklin-m54.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* === BRAND PALETTE ===
     Primary:   Pantone 7406 CP #FAC800 | 3265 CP #57FF9C | 7499 CP #FCFAC2
     Secondary: Rich black (C50 M45 Y45 K100) | Gold #D49C12-#F9DB4A          */
  /* === BRAND PALETTE ===
     Primary:   Pantone 7406 CP #FAC800 | 3265 CP #57FF9C | 7499 CP #FCFAC2
     Secondary: Rich black | Gold #D49C12–#F9DB4A
     NOTE: 7406 and 3265 are near-unreadable as text on light grounds
     (~1.7:1 and ~1.4:1). They are used as FILLS, stripes and blocks;
     deeper variants below carry any coloured text.                          */
  --black: #000000;
  --brand-yellow: #FAC800;
  --brand-mint:   #57FF9C;
  --brand-pale:   #FCFAC2;
  --gold-deep:    #A8790A;   /* text-safe gold  */
  --gold-mid:     #E8BC2E;
  --teal-text:    #0B6B3A;   /* text-safe teal  */

  /* Light theme surfaces */
  --bg:        #FFFDF2;
  --bg-alt:    #FCFAC2;
  --bg-dark:   #000000;
  --ink:       #0A0A0A;
  --text-body:  #3C3C34;
  --text-faint: #6E6E60;
  --line:        rgba(0,0,0,0.09);
  --line-strong: rgba(0,0,0,0.16);

  --cream: #FCFAC2;
  --cream-dark: #F2EFB0;
  --teal: #0B6B3A;
  --teal-deep: #57FF9C;
  --gold: #A8790A;
  --gold-light: #FAC800;
  --navy: #FFFDF2;
  --navy-mid: #FCFAC2;
  --navy-light: #F5F1D8;
  --white: #fefefe;
  --text-muted: #6b6b6b;
  --text-light: var(--text-body);

  --font-display: 'DM Serif Display', Didot, 'Bodoni MT', Georgia, serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-brand: 'Franklin', 'Impact', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

img { max-width: 100%; height: auto; display: block; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.5s var(--ease-out), padding 0.4s var(--ease-out);
}

nav.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
  opacity: 0.95;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ===== NAV DROPDOWNS (Spirits / Our Story / Journal) ===== */
.nav-has-dropdown { position: relative; }
.nav-drop-trigger {
  background: none; border: none; cursor: pointer;
  font: inherit; padding: 0; margin: 0;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); transition: color 0.3s;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-drop-trigger::after {
  content: ''; width: 5px; height: 5px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg); margin-top: -3px; transition: transform 0.25s;
}
.nav-drop-trigger:hover { color: var(--white); }
.nav-has-dropdown.open .nav-drop-trigger::after { transform: rotate(-135deg); margin-top: 2px; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  list-style: none; margin: 0; padding: 8px 0;
  background: var(--white); border: 1px solid var(--line-strong);
  border-radius: 2px; min-width: 172px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block; padding: 9px 18px; font-size: 0.66rem !important;
  letter-spacing: 0.09em; text-transform: uppercase; white-space: nowrap;
  color: var(--ink) !important; text-decoration: none; transition: background 0.2s, color 0.2s;
}
.nav-dropdown a:hover { background: var(--bg-alt); color: var(--gold-deep) !important; }

.mm-group {
  margin: 20px 0 4px; padding: 0;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0.85;
}

/* ===== AVAILABILITY STRIP (product pages, right after the hero) ===== */
.avail-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: clamp(16px, 2.2vw, 24px) 0;
}
.avail-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 24px;
}
.avail-facts { display: flex; flex-wrap: wrap; gap: 6px 28px; }
.avail-item { font-size: 0.8rem; color: var(--text-body); }
.avail-item strong { color: var(--ink); font-weight: 500; }
.avail-cta { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 680px) {
  .avail-strip .container { flex-direction: column; align-items: flex-start; }
  .avail-cta { width: 100%; justify-content: center; }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(30px);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.mobile-menu a:hover { opacity: 1; }

.mobile-menu .mobile-cta {
  margin-top: 16px;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 680px) {
  .hero {
    height: auto; min-height: 100vh;
    align-items: flex-start;
    padding-top: clamp(110px, 26vw, 140px);
    padding-bottom: 48px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(26,35,50,0.6) 40%, rgba(26,35,50,0.35) 70%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-brand {
  position: relative;
  width: fit-content;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero-hindi {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-hindi-right {
  position: absolute;
  right: 0;
  top: 0;
}

.hero-wordmark {
  font-family: var(--font-brand);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s var(--ease-out) 0.35s forwards;
}

.hero-wordmark-sub {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.46vw, 1.04rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: clamp(28px, 4vw, 44px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.55s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.66vw, 2.93rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--teal);
}

.hero-subtitle {
  font-size: clamp(1.04rem, 1.34vw, 1.16rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 460px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.85s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.stats-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.59rem, 2.44vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  transition: border-color 0.3s, background 0.3s;
}

.btn-secondary:hover {
  border-color: var(--text-faint);
  background: var(--line);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.3s forwards;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--line-strong);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--line-strong), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* ===== ORIGIN ===== */
.origin {
  padding: clamp(48px, 6vw, 84px) 0;
  background: var(--cream);
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.origin-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.origin h2 {
  font-family: var(--font-display);
  font-size: clamp(2.68rem, 4.88vw, 3.9rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--navy);
}

.origin h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--teal-deep);
}

.origin-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
}

.origin-text p + p { margin-top: 16px; }

.origin-philosophy {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  line-height: 1.6;
}

.origin-visual {
  position: relative;
  overflow: hidden;
}

.origin-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
}

.origin-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(to top, rgba(10,10,10,0.7), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.origin-stat .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal);
}

.origin-stat .stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-top: 2px;
}

/* ===== PRODUCT ===== */
.product {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--navy);
}

.product-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.product-header .label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.product-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.93rem, 6.1vw, 5.12rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.product-header h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--teal);
}

.product-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 540px;
  margin: 20px auto 0;
  text-align: center;
  font-weight: 300;
}

.tasting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.tasting-card {
  background: var(--navy);
  padding: clamp(28px, 3vw, 48px);
  transition: background 0.5s var(--ease-out);
}

.tasting-card:hover { background: var(--navy-mid); }

.tasting-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.tasting-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}

.serve-section {
  margin-top: clamp(50px, 7vw, 80px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.serve-section .label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.serve-options {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}

.serve-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.serve-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  opacity: 0.5;
}

/* ===== DISTINCTION ===== */
.distinction {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--cream);
}

.distinction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
}

.distinction-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.68rem, 4.88vw, 3.9rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  position: sticky;
  top: 100px;
}

.distinction-left h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--teal-deep);
}

.distinction-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.distinction-item {
  padding-left: 22px;
  border-left: 2px solid var(--cream-dark);
  transition: border-color 0.4s;
}

.distinction-item:hover { border-left-color: var(--teal); }

.distinction-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.distinction-item p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== SUSTAINABILITY ===== */
.sustainability {
  padding: clamp(48px, 6vw, 78px) 0;
  background: var(--navy);
}

.sustainability-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.sustainability .label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sustainability h2 {
  font-family: var(--font-display);
  font-size: clamp(2.68rem, 4.88vw, 3.9rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.sustainability h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--teal);
}

.sustainability-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-light);
  font-weight: 300;
}

.sustainability-text p + p { margin-top: 14px; }

.sustainability-tagline {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 28px;
}

.sustainability-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 11px 24px;
  border: 1px solid rgba(59,184,168,0.4);
  color: var(--teal);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-body);
  transition: background 0.3s, border-color 0.3s;
}

.sustainability-cta:hover {
  background: rgba(59,184,168,0.08);
  border-color: var(--teal);
}

.sustainability-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar {
  padding: 28px;
  border: 1px solid var(--line);
  transition: border-color 0.4s, background 0.4s;
}

.pillar:hover {
  border-color: rgba(59,184,168,0.25);
  background: var(--line);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.pillar p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}

.pillar-partner {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  color: var(--line-strong);
}

.pillar-partner strong {
  color: var(--text-faint);
  font-weight: 500;
}

/* ===== AWARDS ===== */
.awards {
  padding: clamp(48px, 6vw, 78px) 0;
  background: var(--navy);
}

.awards-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.awards-header .label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.awards-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.68rem, 4.88vw, 3.9rem);
  font-weight: 400;
  color: var(--white);
}

.awards-header h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--teal);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-bottom: clamp(56px, 7vw, 90px);
}

.award-card {
  background: var(--navy-mid);
  padding: clamp(28px, 3vw, 48px);
  text-align: center;
  transition: transform 0.4s var(--ease-out);
}

.award-card:hover { transform: translateY(-3px); }

.award-medal {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.award-year {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.award-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.award-org {
  font-size: 0.74rem;
  color: var(--text-light);
  font-weight: 300;
}

.press-section { text-align: center; }

.press-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 28px;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 48px;
  max-width: 920px;
  margin: 0 auto;
}

.press-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.3;
  transition: opacity 0.4s;
  white-space: nowrap;
}

.press-logo:hover { opacity: 0.7; }
a.press-logo {
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}
a.press-logo:hover {
  color: var(--white);
  opacity: 1;
}

.press-logo.serif { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; }
.press-logo.caps { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }

/* ===== COMING SOON ===== */






/* ===== TEAM ===== */
.team {
  padding: clamp(48px, 6vw, 78px) 0;
  background: var(--navy);
}

.team-header {
  text-align: center;
  margin-bottom: clamp(44px, 5vw, 72px);
}

.team-header .label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.team-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.68rem, 4.88vw, 3.9rem);
  font-weight: 400;
  color: var(--white);
}

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

.team-member { text-align: center; }

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  background: var(--navy-light);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: filter 0.5s, transform 0.5s var(--ease-out);
}

.team-photo:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.team-photo-initials {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--line);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
}

.team-role {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 400;
}

.team-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-light);
  font-weight: 300;
}

.team-cocktail {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--line-strong);
  margin-top: 8px;
}

/* ===== FIND US ===== */
.find-us {
  padding: clamp(44px, 5vw, 68px) 0;
  background: var(--cream);
  text-align: center;
}

.find-us .label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.find-us h2 {
  font-family: var(--font-display);
  font-size: clamp(2.44rem, 4.27vw, 3.42rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.find-us-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

.find-stats {
  display: flex;
  justify-content: center;
  gap: clamp(36px, 6vw, 72px);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.find-stat .number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.66vw, 3.42rem);
  font-weight: 300;
  color: var(--navy);
}

.find-stat .stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.find-us .btn-primary {
  background: var(--navy);
  color: var(--white);
}

.find-us .btn-primary:hover { background: var(--navy-light); }

/* ===== FOOTER ===== */
footer {
  padding: clamp(56px, 7vw, 90px) 0 28px;
  background: var(--navy);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 56px;
}

.footer-brand-logo {
  margin-bottom: 16px;
}

.footer-brand-logo img {
  height: 48px;
  width: auto;
  opacity: 0.6;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
  max-width: 320px;
  opacity: 0.7;
}

.footer-col h4 {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--white); }

.footer-col p {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.5;
  opacity: 0.6;
}

.newsletter-input {
  display: flex;
}

.newsletter-input input {
  flex: 1;
  padding: 10px 12px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  border: 1px solid var(--line);
  background: var(--line);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  min-width: 0;
}

.newsletter-input input:focus { border-color: var(--teal); }
.newsletter-input input::placeholder { color: var(--line-strong); }

.newsletter-input button {
  padding: 10px 18px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter-input button:hover { background: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 300;
  opacity: 0.4;
}

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-size: 0.68rem;
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.footer-legal a:hover { opacity: 0.7; }

.age-gate {
  font-size: 0.65rem;
  color: var(--text-light);
  text-align: center;
  padding: 20px 0 0;
  font-weight: 300;
  opacity: 0.3;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.8rem;
  z-index: 200;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* ===== FOCUS STATES ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ===== AGE GATE ===== */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s var(--ease-out);
}

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

.age-gate-box {
  text-align: center;
  max-width: 400px;
  padding: 24px;
}

.age-gate-logo {
  height: 64px;
  width: auto;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.age-gate-question {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.4;
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.age-gate-yes {
  padding: 13px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.age-gate-yes:hover { background: var(--gold-light); }

.age-gate-no {
  padding: 13px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: border-color 0.3s;
}

.age-gate-no:hover { border-color: var(--text-faint); }

.age-gate-disclaimer {
  font-size: 0.68rem;
  color: var(--line-strong);
  font-weight: 300;
  line-height: 1.5;
}

/* ===== BAAGH BLUE - EXPRESSION No. 2 ===== */
.blue {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--navy-mid);
  position: relative;
}

.blue-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }

.blue-header .label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.blue-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.93rem, 6.1vw, 5.12rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.blue-header h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--teal);
}

.blue-varietal {
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 18px;
}

.blue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 7vw, 100px);
}

.blue-serve { overflow: hidden; border-radius: 2px; }
.blue-serve img { width: 100%; display: block; }

.blue-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 32px;
}

.blue-botanicals-label {
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.blue-botanicals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: baseline;
  margin-bottom: 32px;
}

.blue-botanicals span { white-space: nowrap; }

.blue-botanicals span:not(:last-child)::after {
  content: '·';
  margin-left: 18px;
  color: var(--text-faint);
}

.blue-botanicals span {
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.46vw, 1.34rem);
  font-weight: 300;
  color: var(--text-body);
}

.blue-spec {
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --- The turn --- */
.blue-turn { margin-bottom: clamp(56px, 7vw, 100px); }

.blue-turn-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.blue-turn-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4.15vw, 3.17rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}

.blue-turn-head p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  max-width: 36ch;
}

.blue-stage {
  position: relative;
  aspect-ratio: 4/3;
  max-width: 680px;
  margin: 0 auto;
}

.blue-glow {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
  background: #6E0886;
  z-index: 0;
}

.blue-stage picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
}

.blue-stage picture img { width: 100%; height: 100%; object-fit: contain; }

.blue-scrub { max-width: 680px; margin: 28px auto 0; }

.blue-scrub input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  cursor: ew-resize;
}

.blue-scrub input::-webkit-slider-runnable-track { height: 1px; background: var(--line-strong); }
.blue-scrub input::-moz-range-track { height: 1px; background: var(--line-strong); }

.blue-scrub input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px; height: 15px;
  margin-top: -7.5px;
  border-radius: 50%;
  background: var(--gold);
  border: 0;
}

.blue-scrub input::-moz-range-thumb {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--gold);
  border: 0;
}

.blue-scrub input:focus-visible { outline: 2px solid var(--teal); outline-offset: 8px; }

.blue-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--line-strong);
  transition: color 0.4s var(--ease-out);
}

.blue-steps span.on { color: var(--gold); }

.blue-hint {
  text-align: center;
  margin-top: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--line-strong);
}

/* --- Cocktails --- */
.blue-serves {
  margin-bottom: clamp(56px, 7vw, 100px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.blue-serves .label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 28px;
}

.blue-serve-options {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.blue-serve-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
}

.blue-serve-pics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.blue-serve-pics div { overflow: hidden; }
.blue-serve-pics img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }

/* --- Goa --- */
.blue-goa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.blue-goa-img { overflow: hidden; border-radius: 2px; }
.blue-goa-img img { width: 100%; display: block; }

.blue-goa h3 {
  font-family: var(--font-display);
  font-size: clamp(2.07rem, 4.39vw, 3.17rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.blue-goa p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
  max-width: 44ch;
  margin-bottom: 24px;
}

.blue-rank {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--teal);
  padding: 9px 16px;
  border-radius: 2px;
}

/* --- Film --- */
.blue-film { margin-bottom: clamp(48px, 6vw, 80px); }

.blue-film-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
}

.blue-film-btn img, .blue-film video { width: 100%; display: block; border-radius: 2px; }

.blue-film-btn::after {
  content: 'Play the film';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream);
  padding: 13px 22px;
  border-radius: 2px;
}

.blue-film-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; }
/* Video is ALWAYS in the DOM and visible; the poster button sits on top as an
   overlay. If JS never runs, the native player + poster still works. */
.blue-film { position: relative; }
.blue-film video { display: block; }
.blue-film-btn {
  position: absolute; inset: 0; width: 100%; height: 100%;
  padding: 0; border: 0; background: transparent; cursor: pointer; z-index: 2;
}
.blue-film-btn img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 2px;
}
.blue-film.playing .blue-film-btn { display: none; }

/* As Seen In - press strip */
.as-seen-in {
  padding: clamp(56px, 8vw, 96px) 0;
  background-size: cover; background-position: center;
  text-align: center;
}
.asi-label { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: clamp(20px, 2.4vw, 28px); color: var(--brand-yellow); }
.asi-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(18px, 3vw, 40px); }
.asi-row a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.98rem, 1.2vw, 1.18rem);
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.asi-row a:hover { color: var(--brand-yellow); }
.asi-more {
  display: inline-block;
  margin-top: clamp(24px, 2.8vw, 32px);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  text-decoration: none;
}
.asi-more:hover { color: #fff; }
@media (max-width: 640px) {
  .asi-row { gap: 14px 28px; }
  .asi-row a { font-size: 0.98rem; }
}

/* Poured At - venue glimpses */
.venues { padding: clamp(56px, 9vw, 112px) 0; background: var(--navy); text-align: center; }
.venues .label { color: var(--gold); }
.venues h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 2.8vw, 2.3rem); color: var(--white); margin-bottom: 16px; }
.venues-subtitle { max-width: 560px; margin: 0 auto clamp(36px, 4vw, 56px); color: var(--text-body); font-size: clamp(0.92rem, 1.1vw, 1.02rem); line-height: 1.7; }
.venue-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.6vw, 24px); max-width: 1100px; margin: 0 auto; }
.venue-tile { margin: 0; position: relative; overflow: hidden; border-radius: 2px; aspect-ratio: 9/16; background: #0a0f14; }
.venue-tile video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.venue-tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 16px; background: linear-gradient(to top, rgba(0,0,0,0.72), transparent); display: flex; flex-direction: column; gap: 2px; }
.venue-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(0.98rem, 1.3vw, 1.2rem); color: var(--white); }
.venue-name a { color: inherit; text-decoration: none; }
.venue-name a:hover { color: var(--gold); }
.venue-city { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 900px) {
  .venue-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
}
@media (max-width: 520px) {
  .venue-grid { grid-template-columns: 1fr; max-width: 340px; }
}

/* --- Availability --- */
.blue-avail {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.blue-avail strong {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.83rem, 3.66vw, 2.68rem);
  color: var(--white);
}

.blue-avail span {
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
}

@media (max-width: 1024px) {
  .blue-grid, .blue-goa { grid-template-columns: 1fr; }
  .blue-serve { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .blue-turn-head { flex-direction: column; gap: 14px; }
  .blue-stage { aspect-ratio: 3/4; }
}

@media (max-width: 640px) {
  .blue-steps { font-size: 0.55rem; letter-spacing: 0.12em; }
  .blue-rank { font-size: 0.55rem; letter-spacing: 0.16em; }
  .blue-serve-options { gap: 20px 28px; }
  .blue-serve-pics { grid-template-columns: 1fr; }
  .blue-avail { flex-direction: column; gap: 10px; }
}

/* ===== REVEALS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { max-width: 600px; }
  .stats-bar-inner { flex-wrap: wrap; gap: 16px; }
  .stat-item { flex: 0 0 calc(33% - 12px); }

  .origin-grid,
  .distinction-grid,
  .sustainability-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .origin-visual img { aspect-ratio: 16/10; }
  .distinction-left h2 { position: static; }
  .tasting-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }

  /* Hero video - ensure poster shows on low bandwidth */
  .hero-bg video { object-position: center center; }
  .hero-wordmark { font-size: clamp(3rem, 14vw, 5rem); }

  /* Product image grid - stack on mobile */
  .product-images > div:last-child { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  .stats-bar-inner { gap: 12px; }
  .stat-item { flex: 0 0 calc(50% - 8px); }
  .stat-item:last-child { flex: 0 0 100%; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .award-medal { width: 80px; height: 80px; }
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .find-stats { gap: 24px; }
  .serve-options { flex-direction: column; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; text-align: center; justify-content: center; }
  .press-logos { gap: 24px 36px; }

  /* Botanicals list - tighter on mobile */
  .botanicals-section > div:last-child { gap: 6px 16px !important; }
  .botanicals-section span { font-size: 0.85rem !important; }

  /* Sustainability media grid stack on mobile */
  .sustainability div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Sustainability CTA + logo stack */
  .sustainability div[style*="display:flex"] { flex-direction: column !important; align-items: flex-start !important; }
}

/* ===================== SUBPAGE COMPONENTS ===================== */
main { display: block; }
.nav-links a.active { color: var(--gold); }

.page-hero {
  padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 100px);
  background-size: cover; background-position: center;
  text-align: center; color: var(--white);
}
.page-hero .label { color: var(--gold); margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.15; margin-bottom: 20px;
}
.page-hero-sub {
  max-width: 620px; margin: 0 auto; color: var(--text-body);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem); line-height: 1.7;
}

.prose-section { padding: clamp(44px, 5vw, 68px) 0; background: var(--navy); }
.prose-section.alt { background: var(--navy-mid); }
.container.narrow { max-width: 720px; }
.prose-section .label { color: var(--gold); margin-bottom: 14px; }
.prose-section h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem); color: var(--white); margin-bottom: 22px; line-height: 1.25;
}
.prose-section p {
  color: var(--text-body); font-size: clamp(0.94rem, 1.1vw, 1.04rem);
  line-height: 1.85; margin-bottom: 18px;
}
.prose-section p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-body);
  line-height: 1.7; font-weight: 400;
}
.prose-section em { color: var(--gold); font-style: italic; }
.cta-line { margin-top: 32px; }
.btn-outline {
  display: inline-block; padding: 13px 30px; font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500; color: var(--white); text-decoration: none;
  border: 1px solid var(--line-strong); border-radius: 2px; transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.impact-stats { padding: clamp(56px, 9vw, 112px) 0; background: var(--navy-mid); text-align: center; }
.impact-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); }
.impact-stat { display: flex; flex-direction: column; gap: 8px; }
.impact-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.4rem); color: var(--gold);
}
.impact-label {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-faint); line-height: 1.5;
}
.impact-source { margin-top: 28px; font-size: 0.72rem; color: var(--text-faint); }
@media (max-width: 720px) { .impact-stat-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

.impact-figure { margin: clamp(32px, 4vw, 52px) auto 0; max-width: 900px; }
.impact-figure img { width: 100%; display: block; border-radius: 2px; }
.impact-figure figcaption {
  margin-top: 12px; font-size: 0.72rem; color: var(--text-faint); text-align: center;
}
.impact-film { padding: 0 0 clamp(56px, 7vw, 96px); background: var(--navy); }
.impact-film video { width: 100%; display: block; border-radius: 2px; }

/* botanical + serve + team grids on product/about pages */
.bot-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 860px; margin: 32px auto 0;
}
.bot-grid span {
  padding: 9px 20px; border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 0.74rem; letter-spacing: 0.06em; color: var(--text-body);
}
.serve-grid-page {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--line); max-width: 900px; margin: 32px auto 0;
}
.serve-grid-page .serve-item {
  background: var(--navy); padding: clamp(22px, 3vw, 34px) 18px; text-align: center;
}
.prose-section.alt .serve-grid-page .serve-item { background: var(--navy-mid); }
.pour-seq {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 28px);
  max-width: 820px; margin: 36px auto 0;
}
.pour-seq img { width: 100%; display: block; }
.pour-seq figcaption {
  margin-top: 10px; text-align: center; font-size: 0.64rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
}
/* homepage: spirit cards + split rows */
.spirit-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 44px); max-width: 1000px; margin: clamp(36px,4vw,56px) auto 0;
}
.spirit-card { background: var(--navy-mid); border-radius: 2px; overflow: hidden; margin: 0; }
.spirit-card img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.spirit-card:hover img { transform: scale(1.03); }
.spirit-body { padding: clamp(24px, 3vw, 38px); }
.spirit-body h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.15rem,1.8vw,1.5rem); color: var(--white); margin-bottom: 8px; }
.spirit-tag { color: var(--gold) !important; font-size: 0.78rem !important; letter-spacing: 0.04em; margin-bottom: 14px !important; }
.spirit-body p { font-size: 0.9rem !important; line-height: 1.75 !important; }
.spirit-body .btn-outline { margin-top: 8px; }
.container.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center;
}
.container.split.reverse .split-text { order: 2; }
.split-img img, .split-img video { width: 100%; display: block; border-radius: 2px; }
@media (max-width: 860px) {
  .spirit-cards { grid-template-columns: 1fr; max-width: 460px; }
  .container.split { grid-template-columns: 1fr; }
  .container.split.reverse .split-text { order: 0; }
}

/* Failsafe: if JS never runs, reveal-animated content must still be visible */
.no-js .reveal { opacity: 1 !important; transform: none !important; }

/* Native film player - no JS, no overlay. Poster + controls handled by the browser. */
.film-block { margin: 0 auto; max-width: 1000px; }
.film-block video {
  width: 100%; display: block; border-radius: 2px; background: #0a0f14;
}

/* Legibility on the pale (Pantone 7499) sections - grey-on-cream was washing out */
.find-us .label { color: var(--gold-deep); }
.find-us-subtitle { color: #4a4a42; }
.find-us .find-stat .stat-label { color: #5c5c52; }

/* Making-of the painting: horizontal progression strip */
.art-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1.2vw, 18px); margin: clamp(32px,4vw,52px) auto 0; max-width: 1180px;
}
.art-strip figure { margin: 0; }
.art-strip img { width: 100%; display: block; border-radius: 2px; }
.art-strip figcaption { margin-top: 10px; display: flex; flex-direction: column; gap: 2px; text-align: center; }
.art-step { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.art-date { font-size: 0.62rem; color: var(--text-faint); }
@media (max-width: 900px) { .art-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .art-strip { grid-template-columns: repeat(2, 1fr); } }

/* Wordmark reference row */
.type-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px,2vw,28px); max-width: 1000px; margin: clamp(32px,4vw,52px) auto 0;
}
.type-row figure { margin: 0; }
.type-row img { width: 100%; display: block; border-radius: 2px; background: var(--brand-pale); }
.type-row figcaption {
  margin-top: 12px; text-align: center; font-size: 0.68rem;
  color: var(--text-faint); line-height: 1.6;
}
@media (max-width: 720px) { .type-row { grid-template-columns: 1fr; max-width: 380px; } }

/* No Planet No Party */
.npnp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px,1.5vw,20px); max-width: 1100px; margin: clamp(32px,4vw,52px) auto 0;
}
.npnp-grid figure { margin: 0; }
.npnp-grid img { width: 100%; display: block; border-radius: 2px; aspect-ratio: 1/1; object-fit: cover; }
@media (max-width: 860px) { .npnp-grid { grid-template-columns: repeat(2, 1fr); max-width: 560px; } }


/* ===================== LIGHT BRAND THEME ===================== */
body { background: var(--bg); color: var(--text-body); }
h1, h2, h3, h4, .stat-number, .impact-num, .venue-name,
.spirit-body h3, .tname, .award-name, .find-stat .number { color: var(--ink) !important; }
.prose-section h2, .awards h2, .venues h2, .find-us h2 { color: var(--ink) !important; }
.prose-section p { color: var(--text-body); }
.prose-section p.lead { color: var(--ink); }
em { color: var(--teal-text); font-style: italic; }
.label { color: var(--gold-deep) !important; }

/* Section rhythm: alternate cream / pale, no more dead navy */
.prose-section { background: var(--bg); }
.prose-section.alt { background: var(--bg-alt); }
.awards { background: var(--bg-alt); }
.venues { background: var(--bg); }
.venues h2, .venues .venue-name { color: var(--ink) !important; }
.venues-subtitle, .find-us-subtitle { color: var(--text-body) !important; }
.impact-stats { background: var(--bg-alt); }
.stats-bar { background: var(--ink); }
.stats-bar .stat-number { color: var(--brand-yellow) !important; }
.stats-bar .stat-label { color: rgba(255,255,255,0.62); }

/* Cards / tiles on light ground */
.award-card, .spirit-card { background: var(--bg); border: 1px solid var(--line); }
.awards-grid { background: var(--line); }
.serve-grid-page { background: var(--line); }
.serve-grid-page .serve-item,
.prose-section.alt .serve-grid-page .serve-item { background: var(--bg); }
.bot-grid span { border-color: var(--line-strong); color: var(--ink); background: var(--bg); }
.venue-tile { background: var(--ink); }
.venue-tile figcaption { background: linear-gradient(to top, rgba(0,0,0,0.78), transparent); }
.venue-tile .venue-name, .venue-tile .venue-name a { color: #fff !important; }
.venue-city { color: var(--brand-yellow); }
.type-row img { background: var(--bg); border: 1px solid var(--line); }
.type-row figcaption, .art-date, .impact-figure figcaption { color: var(--text-faint); }
.art-step { color: var(--gold-deep); }

/* Buttons: yellow fill with black text - reads at any size */
.btn-primary, .find-us .btn-primary {
  background: var(--brand-yellow) !important; color: var(--ink) !important;
  border: 1px solid var(--brand-yellow) !important;
}
.btn-primary:hover { background: var(--ink) !important; color: var(--brand-yellow) !important; }
.btn-outline { color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--brand-yellow); border-color: var(--ink); }
.nav-cta { border-color: var(--ink) !important; color: var(--ink) !important; }
.nav-cta:hover { background: var(--brand-yellow) !important; }

/* Nav on light ground */
nav#nav { background: rgba(255,253,242,0.92); border-bottom: 1px solid var(--line); }
nav#nav.scrolled { background: rgba(255,253,242,0.98); }
.nav-links a { color: var(--ink); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep); }
.nav-drop-trigger { color: var(--ink); }
.nav-drop-trigger:hover { color: var(--gold-deep); }
.menu-toggle span { background: var(--ink); }
.mobile-menu { background: var(--bg); }
.mobile-menu a { color: var(--ink); }

/* ---- STRIPES: the motif off the label / trade sheet ---- */
.stripe-rule {
  height: 10px; width: 100%;
  background: repeating-linear-gradient(90deg,
    var(--brand-yellow) 0 18px, var(--brand-mint) 18px 36px);
}
.prose-section.striped {
  background-color: var(--bg);
  background-image: repeating-linear-gradient(45deg,
    rgba(250,200,0,0.10) 0 2px, transparent 2px 11px);
}
.venues { 
  background-color: var(--bg);
  background-image: repeating-linear-gradient(45deg,
    rgba(87,255,156,0.14) 0 2px, transparent 2px 11px);
}
.page-hero { border-bottom: 10px solid transparent;
  border-image: repeating-linear-gradient(90deg,
    var(--brand-yellow) 0 18px, var(--brand-mint) 18px 36px) 10; }

/* Footer stays black - anchors the light page */
footer { background: var(--ink) !important; }
footer h4 { color: var(--brand-yellow) !important; }
footer p, footer a { color: rgba(255,255,255,0.7) !important; }
footer a:hover { color: var(--brand-mint) !important; }
footer input { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color:#fff; }

/* Tighter, wider reading measure - less dead space */
.container.narrow { max-width: 860px; }
.prose-section .container.narrow + .container { margin-top: 20px; }

/* --- light-theme corrections --- */
/* Press logos were tuned for a dark ground */
.press-logo { color: var(--text-faint) !important; opacity: 1; }
.press-logo:hover { color: var(--ink) !important; }
.press-label { color: var(--gold-deep) !important; }

/* Hero sits on video: keep it light-on-dark regardless of page theme */
.hero, .hero-content { color: #fff; }
.hero-content h1, .hero-brand, .hero-content p { color: #fff !important; }
.hero-content .hero-eyebrow { color: var(--gold) !important; }
.hero-content .hti-notes { color: rgba(255,255,255,0.68) !important; }
.hero-content em { color: var(--brand-yellow) !important; }
.hero .btn-secondary { color: #fff !important; border-color: rgba(255,255,255,0.55) !important; }
.hero .btn-secondary:hover { background: #fff !important; color: var(--ink) !important; }

/* Page heroes also sit on imagery */
.page-hero h1, .page-hero .page-hero-sub { color: #fff !important; }
.page-hero .label { color: var(--brand-yellow) !important; }

/* ===================== FIND BAAGH - STORE LOCATOR ===================== */
.visually-hidden {
  position:absolute; width:1px; height:1px; margin:-1px; padding:0;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.locator { background: var(--bg); padding: 0 0 clamp(40px,5vw,64px); }
.locator-shell {
  display: grid; grid-template-columns: minmax(380px, 4fr) 6fr;
  gap: 0; max-width: 1400px; margin: 0 auto; align-items: start;
}
.locator-panel { padding: clamp(24px,3vw,40px) clamp(18px,2.4vw,34px); }

.locator-controls { position: sticky; top: 72px; background: var(--bg); z-index: 2; padding-bottom: 14px; }
.locator-search {
  width: 100%; padding: 13px 16px; font-family: var(--font-body); font-size: 0.92rem;
  color: var(--ink); background: #fff; border: 1px solid var(--line-strong);
  border-radius: 2px; outline: none;
}
.locator-search:focus { border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(250,200,0,0.28); }
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.chip {
  padding: 7px 15px; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.05em;
  color: var(--ink); background: transparent; border: 1px solid var(--line-strong);
  border-radius: 999px; cursor: pointer; transition: all .2s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--brand-yellow); border-color: var(--brand-yellow); font-weight: 500; }
.chip:focus-visible, .view-btn:focus-visible, .outlet-select:focus-visible {
  outline: 2px solid var(--gold-deep); outline-offset: 2px;
}
.locator-count {
  margin-top: 14px; font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-faint);
}
.view-toggle { display: none; margin-top: 14px; border: 1px solid var(--line-strong); border-radius: 2px; overflow: hidden; }
.view-btn {
  flex: 1; padding: 11px 0; font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.16em; text-transform: uppercase; background: transparent;
  color: var(--ink); border: 0; cursor: pointer;
}
.view-btn.is-active { background: var(--ink); color: var(--brand-yellow); }

.locator-results { margin-top: 18px; }
.outlet-group + .outlet-group { margin-top: 26px; }
.outlet-group-title {
  font-family: var(--font-body); font-size: 0.64rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 500;
  padding-bottom: 8px; border-bottom: 1px solid var(--line); display: flex;
  justify-content: space-between; align-items: baseline;
}
.outlet-group-title span { color: var(--text-faint); letter-spacing: 0.1em; }
.outlet-list { list-style: none; margin: 0; padding: 0; }
.outlet { border-bottom: 1px solid var(--line); }
.outlet article { padding: 15px 12px 15px 0; position: relative; }
.outlet.is-selected { background: var(--bg-alt); }
.outlet.is-selected article { padding-left: 12px; box-shadow: inset 3px 0 0 var(--brand-yellow); }
.outlet-select {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  padding: 0; cursor: pointer; font-family: inherit;
}
.outlet-name {
  font-family: var(--font-display); font-weight: 400; font-size: 1.02rem;
  color: var(--ink); line-height: 1.3;
}
.outlet-select:hover .outlet-name { color: var(--gold-deep); }
.outlet-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 5px; }
.outlet-locality { font-size: 0.8rem; color: var(--text-body); }
.outlet-type {
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.type-retail { background: var(--bg-alt); color: #6b5a12; }
.type-bar_restaurant { background: var(--brand-mint); color: #08351d; }
.type-airport_retail { background: var(--ink); color: var(--brand-yellow); }
.outlet-directions {
  display: inline-block; margin-top: 9px; font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--gold-deep); text-decoration: none; border-bottom: 1px solid transparent;
}
.outlet-directions:hover { border-bottom-color: var(--gold-deep); }
.locator-empty { padding: 28px 0; color: var(--text-faint); font-size: 0.9rem; }

.locator-map-wrap { position: sticky; top: 64px; height: calc(100vh - 64px); }
.locator-map { width: 100%; height: 100%; background: var(--bg-alt); }
.map-fallback { padding: 24px; color: var(--text-faint); font-size: 0.85rem; }

/* Baagh marker - brand dot, not a default pin */
.baagh-marker { background: none; border: 0; }
.baagh-marker-dot {
  display: block; width: 16px; height: 16px; margin: 3px; border-radius: 50%;
  background: var(--brand-yellow); border: 2.5px solid var(--ink);
  box-shadow: 0 1px 5px rgba(0,0,0,0.35); transition: transform .18s;
}
.baagh-marker:hover .baagh-marker-dot { transform: scale(1.25); }
.leaflet-popup-content-wrapper { border-radius: 2px; }
.leaflet-popup-content { margin: 12px 14px; font-family: var(--font-body); }
.pop-name { display:block; font-family: var(--font-display); font-size: 0.98rem; color: var(--ink); }
.pop-loc  { display:block; font-size: 0.78rem; color: var(--text-body); margin-top: 3px; }
.pop-type { display:block; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-top: 5px; }
.pop-link { display:inline-block; margin-top: 8px; font-size: 0.72rem; color: var(--gold-deep); text-decoration: none; }
.leaflet-container a.leaflet-popup-close-button { color: var(--text-faint); }

@media (max-width: 900px) {
  .locator-shell { grid-template-columns: 1fr; }
  .view-toggle { display: flex; }
  .locator-map-wrap { height: 68vh; top: 60px; }
  #locator[data-view="list"] .locator-map-wrap { display: none; }
  #locator[data-view="map"] .locator-results { display: none; }
}

/* Portrait video frames (vertical distillery film) */
.split-img-portrait video { max-height: 620px; width: auto; margin: 0 auto; border-radius: 2px; }
.split-img-portrait { display: flex; justify-content: center; }
.film-block-portrait { max-width: 420px; }
.film-block-portrait video { border-radius: 2px; }

/* Team LinkedIn link */
.tlink {
  display: inline-block; margin-top: 6px; font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-deep); text-decoration: none;
  border-bottom: 1px solid transparent;
}
.tlink:hover { border-bottom-color: var(--gold-deep); }

/* Availability chips on outlet cards */
.outlet-avail {
  font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.avail-soon { background: var(--line); color: var(--text-faint); }

/* ===================== LISTENING / PLAYLISTS ===================== */
.pl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px); max-width: 1120px; margin: 0 auto;
}
.pl-card {
  border-radius: 2px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease-out);
}
.pl-card:hover { transform: translateY(-3px); }
.pl-card::before { content: ''; display: block; height: 8px; }
.pl-yellow::before { background: repeating-linear-gradient(90deg, var(--brand-yellow) 0 14px, var(--ink) 14px 28px); }
.pl-mint::before   { background: repeating-linear-gradient(90deg, var(--brand-mint) 0 14px, var(--ink) 14px 28px); }
.pl-pale::before   { background: repeating-linear-gradient(90deg, var(--brand-pale) 0 14px, var(--gold-deep) 14px 28px); }
.pl-body { padding: clamp(20px, 2.4vw, 30px); display: flex; flex-direction: column; height: 100%; }
.pl-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.02rem,1.2vw,1.15rem); color: var(--ink); line-height: 1.3; }
.pl-sub { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 6px; }
.pl-blurb { font-size: 0.87rem; line-height: 1.75; color: var(--text-body); margin-top: 14px; flex: 1; }
.pl-meta { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-top: 16px; }
.pl-link {
  display: inline-block; margin-top: 14px; padding: 10px 18px; font-size: 0.64rem;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  color: var(--ink); border: 1px solid var(--ink); border-radius: 2px; transition: all .25s;
}
.pl-link:hover { background: var(--ink); color: var(--brand-yellow); }
@media (max-width: 860px) { .pl-grid { grid-template-columns: 1fr; max-width: 460px; } }


/* Homepage listening tiles */
.listen-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.6vw, 20px); max-width: 980px; margin: clamp(28px,3.5vw,44px) auto 0;
}
.listen-tile {
  display: flex; flex-direction: column; gap: 6px; padding: clamp(20px,2.4vw,30px);
  text-decoration: none; border: 1px solid var(--line-strong); border-radius: 2px;
  background: var(--bg); transition: all .28s var(--ease-out); position: relative;
}
.listen-tile::before { content:''; position:absolute; left:0; right:0; top:0; height:6px; }
.lt-yellow::before { background: repeating-linear-gradient(90deg, var(--brand-yellow) 0 12px, var(--ink) 12px 24px); }
.lt-mint::before   { background: repeating-linear-gradient(90deg, var(--brand-mint) 0 12px, var(--ink) 12px 24px); }
.lt-pale::before   { background: repeating-linear-gradient(90deg, var(--brand-pale) 0 12px, var(--gold-deep) 12px 24px); }
.listen-tile:hover { transform: translateY(-3px); border-color: var(--ink); }
.lt-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin-top: 6px; }
.lt-sub { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--text-faint); }
@media (max-width: 780px) { .listen-row { grid-template-columns: 1fr; max-width: 420px; } }

/* ===================== AGE GATE ===================== */
/* The one screen with no other job, so the painting can carry it. The image
   runs at full strength; only a soft edge vignette keeps the type legible. */
.age-gate-overlay { background: #060a14; }
.age-gate-bg {
  position: absolute; inset: 0;
  background-image: url('../img/agegate-night.jpg');
  background-size: cover; background-position: center 42%;
  opacity: 1;
  filter: none;
}
.age-gate-overlay::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 52%, rgba(6,10,20,0.16) 0%, rgba(6,10,20,0.62) 100%),
    linear-gradient(to bottom, rgba(6,10,20,0.30) 0%, transparent 22%, transparent 72%, rgba(6,10,20,0.45) 100%);
}
.age-gate-box {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px; max-width: 440px;
}
.age-gate-logo { width: 76px; height: auto; margin: 0 auto; }
.age-gate-rule {
  display: block; width: 72px; height: 5px; margin: 26px auto 30px;
  background: repeating-linear-gradient(90deg,
    var(--brand-yellow) 0 9px, var(--brand-mint) 9px 18px);
}
.age-gate-question {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.45rem, 2.8vw, 2.05rem); line-height: 1.28;
  color: #fff !important; margin-bottom: 34px;
  text-shadow: 0 2px 22px rgba(0,0,0,0.55);
}
.age-gate-actions { display: flex; gap: 12px; justify-content: center; }
.age-gate-yes, .age-gate-no {
  min-width: 132px; min-height: 48px; padding: 14px 30px;
  font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: all .25s;
}
.age-gate-yes {
  background: var(--brand-yellow); color: var(--ink);
  border: 1px solid var(--brand-yellow); font-weight: 500;
}
.age-gate-yes:hover { background: #fff; border-color: #fff; }
.age-gate-no {
  background: rgba(6,10,20,0.4); color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.4);
}
.age-gate-no:hover { color: #fff; border-color: #fff; background: rgba(6,10,20,0.65); }
.age-gate-disclaimer {
  margin-top: 30px; font-size: 0.68rem; line-height: 1.7;
  color: rgba(255,255,255,0.62); text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.age-gate-disclaimer a { color: rgba(255,255,255,0.86); text-decoration: underline; text-underline-offset: 3px; }
.age-gate-yes:focus-visible, .age-gate-no:focus-visible {
  outline: 2px solid var(--brand-mint); outline-offset: 3px;
}
@media (max-width: 460px) {
  .age-gate-actions { flex-direction: column; }
  .age-gate-yes, .age-gate-no { width: 100%; }
  .age-gate-bg { background-position: center 38%; }
}

/* ===================== UNDER-AGE PAGE ===================== */
.oops-body { background: var(--ink); }
.oops {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.oops-bg {
  position: absolute; inset: 0;
  background-image: url('../img/agegate-night.jpg');
  background-size: cover; background-position: center 42%;
  opacity: 0.85;
}
.oops::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.88) 75%);
  z-index: 1;
}
.oops-box { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 520px; }
.oops-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.3; color: #fff;
}
.oops-sub { margin-top: 16px; font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.oops-foot {
  margin-top: 40px; font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}

/* Oops page sits on dark ground - override the light-theme heading colour */
.oops-body .oops-title { color: #fff !important; }

/* ===================== PEOPLE ===================== */
.people {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
  max-width: 1160px; margin: clamp(38px, 4.5vw, 62px) auto 0;
}
.person { margin: 0; display: flex; flex-direction: column; }
.person-frame {
  position: relative; overflow: hidden; background: var(--bg-alt);
  border-radius: 2px;
}
.person-frame::after {          /* thin brand rule anchors each portrait */
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: repeating-linear-gradient(90deg,
    var(--brand-yellow) 0 9px, var(--brand-mint) 9px 18px);
  opacity: 0; transition: opacity .35s var(--ease-out);
}
.person:hover .person-frame::after { opacity: 1; }
.person-frame img {
  width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.person:hover .person-frame img { transform: scale(1.03); }

.person figcaption {
  padding-top: 18px;
}
.person-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.16rem); color: var(--ink); line-height: 1.25;
}
.person-role {
  margin-top: 6px; font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-faint); line-height: 1.65;
  min-height: 63px; display: flex; align-items: flex-start;
}
.person-bio {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 0.82rem; line-height: 1.7; color: var(--text-body);
}
.person-link {
  display: inline-block; margin-top: 16px; font-size: 0.56rem;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  color: var(--ink); border-bottom: 1px solid var(--line-strong);
  padding-bottom: 3px; transition: border-color .25s;
}
.person-link:hover { border-bottom-color: var(--gold-deep); color: var(--gold-deep); }
@media (max-width: 900px) { .people { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .person-role { min-height: 0; } }
@media (max-width: 520px) { .people { grid-template-columns: 1fr; max-width: 320px; } }

/* ===================== HOMEPAGE: DAY / DUSK ===================== */
.daydusk { display: grid; grid-template-columns: 1fr 1fr; }
.dd-half {
  display: block; text-decoration: none; padding: clamp(32px,4vw,64px) clamp(24px,3vw,56px) clamp(40px,5vw,72px);
  transition: background .6s var(--ease-out);
}
.dd-day  { background: var(--bg-alt); }
.dd-dusk { background: #12122a; }
.dd-img { overflow: hidden; border-radius: 2px; }
.dd-img img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s var(--ease-out); }
.dd-half:hover .dd-img img { transform: scale(1.04); }
.dd-body { padding-top: clamp(20px,2.4vw,32px); }
.dd-half h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem,3.4vw,3rem); line-height: 1.1; }
.dd-line { margin-top: 10px; font-size: clamp(0.92rem,1.15vw,1.05rem); }
.dd-copy { margin-top: 12px; font-size: 0.9rem; line-height: 1.75; max-width: 42ch; }
.dd-cta {
  display: inline-block; margin-top: 22px; padding: 12px 26px;
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.dd-day h2 { color: var(--ink); }
.dd-day .dd-line { color: var(--gold-deep); }
.dd-day .dd-copy { color: var(--text-body); }
.dd-day .dd-cta { background: var(--ink); color: var(--brand-yellow); }
.dd-dusk h2 { color: #fff; }
.dd-dusk .dd-line { color: var(--brand-yellow); }
.dd-dusk .dd-copy { color: rgba(255,255,255,0.72); }
.dd-dusk .dd-cta { background: var(--brand-yellow); color: #0d0d1f; }
@media (max-width: 820px) { .daydusk { grid-template-columns: 1fr; } }

/* ===================== CURRENTLY AT BAAGH ===================== */
.currently { padding: clamp(56px,9vw,112px) 0; background: var(--bg); }
.currently-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px; margin-bottom: clamp(28px,3vw,44px); }
.currently-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem,3vw,2.5rem); color: var(--ink); }
.currently-head p { font-size: 0.85rem; color: var(--text-faint); }
.ed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,2vw,28px); }
.ed-card { text-decoration: none; display: block; }
.ed-img { overflow: hidden; border-radius: 2px; background: var(--bg-alt); }
.ed-img img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; transition: transform .7s var(--ease-out); }
.ed-card:hover .ed-img img { transform: scale(1.04); }
.ed-kicker { margin-top: 14px; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.ed-title { margin-top: 7px; font-family: var(--font-display); font-weight: 400; font-size: 1.02rem; line-height: 1.3; color: var(--ink); }
.ed-meta { margin-top: 5px; font-size: 0.75rem; color: var(--text-faint); }
.ed-link { display: inline-block; margin-top: 11px; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--line-strong); padding-bottom: 3px; }
.ed-card:hover .ed-link { border-bottom-color: var(--gold-deep); color: var(--gold-deep); }
@media (max-width: 900px) { .ed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ed-grid { grid-template-columns: 1fr; } }

/* ===================== LABEL TEASER ===================== */
.label-teaser { display: grid; grid-template-columns: 1.15fr 1fr; align-items: stretch; background: var(--ink); }
.lt-art img { width: 100%; height: 100%; display: block; object-fit: cover; }
.lt-body { padding: clamp(36px,5vw,80px); display: flex; flex-direction: column; justify-content: center; }
.lt-body h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem,3.4vw,2.9rem); line-height: 1.15; color: #fff !important; }
.lt-body p { margin-top: 18px; font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.72); max-width: 46ch; }
.lt-body .btn-primary { margin-top: 28px; align-self: flex-start; }
@media (max-width: 820px) { .label-teaser { grid-template-columns: 1fr; } .lt-art img { aspect-ratio: 4/3; } }

/* No Planet No Party facts */
.npnp-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.5vw,40px); max-width: 940px; margin: clamp(28px,3.5vw,48px) auto 0; }
.npnp-facts h3 { font-family: var(--font-body); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; padding-bottom: 10px; border-bottom: 1px solid var(--line-strong); }
.npnp-facts p { margin-top: 12px; font-size: 0.88rem; line-height: 1.7; color: var(--text-body); }
@media (max-width: 720px) { .npnp-facts { grid-template-columns: 1fr; } }

/* Square off filter chips per the brief */
.chip { border-radius: 2px; }

/* ===================== HOMEPAGE: FIND BAAGH ===================== */
.find-baagh {
  padding: clamp(56px,7vw,96px) 0; text-align: center;
  background-color: var(--bg-alt);
  background-image: repeating-linear-gradient(45deg, rgba(250,200,0,0.10) 0 2px, transparent 2px 11px);
}
.find-baagh h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem,2.8vw,2.3rem); color: var(--ink); line-height: 1.2; }
.fb-line { margin-top: 12px; font-size: clamp(0.95rem,1.3vw,1.15rem); color: var(--text-body); }
.fb-panel {
  display: inline-block; max-width: 640px; margin: 0 auto;
  background: rgba(255,253,242,0.94);
  border-radius: 4px;
  padding: clamp(32px,4vw,52px) clamp(24px,4vw,56px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.fb-cities { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: clamp(26px,3vw,38px) auto 0; max-width: 640px; }
.fb-cities a {
  padding: 10px 20px; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; border: 1px solid var(--ink); border-radius: 2px;
  transition: all .25s;
}
.fb-cities a:hover { background: var(--ink); color: var(--brand-yellow); }
.fb-cta { margin-top: clamp(26px,3vw,36px); }
.fb-note { margin-top: 18px; font-size: 0.72rem; color: var(--text-faint); }

/* Hero scrim: with the wordmark block removed, copy sits lower over brighter
   video frames, so the gradient is weighted to the left and bottom. */
.hero-bg::after {
  background:
    linear-gradient(100deg, rgba(6,6,10,0.88) 0%, rgba(6,6,10,0.66) 42%, rgba(6,6,10,0.30) 72%, rgba(6,6,10,0.55) 100%),
    linear-gradient(to top, rgba(6,6,10,0.62) 0%, transparent 45%);
}
.hero-content { max-width: 760px; }
@media (min-width: 1400px) { .hero-content { max-width: 960px; } }
.hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 4.6vw, 3.5rem); line-height: 1.12; letter-spacing: -0.01em;
}
.hero-subtitle { margin-top: 18px; font-size: clamp(0.95rem,1.35vw,1.15rem); line-height: 1.7; max-width: 44ch; }
.hero-actions { margin-top: clamp(26px,3vw,38px); display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero eyebrow, title subline, and the two-product taste module */
.hero-eyebrow {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; opacity: 0.95;
}
.hero-title-sub {
  display: block;
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(0.8rem, 1.2vw, 0.98rem);
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 10px;
}
.hero-taste {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: clamp(24px, 3vw, 36px);
  max-width: 580px;
}
@media (min-width: 1400px) { .hero-taste { max-width: 760px; gap: 20px; } }
.hero-taste-item {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 20px 10px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.25s;
  flex: 1 1 230px;
}
.hero-taste-item:hover { background: rgba(255,255,255,0.11); }
.hero-taste-item picture, .hero-taste-item img {
  width: 64px; height: 84px; object-fit: cover; border-radius: 2px; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.hti-body { display: flex; flex-direction: column; gap: 3px; }
.hti-name {
  font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; color: #fff;
}
.hti-notes {
  font-size: 0.68rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.68);
}
@media (max-width: 520px) {
  .hero-taste { flex-direction: column; max-width: 100%; }
  .hero-taste-item { padding: 14px; gap: 18px; }
  .hero-taste-item picture, .hero-taste-item img { width: 84px; height: 110px; }
  .hti-name { font-size: 1.15rem; }
  .hti-notes { font-size: 0.72rem; }
}
@media (min-width: 1400px) {
  .hero-taste-item { padding: 16px 28px 16px 16px; gap: 22px; flex: 1 1 320px; }
  .hero-taste-item picture, .hero-taste-item img { width: 92px; height: 122px; }
  .hti-name { font-size: 1.3rem; }
  .hti-notes { font-size: 0.78rem; }
}

/* Locator: coming-soon toggle + actions */
.soon-toggle {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 0.68rem; letter-spacing: 0.1em; color: var(--text-body); cursor: pointer;
}
.soon-toggle input { width: 15px; height: 15px; accent-color: var(--gold-deep); cursor: pointer; }
.outlet-actions { display: flex; gap: 16px; margin-top: 9px; flex-wrap: wrap; }
.outlet-directions, .outlet-wa {
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 2px;
}
.outlet-directions { color: var(--ink); }
.outlet-wa { color: var(--teal-text); }
.outlet-directions:hover { border-bottom-color: var(--ink); }
.outlet-wa:hover { border-bottom-color: var(--teal-text); }
.outlet-prod {
  font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px; white-space: nowrap;
  background: var(--bg-alt); color: var(--gold-deep);
}

/* Dark panels must beat the light theme's global heading rule */
.dd-dusk h2, .dd-dusk .dd-line, .dd-dusk .dd-copy { color: #fff !important; }
.dd-dusk .dd-line { color: var(--brand-yellow) !important; }
.dd-dusk .dd-copy { color: rgba(255,255,255,0.74) !important; }

/* ===================== BAAGH BLUE: DUSK MOOD ===================== */
.dusk { background: linear-gradient(180deg, #0d0d1f 0%, #12122a 45%, #171734 100%); }
.dusk .prose-section, .dusk .prose-section.alt { background: transparent; }
.dusk h2, .dusk h3, .dusk .pl-name { color: #fff !important; }
.dusk p, .dusk .prose-section p { color: rgba(255,255,255,0.74) !important; }
.dusk .prose-section p.lead { color: rgba(255,255,255,0.94) !important; }
.dusk .label { color: var(--brand-mint) !important; }
.dusk em { color: var(--brand-mint); }
.dusk .btn-outline { color: #fff; border-color: rgba(255,255,255,0.35); }
.dusk .btn-outline:hover { background: var(--brand-mint); color: #0d0d1f; border-color: var(--brand-mint); }
.dusk .serve-grid-page { background: rgba(255,255,255,0.10); }
.dusk .serve-grid-page .serve-item { background: #12122a; }
.dusk .serve-name { color: #fff; }
.dusk .serve-desc { color: rgba(255,255,255,0.6); }
.dusk .price-line { color: rgba(255,255,255,0.9) !important; }
.dusk .price-line strong { color: var(--brand-mint); }
.dusk .pour-seq figcaption { color: var(--brand-mint); }
.dusk .impact-figure figcaption { color: rgba(255,255,255,0.5); }
.dusk .film-block video { background: #0d0d1f; }

/* Editorial flavour typography (no tasting wheels) */
.flavour { max-width: 1000px; margin: clamp(28px,3.5vw,48px) auto 0; }
.fl-row {
  display: grid; grid-template-columns: minmax(200px, 0.9fr) 1.4fr;
  gap: clamp(16px,3vw,48px); align-items: baseline;
  padding: clamp(20px,2.4vw,32px) 0; border-top: 1px solid var(--line-strong);
}
.fl-row:last-child { border-bottom: 1px solid var(--line-strong); }
.fl-row h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem,4.2vw,3.4rem); line-height: 1; letter-spacing: -0.01em;
}
.fl-row p { font-size: clamp(0.9rem,1.15vw,1.02rem); line-height: 1.8; margin: 0; }
.dusk .fl-row { border-color: rgba(255,255,255,0.16); }
@media (max-width: 640px) { .fl-row { grid-template-columns: 1fr; gap: 8px; } }

/* Dusk hour editorial band */
.dusk-hour { position: relative; }
.dusk-hour .dh-img img { width: 100%; display: block; max-height: 70vh; object-fit: cover; }
.dusk-hour .dh-body {
  position: absolute; inset: auto 0 0 0; padding: clamp(28px,5vw,72px);
  background: linear-gradient(to top, rgba(8,8,20,0.86), transparent);
}
.dusk-hour h2 {
  font-family: var(--font-display); font-weight: 400; color: #fff !important;
  font-size: clamp(1.5rem,2.8vw,2.3rem); line-height: 1.2; max-width: 18ch;
}

/* Dusk serves: beat the .prose-section.alt rule */
.dusk .prose-section .serve-grid-page,
.dusk .prose-section.alt .serve-grid-page { background: rgba(255,255,255,0.12); }
.dusk .prose-section .serve-grid-page .serve-item,
.dusk .prose-section.alt .serve-grid-page .serve-item { background: #14142c; }
.dusk .serve-item .serve-name { color: #fff !important; }
.dusk .serve-item .serve-desc { color: rgba(255,255,255,0.65) !important; }
/* pour sequence sits better on a dark ground */
.dusk .pour-seq img { border-radius: 2px; background: #fff; }

/* ===================== STORIES ===================== */
.stories-head { padding: clamp(96px,11vw,150px) 0 clamp(22px,2.6vw,34px); background: var(--bg); }
.stories-head h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem,4.6vw,3.4rem); color: var(--ink); line-height: 1.15; }
.stories-head p { margin-top: 12px; font-size: clamp(0.92rem,1.2vw,1.05rem); color: var(--text-body); }
.stories-head .chip-row { margin-top: clamp(22px,2.6vw,32px); }
.stories { padding: 0 0 clamp(56px,7vw,90px); background: var(--bg); }
.ed-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .ed-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ed-grid-3 { grid-template-columns: 1fr; } }
.stories-empty { padding: 40px 0; color: var(--text-faint); }

/* ===================== LOCATOR: GEOLOCATION ===================== */
.geo-btn {
  width: 100%; padding: 12px 16px; margin-bottom: 10px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
  background: var(--brand-yellow); border: 1px solid var(--brand-yellow); border-radius: 2px;
  transition: all .25s;
}
.geo-btn:hover { background: var(--ink); color: var(--brand-yellow); }
.geo-btn.is-on { background: transparent; color: var(--gold-deep); border-color: var(--line-strong); }
.geo-btn:disabled { opacity: 0.75; cursor: default; }
.outlet-dist {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-text); margin-right: 4px;
}

/* ===================== MOBILE STICKY CTA ===================== */
.sticky-cta { display: none; }
@media (max-width: 820px) {
  .sticky-cta {
    display: flex; align-items: center; justify-content: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    min-height: 54px; padding: 16px;
    background: var(--brand-yellow); color: var(--ink);
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
    text-decoration: none; box-shadow: 0 -2px 14px rgba(0,0,0,0.18);
  }
  body { padding-bottom: 54px; }
  .sticky-cta:active { background: var(--gold-mid); }
}

/* Respect the OS reduced-motion setting */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .person:hover .person-frame img,
  .ed-card:hover .ed-img img,
  .dd-half:hover .dd-img img { transform: none !important; }
}

/* ===================== STORY ARTICLES ===================== */
.story-hero {
  padding: clamp(130px,16vw,210px) 0 clamp(48px,6vw,80px);
  background-size: cover; background-position: center; text-align: center;
}
.story-hero .label { color: var(--brand-yellow) !important; }
.story-hero h1 {
  font-family: var(--font-display); font-weight: 400; color: #fff !important;
  font-size: clamp(1.8rem,4.6vw,3.4rem); line-height: 1.15; margin-top: 14px; max-width: 20ch;
  margin-left: auto; margin-right: auto;
}
.story-standfirst {
  margin: 18px auto 0; max-width: 54ch; color: rgba(255,255,255,0.82) !important;
  font-size: clamp(0.98rem,1.35vw,1.18rem); line-height: 1.65;
}
.story-meta {
  margin-top: 20px; font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.55) !important;
}
.story-body { max-width: 720px; padding-top: clamp(40px,5vw,68px); padding-bottom: clamp(32px,4vw,52px); }
.story-body p { font-size: clamp(0.98rem,1.2vw,1.08rem); line-height: 1.85; color: var(--text-body); margin-bottom: 22px; }
.story-body h2 {
  font-family: var(--font-display); font-weight: 400; color: var(--ink);
  font-size: clamp(1.35rem,2.4vw,1.85rem); line-height: 1.25; margin: 40px 0 16px;
}
.story-body strong { color: var(--ink); font-weight: 500; }
.story-body em { color: var(--teal-text); }
.st-quote { margin: 34px 0; padding-left: 22px; border-left: 3px solid var(--brand-yellow); }
.st-quote p { font-family: var(--font-display); font-size: clamp(1.1rem,1.9vw,1.45rem); line-height: 1.5; color: var(--ink); margin-bottom: 12px; }
.st-quote cite { font-style: normal; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }
.st-fig { margin: 34px 0; }
.st-fig img, .st-fig video { width: 100%; display: block; border-radius: 2px; }
.st-fig-portrait { max-width: 380px; margin-left: auto; margin-right: auto; }
.st-fig figcaption { margin-top: 10px; font-size: 0.74rem; color: var(--text-faint); }
.st-strip { grid-template-columns: repeat(3,1fr); margin: 34px 0; }
.st-stats { margin: 30px 0 0; }
.story-next {
  max-width: 720px; padding-top: clamp(30px,4vw,48px); padding-bottom: clamp(48px,6vw,80px);
  border-top: 1px solid var(--line-strong);
}
.story-next-link {
  display: inline-block; margin-top: 8px; font-family: var(--font-display);
  font-size: clamp(1.15rem,2vw,1.6rem); color: var(--ink); text-decoration: none; line-height: 1.3;
}
.story-next-link:hover { color: var(--gold-deep); }
@media (max-width: 640px) { .st-strip { grid-template-columns: repeat(2,1fr); } }
.locator-count strong { color: var(--ink); font-weight: 500; }
.count-soon { color: var(--text-faint); }

/* Result card: product availability ticks */
.outlet-products { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.prod-tick {
  font-size: 0.6rem; letter-spacing: 0.1em; padding: 3px 9px; border-radius: 2px;
  border: 1px solid var(--line-strong); white-space: nowrap;
}
.tick-yes  { color: var(--teal-text); border-color: rgba(11,107,58,0.35); }
.tick-soon { color: var(--text-faint); }
/* 44px minimum touch targets on the actions */
.outlet-actions a { display: inline-flex; align-items: center; min-height: 44px; }
.outlet-select { min-height: 44px; display: flex; align-items: center; }

/* #55 minimum 44px touch targets on mobile controls */
@media (max-width: 900px) {
  .geo-btn { min-height: 46px; }
  .chip { min-height: 44px; padding-top: 0; padding-bottom: 0;
          display: inline-flex; align-items: center; }
  .view-btn { min-height: 46px; }
  .soon-toggle { min-height: 44px; }
  .soon-toggle input { width: 20px; height: 20px; }
}

/* Listening: covers and latest flag */
.pl-cover { display: block; overflow: hidden; border-radius: 2px; }
.pl-cover img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; transition: transform .6s var(--ease-out); }
.pl-card:hover .pl-cover img { transform: scale(1.04); }
.pl-latest, .lt-latest {
  display: inline-block; margin-bottom: 8px; padding: 3px 9px;
  font-size: 0.54rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--brand-yellow); color: var(--ink); border-radius: 2px;
}
.lt-cover { display: block; overflow: hidden; margin-bottom: 12px; }
.lt-cover img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; transition: transform .6s var(--ease-out); }
.listen-tile:hover .lt-cover img { transform: scale(1.04); }
.lt-cta {
  display: inline-block; margin-top: 12px; font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--line-strong); padding-bottom: 3px;
}
.listen-tile:hover .lt-cta { border-bottom-color: var(--gold-deep); color: var(--gold-deep); }
.listen-tile { padding-top: 14px; }

/* ===================== PASS 5: MOBILE ===================== */
@media (max-width: 820px) {
  /* #54 the sticky bar must not cover the last footer line */
  body { padding-bottom: 0; }
  footer { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
  .sticky-cta {
    min-height: 54px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  /* #55 44px minimum on every tappable control */
  .nav-logo { min-height: 44px; display: flex; align-items: center; }
  .menu-toggle { min-width: 44px; min-height: 44px; }
  .skip-link { min-height: 44px; display: flex; align-items: center; }
  footer a, .mobile-menu a {
    min-height: 44px; display: flex; align-items: center;
  }
  .footer-col a { padding: 2px 0; }
  .outlet-name { line-height: 1.35; }

  /* #56 no desktop hover-motion on touch devices */
  .person:hover .person-frame img,
  .ed-card:hover .ed-img img,
  .dd-half:hover .dd-img img,
  .spirit-card:hover img,
  .pl-card:hover .pl-cover img,
  .listen-tile:hover .lt-cover img { transform: none; }
  .pl-card:hover, .listen-tile:hover { transform: none; }
  .reveal { transition-duration: 0.35s; }
}

/* #55 remaining tappable controls below 44px on mobile */
@media (max-width: 820px) {
  .btn-primary, .btn-outline, .btn-secondary, .pl-link, .dd-cta, .fb-cities a {
    min-height: 46px; display: inline-flex; align-items: center; justify-content: center;
  }
  .person-link, .ed-link, .tlink, .outlet-directions, .outlet-wa, .story-next-link {
    min-height: 44px; display: inline-flex; align-items: center;
  }
  .soon-toggle input, .locator-search { min-height: 44px; }
  .soon-toggle input[type="checkbox"] { width: 22px; height: 22px; min-height: 22px; }
  .hero-scroll a, .footer-social a { min-height: 44px; display: inline-flex; align-items: center; }
}

/* Inline links inside sentences and captions: give them tap room without
   breaking the text flow they sit in. */
@media (max-width: 820px) {
  .age-gate-disclaimer a, .venue-name a {
    display: inline-block; padding: 12px 2px; margin: -12px 0;
  }
  .locator-search { padding-top: 14px; padding-bottom: 14px; }
  #showSoon { width: 24px; height: 24px; }
}

/* ===================== MAP: BRAND TREATMENT ===================== */
/* OpenStreetMap tiles are colourful and generic. Desaturating and warming them
   puts the basemap inside the Baagh palette so the markers carry the colour. */
.map-osm .leaflet-tile-pane {
  filter: grayscale(0.92) sepia(0.28) saturate(0.75) brightness(1.06) contrast(0.92);
}
.map-mapbox .leaflet-tile-pane { filter: saturate(0.9); }

.locator-map { background: var(--bg-alt); }
.leaflet-container { font-family: var(--font-body); background: var(--bg-alt); }

/* Zoom control: square, brand-coloured, 44px touch targets */
.leaflet-touch .leaflet-bar, .leaflet-bar {
  border: 1px solid var(--line-strong); border-radius: 2px; box-shadow: none; overflow: hidden;
}
.leaflet-bar a, .leaflet-touch .leaflet-bar a {
  width: 44px; height: 44px; line-height: 44px;
  background: var(--bg); color: var(--ink);
  border-bottom: 1px solid var(--line); font-size: 1.1rem; font-weight: 400;
}
.leaflet-bar a:hover { background: var(--brand-yellow); color: var(--ink); }
.leaflet-bar a:last-child { border-bottom: 0; }
.leaflet-control-zoom-in, .leaflet-control-zoom-out { border-radius: 0 !important; }

/* Attribution: present but quiet */
.leaflet-control-attribution {
  background: rgba(255,253,242,0.82); font-size: 0.58rem; color: var(--text-faint);
  padding: 3px 7px; border-radius: 2px 0 0 0;
}
.leaflet-control-attribution a { color: var(--text-faint); }

/* Markers: yellow for available, outlined for coming soon, mint when selected */
.baagh-marker-dot {
  width: 15px; height: 15px; margin: 3px; border-radius: 50%;
  background: var(--brand-yellow); border: 2px solid var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: transform .2s var(--ease-out), background .2s;
}
.baagh-marker.is-soon .baagh-marker-dot { background: var(--bg); border-color: var(--text-faint); }
.baagh-marker.is-active .baagh-marker-dot {
  background: var(--brand-mint); transform: scale(1.5); box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.baagh-marker:hover .baagh-marker-dot { transform: scale(1.3); }

/* Popup: square, brand type, no default blue */
.leaflet-popup-content-wrapper {
  border-radius: 2px; box-shadow: 0 6px 26px rgba(0,0,0,0.18);
  border-top: 4px solid var(--brand-yellow); background: var(--bg);
}
.leaflet-popup-tip { background: var(--bg); }
.leaflet-popup-content { margin: 14px 16px; }
.pop-name { display:block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); line-height: 1.25; }
.pop-loc  { display:block; font-size: 0.78rem; color: var(--text-body); margin-top: 4px; }
.pop-type { display:block; font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-top: 6px; }
.pop-link {
  display:inline-flex; align-items:center; min-height: 40px; margin-top: 6px;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line-strong); padding-bottom: 2px;
}
.pop-link:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }
.leaflet-container a.leaflet-popup-close-button { color: var(--text-faint); font-size: 20px; padding: 8px 8px 0 0; }
.leaflet-container a.leaflet-popup-close-button:hover { color: var(--ink); }

/* zoom controls need the 44px rule to beat Leaflet's own touch sizing */
.leaflet-touch .leaflet-bar a { width: 44px !important; height: 44px !important; line-height: 44px !important; }

/* Location granted: headings collapse, one nearest-first list */
#locator.is-flat .outlet-group-title,
#locator.is-flat .area-title { display: none; }
#locator.is-flat .outlet-group,
#locator.is-flat .area-group { margin-top: 0; }
.outlet-list-flat { list-style: none; margin: 0; padding: 0; }
.geo-status {
  margin-top: 10px; font-size: 0.75rem; line-height: 1.6; color: var(--teal-text);
}
.chip-row-city .chip { font-weight: 500; }

/* You-are-here marker: mint, deliberately unlike the yellow outlet pins */
.you-marker span {
  display: block; width: 14px; height: 14px; margin: 2px; border-radius: 50%;
  background: var(--brand-mint); border: 2.5px solid var(--ink);
  box-shadow: 0 0 0 3px rgba(87,255,156,0.35), 0 2px 8px rgba(0,0,0,0.35);
}
.you-halo {
  stroke: var(--brand-mint); stroke-width: 1.5; stroke-opacity: 0.75;
  fill: var(--brand-mint); fill-opacity: 0.12;
}
.recentre-btn {
  width: 44px; height: 44px; cursor: pointer;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 2px;
  font-size: 1.15rem; line-height: 1; margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.recentre-btn:hover { background: var(--brand-mint); }

/* Typeahead suggestions */
.locator-search-wrap { position: relative; display: block; }
.search-suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 30;
  list-style: none; margin: 0; padding: 4px;
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 2px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.14); max-height: 320px; overflow-y: auto;
}
.search-suggest li {
  display: grid; grid-template-columns: 56px 1fr; grid-template-rows: auto auto;
  gap: 0 10px; align-items: center;
  padding: 9px 10px; min-height: 44px; cursor: pointer; border-radius: 2px;
}
.search-suggest li:hover, .search-suggest li.is-active { background: var(--bg-alt); }
.sug-kind {
  grid-row: span 2; font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid var(--line-strong); border-radius: 2px;
  padding: 3px 0; text-align: center;
}
.sug-label { font-size: 0.9rem; color: var(--ink); line-height: 1.3; }
.sug-sub { font-size: 0.7rem; color: var(--text-faint); line-height: 1.3; }

/* Filters: product stays on the first screen at every size; market, type and
   coming-soon collapse behind one disclosure so search + location dominate. */
.locator-filters-panel { display: none; }
.filters-open .locator-filters-panel {
  display: block; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}
.filters-open .locator-filters-panel .chip-row { flex-wrap: wrap; }

.filter-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; margin-top: 8px; padding: 0 4px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep);
}
.filter-toggle::after { content: '+'; font-size: 0.95rem; line-height: 1; }
.filters-open .filter-toggle::after { content: '\2212'; }

/* ===================== MOBILE: REACHING THE MAP ===================== */
@media (max-width: 900px) {
  /* Search and the List|Map toggle stay put while filters scroll away,
     so the map is always one tap from wherever you are in the list. */
  .locator-controls {
    position: sticky; top: 56px; z-index: 20;
    background: var(--bg);
    box-shadow: 0 6px 12px -8px rgba(0,0,0,0.25);
    padding-bottom: 10px;
  }
  .view-toggle { margin-top: 10px; }
  .locator-map-wrap { height: calc(100vh - 190px); top: 150px; }
}

/* The locator is a tool, not an editorial page: shrink its hero on mobile so
   search and the List|Map toggle sit near the top of the screen. */
@media (max-width: 900px) {
  .locator-hero { padding: clamp(90px, 22vw, 120px) 0 clamp(20px, 5vw, 28px); }
  .locator-hero h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .locator-hero .page-hero-sub { font-size: 0.85rem; max-width: 34ch; }
  .locator-panel { padding-top: 14px; }
  .locator-controls { top: 52px; }
}

/* ===================== AWARDS STRIP ===================== */
.awards-strip {
  padding: clamp(56px,9vw,112px) 0;
  background-size: cover; background-position: center;
}
.awards-strip .label { color: var(--brand-yellow) !important; }
.awards-strip h2 {
  font-family: var(--font-display); font-weight: 400; color: #fff;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem); line-height: 1.25;
}
.awards-strip .narrow > p { color: rgba(255,255,255,0.78); }
.aw-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px,2.4vw,36px); max-width: 1000px; margin: clamp(30px,3.5vw,46px) auto 0;
}
.aw {
  margin: 0; text-align: center;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: clamp(22px, 2.6vw, 30px) 16px clamp(20px, 2.4vw, 26px);
  transition: border-color 0.25s, transform 0.25s;
}
.aw:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.aw-img-wrap {
  height: 84px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.aw img { max-height: 84px; max-width: 100%; width: auto; height: auto; margin: 0 auto; display: block; }
.aw-img-ring { position: relative; }
.aw-img-ring::before {
  content: ''; position: absolute; width: 66px; height: 66px; border-radius: 50%;
  border: 1px solid var(--line-strong); z-index: 0;
}
.aw-img-ring img { position: relative; z-index: 1; max-height: 58px; }
.aw figcaption { display: flex; flex-direction: column; gap: 4px; }
.aw-award { font-family: var(--font-display); font-size: 0.98rem; color: var(--ink); line-height: 1.25; }
.aw-body { font-size: 0.78rem; color: var(--text-body); }
.aw-year { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gold-deep); }
@media (max-width: 780px) { .aw-row { grid-template-columns: repeat(2, 1fr); } }

/* Label teaser on cream: the painting carries it, not a black panel */
.label-teaser-light { background: var(--bg-alt); }
.label-teaser-light .lt-body h2 { color: var(--ink) !important; }
.label-teaser-light .lt-body p { color: var(--text-body) !important; }

/* Day/Dusk: the night frame instead of flat black */
.dd-dusk { background-size: cover; background-position: center; }

/* ===================== FLAVOUR AS A SCENE ===================== */
.flavour-scene {
  padding: clamp(56px,7vw,110px) 0;
  background-size: cover; background-position: center; background-attachment: scroll;
}
.flavour-lead {
  font-family: var(--font-display); font-weight: 400; margin-top: 12px;
  font-size: clamp(1.5rem,2.8vw,2.3rem); line-height: 1.25; max-width: 20ch;
}
.flavour-day .flavour-lead { color: var(--ink) !important; }
.flavour-night .flavour-lead { color: #fff !important; }
.flavour-night .label { color: var(--brand-mint) !important; }
.flavour-night .fl-row { border-color: rgba(255,255,255,0.22); }
.flavour-night .fl-row h2 { color: #fff !important; }
.flavour-night .fl-row p { color: rgba(255,255,255,0.8) !important; }
.flavour-day .fl-row { border-color: rgba(0,0,0,0.18); }
.flavour-day .fl-row h2 { color: var(--ink) !important; }
.flavour-day .fl-row p { color: #3c3c34 !important; }
.flavour-scene .flavour { margin-top: clamp(30px,4vw,54px); }

/* ===================== DISTILLERY BAND ===================== */
.distillery { background: var(--bg-alt); }
.dist-head { padding: clamp(48px,6vw,84px) 0 clamp(28px,3.5vw,44px); }
.dist-head .lead { font-size: clamp(1.02rem,1.5vw,1.22rem); color: var(--ink); line-height: 1.65; }

/* Film and process share one frame, edge to edge, so they read as one thing. */
.dist-band {
  display: grid; grid-template-columns: minmax(280px, 34%) 1fr;
  align-items: stretch; background: var(--ink);
}
.dist-film { position: relative; overflow: hidden; background: #000; }
.dist-film video {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.dist-steps-wrap { padding: clamp(30px,4vw,64px) clamp(24px,3.5vw,64px); }
.dist-steps { list-style: none; margin: 0; padding: 0; }
.dist-steps li {
  display: grid; grid-template-columns: 58px 1fr; gap: 2px 16px;
  padding: clamp(14px,1.8vw,22px) 0; border-top: 1px solid rgba(255,255,255,0.16);
}
.dist-steps li:first-child { border-top: 0; padding-top: 0; }
.dist-num {
  grid-row: span 2; font-family: var(--font-display);
  font-size: clamp(1.4rem,2.2vw,1.9rem); color: var(--brand-yellow); line-height: 1;
}
.dist-steps h3 {
  font-family: var(--font-body); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: #fff !important; font-weight: 500;
}
.dist-steps p {
  font-size: clamp(0.86rem,1.05vw,0.96rem); line-height: 1.7;
  color: rgba(255,255,255,0.74) !important; margin: 0;
}
.dist-caption {
  margin-top: clamp(18px,2.2vw,28px); padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 0.7rem; color: rgba(255,255,255,0.5) !important;
}
@media (max-width: 860px) {
  .dist-band { grid-template-columns: 1fr; }
  .dist-film video { max-height: 62vh; }
}

/* The line film is portrait, so cap the band height and let it crop, rather
   than letting a 9:16 clip dictate the length of the whole section. Only the
   film itself is capped — capping the grid container too broke mobile, where
   the layout stacks to one column and the steps list needs its full height. */
.dist-film { max-height: 560px; }
.dist-film video { max-height: 560px; }
.dist-steps-wrap { display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 860px) {
  .dist-film, .dist-film video { max-height: 420px; }
}

/* ===================== MAP CLUSTERS ===================== */
/* Not numbered dots: a soft ring, brand type, and a halo that grows with count. */
.baagh-cluster {
  display: flex; align-items: center; justify-content: center;
  position: relative; border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--ink);
  font-family: var(--font-display); font-weight: 400; letter-spacing: 0;
  border: 0;
  box-shadow:
    0 0 0 1px rgba(10,10,10,0.55),
    0 0 0 7px rgba(250,200,0,0.22),
    0 3px 12px rgba(0,0,0,0.28);
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
}
.baagh-cluster::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.18); pointer-events: none;
}
.baagh-cluster:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 0 1px rgba(10,10,10,0.7),
    0 0 0 11px rgba(250,200,0,0.26),
    0 4px 16px rgba(0,0,0,0.34);
}
.baagh-cluster-sm { width: 36px !important; height: 36px !important; font-size: 0.82rem; }
.baagh-cluster-md {
  width: 46px !important; height: 46px !important; font-size: 0.98rem;
  background: var(--gold-mid);
  box-shadow: 0 0 0 1px rgba(10,10,10,0.55), 0 0 0 9px rgba(232,188,46,0.22), 0 3px 12px rgba(0,0,0,0.28);
}
.baagh-cluster-lg {
  width: 58px !important; height: 58px !important; font-size: 1.18rem;
  background: var(--brand-mint); color: #062514;
  box-shadow: 0 0 0 1px rgba(6,37,20,0.6), 0 0 0 12px rgba(87,255,156,0.20), 0 4px 16px rgba(0,0,0,0.3);
}
.marker-cluster, .marker-cluster div { background: none !important; border: 0 !important; }

/* Leaflet sets display:block on .leaflet-marker-icon, which killed the flex
   centring on clusters. Match its specificity. */
.leaflet-marker-icon.baagh-cluster {
  display: flex !important; align-items: center; justify-content: center;
  line-height: 1;
}
.leaflet-marker-icon.baagh-cluster span { line-height: 1; display: block; }

/* ===================== FILM PAGE HEADERS ===================== */
.page-hero-film { position: relative; overflow: hidden; background: var(--ink); }
.hero-film { position: absolute; inset: 0; z-index: 0; }
.hero-film video { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-film::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(8,8,12,0.80) 0%, rgba(8,8,12,0.58) 46%, rgba(8,8,12,0.30) 100%),
    linear-gradient(to top, rgba(8,8,12,0.60) 0%, transparent 42%);
}
.page-hero-film-dark::after {
  background:
    linear-gradient(100deg, rgba(6,6,18,0.86) 0%, rgba(6,6,18,0.66) 46%, rgba(6,6,18,0.36) 100%),
    linear-gradient(to top, rgba(6,6,18,0.66) 0%, transparent 42%);
}
.page-hero-film .container { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero-film video { display: none; } }

/* ===================== FILLING THE EMPTY BANDS ===================== */
/* Find Baagh sat as a small centred block inside 192px of padding. */
.find-baagh-scene {
  background-size: cover; background-position: center 62%;
  padding: clamp(58px,6.5vw,88px) 0;
}

/* No Planet No Party: real restoration photography, not flat yellow. */
.npnp-scene {
  background-size: cover; background-position: center;
  padding: clamp(56px,7vw,96px) 0;
}
.npnp-scene .label { color: var(--brand-mint) !important; }
.npnp-scene h2 {
  font-family: var(--font-display); font-weight: 400; color: #fff !important;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem); line-height: 1.15; margin-top: 10px;
}
.npnp-scene .narrow p { color: rgba(255,255,255,0.8) !important; }
.npnp-scene .npnp-facts h3 { color: var(--brand-yellow) !important; border-bottom-color: rgba(255,255,255,0.28); }
.npnp-scene .npnp-facts p { color: rgba(255,255,255,0.82) !important; }
.npnp-scene .btn-outline { color: #fff; border-color: rgba(255,255,255,0.45); }
.npnp-scene .btn-outline:hover { background: #fff; color: var(--ink); }

/* Label teaser: the painting ran 900px tall and left the copy column half empty. */
.label-teaser { max-height: 640px; }
.label-teaser .lt-art { overflow: hidden; }
.label-teaser .lt-art img { height: 100%; max-height: 640px; object-fit: cover; }
.lt-stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: clamp(26px,3vw,38px); }
.lt-stages figure { margin: 0; }
.lt-stages img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; border-radius: 2px; }
.lt-stages figcaption {
  margin-top: 7px; font-size: 0.56rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-faint);
}
@media (max-width: 820px) { .label-teaser { max-height: none; } .label-teaser .lt-art img { max-height: 380px; } }

/* House close: the plain cream block read as dead space at the foot of the page. */
.house-scene {
  background-size: cover; background-position: center 70%;
  padding: clamp(56px,7vw,92px) 0;
}

/* About opening: was flat text on a blank field, no visual anchor at all. */
.origin-scene {
  background-size: cover; background-position: center 55%;
}
.origin-scene h2 { text-shadow: 0 1px 14px rgba(255,253,242,0.7); }

/* ===================== SOUND ===================== */
.sound-toggle {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 26px; min-height: 44px; padding: 0 18px;
  background: rgba(255,255,255,0.08); cursor: pointer;
  border: 1px solid rgba(255,255,255,0.32); border-radius: 2px;
  font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  transition: all .25s;
}
.sound-toggle:hover { background: rgba(255,255,255,0.16); color: #fff; }
.sound-toggle.is-on { border-color: var(--brand-mint); color: var(--brand-mint); }
.sound-icon {
  width: 13px; height: 13px; border-radius: 50%;
  border: 1px solid currentColor; position: relative;
}
.sound-toggle.is-on .sound-icon { background: var(--brand-mint); border-color: var(--brand-mint); }

/* Persistent control once inside the site, so audio can always be stopped. */
.sound-nav {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-left: 10px; cursor: pointer;
  background: none; border: 1px solid var(--line-strong); border-radius: 2px;
  color: var(--ink); transition: all .2s;
}
.sound-nav:hover { border-color: var(--ink); }
.sound-nav.is-on { background: var(--brand-mint); border-color: var(--brand-mint); }
.sound-nav .sound-icon { width: 11px; height: 11px; }
@media (max-width: 900px) { .sound-nav { display: none; } }

/* ===================== KILLING THE DEAD MARGINS ===================== */
/* Prose sections were a narrow centred column inside a full-width band, which
   left enormous empty margins. Offset them instead: text left, air right. */
@media (min-width: 981px) {
  .prose-section .container.narrow {
    max-width: 1100px; margin-left: auto; margin-right: auto;
    display: grid; grid-template-columns: minmax(0, 62%) 1fr; gap: 0 56px;
  }
  .prose-section .container.narrow > * { grid-column: 1; }
  .prose-section .container.narrow > .label { align-self: start; }
}

/* Listening cards ran to wildly different heights and left ragged gaps. */
.pl-grid { align-items: stretch; }
.pl-card { height: 100%; }
.pl-body { display: flex; flex-direction: column; }
.pl-name { font-size: clamp(1.02rem, 1.2vw, 1.15rem); }
.pl-blurb { flex: 1 1 auto; }
.pl-link { margin-top: auto; align-self: flex-start; }

/* Scene bands: the type needs to sit on the painting, not float in a void. */
.find-baagh-scene h2, .house-scene h2 { text-shadow: 0 1px 18px rgba(255,253,242,0.85), 0 1px 3px rgba(255,253,194,0.9); }
.find-baagh-scene .fb-line,
.find-baagh-scene .fb-note {
  text-shadow: 0 1px 10px rgba(255,253,242,0.95), 0 1px 2px rgba(255,253,194,0.95);
}
.find-baagh-scene .fb-note { color: var(--text-body); }
.house-scene .container.narrow > p:not(.label) {
  text-shadow: 0 1px 10px rgba(255,253,242,0.95), 0 1px 2px rgba(255,253,194,0.95);
}

/* ===================== PRESS ===================== */
.press { padding: clamp(48px,6vw,80px) 0; background: var(--bg); }
.press-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px,2vw,26px);
  max-width: 1180px; margin: 0 auto;
}
.press-card {
  display: flex; flex-direction: column; height: 100%;
  padding: clamp(24px,2.6vw,32px) clamp(20px,2.2vw,26px);
  background: var(--bg-alt);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.press-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--brand-yellow) 0 10px, var(--brand-mint) 10px 20px);
  opacity: 0; transition: opacity .25s;
}
.press-card:hover { border-color: var(--gold-deep); transform: translateY(-3px); }
.press-card:hover::before { opacity: 1; }
.pc-outlet {
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px;
}
.pc-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.05rem,1.5vw,1.22rem); line-height: 1.35; color: var(--ink);
  flex: 1 1 auto; margin: 0 0 20px; transition: color .25s;
}
.press-card:hover .pc-title { color: var(--gold-deep); }
.pc-read {
  font-size: 0.68rem; letter-spacing: 0.08em; color: var(--gold-deep);
  margin-bottom: 14px; opacity: 0; transform: translateX(-4px);
  transition: opacity 0.25s, transform 0.25s;
}
.press-card:hover .pc-read { opacity: 1; transform: translateX(0); }
.pc-date { font-size: 0.6rem; letter-spacing: 0.16em; color: var(--text-faint); margin-top: auto; }

.press-card-featured {
  grid-column: span 2;
  background: var(--bg-alt);
  border-color: var(--gold-deep);
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.press-card-featured::before { opacity: 1; }
.press-card-featured .pc-outlet { flex-basis: 100%; }
.press-card-featured .pc-title {
  font-size: clamp(1.35rem,2.2vw,1.8rem); flex: 1 1 320px; margin-bottom: 0;
}
.press-card-featured .pc-read {
  opacity: 1; transform: none; flex-shrink: 0; align-self: flex-end;
}
.press-card-featured .pc-date { flex-basis: 100%; margin-top: 4px; }
@media (max-width: 780px) {
  .press-card-featured { grid-column: span 1; flex-direction: column; align-items: stretch; }
  .press-card-featured .pc-title { flex: none; margin-bottom: 20px; }
}
.press-contact {
  max-width: 1180px; margin: clamp(28px,3vw,40px) auto 0;
  font-size: 0.85rem; color: var(--text-body);
}
.press-contact a { color: var(--gold-deep); }
@media (max-width: 980px) { .press-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .press-grid { grid-template-columns: 1fr; } }

/* ===================== TYPE SCALE + SPACING (SITEWIDE) ===================== */
/* Priority 6: wider gap between headline / section heading / body / eyebrow tiers.
   Priority 7: 96-120px between major sections on desktop, 56-72px on mobile,
   instead of every section getting the same modest padding. Tested first on
   the About page, then promoted here to apply everywhere. */

.label {
  font-size: 0.8rem; letter-spacing: 0.18em; font-weight: 500;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4.6vw, 3.4rem); /* ~29px mobile - 54px desktop */
  line-height: 1.15; font-weight: 400;
}
.prose-section h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.3rem); /* ~24px mobile - 37px desktop */
  line-height: 1.28; font-weight: 400;
}
.prose-section p {
  font-size: clamp(1.0625rem, 1.05vw, 1.1875rem); /* 17px - 19px */
  line-height: 1.55; font-weight: 400;
}
.prose-section p.lead {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.5; font-weight: 500;
}
.dist-head .lead {
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  line-height: 1.55; font-weight: 500;
}

/* Section rhythm */
.prose-section { padding: clamp(56px, 9vw, 112px) 0; }
.dist-head { padding-top: clamp(56px, 9vw, 110px); }

/* ===================== HOUSE SPLIT (homepage close) ===================== */
/* Priority 12: the page closed with a third centred eyebrow/heading/paragraph
   band in a row. This breaks the pattern with a real photo and a left-aligned,
   oversized close instead of another boxed, centred statement. */
.house-split {
  display: grid; grid-template-columns: 1fr 1.1fr;
  align-items: stretch; background: var(--bg);
}
.hs-body {
  padding: clamp(48px,6vw,92px) clamp(28px,4vw,72px);
  display: flex; flex-direction: column; justify-content: center;
}
.hs-body .label { margin-bottom: 14px; }
.hs-body h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem,3.2vw,2.8rem); line-height: 1.15; color: var(--ink);
}
.hs-body p {
  margin-top: 18px; font-size: clamp(1.0625rem,1.05vw,1.1875rem);
  line-height: 1.55; color: var(--text-body); max-width: 42ch;
}
.hs-body .btn-primary { margin-top: 30px; align-self: flex-start; }
.hs-people-link {
  margin-top: 16px; display: inline-block; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep);
  text-decoration: none; transition: color 0.25s;
}
.hs-people-link:hover { color: var(--ink); }
.hs-img { overflow: hidden; background: var(--ink); }
.hs-img img { width: 100%; height: 100%; display: block; object-fit: cover; }
@media (max-width: 820px) {
  .house-split { grid-template-columns: 1fr; }
  .hs-img { order: -1; }
  .hs-img img { aspect-ratio: 4/3; }
}
