/* ============================================================
   SKILPADTEPEL GIN – BRAND WEBSITE
   Premium South African Gin Brand CSS
   Colour Palette: Deep Purple · Blush Pink · Gold · Ivory · Dark
   ============================================================ */

/* --------------------------------------------------------
   @FONT-FACE — local brand fonts
   -------------------------------------------------------- */
/* Font Squirrel webfont kits (WOFF2 / WOFF / SVG); see fonts/adelline_webfontkit, fonts/youth_touch_webfontkit */
@font-face {
  font-family: 'Adelline';
  src: url('../fonts/adelline_webfontkit/adelline-webfont.woff2') format('woff2'),
    url('../fonts/adelline_webfontkit/adelline-webfont.woff') format('woff'),
    url('../fonts/adelline_webfontkit/adelline-webfont.svg#adelline_personal_use_onlyRg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Youth Touch';
  src: url('../fonts/youth_touch_webfontkit/youthtouchdemoregular-4vwy-webfont.woff2') format('woff2'),
    url('../fonts/youth_touch_webfontkit/youthtouchdemoregular-4vwy-webfont.woff') format('woff'),
    url('../fonts/youth_touch_webfontkit/youthtouchdemoregular-4vwy-webfont.svg#youth_touch_demoregular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------
   CSS VARIABLES
   -------------------------------------------------------- */
:root {

  /* Typography — font stacks */
  --font-display: 'Adelline', 'Brush Script MT', cursive;
  --font-accent: 'Youth Touch', 'Segoe Print', cursive;
  --font-body: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;

  /* Script fonts render small — single dials for Adelline / Youth Touch */
  --font-adelline-scale: 1.6;
  --font-youth-touch-scale: 1.5;

  /* Fluid base scale (rem, html 16px) */
  --size-step-micro: clamp(0.7rem, 0.66rem + 0.2vw, 0.8125rem);
  --size-step-small: clamp(0.8125rem, 0.76rem + 0.25vw, 0.9375rem);
  --size-step-body: clamp(0.9375rem, 0.88rem + 0.28vw, 1.0625rem);
  --size-step-body-lg: clamp(1rem, 0.92rem + 0.35vw, 1.125rem);
  --size-step-lead: clamp(1rem, 0.9rem + 0.45vw, 1.125rem);

  --size-step-h6: clamp(1.125rem, 1.05rem + 0.38vw, 1.25rem);
  --size-step-h5: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --size-step-h4: clamp(1.5rem, 1.35rem + 0.75vw, 1.75rem);
  --size-step-h3: clamp(1.75rem, 1.5rem + 1.25vw, 2.25rem);
  --size-step-h2: clamp(2rem, 1.7rem + 1.5vw, 2.75rem);
  --size-step-h1: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  /* Hero wordmark: larger than semantic h1, same multiplier pattern */
  --size-step-hero: clamp(2.5rem, 1.65rem + 4.25vw, 4.25rem);

  /* Display = fluid step × Adelline multiplier */
  --text-display-h1: calc(var(--size-step-h1) * var(--font-adelline-scale));
  --text-display-h2: calc(var(--size-step-h2) * var(--font-adelline-scale));
  --text-display-h3: calc(var(--size-step-h3) * var(--font-adelline-scale));
  --text-display-h4: calc(var(--size-step-h4) * var(--font-adelline-scale));
  --text-display-h5: calc(var(--size-step-h5) * var(--font-adelline-scale));
  --text-display-h6: calc(var(--size-step-h6) * var(--font-adelline-scale));
  --text-display-hero: calc(var(--size-step-hero) * var(--font-adelline-scale));

  /* Accent = fluid step × Youth Touch multiplier */
  --text-accent-lg: calc(var(--size-step-h4) * var(--font-youth-touch-scale));
  --text-accent-md: calc(var(--size-step-h5) * var(--font-youth-touch-scale));
  --text-accent-sm: calc(var(--size-step-body-lg) * var(--font-youth-touch-scale));

  /* Legacy / component aliases → fluid steps */
  --text-body: var(--size-step-body);
  --text-body-lg: var(--size-step-body-lg);
  --text-lead: var(--size-step-lead);
  --text-small: var(--size-step-small);
  --text-ui: var(--size-step-small);
  --text-micro: var(--size-step-micro);
  --text-legal: clamp(0.75rem, 0.7rem + 0.22vw, 0.875rem);
  --nav-link-size: clamp(0.8125rem, 0.76rem + 0.38vw, 0.9375rem);
  --section-eyebrow-size: clamp(0.6875rem, 0.62rem + 0.28vw, 0.8125rem);

  /* Brand Colours */
  --purple-deep: #3B1F5E;
  --purple-mid: #5C2D91;
  --purple-gin: #6B2FAA;
  --purple-light: #9B59B6;
  --purple-pale: #D7B8F3;
  --purple-glow: rgba(107, 47, 170, 0.35);

  --pink-blush: #FFDAEA;
  --pink-vivid: #FCC9E2;
  --pink-pale: #FAE3EF;

  --gold: #C9A84C;
  --gold-light: #E6C97A;
  --gold-pale: #FDF5E0;

  --ivory: #FAFAF5;
  --white: #FFFFFF;
  --dark: #0E0714;
  --dark-mid: #1A0F2E;
  --dark-surface: #231540;
  --text-on-dark: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.65);

  --grey-100: #F8F5FF;
  --grey-200: #EDE8F7;
  --grey-600: #6B6280;
  --grey-800: #2E2840;



  /* Spacing */
  --section-py: 5rem;
  --container-max: 1200px;
  --container-px: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(59, 31, 94, 0.15);
  --shadow-md: 0 8px 30px rgba(59, 31, 94, 0.25);
  --shadow-lg: 0 20px 60px rgba(59, 31, 94, 0.35);
  --shadow-glow: 0 0 40px rgba(107, 47, 170, 0.5);

  /* Transitions */
  --trans-fast: 0.15s ease;
  --trans-med: 0.3s ease;
  --trans-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;

  /* Age gate splash (verification overlay) */
  --age-gate-card-max: 31.25rem;
  /* 500px */
  --age-gate-card-bg: rgba(255, 255, 255, 0.05);
  --age-gate-card-border: rgba(255, 255, 255, 0.1);
  --age-gate-blur: 12px;
  --age-gate-pill-radius: 3.125rem;
  /* 50px */
  --age-gate-primary: #6b33a8;
  --age-gate-primary-hover: #7b40bc;
  --age-gate-secondary-border: #4a2c6d;
}

/* --------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Viewport lock: avoid horizontal scroll from full-bleed / 100vw-style bugs */
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-step-body);
  background-color: var(--ivory);
  color: var(--grey-800);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.age-gated {
  overflow: hidden;
  /* Matches age-gate edge colour so overscroll / subpixel gaps never flash ivory. */
  background-color: var(--dark);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* --------------------------------------------------------
   SEMANTIC HEADINGS — Adelline + scaled fluid sizes
   -------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.5em;
}

h1 {
  font-size: var(--text-display-h1);
}

h2 {
  font-size: var(--text-display-h2);
}

h3 {
  font-size: var(--text-display-h3);
}

h4 {
  font-size: var(--text-display-h4);
}

h5 {
  font-size: var(--text-display-h5);
}

h6 {
  font-size: var(--text-display-h6);
}

/* --------------------------------------------------------
   TYPOGRAPHY UTILITY CLASSES (Nunito / Adelline / Youth Touch)
   -------------------------------------------------------- */
.font-body {
  font-family: var(--font-body);
  font-size: var(--size-step-body);
  line-height: 1.6;
}

.font-body-lg {
  font-family: var(--font-body);
  font-size: var(--size-step-body-lg);
  line-height: 1.6;
}

.font-body-small {
  font-family: var(--font-body);
  font-size: var(--size-step-small);
  line-height: 1.5;
}

.font-body-micro {
  font-family: var(--font-body);
  font-size: var(--size-step-micro);
  line-height: 1.4;
}

.font-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

.font-display--h1 {
  font-size: var(--text-display-h1);
}

.font-display--h2 {
  font-size: var(--text-display-h2);
}

.font-display--h3 {
  font-size: var(--text-display-h3);
}

.font-display--h4 {
  font-size: var(--text-display-h4);
}

.font-display--h5 {
  font-size: var(--text-display-h5);
}

.font-display--h6 {
  font-size: var(--text-display-h6);
}

.font-display--hero {
  font-size: var(--text-display-hero);
}

.font-accent {
  font-family: var(--font-accent);
  font-size: var(--text-accent-md);
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
}

.font-accent-lg {
  font-family: var(--font-accent);
  font-size: var(--text-accent-lg);
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
}

.font-accent-sm {
  font-family: var(--font-accent);
  font-size: var(--text-accent-sm);
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
}

/* --------------------------------------------------------
   BRAND FONT HOOKS (Adelline / Youth Touch)
   Use .font-adelline / .font-youth-touch on markup when you need the stack.
   Global tuning: add properties inside the :is(...) blocks — they target every
   current use of each font. When you add new rules with --font-display or
   --font-accent, append those selectors to the matching group.
   -------------------------------------------------------- */
.font-adelline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-synthesis: none;
}

.font-youth-touch {
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: normal;
  font-synthesis: none;
}

/* Adelline — add site-wide CSS in this block (smoothing, text-rendering, etc.) */
:is(.font-adelline,
  .font-display,
  .font-display--h1,
  .font-display--h2,
  .font-display--h3,
  .font-display--h4,
  .font-display--h5,
  .font-display--h6,
  .font-display--hero,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .age-gate__brand,
  .logo-text,
  .footer__logo-text) {
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
  font-smooth: always;
}

/* Youth Touch — add site-wide CSS in this block */
:is(.font-youth-touch,
  .font-accent,
  .font-accent-lg,
  .font-accent-sm,
  .age-gate__tagline,
  .logo-sub,
  .hero__title-sub,
  .hero__tagline,
  .hero__badge,
  .gin-interaction-side .status-text.is-pink-copy,
  .retailer-card__wildcard-line,
  .footer__logo-sub,
  .footer__tagline) {
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
  font-smooth: always;
}

/* --------------------------------------------------------
   CONTAINER
   -------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding-left: max(var(--container-px), env(safe-area-inset-left, 0px));
  padding-right: max(var(--container-px), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

/* --------------------------------------------------------
   SECTION HEADERS (semantic h2 + helpers)
   -------------------------------------------------------- */
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--section-eyebrow-size);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 0.75rem;
}

.section-eyebrow--light {
  color: var(--purple-pale);
}

/* h2 supplies Adelline size; class adds colour & spacing only */
.section-title {
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-title--light {
  color: var(--white);
}

.section-desc {
  font-size: var(--text-lead);
  color: var(--grey-600);
  max-width: 600px;
  line-height: 1.75;
}

.section-desc--light {
  color: var(--text-muted);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* --------------------------------------------------------
   BUTTONS
   -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-ui);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--trans-med);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple-gin), var(--purple-mid));
  color: var(--white);
  box-shadow: 0 4px 20px var(--purple-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--purple-glow);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--purple-gin);
  border: 2px solid var(--purple-gin);
}

.btn--ghost:hover {
  background: var(--purple-gin);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: clamp(0.875rem, 0.8rem + 0.45vw, 1rem);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------------------
   AGE GATE
   -------------------------------------------------------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  /* 100% + max-width (not 100vw): avoids horizontal overflow when scrollbars affect vw */
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  display: grid;
  place-items: center;
  align-content: center;
  box-sizing: border-box;
  /* Mobile-first viewport height (spec); lvh / fill-available cover dynamic toolbars & hero strip. */
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  min-height: 100lvh;
  padding:
    max(0.75rem, env(safe-area-inset-top, 0px)) max(0.75rem, env(safe-area-inset-right, 0px)) max(0.75rem, env(safe-area-inset-bottom, 0px)) max(0.75rem, env(safe-area-inset-left, 0px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(circle at center, #2a1a40 0%, transparent 55%),
    radial-gradient(ellipse at center, var(--dark-mid) 0%, var(--dark) 100%);
  transition: opacity var(--trans-slow), visibility var(--trans-slow);
}

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

.age-gate__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  box-sizing: border-box;
  /* ~90% width on phones, capped at 500px; never wider than the grid area */
  width: min(90%, var(--age-gate-card-max, 31.25rem));
  max-width: min(var(--age-gate-card-max, 31.25rem), 100%);
  min-width: 0;
  min-height: 0;
  margin: 0;
  justify-self: center;
  max-height: calc(100vh - 2.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  max-height: calc(100dvh - 2.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 1.75rem);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--age-gate-card-bg);
  border: 1px solid var(--age-gate-card-border);
  border-radius: 1.5rem;
  -webkit-backdrop-filter: blur(var(--age-gate-blur));
  backdrop-filter: blur(var(--age-gate-blur));
  box-shadow: 0 1.5625rem 3.125rem -0.75rem rgba(0, 0, 0, 0.5);
}

.age-gate__label-wrap {
  margin: 0 auto clamp(0.5rem, 2vw, 1rem);
  max-width: min(100%, 13.75rem);
  min-width: 0;
  width: 100%;
}

.age-gate__label {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(7.5rem, 22vmin);
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.age-gate__logo {
  margin-bottom: clamp(0.5rem, 2vw, 1.25rem);
  min-width: 0;
  max-width: 100%;
}

.age-gate__brand {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-display-h3);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.age-gate__tagline {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-accent-sm);
  color: var(--purple-pale);
  margin-top: 0.125rem;
  line-height: 1.2;
}

/* h2 defaults are large for a modal — tune to h4 display */
.age-gate__title {
  font-size: var(--text-display-h4);
  color: var(--white);
  margin-bottom: clamp(0.375rem, 1.5vw, 0.75rem);
  line-height: 1.1;
}

.age-gate__text {
  font-family: var(--font-body);
  color: var(--text-muted);
  margin-bottom: clamp(0.75rem, 3vw, 1.25rem);
  line-height: 1.5;
  font-size: clamp(0.8125rem, 0.78rem + 0.45vw, 1rem);
}

.age-gate__text strong {
  color: var(--purple-pale);
}

.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

/* Age gate: full-width pill buttons, solid primary (spec); site-wide .btn unchanged elsewhere. */
.age-gate .btn--lg {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  justify-content: center;
  border-radius: var(--age-gate-pill-radius);
  padding: clamp(0.75rem, 2vw, 1rem) 1.25rem;
  font-size: clamp(0.8125rem, 0.76rem + 0.35vw, 0.9375rem);
  line-height: 1.35;
  white-space: normal;
}

.age-gate .btn--primary {
  background: var(--age-gate-primary);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(107, 51, 168, 0.35);
  transform: none;
}

.age-gate .btn--primary:hover {
  background: var(--age-gate-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 51, 168, 0.45);
  color: var(--white);
}

.age-gate .btn--primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 51, 168, 0.45);
}

.age-gate .btn--ghost {
  color: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--age-gate-secondary-border);
  transform: none;
}

.age-gate .btn--ghost:hover {
  background: rgba(107, 51, 168, 0.12);
  color: var(--white);
  border-color: var(--age-gate-secondary-border);
  transform: translateY(-1px);
}

.age-gate .btn--ghost:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 44, 109, 0.5);
}

.age-gate__legal {
  margin-top: clamp(0.75rem, 2.5vw, 1.25rem);
  font-size: clamp(0.6875rem, 0.65rem + 0.25vw, 0.8125rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
  opacity: 0.9;
}

/* Media must never spill past the card (esp. wide SVGs). */
.age-gate img,
.age-gate svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Long display/script lines on very narrow screens */
.age-gate h1,
.age-gate h2,
.age-gate p,
.age-gate__brand,
.age-gate__tagline {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

/* backdrop-filter often breaks or tints content on iOS / Android WebViews; use solid panel on touch. */
@media (hover: none) and (pointer: coarse) {
  .age-gate__inner {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(20, 12, 32, 0.94);
  }

  .age-gate .btn--lg {
    min-height: 2.75rem;
  }
}

.age-gate__floral {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(107, 47, 170, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(180, 100, 200, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 31, 94, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* Short viewports (landscape phones, small windows): extra-tight age gate. */
@media (max-height: 520px) {
  .age-gate {
    padding-top: max(0.35rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(0.35rem, env(safe-area-inset-bottom, 0px));
  }

  .age-gate__inner {
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-md);
  }

  .age-gate__label-wrap {
    max-width: min(100%, 110px);
    margin-bottom: 0.15rem;
  }

  .age-gate__label {
    max-height: min(4rem, 16vmin);
  }

  .age-gate__logo {
    margin-bottom: 0.25rem;
  }
}

/* Tablet / desktop: same 500px cap; slightly roomier padding inside the card. */
@media (min-width: 769px) {
  .age-gate {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }

  .age-gate__inner {
    padding: clamp(1.75rem, 2.5vw, 2.75rem) clamp(1.5rem, 3vw, 2rem);
  }

  .age-gate__label-wrap {
    max-width: min(100%, 15.625rem);
  }

  .age-gate__label {
    max-height: min(9.375rem, 28vmin);
  }
}

/* --------------------------------------------------------
   SITE HEADER / NAV
   -------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Slightly tighter than before so a larger logo fits without growing the bar */
  padding: 1rem 0;
  transition: all var(--trans-med);
}

/* Blur lives on a child so the header element does not get backdrop-filter.
   (backdrop-filter on an ancestor breaks position:fixed for .main-nav — drawer
   would size to the header instead of the viewport after scroll.) */
.site-header__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--trans-med);
}

.site-header.scrolled .site-header__scrim {
  opacity: 1;
  background: rgba(14, 7, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.scrolled .site-header__scrim {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(14, 7, 20, 0.96);
  }
}

.site-header.scrolled {
  padding: 0.625rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.1;
  text-decoration: none;
  min-width: 0;
}

/* Diamond height tracks the wordmark (same font vars + line-heights) minus a hair for breathing room */
.header__logo-mark {
  height: calc(var(--text-display-h4) * 1.232 + var(--text-accent-sm) * 1.32 - 0.3rem);
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
}

.header__logo-wordmark {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: calc(var(--text-display-h4) * 1.12);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.03em;
}

.logo-sub {
  font-family: var(--font-accent);
  font-size: calc(var(--text-accent-sm) * 1.1);
  line-height: 1.2;
  color: var(--purple-pale);
}

.main-nav .nav__list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

@media (min-width: 769px) {
  .main-nav .nav__list {
    gap: 0.35rem;
  }
}

.nav__link {
  display: block;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  font-size: var(--nav-link-size);
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-sm);
  transition:
    color var(--trans-fast),
    background var(--trans-fast),
    box-shadow var(--trans-fast);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.nav__link:not(.nav__link--cta):hover,
.nav__link:not(.nav__link--cta).active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav__link--cta.active {
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 2px 16px var(--purple-glow),
    0 0 0 1px rgba(230, 201, 122, 0.22);
}

.nav__link--cta {
  margin-left: 0.15rem;
  background: linear-gradient(145deg, var(--purple-gin) 0%, var(--purple-mid) 55%, var(--purple-deep) 100%);
  color: var(--white) !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.52rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 2px 14px var(--purple-glow),
    0 4px 24px rgba(107, 47, 170, 0.2);
}

.nav__link--cta:hover,
.nav__link--cta:focus-visible {
  background: linear-gradient(145deg, var(--purple-mid) 0%, var(--purple-deep) 100%) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 4px 22px var(--purple-glow),
    0 8px 28px rgba(107, 47, 170, 0.28);
}

.nav__link--cta:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans-med);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Full-screen scrim behind mobile drawer: blur + brand tint */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: linear-gradient(145deg,
      rgba(14, 7, 20, 0.72) 0%,
      rgba(35, 21, 64, 0.55) 42%,
      rgba(59, 31, 94, 0.48) 100%);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.nav-backdrop--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (prefers-reduced-transparency: reduce) {
  .nav-backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(14, 7, 20, 0.88);
  }
}

/* --------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 30% 60%, #3B1F5E 0%, var(--dark) 60%);
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(180, 100, 220, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(107, 47, 170, 0.25) 0%, transparent 45%),
    linear-gradient(180deg, rgba(14, 7, 20, 0.3) 0%, transparent 50%, rgba(14, 7, 20, 0.5) 100%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
  min-width: 0;
}

.hero__text,
.hero__image {
  min-width: 0;
}

.hero__eyebrow {
  font-size: var(--section-eyebrow-size);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-pale);
  margin-bottom: 0.75rem;
}

/* h1 provides semantics; spans set display/accent sizes */
.hero__title {
  margin-bottom: 0.5rem;
}

.hero__title-main {
  display: block;
  font-size: var(--text-display-hero);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.hero__title-sub {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-accent-lg);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: var(--purple-pale);
  margin-top: 0.5rem;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: var(--text-accent-md);
  line-height: 1.2;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero__desc {
  color: var(--text-muted);
  font-size: var(--text-lead);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

/* Hero bottle */
.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__bottle-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.hero__bottle {
  max-height: 620px;
  max-width: min(100%, 85vw);
  width: auto;
  height: auto;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(107, 47, 170, 0.6));
}

.hero__glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(107, 47, 170, 0.7) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero__badge {
  position: absolute;
  top: 15%;
  right: -30px;
  background: linear-gradient(135deg, var(--pink-blush), var(--pink-vivid));
  color: var(--grey-800);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: var(--text-accent-sm);
  line-height: 1.35;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: badge-bounce 2s ease-in-out infinite;
  z-index: 3;
}

.hero__badge span {
  display: block;
}

/* Larger “Verander / van kleur / ✨” on wide layouts */
@media (min-width: 901px) {
  .hero__badge {
    padding: 1.15rem 1.45rem;
    font-size: var(--text-accent-md);
    line-height: 1.35;
    right: -28px;
    top: 12%;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

  .hero__badge span:last-child {
    font-size: var(--text-accent-lg);
    line-height: 1.2;
    margin-top: 0.15rem;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  animation: bounce-down 2s ease-in-out infinite;
  transition: color var(--trans-fast);
  z-index: 2;
}

.hero__scroll:hover {
  color: var(--white);
}

/* --------------------------------------------------------
   MAGIC STRIP
   -------------------------------------------------------- */
.magic-strip {
  background: var(--ivory);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--grey-200);
}

.magic-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 2vw, 2rem);
  flex-wrap: nowrap;
  margin-bottom: 1.5rem;
}

.magic-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
}

.magic-strip__item p {
  font-size: clamp(0.7rem, calc(0.35rem + 2.6vw), var(--text-body-lg));
  color: var(--grey-600);
  line-height: 1.35;
}

.magic-strip__item strong {
  color: var(--purple-gin);
}

.magic-strip__icon {
  width: clamp(40px, 10vw + 1.5rem, 72px);
  height: clamp(40px, 10vw + 1.5rem, 72px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.85rem + 1.1vw, 1.85rem);
  flex-shrink: 0;
}

.magic-strip__icon--purple {
  background: linear-gradient(135deg, var(--purple-gin), var(--purple-deep));
  color: var(--white);
}

.magic-strip__icon--water {
  background: linear-gradient(135deg, #64b5f6, #1565c0);
  color: var(--white);
}

.magic-strip__icon--pink {
  background: linear-gradient(135deg, var(--pink-blush), var(--pink-vivid));
  color: var(--grey-800);
}

.magic-strip__arrow {
  font-size: clamp(0.85rem, 0.75rem + 0.5vw, 1.3rem);
  color: var(--grey-600);
  flex-shrink: 0;
}

.magic-strip__arrow--transform {
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.55rem);
  color: var(--gold);
  animation: pulse-arrow 2s ease-in-out infinite;
}

.magic-strip__desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--grey-600);
  font-size: var(--text-body);
  line-height: 1.75;
}

/* --------------------------------------------------------
   STORY SECTION
   -------------------------------------------------------- */
.story {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-width: 0;
}

.story__image-col,
.story__text-col {
  min-width: 0;
}

.story__img-wrap {
  position: relative;
}

.story__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story__img-frame {
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 2px solid var(--purple-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.story__quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--purple-gin);
  background: var(--grey-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.story__quote blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.2rem);
  color: var(--purple-deep);
  line-height: 1.65;
}

.story__body {
  color: var(--grey-600);
  margin-bottom: 1rem;
  font-size: var(--text-body-lg);
  line-height: 1.75;
}

.story__body strong {
  color: var(--purple-deep);
}

.story__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.story__fact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-200);
}

.story__fact i {
  color: var(--purple-gin);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.story__fact strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: var(--text-ui);
}

.story__fact span {
  display: block;
  font-size: var(--text-small);
  color: var(--grey-600);
  margin-top: 0.1rem;
  line-height: 1.55;
}

/* --------------------------------------------------------
   Eenhoringperd STORY
   -------------------------------------------------------- */
.Eenhoringperd-story {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%);
  overflow: hidden;
}

.Eenhoringperd-story__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(107, 47, 170, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(180, 100, 220, 0.2) 0%, transparent 45%);
  pointer-events: none;
}

.Eenhoringperd-story__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.Eenhoringperd-story__text {
  text-align: left;
  margin-top: 2rem;
}

.Eenhoringperd-story__text p {
  color: var(--text-muted);
  font-size: var(--text-lead);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.Eenhoringperd-story__text strong {
  color: var(--purple-pale);
}

.Eenhoringperd-story__text em {
  color: var(--gold-light);
  font-style: italic;
}

/* Sparkle motif: “tower–jinnetjies wat skitter” (Bessie-verhaal) */
.jinnetjie-sparkle-wrap {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  text-shadow:
    0 0 12px rgba(230, 201, 122, 0.12),
    0 0 20px rgba(155, 89, 182, 0.08);
  animation: jinnetjie-sparkle-text-shimmer 4.5s ease-in-out infinite;
}

.jinnetjie-sparkle-wrap strong {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(100deg,
      var(--purple-pale) 0%,
      var(--pink-vivid) 20%,
      var(--gold-light) 40%,
      rgba(255, 255, 255, 0.92) 50%,
      var(--gold-light) 60%,
      var(--purple-light) 78%,
      var(--purple-pale) 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: jinnetjie-word-gradient 7s ease-in-out infinite;
}

.jinnetjie-sparkle-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 2px;
  border-radius: 2px;
  pointer-events: none;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(201, 168, 76, 0.35) 22%,
      rgba(215, 184, 243, 0.45) 50%,
      rgba(201, 168, 76, 0.35) 78%,
      transparent 100%);
  opacity: 0.45;
  transform-origin: center;
  animation: jinnetjie-sparkle-line 3.2s ease-in-out infinite;
}

.jinnetjie-sparkle-wrap__particles {
  position: absolute;
  inset: -0.42em -0.2em;
  pointer-events: none;
  overflow: visible;
}

.jinnetjie-sparkle-wrap__particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow:
    0 0 4px var(--gold),
    0 0 10px rgba(255, 218, 234, 0.45);
  opacity: 0;
  animation: jinnetjie-sparkle-pulse 2.6s ease-in-out infinite;
}

.jinnetjie-sparkle-wrap__particle:nth-child(1) {
  left: 2%;
  top: 8%;
  animation-delay: 0s;
}

.jinnetjie-sparkle-wrap__particle:nth-child(2) {
  left: 18%;
  bottom: 0;
  background: var(--purple-pale);
  box-shadow:
    0 0 4px var(--purple-light),
    0 0 10px rgba(107, 47, 170, 0.35);
  animation-delay: 0.45s;
}

.jinnetjie-sparkle-wrap__particle:nth-child(3) {
  left: 42%;
  top: -12%;
  animation-delay: 0.9s;
}

.jinnetjie-sparkle-wrap__particle:nth-child(4) {
  right: 28%;
  top: 22%;
  background: var(--pink-vivid);
  box-shadow: 0 0 6px rgba(252, 201, 226, 0.7);
  animation-delay: 1.35s;
}

.jinnetjie-sparkle-wrap__particle:nth-child(5) {
  right: 6%;
  bottom: 12%;
  animation-delay: 1.8s;
}

.jinnetjie-sparkle-wrap__particle:nth-child(6) {
  right: 38%;
  top: -8%;
  width: 3px;
  height: 3px;
  animation-delay: 2.1s;
}

@keyframes jinnetjie-sparkle-pulse {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.35);
  }

  40%,
  58% {
    opacity: 0.92;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(1.12);
  }
}

@keyframes jinnetjie-sparkle-line {

  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.88);
  }

  50% {
    opacity: 0.62;
    transform: scaleX(1);
  }
}

@keyframes jinnetjie-sparkle-text-shimmer {

  0%,
  100% {
    text-shadow:
      0 0 10px rgba(230, 201, 122, 0.1),
      0 0 18px rgba(155, 89, 182, 0.06);
  }

  50% {
    text-shadow:
      0 0 14px rgba(230, 201, 122, 0.2),
      0 0 26px rgba(215, 184, 243, 0.12);
  }
}

@keyframes jinnetjie-word-gradient {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .jinnetjie-sparkle-wrap,
  .jinnetjie-sparkle-wrap::after,
  .jinnetjie-sparkle-wrap__particle {
    animation: none;
  }

  .jinnetjie-sparkle-wrap strong {
    animation: none;
    color: var(--purple-pale);
    -webkit-text-fill-color: var(--purple-pale);
    background-image: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }

  .jinnetjie-sparkle-wrap__particle {
    opacity: 0.5;
    transform: scale(0.85);
  }

  .jinnetjie-sparkle-wrap::after {
    opacity: 0.35;
    transform: none;
  }

  .jinnetjie-sparkle-wrap {
    text-shadow: none;
  }
}

/* --------------------------------------------------------
   PRODUCTS SECTION
   -------------------------------------------------------- */
.products {
  padding: var(--section-py) 0;
  background: var(--white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-med), box-shadow var(--trans-med);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card--featured {
  border-color: var(--purple-pale);
  box-shadow: 0 0 0 2px var(--purple-pale), var(--shadow-md);
  position: relative;
}

.product-card__image-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image {
  max-height: 280px;
  width: auto;
  object-fit: contain;
  transition: transform var(--trans-med);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--purple-gin);
  color: var(--white);
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xl);
}

.product-card__badge--gold {
  background: linear-gradient(135deg, var(--gold), #b8860b);
}

.product-card__featured-ribbon {
  position: absolute;
  top: 1rem;
  right: -28px;
  background: linear-gradient(135deg, var(--pink-blush), var(--pink-vivid));
  color: var(--grey-800);
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.45rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  transform: rotate(35deg);
  transform-origin: center center;
}

/* Clipping + rotation hide an uneven slice of the strip; nudge label along the bar for optical center */
.product-card__featured-ribbon-label {
  display: inline-block;
  transform: translate(0.65rem, 0.1rem);
}

.product-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.4rem;
}

.product-card__product-line {
  align-self: flex-start;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0.65rem;
  padding: 0.4rem 0.85rem 0.4rem 0.75rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--purple-deep);
  background: linear-gradient(145deg, var(--pink-pale) 0%, var(--grey-100) 100%);
  border: 1px solid var(--purple-pale);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 2px rgba(59, 31, 94, 0.07);
}

.product-card--featured .product-card__product-line {
  border-left-color: var(--purple-gin);
  background: linear-gradient(145deg, var(--pink-blush) 0%, var(--white) 55%);
  box-shadow: 0 0 0 1px rgba(199, 168, 76, 0.2), 0 2px 8px rgba(107, 47, 170, 0.08);
}

/* Slightly below semantic h3 for card density; keep one line in 3-col desktop grid */
.product-card__title {
  font-size: var(--text-display-h4);
  color: var(--dark);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

@media (min-width: 901px) {
  .products__grid .product-card__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.product-card__size {
  font-size: var(--text-small);
  color: var(--grey-600);
  margin-bottom: 0.75rem;
}

.product-card__desc-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-card__desc-group .product-card__desc {
  margin-bottom: 0;
  flex: 0;
}

.product-card__desc {
  color: var(--grey-600);
  font-size: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
  flex: 1;
}

.product-card__pairing {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  font-size: var(--text-small);
  color: var(--grey-600);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.product-card__pairing i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.product-card__pairing strong {
  color: var(--purple-deep);
}

.product-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-card__actions .btn {
  font-size: var(--text-small);
  padding: 0.6rem 1.2rem;
  flex: 1;
  justify-content: center;
  min-width: 120px;
}

.product-card__stores {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--grey-200);
}

.product-card__stores-label {
  font-size: clamp(0.65rem, 0.6rem + 0.2vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 0.5rem;
}

.product-card__stores-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-card__stores-list a {
  font-size: var(--text-small);
  color: var(--purple-gin);
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.35rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.product-card__stores-list a:hover {
  text-decoration: underline;
}

.product-card__stores-list a::before {
  content: '›';
  font-weight: 700;
  opacity: 0.5;
}

/* Ketelkraal range / gift boxes (info from brand partner pages) */
.ketelkraal-range {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--grey-200);
}

.ketelkraal-range__inner {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  max-width: 920px;
  margin: 0 auto;
}

.ketelkraal-range__header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.ketelkraal-range__title {
  font-size: var(--text-display-h3);
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.ketelkraal-range__lead {
  color: var(--grey-600);
  font-size: var(--text-body);
  line-height: 1.75;
  text-align: left;
}

.ketelkraal-range__lead a {
  color: var(--purple-gin);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ketelkraal-range__boxes {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ketelkraal-range__boxes li {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: var(--text-small);
  color: var(--grey-600);
  min-width: 0;
  line-height: 1.55;
}

.ketelkraal-range__boxes strong {
  color: var(--purple-deep);
  font-size: var(--text-ui);
}

.ketelkraal-range__boxes a {
  color: var(--purple-gin);
  font-weight: 600;
  font-size: var(--text-small);
  margin-top: 0.15rem;
}

.ketelkraal-range__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.ketelkraal-range__links .btn--ghost {
  background: var(--white);
}

@media (max-width: 640px) {
  .ketelkraal-range__boxes {
    grid-template-columns: 1fr;
  }

  .ketelkraal-range__inner {
    padding: 1.5rem 1.15rem;
  }
}

/* --------------------------------------------------------
   BOTANICALS
   -------------------------------------------------------- */
.botanicals {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
  position: relative;
  overflow: hidden;
}

.botanicals::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(107, 47, 170, 0.25) 0%, transparent 55%);
  pointer-events: none;
}

.botanicals__grid {
  --botanicals-gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--botanicals-gap);
  margin-bottom: 4rem;
}

/* Desktop: first row 4 cards, second row 3 — same card width, rows centered */
.botanicals__grid .botanical-card {
  flex: 0 0 calc((100% - 3 * var(--botanicals-gap)) / 4);
  max-width: calc((100% - 3 * var(--botanicals-gap)) / 4);
  min-width: 0;
  box-sizing: border-box;
}

.botanical-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--trans-med);
  backdrop-filter: blur(8px);
}

.botanical-card:hover {
  background: rgba(107, 47, 170, 0.2);
  border-color: var(--purple-pale);
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(107, 47, 170, 0.3);
}

.botanical-card__icon {
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}

.botanical-card__name {
  font-size: var(--text-display-h6);
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.botanical-card__desc {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.65;
}

/* Serve suggestion */
.botanicals__serve {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.botanicals__serve-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.botanicals__serve-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.botanicals__serve-text h3 {
  font-size: var(--text-display-h3);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.botanicals__serve-text p {
  color: var(--text-muted);
  font-size: var(--text-body-lg);
  line-height: 1.8;
}

.botanicals__serve-text strong {
  color: var(--purple-pale);
}

.botanicals__serve-image {
  overflow: hidden;
  max-height: 520px;
  min-height: 360px;
  display: flex;
  align-items: stretch;
}

.botanicals__serve-image img {
  width: 100%;
  flex: 1;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --------------------------------------------------------
   COLOUR DEMO
   Aim: title + glass + panel visible in one viewport on common devices
   -------------------------------------------------------- */
.colour-demo {
  --colour-demo-header-band: clamp(4.25rem, 10vmin + 1.5rem, 6rem);
  --colour-demo-safe-bottom: env(safe-area-inset-bottom, 0px);
  --colour-demo-svg-max-h: min(26rem, 56vh);
  box-sizing: border-box;
  padding-block: clamp(1rem, 3.5vmin, var(--section-py));
  padding-inline: 0;
  background: linear-gradient(145deg,
      #1c1428 0%,
      var(--dark-surface) 38%,
      #2a1a3d 72%,
      var(--purple-deep) 100%);
  min-height: calc(100vh - var(--colour-demo-header-band) - var(--colour-demo-safe-bottom));
  display: flex;
  flex-direction: column;
  scroll-margin-top: var(--colour-demo-header-band);
}

@supports (height: 100svh) {
  .colour-demo {
    min-height: calc(100svh - var(--colour-demo-header-band) - var(--colour-demo-safe-bottom));
    --colour-demo-svg-max-h: min(26rem, 52svh);
  }
}

@supports (height: 100dvh) {
  .colour-demo {
    min-height: calc(100dvh - var(--colour-demo-header-band) - var(--colour-demo-safe-bottom));
    --colour-demo-svg-max-h: min(26rem, 50dvh);
  }
}

.colour-demo>.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  width: 100%;
}

.colour-demo .section-header {
  margin-bottom: clamp(0.65rem, 2.2vmin, 2rem);
  flex-shrink: 0;
}

.colour-demo .section-eyebrow {
  color: var(--purple-pale);
  margin-bottom: 0.4rem;
}

.colour-demo .section-title {
  color: var(--ivory);
  margin-bottom: 0.35rem;
}

.colour-demo__interactive {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 4rem);
  flex-wrap: wrap;
}

/* Premium Copa — crystal refraction, radial liquid depth */
.gin-interaction-container {
  --gin-dark: #3a0066;
  --gin-light: #7b2cbf;
  --gin-liquid-duration: 1.6s;
  --gin-liquid-ease: cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 4rem);
  flex-wrap: wrap;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  font-family: var(--font-body);
}

.gin-interaction-container.is-mixed {
  --gin-dark: #9d4edd;
  --gin-light: #e0aaff;
}

.glass-wrapper {
  position: relative;
  width: fit-content;
  max-width: min(340px, 88vw);
  margin-inline: auto;
  flex-shrink: 1;
  min-width: 0;
  cursor: pointer;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.52));
  transition: transform var(--trans-med);
}

.glass-wrapper:hover {
  transform: translateY(-3px);
}

.glass-container {
  position: relative;
  width: 100%;
}

.gin-glass-svg {
  display: block;
  width: min(340px, 88vw);
  max-width: 100%;
  height: auto;
  max-height: var(--colour-demo-svg-max-h, min(26rem, 56vh));
  margin-inline: auto;
}

#glass-stem,
#glass-highlights {
  pointer-events: none;
}

.glass-condensation {
  position: absolute;
  top: 14%;
  left: 9%;
  width: 82%;
  height: 58%;
  border-radius: 50% 50% 44% 44% / 52% 52% 38% 38%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.9s ease-in;
  background-image:
    radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.1) 0%, transparent 42%),
    radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.06) 0%, transparent 34%),
    radial-gradient(circle at 52% 22%, rgba(255, 255, 255, 0.05) 0%, transparent 28%);
  mix-blend-mode: screen;
}

.gin-interaction-container.is-mixed .glass-condensation {
  opacity: 1;
}

.gin-interaction-container .liquid-move {
  transition: transform var(--gin-liquid-duration) var(--gin-liquid-ease);
  transform-origin: 120px 230px;
  transform: scaleY(0.72);
}

/* Liquid surface: fixed ry in SVG — only translateY (no scaleY) so ellipse stays optically round */
.gin-interaction-container #liquidSurface {
  transition:
    transform var(--gin-liquid-duration) var(--gin-liquid-ease),
    fill-opacity var(--gin-liquid-duration) var(--gin-liquid-ease);
  transform-origin: 120px 108px;
  transform: translateY(0);
}

.gin-interaction-container.is-mixed .liquid-move {
  transform: scaleY(1.06);
}

.gin-interaction-container.is-mixed #liquidSurface {
  transform: translateY(-8px);
  fill-opacity: 0.58;
}

#ginLiquidDepth stop {
  transition: stop-color var(--gin-liquid-duration) ease-in-out,
    stop-opacity var(--gin-liquid-duration) ease-in-out;
}

.gin-bubble-layer {
  pointer-events: none;
  transition: opacity var(--trans-med);
}

.gin-interaction-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, 2.2vmin, 1.15rem);
  max-width: min(28rem, 100%);
}

.colour-demo__panel {
  max-width: min(28rem, 100%);
  padding: clamp(1.05rem, 2.6vw, 2.35rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 48px rgba(0, 0, 0, 0.28);
  gap: clamp(0.65rem, 1.8vmin, 1.15rem);
  flex-shrink: 1;
  min-width: 0;
}

.colour-demo__status {
  position: relative;
  width: 100%;
  min-height: clamp(2.5rem, 9vmin, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
}

/* Soft pink aura during before→after copy swap (ties panel to glass fizz) */
.colour-demo__status.is-flavor-to-pink::before {
  content: '';
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 0;
  width: 118%;
  max-width: 22rem;
  height: 160%;
  border-radius: 55% 55% 48% 48% / 42% 42% 58% 58%;
  pointer-events: none;
  /* Two stacked ellipses + many stops = no hard ring along the arc */
  background:
    radial-gradient(ellipse 68% 74% at 48% 84%,
      rgba(252, 201, 226, 0.16) 0%,
      rgba(252, 201, 226, 0.12) 22%,
      rgba(230, 200, 245, 0.07) 48%,
      rgba(155, 89, 182, 0.035) 68%,
      transparent 88%),
    radial-gradient(ellipse 98% 105% at 52% 94%,
      rgba(252, 201, 226, 0.08) 0%,
      rgba(215, 184, 243, 0.05) 35%,
      rgba(107, 47, 170, 0.025) 58%,
      transparent 82%);
  opacity: 0;
  animation: flavor-status-aurora 1.28s cubic-bezier(0.33, 0, 0.2, 1) forwards;
}

@keyframes flavor-status-aurora {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(6%) scale(0.88);
    filter: blur(6px);
  }

  22% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(2px);
  }

  55% {
    opacity: 0.85;
    transform: translateX(-50%) translateY(-2%) scale(1.04);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-4%) scale(1.12);
    filter: blur(1px);
  }
}

.flavor-text-bubbles {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

.flavor-text-bubble {
  position: absolute;
  left: var(--bx, 50%);
  bottom: var(--by, 18%);
  width: var(--size, 4px);
  height: var(--size, 4px);
  margin-left: calc(var(--size, 4px) * -0.5);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.35) 18%,
      rgba(252, 201, 226, 0.38) 42%,
      rgba(215, 184, 243, 0.14) 62%,
      rgba(155, 89, 182, 0.06) 80%,
      rgba(107, 47, 170, 0.02) 94%,
      transparent 100%);
  box-shadow:
    0 0 16px 2px rgba(252, 201, 226, 0.22),
    0 0 8px rgba(215, 184, 243, 0.12),
    inset 0 0 6px rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: flavor-text-bubble-rise var(--dur, 0.82s) var(--ease, cubic-bezier(0.28, 0.65, 0.32, 1)) var(--delay, 0s) forwards;
}

.flavor-text-bubble--tiny {
  box-shadow:
    0 0 12px 1px rgba(252, 201, 226, 0.18),
    0 0 5px rgba(215, 184, 243, 0.1),
    inset 0 0 4px rgba(255, 255, 255, 0.32);
}

@keyframes flavor-text-bubble-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.2) rotate(0deg);
  }

  8% {
    opacity: 0.7;
  }

  35% {
    opacity: 0.5;
    transform: translate3d(calc(var(--drift, 0px) * 0.45), calc(-1 * var(--rise, 3.25rem) * 0.42), 0) scale(0.82) rotate(calc(var(--wobble, 0deg) * 0.35));
  }

  72% {
    opacity: 0.22;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--drift, 0px), calc(-1 * var(--rise, 3.25rem)), 0) scale(1.08) rotate(var(--wobble, 0deg));
  }
}

.gin-interaction-side .status-text {
  position: relative;
  z-index: 2;
  font-size: clamp(0.8125rem, 0.48rem + 1.15vw, var(--text-body-lg));
  /* Tint of --purple-gin (same hue as “before” dot), lightened for contrast on dark panel */
  color: #b998dc;
  color: color-mix(in srgb, var(--purple-gin) 52%, white 48%);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  margin: 0;
  white-space: nowrap;
  text-align: center;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 0 22px rgba(107, 47, 170, 0.4);
}

/* Reset → purple: snappy out (ease-in = accelerate off-stage) */
@keyframes flavor-swap-exit-fast {
  from {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    filter: blur(10px) brightness(1.1);
    transform: translateY(-0.35em) scale(0.97);
  }
}

/*
  Before → after (tonic): choreographed dissolve
  — short “fizz” hold (sharp text + lift) so bubbles read first
  — blur/opacity accelerate late (Material-style exiting emphasis)
*/
@keyframes flavor-swap-exit-slow {
  0% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateY(0) scale(1);
  }

  14% {
    opacity: 1;
    filter: blur(0) brightness(1.06);
    transform: translateY(-0.06em) scale(1.018);
  }

  38% {
    opacity: 0.92;
    filter: blur(2px) brightness(1.08);
    transform: translateY(-0.12em) scale(1.01);
  }

  100% {
    opacity: 0;
    filter: blur(8px) brightness(1.14);
    transform: translateY(-0.42em) scale(0.965);
  }
}

/* After line: bloom + slight overshoot (matches ✨ / magie tone) */
@keyframes flavor-swap-enter-pink {
  0% {
    opacity: 0;
    filter: blur(7px) brightness(1.04);
    transform: translateY(0.52em) scale(0.93);
  }

  42% {
    opacity: 1;
    filter: blur(1.5px) brightness(1.02);
    transform: translateY(-0.08em) scale(1.035);
  }

  68% {
    opacity: 1;
    filter: blur(0) brightness(1.01);
    transform: translateY(0.04em) scale(1.01);
  }

  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateY(0) scale(1);
  }
}

/* Back to purple: calm settle-in */
@keyframes flavor-swap-enter-reset {
  from {
    opacity: 0;
    filter: blur(6px) brightness(1.03);
    transform: translateY(0.28em) scale(0.98);
  }

  to {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateY(0) scale(1);
  }
}

.gin-interaction-side .status-text.flavor-swap-exit,
.gin-interaction-side .status-text.flavor-swap-enter {
  transition: none;
}

.gin-interaction-side .status-text.flavor-swap-exit:not(.flavor-swap-exit--to-pink) {
  animation: flavor-swap-exit-fast 0.4s cubic-bezier(0.5, 0, 1, 1) forwards;
}

.gin-interaction-side .status-text.flavor-swap-exit.flavor-swap-exit--to-pink {
  animation: flavor-swap-exit-slow 0.82s cubic-bezier(0.32, 0, 0.58, 1) forwards;
}

.gin-interaction-side .status-text.flavor-swap-enter.flavor-swap-enter--pink {
  animation: flavor-swap-enter-pink 0.78s cubic-bezier(0.2, 0.95, 0.28, 1) forwards;
}

.gin-interaction-side .status-text.flavor-swap-enter.flavor-swap-enter--reset {
  animation: flavor-swap-enter-reset 0.44s cubic-bezier(0.25, 0.9, 0.3, 1) forwards;
}

.gin-interaction-side .status-text.is-pink-copy {
  font-family: var(--font-accent);
  font-size: var(--text-accent-sm);
  line-height: 1.25;
  color: var(--pink-vivid);
  font-style: normal;
  font-weight: 400;
  white-space: normal;
  text-align: center;
  text-shadow:
    0 0 28px rgba(252, 201, 226, 0.45),
    0 1px 0 rgba(44, 20, 60, 0.35);
}

.gin-interaction-side #tonicTrigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 0.55rem;
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  border: 2px solid transparent;
  transition:
    background var(--trans-med),
    border-color var(--trans-med),
    box-shadow var(--trans-med),
    color var(--trans-med),
    transform var(--trans-med);
}

.gin-interaction-side #tonicTrigger:focus-visible {
  outline: 2px solid var(--pink-vivid);
  outline-offset: 3px;
}

.gin-interaction-container.is-mixed .gin-interaction-side #tonicTrigger {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(252, 201, 226, 0.55);
  box-shadow:
    0 4px 24px rgba(252, 201, 226, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gin-interaction-container.is-mixed .gin-interaction-side #tonicTrigger:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(252, 201, 226, 0.85);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(252, 201, 226, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.colour-demo__icon-slot {
  position: relative;
  width: 1.15em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.colour-demo__icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.colour-demo__icon--add {
  opacity: 1;
  transform: scale(1);
}

.colour-demo__icon--reset {
  opacity: 0;
  transform: scale(0.88) rotate(-12deg);
}

.gin-interaction-container.is-mixed .colour-demo__icon--add {
  opacity: 0;
  transform: scale(0.88);
}

.gin-interaction-container.is-mixed .colour-demo__icon--reset {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Bubbles: SMIL <animate> in JS; reduced-motion uses subtle CSS drift */
@keyframes gin-bubble-drift {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-6px);
    opacity: 0.55;
  }
}

.gin-bubble-layer--reduced .bubble-element {
  transform-box: fill-box;
  transform-origin: center;
  animation: gin-bubble-drift 3.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {

  .gin-interaction-container .liquid-move,
  .gin-interaction-container #liquidSurface {
    transition-duration: 0.01ms;
  }

  .glass-wrapper:hover {
    transform: none;
  }

  .gin-interaction-side .status-text {
    transition: none;
  }

  .gin-interaction-side .status-text.flavor-swap-exit,
  .gin-interaction-side .status-text.flavor-swap-enter {
    animation: none !important;
    filter: none;
    transform: none;
    opacity: 1;
  }

  .colour-demo__status.is-flavor-to-pink::before {
    animation: none !important;
    opacity: 0 !important;
    transform: none !important;
    filter: none !important;
  }

  .flavor-text-bubble {
    animation: none !important;
    opacity: 0 !important;
  }

  .colour-demo__icon {
    transition-duration: 0.01ms;
  }
}

.colour-demo__instruction {
  font-size: clamp(0.78rem, 0.38rem + 1.85vw, var(--text-lead));
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  line-height: 1.35;
  margin: 0;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.colour-demo__state {
  width: 100%;
}

.colour-demo__state-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 0.65rem;
}

.colour-demo__state-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.colour-demo__state-label {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s ease;
}

.colour-demo__state-item:has(.colour-demo__dot.active) .colour-demo__state-label {
  color: rgba(255, 255, 255, 0.88);
}

.colour-demo__state-connector {
  flex: 0 0 1.5rem;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.15),
      rgba(252, 201, 226, 0.35),
      rgba(255, 255, 255, 0.15));
  opacity: 0.85;
}

.colour-demo__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0.42;
  border: 2px solid rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.colour-demo__dot.active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.colour-demo__dot--purple {
  background: var(--purple-gin);
}

.colour-demo__dot--pink {
  background: var(--pink-vivid);
}

.colour-demo__dot--pink.active {
  box-shadow:
    0 0 0 3px rgba(252, 201, 226, 0.15),
    0 0 14px rgba(252, 201, 226, 0.35);
}

@media (max-height: 740px) {
  .colour-demo {
    --colour-demo-svg-max-h: min(21rem, 46vh);
    padding-block: clamp(0.65rem, 2vmin, 1.75rem);
  }

  .colour-demo .section-header {
    margin-bottom: clamp(0.4rem, 1.5vmin, 1rem);
  }

  .colour-demo__instruction {
    font-size: clamp(0.72rem, 0.28rem + 2.2vw, var(--text-lead));
    line-height: 1.35;
  }
}

@media (max-height: 620px) {
  .colour-demo {
    --colour-demo-svg-max-h: min(17.5rem, 40vh);
  }

  .colour-demo__panel {
    padding: 0.75rem 1rem;
  }

  .gin-interaction-side #tonicTrigger {
    width: 100%;
    max-width: none;
  }
}

/* --------------------------------------------------------
   GALLERY
   -------------------------------------------------------- */
.gallery {
  padding: var(--section-py) 0;
  background: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--grey-100);
}

.gallery__trigger {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  border-radius: inherit;
}

.gallery__trigger:focus-visible {
  outline: 3px solid var(--purple-gin);
  outline-offset: 2px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 220px;
  display: block;
}

.gallery__item:hover img,
.gallery__trigger:focus-visible img {
  transform: scale(1.08);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

/* Oomblikke lightbox */
.oomblikke-lightbox {
  position: fixed;
  inset: 0;
  z-index: 8500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.oomblikke-lightbox[hidden] {
  display: none !important;
}

.oomblikke-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 12, 38, 0.92);
  cursor: pointer;
}

.oomblikke-lightbox__frame {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1200px);
  max-height: min(92vh, 900px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.oomblikke-lightbox__img {
  max-width: 100%;
  max-height: min(82vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}

.oomblikke-lightbox__counter {
  margin: 0;
  font-size: var(--text-small);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

.oomblikke-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple-deep);
  cursor: pointer;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: background var(--trans-fast), color var(--trans-fast), transform var(--trans-fast);
  z-index: 2;
}

.oomblikke-lightbox__close:hover {
  background: var(--purple-gin);
  color: var(--white);
}

.oomblikke-lightbox__close:focus-visible {
  outline: 3px solid var(--pink-vivid);
  outline-offset: 2px;
}

.oomblikke-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--purple-deep);
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: background var(--trans-fast), color var(--trans-fast);
  z-index: 2;
}

.oomblikke-lightbox__nav:hover {
  background: var(--purple-gin);
  color: var(--white);
}

.oomblikke-lightbox__nav:focus-visible {
  outline: 3px solid var(--pink-vivid);
  outline-offset: 2px;
}

.oomblikke-lightbox__nav--prev {
  left: 0.25rem;
}

.oomblikke-lightbox__nav--next {
  right: 0.25rem;
}

@media (max-width: 640px) {
  .oomblikke-lightbox__nav--prev {
    left: 0;
  }

  .oomblikke-lightbox__nav--next {
    right: 0;
  }

  .oomblikke-lightbox__close {
    top: -2.5rem;
    right: 0;
  }
}

.gallery__item--hidden {
  display: none !important;
}

.gallery__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.gallery__actions .btn[hidden] {
  display: none;
}

/* Outline buttons are styled for dark sections; gallery is on white */
.gallery__actions .btn--outline {
  color: var(--purple-deep);
  border-color: var(--purple-gin);
}

.gallery__actions .btn--outline:hover {
  background: var(--purple-gin);
  border-color: var(--purple-gin);
  color: var(--white);
}

/* --------------------------------------------------------
   VIDEO SHOWCASE (web-optimized clips carousel)
   -------------------------------------------------------- */
.video-showcase {
  padding: var(--section-py) 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(215, 184, 243, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, var(--ivory) 0%, var(--grey-100) 100%);
}

.video-carousel {
  position: relative;
  max-width: min(56rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(0.35rem, 2vw, 0.65rem);
  row-gap: 0;
}

.video-carousel__viewport {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-md);
  outline: none;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(59, 31, 94, 0.15);
}

.video-carousel__viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(107, 47, 170, 0.35), var(--shadow-lg);
}

.video-carousel__track {
  display: flex;
  will-change: transform;
}

.video-carousel__slide {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0;
}

.video-carousel__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, var(--dark-mid) 0%, #0a0610 100%);
}

.video-carousel__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-carousel__arrow {
  grid-row: 1;
  position: relative;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  flex-shrink: 0;
  align-self: center;
  border: none;
  border-radius: 50%;
  background: rgba(59, 31, 94, 0.1);
  color: var(--purple-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), color var(--trans-fast), transform var(--trans-fast);
}

.video-carousel__arrow:hover {
  background: var(--purple-gin);
  color: var(--white);
}

.video-carousel__arrow:active {
  transform: scale(0.96);
}

.video-carousel__arrow--prev {
  grid-column: 1;
}

.video-carousel__arrow--next {
  grid-column: 3;
}

.video-carousel__arrow i {
  pointer-events: none;
}

.video-carousel__meta {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.video-carousel__counter {
  font-size: var(--text-ui);
  color: var(--grey-600);
  font-weight: 600;
  margin: 0;
}

.video-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  max-width: 100%;
}

.video-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(59, 31, 94, 0.22);
  cursor: pointer;
  transition: transform var(--trans-fast), background var(--trans-fast);
}

.video-carousel__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

.video-carousel__dot:focus-visible {
  outline: 2px solid var(--purple-mid);
  outline-offset: 2px;
}

/* --------------------------------------------------------
   RETAILERS
   -------------------------------------------------------- */
.retailers {
  padding: var(--section-py) 0;
  background: var(--grey-100);
}

.retailers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.retailer-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-med);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.retailer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-pale);
}

.retailer-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-gin), var(--purple-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px var(--purple-glow);
}

.retailer-card__name {
  font-size: var(--text-display-h5);
  color: var(--dark);
  line-height: 1.1;
}

.retailer-card__desc {
  font-size: var(--text-small);
  color: var(--grey-600);
  line-height: 1.65;
}

.retailer-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple-gin);
  margin-top: auto;
  transition: gap var(--trans-fast);
}

.retailer-card:hover .retailer-card__cta {
  gap: 0.75rem;
}

/* Retailer card: not a single link (e.g. Spar + Liquor City) */
.retailer-card--static {
  cursor: default;
}

.retailer-card--static:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-pale);
}

.retailer-card__dual-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: auto;
  padding-top: 0.25rem;
}

.retailer-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--purple-gin);
  border: 2px solid var(--purple-gin);
  border-radius: var(--radius-xl);
  transition: background var(--trans-fast), color var(--trans-fast);
}

.retailer-card__pill:hover {
  background: var(--purple-gin);
  color: var(--white);
}

.retailer-card__pill:focus-visible {
  outline: 2px solid var(--purple-gin);
  outline-offset: 2px;
}

/* “Enige goeie drankwinkel” — playful highlight */
.retailer-card--wildcard {
  position: relative;
  overflow: hidden;
  cursor: default;
  border: 2px dashed var(--gold);
  background:
    linear-gradient(145deg, rgba(253, 245, 224, 0.95) 0%, rgba(215, 184, 243, 0.35) 45%, rgba(252, 201, 226, 0.4) 100%),
    var(--white);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.2);
}

.retailer-card--wildcard::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(107, 47, 170, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(201, 168, 76, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.retailer-card--wildcard:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 14px 36px rgba(91, 45, 145, 0.18);
  border-color: var(--purple-light);
}

.retailer-card__wildcard-spark {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.9;
  animation: wildcard-sparkle 2.8s ease-in-out infinite;
}

@keyframes wildcard-sparkle {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.15) rotate(12deg);
  }
}

.retailer-card__icon--wildcard {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--purple-gin));
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.45);
}

.retailer-card--wildcard .retailer-card__name {
  position: relative;
  z-index: 1;
  color: var(--purple-deep);
}

.retailer-card--wildcard .retailer-card__desc {
  position: relative;
  z-index: 1;
}

.retailer-card__wildcard-line {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-accent);
  font-size: var(--text-accent-sm);
  font-weight: 400;
  color: var(--purple-mid);
  line-height: 1.35;
}

.retailers__note {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  border: 1px solid var(--grey-200);
  font-size: var(--text-body);
  color: var(--grey-600);
  line-height: 1.65;
}

.retailers__note-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.retailers__note-text p {
  margin: 0;
  overflow-wrap: break-word;
}

.retailers__note i {
  color: var(--purple-gin);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.retailers__note strong {
  color: var(--dark);
}

/* --------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------- */
.testimonials {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--dark-mid) 100%);
}

.testimonials__intro {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-carousel {
  position: relative;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(0.35rem, 2vw, 0.65rem);
  row-gap: 0;
}

.testimonials-carousel__viewport {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-md);
  outline: none;
}

.testimonials-carousel__viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(215, 184, 243, 0.5);
}

.testimonials-carousel__viewport,
.video-carousel__viewport {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.testimonials-carousel__track {
  display: flex;
  will-change: transform;
}

.testimonials-carousel__slide {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 0.35rem;
}

.testimonials-carousel__slide .testimonial {
  margin: 0 auto;
  max-width: 640px;
  min-height: 220px;
}

.testimonials-carousel__arrow {
  grid-row: 1;
  position: relative;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  flex-shrink: 0;
  align-self: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), opacity var(--trans-fast), transform var(--trans-fast);
}

.testimonials-carousel__arrow:hover:not(:disabled) {
  background: rgba(107, 47, 170, 0.55);
}

.testimonials-carousel__arrow:active:not(:disabled) {
  transform: scale(0.96);
}

.testimonials-carousel__arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.testimonials-carousel__arrow--prev {
  grid-column: 1;
}

.testimonials-carousel__arrow--next {
  grid-column: 3;
}

.testimonials-carousel__arrow i {
  pointer-events: none;
}

.testimonials-carousel__meta {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonials-carousel__counter {
  font-size: var(--text-ui);
  color: var(--purple-pale);
  font-weight: 600;
  margin: 0;
}

.testimonials-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  max-width: 100%;
}

.testimonials-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: transform var(--trans-fast), background var(--trans-fast);
}

.testimonials-carousel__dot.is-active {
  background: var(--gold-light);
  transform: scale(1.3);
}

.testimonials-carousel__dot:focus-visible {
  outline: 2px solid var(--purple-pale);
  outline-offset: 2px;
}

.testimonial__source-tag {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.64rem + 0.2vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-pale);
  margin: 0 0 0.75rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all var(--trans-med);
}

.testimonial:hover {
  background: rgba(107, 47, 170, 0.2);
  border-color: var(--purple-pale);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(215, 184, 243, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial {
    transition: background var(--trans-fast), border-color var(--trans-fast);
  }

  .testimonial:hover {
    box-shadow: none;
  }
}

.testimonial p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--text-lead);
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-size: var(--text-small);
  color: var(--purple-pale);
  font-style: normal;
  font-weight: 600;
}

.testimonial__rating {
  font-size: var(--text-body);
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
  line-height: 1;
}

.testimonial__star--empty {
  color: rgba(255, 255, 255, 0.28);
}

.testimonial .testimonial__headline {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-ui);
  color: var(--purple-pale);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.testimonial__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.testimonial__footer cite {
  margin: 0;
}

.testimonial__date {
  font-weight: 500;
  opacity: 0.88;
}

.testimonial__permalink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  white-space: nowrap;
}

.testimonial__permalink:hover {
  text-decoration: underline;
  color: var(--white);
}

.testimonial__permalink i {
  font-size: 0.85em;
  opacity: 0.9;
}

/* --------------------------------------------------------
   SOCIAL SECTION
   -------------------------------------------------------- */
.social {
  padding: var(--section-py) 0;
  background: var(--white);
}

.social__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.social__text h2 {
  margin-bottom: 1rem;
}

.social__text p {
  color: var(--grey-600);
  font-size: var(--text-body-lg);
  line-height: 1.8;
}

.social__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--trans-med);
  text-decoration: none;
  border: 2px solid var(--grey-200);
}

.social__link:hover {
  transform: translateX(6px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.social__link i {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.social__link--facebook i {
  background: #1877f2;
}

.social__link--instagram i {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social__link span {
  font-weight: 700;
  font-size: var(--text-body-lg);
  color: var(--dark);
  display: block;
}

.social__link small {
  display: block;
  font-size: var(--text-small);
  color: var(--grey-600);
  margin-top: 0.1rem;
  line-height: 1.5;
}

.social__text a {
  color: var(--purple-gin);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.social__press {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-200);
}

.social__press-label {
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 0.65rem;
  text-align: center;
}

.social__press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social__press-list a {
  font-size: var(--text-small);
  color: var(--purple-gin);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.social__press-list a::before {
  content: '↗';
  font-size: 0.75rem;
  opacity: 0.6;
}

/* --------------------------------------------------------
   CONTACT
   -------------------------------------------------------- */
.contact {
  padding: var(--section-py) 0;
  background: var(--grey-100);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact__intro {
  color: var(--grey-600);
  font-size: var(--text-body-lg);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple-gin), var(--purple-mid));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--purple-glow);
}

.contact__detail strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: var(--text-ui);
  margin-bottom: 0.25rem;
}

.contact__detail a,
.contact__detail span {
  font-size: var(--text-body);
  color: var(--grey-600);
  line-height: 1.55;
}

.contact__detail a:hover {
  color: var(--purple-gin);
}

.contact__detail-note {
  display: block;
  font-size: var(--text-small);
  color: var(--grey-600);
  margin-top: 0.35rem;
  line-height: 1.45;
}

.contact__social-row {
  display: flex;
  gap: 1rem;
}

.contact__social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-gin), var(--purple-mid));
  transition: all var(--trans-med);
  box-shadow: 0 4px 12px var(--purple-glow);
}

.contact__social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px var(--purple-glow);
}

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}

.contact__form-title {
  font-size: var(--text-display-h3);
  color: var(--dark);
  margin-bottom: 1.75rem;
  line-height: 1.1;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--grey-800);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-ui);
  color: var(--grey-800);
  background: var(--white);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-gin);
  box-shadow: 0 0 0 3px rgba(107, 47, 170, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-error {
  display: block;
  font-size: var(--text-small);
  color: #dc2626;
  margin-top: 0.3rem;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  color: #166534;
  font-weight: 600;
  font-size: var(--text-ui);
  line-height: 1.45;
}

.form-success i {
  font-size: 1.25rem;
  color: #16a34a;
}

/* --------------------------------------------------------
   FOOTER
   -------------------------------------------------------- */
.site-footer {
  background: var(--dark);
}

.footer__top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: inherit;
  line-height: 1.1;
}

.footer__brand-lockup:hover .footer__logo-text {
  color: var(--gold-light);
}

.footer__brand-lockup:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer__logo-mark {
  height: calc(var(--text-display-h3) * 1.08 + var(--text-accent-md) * 1.18 - 0.35rem);
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.footer__logo-wordmark {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-display-h3);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: color var(--trans-fast);
}

.footer__logo-sub {
  font-family: var(--font-accent);
  font-size: var(--text-accent-md);
  line-height: 1.2;
  color: var(--purple-pale);
}

.footer__tagline {
  font-family: var(--font-accent);
  font-size: var(--text-accent-md);
  color: var(--gold-light);
  margin-top: 0.35rem;
  margin-bottom: 0.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  line-height: 1.25;
}

.footer__sub {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.5rem;
  line-height: 1.65;
  max-width: 36rem;
}

.footer__links h4 {
  font-family: var(--font-body);
  font-size: var(--section-eyebrow-size);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--trans-fast);
  line-height: 1.5;
}

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

.footer__social h4 {
  font-family: var(--font-body);
  font-size: var(--section-eyebrow-size);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.footer__social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer__social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--trans-med);
}

.footer__social-links a:hover {
  background: var(--purple-gin);
  border-color: var(--purple-gin);
  transform: translateY(-2px);
}

.footer__contact p {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.55;
}

.footer__contact i {
  color: var(--purple-pale);
}

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

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer__legal {
  font-size: var(--text-legal);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
  line-height: 1.45;
}

.footer__copy {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}

.footer__credit {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--trans-fast);
}

.footer__credit a:hover {
  color: var(--purple-pale);
}

/* --------------------------------------------------------
   BACK TO TOP
   -------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  z-index: 500;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple-gin), var(--purple-mid));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px var(--purple-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--trans-med);
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--purple-glow);
}

/* --------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--trans-slow), transform 0.8s var(--trans-slow);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* --------------------------------------------------------
   KEYFRAME ANIMATIONS
   -------------------------------------------------------- */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
}

@keyframes badge-bounce {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  30% {
    transform: rotate(-3deg) scale(1.05);
  }

  60% {
    transform: rotate(3deg) scale(1.05);
  }
}

@keyframes bounce-down {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-120px);
    opacity: 0;
  }
}

@keyframes pulse-arrow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

/* --------------------------------------------------------
   PARTICLES (JS generated)
   -------------------------------------------------------- */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float linear infinite;
}

/* --------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------- */
@media (max-width: 1100px) {
  .story__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story__image-col {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .botanicals__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .botanicals__grid .botanical-card {
    flex: none;
    max-width: none;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --section-py: 3.5rem;
  }

  .hero {
    min-height: min(100vh, 100dvh);
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero__desc {
    margin: 0 auto 2rem;
  }

  .hero__cta {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__image {
    order: -1;
  }

  .hero__bottle {
    max-height: 380px;
  }

  .hero__badge {
    right: 10px;
  }

  .story__grid,
  .social__inner,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .retailers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery__item--tall {
    grid-row: auto;
  }

  .gallery__item--wide {
    grid-column: auto;
  }

  .botanicals__serve-inner {
    grid-template-columns: 1fr;
  }

  .botanicals__serve-text {
    padding: 2rem 1.5rem;
  }

  .botanicals__serve-image {
    max-height: 380px;
    min-height: 280px;
  }

  .botanicals__serve-image img {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 80vw);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--trans-med);
    z-index: 999;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      -8px 0 40px rgba(0, 0, 0, 0.45),
      inset 1px 0 0 rgba(255, 255, 255, 0.06);
    background: linear-gradient(195deg,
        rgba(59, 31, 94, 0.55) 0%,
        rgba(35, 21, 64, 0.92) 38%,
        rgba(14, 7, 20, 0.96) 100%);
    backdrop-filter: blur(22px) saturate(1.15);
    -webkit-backdrop-filter: blur(22px) saturate(1.15);
  }

  @media (prefers-reduced-transparency: reduce) {
    .main-nav {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: linear-gradient(195deg,
          var(--purple-deep) 0%,
          var(--dark-surface) 45%,
          var(--dark) 100%);
    }
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .nav__link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }

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

  .botanicals__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .magic-strip__inner {
    gap: 1rem;
  }

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

  .colour-demo__interactive {
    flex-direction: column;
    gap: clamp(1rem, 3.5vmin, 2rem);
  }

  .gin-interaction-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1rem, 3.5vmin, 2rem);
  }

  .gin-interaction-side {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .gin-interaction-side .status-text.is-pink-copy {
    padding: 0 0.5rem;
    overflow-wrap: break-word;
  }

  @media (max-height: 520px) and (orientation: landscape) and (min-width: 600px) {
    .colour-demo {
      --colour-demo-header-band: clamp(3.5rem, 8vmin, 5.25rem);
      --colour-demo-svg-max-h: min(15rem, 70vh);
      padding-block: 0.45rem;
    }

    .colour-demo__interactive {
      gap: clamp(0.65rem, 2vw, 1.25rem);
    }

    .gin-interaction-container {
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      gap: clamp(0.75rem, 2vw, 1.5rem);
    }

    .gin-interaction-side {
      align-items: flex-start;
      text-align: left;
      max-width: min(26rem, 50vw);
    }

    .colour-demo__instruction {
      font-size: clamp(0.65rem, 0.18rem + 1.35vw, var(--text-lead));
    }

    .gin-interaction-side .status-text:not(.is-pink-copy) {
      font-size: clamp(0.68rem, 0.2rem + 1.05vw, var(--text-body-lg));
    }
  }

  .product-card__actions .btn {
    min-width: 0;
    width: 100%;
  }

  .contact__form-wrap {
    padding: 1.75rem 1.25rem;
  }

  .testimonials-carousel,
  .video-carousel {
    column-gap: 0.35rem;
    max-width: 100%;
  }

  .testimonials-carousel__meta,
  .video-carousel__meta {
    margin-top: 1.25rem;
    gap: 0.85rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .testimonials-carousel__slide .testimonial {
    min-height: 0;
  }

  .testimonials-carousel__slide {
    padding: 0 0.2rem;
  }

  .video-showcase .section-header,
  .testimonials .section-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-py: 2.5rem;
  }

  .btn {
    white-space: normal;
    line-height: 1.35;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

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

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

  .gallery__item img {
    min-height: 180px;
  }

  .gallery__trigger {
    min-height: 180px;
  }

  .botanicals__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .botanical-card {
    padding: 1.25rem 1rem;
  }

  .hero__badge {
    display: none;
  }

  .colour-demo {
    --colour-demo-svg-max-h: min(20rem, 50vh);
    padding-block: clamp(0.65rem, 2.5vh, 1.75rem);
  }

  .colour-demo__panel {
    max-width: 100%;
  }

  .colour-demo__instruction {
    font-size: clamp(0.72rem, 0.28rem + 2.5vw, var(--text-lead));
  }

  .gin-interaction-side .status-text:not(.is-pink-copy) {
    font-size: clamp(0.72rem, 0.26rem + 2.2vw, var(--text-body-lg));
  }

  .gin-glass-svg {
    width: min(300px, 86vw);
  }

  .footer__legal {
    font-size: clamp(0.72rem, 0.68rem + 0.2vw, 0.85rem);
    letter-spacing: 0.03em;
  }

  .testimonials-carousel,
  .video-carousel {
    column-gap: 0.25rem;
  }

  .testimonial {
    padding: 1.25rem 1rem;
  }

  .testimonial p {
    font-size: var(--text-body-lg);
    line-height: 1.65;
  }

  .testimonials-carousel__meta,
  .video-carousel__meta {
    margin-top: 1rem;
    padding-inline: 0.25rem;
  }

  .testimonials-carousel__dots,
  .video-carousel__dots {
    gap: 0.5rem;
    max-width: 100%;
    justify-content: center;
  }

  .testimonials-carousel__dot,
  .video-carousel__dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 380px) {

  /* Arrows stay as icons; avoid transform here (pulse-arrow animation uses transform). */
  .magic-strip__arrow {
    font-size: 1rem;
  }

  .retailer-card {
    padding: 1.5rem 1.1rem;
  }
}

/* --------------------------------------------------------
   PRINT STYLES
   -------------------------------------------------------- */
@media print {

  .age-gate,
  .site-header,
  .back-to-top {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}