@font-face {
  font-family: "GarageGothicBold";
  src: url("/DigitUp/Minus196/assets/fonts/garage-gothic.woff2") format("woff2"), url("/DigitUp/Minus196/assets/fonts/garage-gothic.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BarlowSemiCondensed";
  src: url("/DigitUp/Minus196/assets/fonts/BarlowSemiCondensed-ExtraBold.woff2") format("woff2"), url("/DigitUp/Minus196/assets/fonts/BarlowSemiCondensed-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BarlowSemiCondensedLight";
  src: local("Barlow Semi Condensed Light"), local("BarlowSemiCondensed-Light"), local("Barlow Semi Condensed");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSansLight";
  src: url("/fonts/OpenSans-Light.woff2") format("woff2"), url("/fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* ============================================
   Button Mixin
   Supports: variants, sizes, optional icon
=============================================== */
/* SIZE MIXIN (NO COLORS, NO VARIANT) */
/* VARIANT MIXIN (COLORS ONLY) */
/* OPTIONAL: BASE MIXIN */
/* Define the responsive grid mixin */
/* Center content with optional starting column */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.site-header .header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
}
@media (min-width: 899.9px) {
  .site-header .header-inner {
    height: auto;
    padding: 0 3rem;
  }
}
.site-header {
  /* --- LOGO --- */
}
.site-header .logo {
  cursor: pointer;
  z-index: 20;
  position: relative;
  margin-top: 0.375rem;
}
@media (min-width: 375px) {
  .site-header .logo {
    margin-top: 0.375rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .site-header .logo {
    margin-top: 0.375rem;
  }
}
@media (min-width: 540px) {
  .site-header .logo {
    margin-top: 0.375rem;
  }
}
@media (min-width: 904px) {
  .site-header .logo {
    margin-top: 1.5rem;
  }
}
.site-header .logo img {
  width: 10rem;
  transform: rotate(-18deg) translateY(0.375rem);
  filter: grayscale(1) brightness(1.7);
  z-index: 2;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .site-header .logo img {
    width: 8rem;
  }
}
@media (min-width: 904px) {
  .site-header .logo img {
    width: 7.8125rem;
    transform: none;
    filter: none;
  }
}
@media (min-width: 899.9px) {
  .site-header .logo img {
    width: 8rem;
    transform: none;
    filter: none;
  }
}
.site-header {
  /* --- DESKTOP NAV --- */
}
.site-header .main-nav {
  display: none;
}
@media (min-width: 899.9px) {
  .site-header .main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .site-header .main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .site-header .main-nav a {
    color: #FEDD00;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  }
  .site-header .main-nav a:hover {
    opacity: 0.8;
  }
}
.site-header {
  /* --- MOBILE BURGER --- */
}
.site-header .menu-toggle {
  display: inline-flex;
  background: transparent;
  border: 0;
  color: #fff;
  width: 2.125rem;
  height: 2.125rem;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 899.9px) {
  .site-header .menu-toggle {
    display: none;
  }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
}
.mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
@media (min-width: 899.9px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu {
  /* FIX: Cross Button Sizing */
}
.mobile-menu .menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu .menu-close svg {
  width: 1.875rem;
  height: 1.875rem;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 5rem;
}
.mobile-menu .mobile-nav a {
  color: #fff;
  font-size: clamp(1.75rem, 8vw, 2.25rem);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.sectionHeroBackdrop {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 0;
  margin: 0;
  min-height: 100vh;
}
.sectionHeroBackdrop.container {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.sectionHeroBackdrop {
  /* ================= VIDEO ================= */
}
.sectionHeroBackdrop .heroVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.sectionHeroBackdrop .heroVideo--layer2,
.sectionHeroBackdrop .heroVideo--layer3 {
  pointer-events: none;
  mix-blend-mode: screen;
  filter: grayscale(1) contrast(1.1);
  will-change: transform, opacity;
  transform: translateZ(0);
}
.sectionHeroBackdrop .heroVideo--layer2 {
  opacity: 0.42;
  transform: scaleX(-1);
}
.sectionHeroBackdrop .heroVideo--layer3 {
  opacity: 0.28;
  transform: scale(1.08);
}
.reduced-vfx .sectionHeroBackdrop .heroVideo--layer2,
.reduced-vfx .sectionHeroBackdrop .heroVideo--layer3,
.reduced-vfx .sectionHeroBackdrop .heroFog {
  display: none;
}
.reduced-vfx .sectionHeroBackdrop .heroVideo {
  mix-blend-mode: normal;
  filter: none;
}
.reduced-vfx .sectionHeroBackdrop .heroFogImg,
.reduced-vfx .sectionHeroBackdrop .heroTextSmoke {
  animation: none;
  filter: none;
}
.sectionHeroBackdrop .heroFogImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: grayscale(1) blur(0.0625rem);
  will-change: transform, opacity, filter;
  transform: translateZ(0);
}
.sectionHeroBackdrop .heroFogImg--one {
  opacity: 0.38;
  transform: scale(1.06);
  animation: heroFogDriftA 22s ease-in-out infinite alternate;
}
.sectionHeroBackdrop .heroFogImg--two {
  opacity: 0.3;
  transform: scaleX(-1) scale(1.1);
  animation: heroFogDriftB 30s ease-in-out infinite alternate;
}
.sectionHeroBackdrop .shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 30%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 60%, rgba(0, 0, 0, 0) 100%);
}
.sectionHeroBackdrop {
  /* ================= HERO CONTAINER ================= */
}
.sectionHeroBackdrop .heroContainer {
  position: relative;
  z-index: 3;
  max-width: 160rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  min-height: 100vh;
}
@media (min-width: 899.9px) {
  .sectionHeroBackdrop .heroContainer {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
}
.sectionHeroBackdrop {
  /* ================= HERO VISUAL ================= */
}
.sectionHeroBackdrop .heroVisual {
  position: relative;
  z-index: 10;
  width: 21.875rem;
  margin-top: 3.125rem;
  aspect-ratio: 1/1;
  order: 2;
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .heroVisual {
    margin: 0 0 8rem 0;
  }
}
@media (min-width: 899.9px) {
  .sectionHeroBackdrop .heroVisual {
    width: 80rem;
    order: 1;
  }
}
@media (min-width: 1023.9px) {
  .sectionHeroBackdrop .heroVisual {
    width: 42.5rem;
  }
}
@media (min-width: 1279.9px) {
  .sectionHeroBackdrop .heroVisual {
    width: 46.25rem;
  }
}
.sectionHeroBackdrop .heroVisual {
  /* Bottles wrapper */
  /* Bottles wrapper */
}
.sectionHeroBackdrop .heroVisual .bottleWrap {
  position: absolute;
  bottom: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 14;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .sectionHeroBackdrop .heroVisual .bottleWrap {
    bottom: -1.125rem;
  }
}
.sectionHeroBackdrop .heroVisual .bottle {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.sectionHeroBackdrop .heroVisual .bottle.animate {
  transform: translateY(0);
  opacity: 1;
}
.sectionHeroBackdrop .heroVisual {
  /* Orange Bottle */
}
.sectionHeroBackdrop .heroVisual .bottle.orange {
  width: 11.25rem;
  top: 1.25rem;
  margin-right: -2.1875rem;
  position: relative;
  z-index: 14;
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.orange {
    width: 13.75rem;
  }
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.orange {
    width: 17.5rem;
  }
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.orange {
    width: 20.625rem;
  }
}
@media (min-width: 899.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.orange {
    width: 15.625rem;
  }
}
@media (min-width: 1023.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.orange {
    width: 18.125rem;
  }
}
@media (min-width: 1279.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.orange {
    width: 22.5rem;
  }
}
.sectionHeroBackdrop .heroVisual {
  /* Yellow Bottle */
}
.sectionHeroBackdrop .heroVisual .bottle.yellow {
  width: 12.5rem;
  top: -1.125rem;
  margin-left: -2.1875rem;
  position: relative;
  z-index: 15;
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.yellow {
    width: 15rem;
  }
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.yellow {
    width: 19.375rem;
  }
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.yellow {
    width: 22.5rem;
  }
}
@media (min-width: 899.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.yellow {
    width: 17.5rem;
  }
}
@media (min-width: 1023.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.yellow {
    width: 20rem;
  }
}
@media (min-width: 1279.9px) {
  .sectionHeroBackdrop .heroVisual .bottle.yellow {
    width: 24.375rem;
  }
}
.sectionHeroBackdrop .heroVisual {
  /* Foreground PNG */
}
.sectionHeroBackdrop .heroVisual .foreground {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: auto;
  z-index: 16;
  pointer-events: none;
  opacity: 0.95;
}
.sectionHeroBackdrop {
  /* ================= HERO TEXT ================= */
}
.sectionHeroBackdrop .heroText {
  position: relative;
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  overflow: hidden;
  margin-top: 1.25rem;
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .heroText {
    height: auto;
  }
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .heroText {
    height: auto;
  }
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .heroText {
    height: 34.25rem;
  }
}
@media (min-width: 899.9px) {
  .sectionHeroBackdrop .heroText {
    height: 100vh;
    order: 2;
    margin-left: 0;
    width: min(42%, 31.25rem);
    justify-content: flex-start;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1023.9px) {
  .sectionHeroBackdrop .heroText {
    height: 100vh;
  }
}
@media (min-width: 1279.9px) {
  .sectionHeroBackdrop .heroText {
    height: 100vh;
  }
}
.sectionHeroBackdrop .heroText .heroTextSmoke {
  position: absolute;
  inset: -14% -22%;
  width: 144%;
  height: 128%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: screen;
  filter: grayscale(1) blur(0.0625rem);
  pointer-events: none;
  z-index: 2;
  animation: heroFogDriftA 18s ease-in-out infinite alternate;
  will-change: transform, opacity, filter;
  transform: translateZ(0);
}
.sectionHeroBackdrop .heroText .heroTextInner {
  position: relative;
  z-index: 3;
  max-width: 32.5rem;
  text-align: center;
  color: #FEDD00;
  font-weight: 800;
}
@media (min-width: 899.9px) {
  .sectionHeroBackdrop .heroText .heroTextInner {
    text-align: center;
  }
}
.sectionHeroBackdrop .heroText .heroTextInner p {
  margin: 0;
}
@keyframes heroFogDriftA {
  0% {
    transform: translate3d(-2%, 0, 0) scale(1.05);
    filter: grayscale(1) blur(0.0625rem);
  }
  100% {
    transform: translate3d(2%, -1.5%, 0) scale(1.1);
    filter: grayscale(1) blur(0.0875rem);
  }
}
@keyframes heroFogDriftB {
  0% {
    transform: translate3d(1%, 0, 0) scaleX(-1) scale(1.08);
    filter: grayscale(1) blur(0.05rem);
  }
  100% {
    transform: translate3d(-2%, -1%, 0) scaleX(-1) scale(1.14);
    filter: grayscale(1) blur(0.1rem);
  }
}
.sectionHeroBackdrop {
  /* ================= TYPOGRAPHY ================= */
}
.sectionHeroBackdrop .pretitle,
.sectionHeroBackdrop .titleSmall {
  letter-spacing: -0.01em;
  font-size: 2.4375rem;
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .pretitle,
  .sectionHeroBackdrop .titleSmall {
    font-size: 2.4375rem;
  }
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .pretitle,
  .sectionHeroBackdrop .titleSmall {
    font-size: 2.4375rem;
  }
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .pretitle,
  .sectionHeroBackdrop .titleSmall {
    font-size: 2.4375rem;
  }
}
@media (min-width: 899.9px) {
  .sectionHeroBackdrop .pretitle,
  .sectionHeroBackdrop .titleSmall {
    font-size: 2.4375rem;
  }
}
@media (min-width: 1023.9px) {
  .sectionHeroBackdrop .pretitle,
  .sectionHeroBackdrop .titleSmall {
    font-size: 2.4375rem;
  }
}
@media (min-width: 1279.9px) {
  .sectionHeroBackdrop .pretitle,
  .sectionHeroBackdrop .titleSmall {
    font-size: 2.4375rem;
  }
}
.sectionHeroBackdrop .titleBig {
  letter-spacing: -0.04em;
  line-height: 0.78em;
  font-size: 7rem;
  text-align: center;
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .titleBig {
    font-size: 7rem;
  }
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .titleBig {
    font-size: 7rem;
  }
}
@media (min-width: 599.9px) {
  .sectionHeroBackdrop .titleBig {
    font-size: 7rem;
  }
}
@media (min-width: 899.9px) {
  .sectionHeroBackdrop .titleBig {
    font-size: 7rem;
  }
}
@media (min-width: 1023.9px) {
  .sectionHeroBackdrop .titleBig {
    font-size: 7rem;
  }
}
@media (min-width: 1279.9px) {
  .sectionHeroBackdrop .titleBig {
    font-size: 7rem;
  }
}
.sectionHeroBackdrop .titleSmall {
  line-height: 1.25em;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .sectionHeroBackdrop .heroContainer {
    padding-top: 8rem;
    gap: 1rem;
  }
  .sectionHeroBackdrop .heroVisual {
    margin-top: 2rem;
  }
  .sectionHeroBackdrop .pretitle,
  .sectionHeroBackdrop .titleSmall {
    font-size: clamp(1.5rem, 8vw, 2.4375rem);
  }
  .sectionHeroBackdrop .titleBig {
    font-size: clamp(4.375rem, 24vw, 7rem);
    line-height: 0.82em;
  }
}
@media (min-width: 899.9px) and (max-width: 1023.9px) {
  .sectionHeroBackdrop .heroContainer {
    gap: 1rem;
  }
  .sectionHeroBackdrop .heroVisual {
    width: 52%;
    margin-top: 1.5rem;
  }
  .sectionHeroBackdrop .heroText {
    width: 48%;
    padding-right: 1rem;
    overflow: visible;
  }
  .sectionHeroBackdrop .heroTextInner {
    max-width: 100%;
  }
  .sectionHeroBackdrop .pretitle,
  .sectionHeroBackdrop .titleSmall {
    font-size: 1.5rem;
  }
  .sectionHeroBackdrop .titleBig {
    font-size: 8rem;
    line-height: 0.84em;
  }
}
@media (min-width: 1023.9px) {
  .sectionHeroBackdrop .heroContainer {
    gap: 1rem;
  }
  .sectionHeroBackdrop .pretitle,
  .sectionHeroBackdrop .titleSmall {
    font-size: 1.25rem;
  }
  .sectionHeroBackdrop .titleBig {
    font-size: 9rem;
  }
}

@keyframes slideUpBottles {
  0% {
    transform: translateY(100%) translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
  }
}
.includeSections {
  position: relative;
  z-index: 2;
}

.sectionFlavours {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #000;
  z-index: 0;
  display: block;
}
.sectionFlavours::before, .sectionFlavours::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 2;
}
.sectionFlavours::before {
  top: 0;
  height: 48%;
  background: radial-gradient(120% 90% at 50% 0%, rgba(182, 190, 202, 0.2) 0%, rgba(68, 74, 88, 0.08) 46%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.28;
}
.sectionFlavours::after {
  bottom: -2%;
  height: 34%;
  background: linear-gradient(to top, rgba(246, 246, 246, 0.92) 0%, rgba(228, 228, 228, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
}
.sectionFlavours .flavourMain {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  width: 90%;
}
.sectionFlavours .flavoursTopBar {
  display: flex;
  justify-content: flex-end;
}
.sectionFlavours .flavoursLogo {
  width: 108px;
}
.sectionFlavours .flavoursBottomBg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}
.sectionFlavours .flavoursVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 116%;
  min-height: 116%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  opacity: 1;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(0.78) contrast(1.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform, opacity, filter;
  transform: translate(-50%, -50%) translateZ(0);
}
.sectionFlavours .flavoursVideo--mirror {
  transform: translate(-50%, -50%) scaleX(-1);
  opacity: 0.85;
}
.sectionFlavours .flavoursBg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.sectionFlavours .flavoursBg .fog {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: cover;
  opacity: 0.44;
  filter: grayscale(1) saturate(0) brightness(1.35) contrast(1.05) blur(0.0625rem);
  will-change: transform, opacity, filter;
  transform: translateZ(0);
}
.sectionFlavours .flavoursBg .fog1 {
  opacity: 0.48;
}
.sectionFlavours .flavoursBg .fog2 {
  opacity: 0.32;
}
.sectionFlavours .flavoursInner {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;
  width: min(96%, 1440px);
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) minmax(30rem, 38rem) minmax(13rem, 1fr);
  align-items: start;
  column-gap: 1.25rem;
  height: auto;
  padding: 1.25rem 0;
}
@media (min-width: 1023.9px) {
  .sectionFlavours .flavoursInner {
    grid-template-columns: minmax(13rem, 1fr) minmax(31rem, 40rem) minmax(13rem, 1fr);
  }
}
.sectionFlavours .flavourPanel {
  position: relative;
  z-index: 9;
  color: #fff;
  max-width: 48.375rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 800ms ease, transform 800ms ease;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.sectionFlavours .flavourPanel.is-in {
  opacity: 1;
  transform: translateY(0);
}
.sectionFlavours .flavourPanel .panelTop {
  margin-bottom: 1rem;
}
.sectionFlavours .flavourPanel .panelTop .jp {
  margin: 0;
  font-weight: 800;
  font-size: 1.375rem;
  opacity: 1;
  color: #fff;
}
.sectionFlavours .flavourPanel .panelTop .title {
  margin: 0.5rem 0 0;
  font-weight: 900;
  line-height: 0.95;
  font-size: 3.5rem;
  text-transform: uppercase;
}
.sectionFlavours .flavourPanel .panelTop .title.lemon {
  color: #FEDD00;
}
.sectionFlavours .flavourPanel .panelTop .title.grapefruit {
  color: #ff4a4a;
  font-size: 3.5rem;
}
.sectionFlavours .flavourPanel .desc {
  margin: 0 0 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  font-size: 1rem;
}
.sectionFlavours .flavourPanel .meta {
  margin: 0 0 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
}
.sectionFlavours .flavourPanel .iconsRow {
  margin-top: 2rem;
}
.sectionFlavours .flavourPanel .iconsRow img {
  width: 183px;
  height: 69px;
  position: relative;
  z-index: 20;
}
.sectionFlavours .flavourPanel--left {
  justify-self: end;
  text-align: right;
}
.sectionFlavours .flavourPanel--right {
  justify-self: start;
  text-align: left;
}
.sectionFlavours .flavourPanel--left {
  padding-right: 1.25rem;
}
.sectionFlavours .flavourPanel--right {
  padding-left: 1.25rem;
}
.sectionFlavours .flavourPanel--left .iconsRow img {
  margin-left: auto;
}
@media (min-width: 1023.9px) {
  .sectionFlavours .flavoursInner {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(8.5rem, 1fr) minmax(31rem, 40rem) minmax(8.5rem, 1fr);
    column-gap: 0.75rem;
    padding: 0 1.5rem;
  }
  .sectionFlavours .flavourPanel .panelTop .title {
    font-size: 3.5rem;
  }
  .sectionFlavours .flavourPanel .panelTop .title.grapefruit {
    font-size: 3.5rem;
  }
  .sectionFlavours .flavourPanel .desc {
    font-size: 1rem;
  }
  .sectionFlavours .flavourPanel--left {
    justify-self: start;
    text-align: right;
    padding-right: 0;
    transform: none;
  }
  .sectionFlavours .flavourPanel--right {
    justify-self: end;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    transform: none;
  }
  .sectionFlavours .flavourCans {
    height: 20rem;
  }
  .sectionFlavours .flavourCans .can {
    width: 13rem;
  }
  .sectionFlavours .flavourCans .can--lemon {
    transform: translateX(-78%) translateY(0);
  }
  .sectionFlavours .flavourCans .can--grapefruit {
    transform: translateX(-20%) translateY(1rem);
  }
}
@media (min-width: 1279.9px) {
  .sectionFlavours .flavoursInner {
    grid-template-columns: minmax(13rem, 1fr) minmax(31rem, 40rem) minmax(13rem, 1fr);
    column-gap: 1rem;
    width: 94%;
  }
  .sectionFlavours .flavourPanel .panelTop .title {
    font-size: 3.5rem;
  }
  .sectionFlavours .flavourPanel .desc {
    font-size: 1rem;
  }
}
.sectionFlavours .flavourCans {
  position: relative;
  z-index: 6;
  height: 80rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 900ms ease, transform 900ms ease;
}
.sectionFlavours .flavourCans.is-in {
  opacity: 1;
  transform: scale(1);
}
.sectionFlavours .flavourCans .cansInner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.sectionFlavours .flavourCans .canSmokeVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 140%;
  min-height: 130%;
  transform: translate(-50%, -46%);
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: screen;
  opacity: 0.5;
  filter: grayscale(1) brightness(0.76) contrast(1.24);
  pointer-events: none;
  z-index: 4;
  will-change: transform, opacity, filter;
  transform: translate(-50%, -46%) translateZ(0);
}
.sectionFlavours .flavourCans .canSmokeVideo--mirror {
  transform: translate(-50%, -46%) scaleX(-1);
  opacity: 0.45;
}
.sectionFlavours .flavourCans .can {
  position: relative;
  width: min(100%, 32rem);
  filter: drop-shadow(0 1.25rem 5rem rgba(0, 0, 0, 0.6));
  top: 0;
  transition: transform 0.5s, z-index 0.5s;
}
.sectionFlavours .flavourCans .can--lemon {
  z-index: 9;
  position: absolute;
  left: 0;
  width: 255px;
  transform: translateY(-0.375rem);
}
@media (min-width: 1300px) {
  .sectionFlavours .flavourCans .can--lemon {
    width: 345px;
    height: 649px;
    left: 0;
  }
}
@media (min-width: 1100px) and (max-width: 1299px) {
  .sectionFlavours .flavourCans .can--lemon {
    width: 290px;
    left: 0;
  }
}
@media (max-width: 1100px) and (min-width: 904px) {
  .sectionFlavours .flavourCans .can--lemon {
    width: 255px;
    left: 0;
  }
}
@media (max-width: 903px) and (min-width: 768px) {
  .sectionFlavours .flavourCans .can--lemon {
    width: 363px;
    left: -23px;
  }
}
@media (max-width: 767px) and (min-width: 600px) {
  .sectionFlavours .flavourCans .can--lemon {
    width: 310px;
    left: 22px;
  }
}
@media (max-width: 599px) and (min-width: 480px) {
  .sectionFlavours .flavourCans .can--lemon {
    width: 275px;
    left: 7px;
  }
}
@media (max-width: 479px) and (min-width: 400px) {
  .sectionFlavours .flavourCans .can--lemon {
    width: 217px;
    left: -34px;
  }
}
@media (max-width: 399px) {
  .sectionFlavours .flavourCans .can--lemon {
    width: 184px;
    left: -15px;
  }
}
.sectionFlavours .flavourCans .can--grapefruit {
  z-index: 8;
  position: absolute;
  left: 221px;
  width: 229px;
  margin-top: 48px;
  transform: none;
}
@media (min-width: 1300px) {
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 298px;
    width: 315px;
    height: 593px;
    margin-top: 60px;
  }
}
@media (min-width: 1100px) and (max-width: 1299px) {
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 251px;
    width: 260px;
    margin-top: 51px;
  }
}
@media (max-width: 1100px) and (min-width: 904px) {
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 221px;
    width: 229px;
    margin-top: 48px;
  }
}
@media (max-width: 903px) and (min-width: 768px) {
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 290px;
    width: 325px;
    margin-top: 0;
  }
}
@media (max-width: 767px) and (min-width: 600px) {
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 290px;
    width: 281px;
    margin-top: 58px;
  }
}
@media (max-width: 599px) and (min-width: 480px) {
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 245px;
    width: 247px;
    margin-top: 51px;
  }
}
@media (max-width: 479px) and (min-width: 400px) {
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 154px;
    width: 195px;
    margin-top: 39px;
  }
}
@media (max-width: 399px) {
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 145px;
    width: 157px;
    margin-top: 47px;
  }
}
.sectionFlavours .flavourCans {
  /* Increase specificity to ensure styles apply */
}
.sectionFlavours .flavourCans .flavourCans .can--lemon {
  z-index: 9 !important;
  transform: translateY(-0.375rem) translateX(-10%) !important;
}
.sectionFlavours .flavourCans .flavourCans .can--grapefruit {
  z-index: 8 !important;
  transform: translateY(1.25rem) translateX(10%) !important;
}
@media (min-width: 0) and (max-width: 899.9px) {
  .sectionFlavours .flavoursInner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "cans cans" "left right";
    gap: 1.5rem;
    padding: 0 0.75rem 1.875rem;
  }
  .sectionFlavours .flavourCans {
    grid-area: cans;
    width: 100%;
    height: 26.25rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
  }
  .sectionFlavours .flavourCans .can {
    width: min(46vw, 15rem);
  }
  .sectionFlavours .flavourCans .can--lemon {
    left: 50%;
    transform: translateX(-88%) translateY(0);
  }
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 50%;
    transform: translateX(-12%) translateY(0.625rem);
  }
  .sectionFlavours .flavourPanel {
    max-width: 100%;
    opacity: 1;
    transform: none;
  }
  .sectionFlavours .flavourPanel .panelTop .title {
    font-size: 4rem;
  }
  .sectionFlavours .flavourPanel .desc {
    font-size: 1rem;
  }
  .sectionFlavours .flavourCans {
    grid-area: cans;
    width: 100%;
    height: 26.25rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
  }
  .sectionFlavours .flavourCans .can {
    width: min(46vw, 15rem);
  }
  .sectionFlavours .flavourCans .can--lemon {
    left: 50%;
    transform: translateX(-88%) translateY(0);
  }
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 50%;
    transform: translateX(-12%) translateY(0.625rem);
  }
  .sectionFlavours .flavourPanel {
    max-width: 100%;
    opacity: 1;
    transform: none;
  }
  .sectionFlavours .flavourPanel .panelTop .title {
    font-size: 4rem;
  }
  .sectionFlavours .flavourPanel .desc {
    font-size: 1rem;
  }
  .sectionFlavours .flavourPanel--left,
  .sectionFlavours .flavourPanel--right {
    justify-self: stretch;
    padding-left: 0;
    padding-right: 0;
  }
  .sectionFlavours .flavourPanel--left {
    grid-area: left;
    text-align: right;
  }
  .sectionFlavours .flavourPanel--left .desc {
    margin-left: auto;
  }
  .sectionFlavours .flavourPanel--right {
    grid-area: right;
    text-align: left;
  }
}
@media (min-width: 599.9px) and (max-width: 899.9px) {
  .sectionFlavours .flavourCans {
    height: 37.5rem;
  }
  .sectionFlavours .flavourCans .can {
    width: min(52vw, 20rem);
  }
  .sectionFlavours .flavourCans .can--lemon {
    transform: translateX(-90%) translateY(0);
  }
  .sectionFlavours .flavourCans .can--grapefruit {
    transform: translateX(-10%) translateY(0.75rem);
  }
  .sectionFlavours .flavourPanel {
    max-width: 100%;
    opacity: 1;
    transform: none;
  }
  .sectionFlavours .flavourPanel .panelTop .title {
    font-size: 3rem;
  }
  .sectionFlavours .flavourPanel .desc {
    font-size: 1rem;
  }
  .sectionFlavours .flavourPanel--left,
  .sectionFlavours .flavourPanel--right {
    justify-self: stretch;
    padding-left: 0;
    padding-right: 0;
  }
  .sectionFlavours .flavourPanel--left {
    grid-area: left;
    justify-self: end;
    text-align: right;
    max-width: 13rem;
    padding-right: 1rem;
  }
  .sectionFlavours .flavourPanel--left .desc {
    margin-left: auto;
  }
  .sectionFlavours .flavourPanel--right {
    grid-area: right;
    justify-self: start;
    text-align: left;
    max-width: 13rem;
    padding-left: 1rem;
  }
}
@media (min-width: 899.9px) and (max-width: 1023.9px) {
  .sectionFlavours .flavoursInner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: minmax(15rem, 1fr) minmax(13rem, 7rem) minmax(15rem, 1fr);
    grid-template-areas: "left cans right";
    gap: 1.25rem;
    padding: 0 1.5rem 1.25rem;
  }
  .sectionFlavours .flavourCans {
    grid-area: cans;
    width: 100%;
    height: 15rem;
    margin-bottom: 0;
    overflow: visible;
  }
  .sectionFlavours .flavourCans .can {
    width: min(34vw, 13rem);
  }
  .sectionFlavours .flavourCans .can--lemon {
    left: 50%;
    transform: translateX(-78%) translateY(0);
  }
  .sectionFlavours .flavourCans .can--grapefruit {
    left: 50%;
    transform: translateX(-20%) translateY(0.625rem);
  }
  .sectionFlavours .flavourPanel {
    max-width: 100%;
    opacity: 1;
    transform: none;
  }
  .sectionFlavours .flavourPanel .panelTop .title {
    font-size: 4rem;
  }
  .sectionFlavours .flavourPanel .desc {
    font-size: 1rem;
  }
  .sectionFlavours .flavourPanel--left,
  .sectionFlavours .flavourPanel--right {
    justify-self: stretch;
    padding-left: 0;
    padding-right: 0;
  }
  .sectionFlavours .flavourPanel--left {
    grid-area: left;
    justify-self: end;
    text-align: right;
    max-width: 13rem;
    padding-right: 1rem;
  }
  .sectionFlavours .flavourPanel--left .desc {
    margin-left: auto;
  }
  .sectionFlavours .flavourPanel--right {
    grid-area: right;
    justify-self: start;
    text-align: left;
    max-width: 13rem;
    padding-left: 1rem;
  }
}
@media (min-width: 0) and (max-width: 599.9px) {
  .sectionFlavours .flavoursInner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "cans cans" "left right";
    gap: 1rem;
    padding: 0 0.5rem 1.5rem;
  }
  .sectionFlavours .flavourCans {
    height: 25rem;
  }
  .sectionFlavours .flavourCans .can {
    width: min(44vw, 11.25rem);
  }
}
@keyframes fogFloat1 {
  0%, 100% {
    transform: scale(1.1) translate(0, 0);
  }
  50% {
    transform: scale(1.15) translate(-0.625rem, -0.3125rem);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 0) {
  /* --- Fix video shifting right --- */
  .sectionFlavours .flavoursVideo,
  .sectionFlavours .flavoursVideo--mirror {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center center;
  }
  /* --- Ensure clean stacking --- */
  .sectionFlavours .flavoursInner {
    grid-template-columns: 1fr;
    grid-template-areas: "cans" "left" "right";
  }
  /* --- Make sure panels are visible --- */
  .sectionFlavours .flavourPanel {
    opacity: 1;
    transform: none;
    max-width: 100%;
  }
  .sectionFlavours .flavourPanel--left,
  .sectionFlavours .flavourPanel--right {
    justify-self: stretch;
    padding-left: 0;
    padding-right: 0;
  }
  .sectionFlavours {
    max-height: none !important;
    overflow: visible !important;
  }
  .sectionFlavours .flavoursInner {
    max-height: none !important;
    grid-template-columns: 1fr;
    grid-template-areas: "cans" "left" "right";
  }
  .sectionFlavours .flavourPanel {
    top: 0 !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 0) {
  .sectionFlavours .flavoursInner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    grid-gap: 0.5rem !important;
    align-items: start !important;
    width: 100% !important;
    padding: 1.5rem 0 !important;
  }
  .sectionFlavours .flavourCans {
    grid-column: 1/span 2 !important;
    grid-row: 1/2 !important;
    margin: 0 auto 1.5rem auto !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .sectionFlavours .flavourPanel--left {
    grid-column: 1/2 !important;
    grid-row: 2/3 !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    padding: 0.5rem !important;
  }
  .sectionFlavours .flavourPanel--right {
    grid-column: 2/3 !important;
    grid-row: 2/3 !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    padding: 0.5rem !important;
  }
}
@media (min-width: 899.9px) {
  .sectionFlavours {
    max-height: 800px;
  }
  .flavourPanel {
    top: 5rem !important;
  }
}
@media (min-width: 1023.9px) {
  .sectionFlavours {
    max-height: 800px;
  }
  .flavourPanel {
    top: 5rem !important;
  }
}
@media (min-width: 1279.9px) {
  .sectionFlavours {
    max-height: 800px;
  }
  .flavourPanel {
    top: 5rem !important;
  }
}
.sectionVideoFeature {
  overflow: hidden;
}
.sectionVideoFeature.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0.75rem;
}
.sectionVideoFeature::before {
  content: none;
}
.sectionVideoFeature .videoFeature__bgVideo {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-10%) translateY(-50%);
  object-fit: cover;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}
.sectionVideoFeature {
  /* ================= YELLOW BACKGROUND ================= */
}
.sectionVideoFeature .yellowBackground {
  position: absolute;
  top: -15rem;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  background: #FEDD00;
  z-index: 2; /* Set z-index to 2 to be above the background video */
  -webkit-clip-path: polygon(0 72%, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 72%, 100% 0, 100% 100%, 0 100%);
}
@media (min-width: 599.9px) {
  .sectionVideoFeature .yellowBackground {
    top: -5rem;
    -webkit-clip-path: polygon(0 24%, 100% 0%, 100% 100%, 0 100%);
    clip-path: polygon(0 24%, 100% 0%, 100% 100%, 0 100%);
  }
}
.sectionVideoFeature {
  /* ================= VIDEO CONTAINER ================= */
}
.sectionVideoFeature .videoContainer {
  position: relative; /* Ensure it respects the layout flow */
  z-index: 3; /* Set z-index to 3 to be on top of the yellow background */
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  box-shadow: 0 1.25rem 5rem rgba(0, 0, 0, 0.3);
  padding: 0;
  margin: 0 auto;
}
.sectionVideoFeature .featureVideo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  padding: 0;
}
.sectionVideoFeature {
  /* ================= MOBILE ================= */
}
@media (min-width: 0) and (max-width: 599.9px) {
  .sectionVideoFeature {
    margin-top: 0;
    padding: 1.25rem 1rem 1.5rem;
  }
  .sectionVideoFeature .yellowBackground {
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    height: auto;
    -webkit-clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }
  .sectionVideoFeature .videoContainer {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
  }
  .sectionVideoFeature .videoContainer .featureVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 1023.9px) {
  .sectionVideoFeature {
    margin-top: 0.75rem;
  }
  .sectionVideoFeature .yellowBackground {
    top: -8rem;
    -webkit-clip-path: polygon(0 24%, 100% 0%, 100% 100%, 0 100%);
    clip-path: polygon(0 24%, 100% 0%, 100% 100%, 0 100%);
  }
}

.sectionHowWeMake {
  position: relative;
  overflow: hidden;
  background: #FEDD00;
  /* ================= SMOKE BACKGROUND ================= */
}
.sectionHowWeMake .howSmoke {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.sectionHowWeMake .smokeVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  will-change: transform;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
}
.sectionHowWeMake .howInner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  text-align: center;
}
.sectionHowWeMake .howTitle {
  margin: 0 0 1.25rem;
  color: #09101d;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 2rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.sectionHowWeMake .steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 280px;
}
.sectionHowWeMake .step {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* Visible by default (no JS fallback safe) */
  opacity: 1;
  transform: none;
}
.sectionHowWeMake .step img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}
.sectionHowWeMake .howText {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  color: #09101d;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: center;
  width: 90%;
  max-width: 280px;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.35;
}
.sectionHowWeMake {
  /* ================= TABLET & DESKTOP ================= */
}
@media (min-width: 599.9px) {
  .sectionHowWeMake .howInner {
    padding: 5rem 1.25rem;
  }
  .sectionHowWeMake .howTitle {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .sectionHowWeMake .steps {
    flex-direction: row;
    max-width: 900px;
    gap: 1.25rem;
    align-items: flex-end;
  }
  .sectionHowWeMake .step {
    flex: 1;
    max-width: 300px;
  }
  .sectionHowWeMake .step img {
    max-width: 280px;
  }
  .sectionHowWeMake .howText {
    max-width: 700px;
    margin-top: 2rem;
    margin-bottom: 3rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
.sectionHowWeMake {
  /* ================= LARGE DESKTOP ================= */
}
@media (min-width: 899.9px) {
  .sectionHowWeMake .howInner {
    padding: 3rem 1.5rem;
  }
  .sectionHowWeMake .howTitle {
    font-size: 2rem;
    margin-bottom: 5rem;
  }
  .sectionHowWeMake .steps {
    max-width: 1100px;
    gap: 2rem;
  }
  .sectionHowWeMake .step {
    max-width: 350px;
  }
  .sectionHowWeMake .step img {
    max-width: 320px;
  }
  .sectionHowWeMake .howText {
    max-width: 900px;
    margin-top: 5rem;
    margin-bottom: 8rem;
    font-size: 1.25rem;
  }
}

/* ================= ANIMATIONS ================= */
html.js .sectionHowWeMake .step {
  opacity: 0;
  transform: translateY(1.25rem) scale(0.96);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
html.js .sectionHowWeMake .step:nth-child(1) {
  transition-delay: 0ms;
}
html.js .sectionHowWeMake .step:nth-child(2) {
  transition-delay: 150ms;
}
html.js .sectionHowWeMake .step:nth-child(3) {
  transition-delay: 300ms;
}
html.js .sectionHowWeMake .step.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}
html.js .sectionHowWeMake .howText {
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 600ms ease-out 450ms, transform 600ms ease-out 450ms;
}
html.js .sectionHowWeMake .howText.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js .sectionHowWeMake .step,
  html.js .sectionHowWeMake .howText {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
/* ================= WHERE TO BUY ================= */
.sectionWhereToBuy {
  position: relative;
  background: #FEDD00;
  text-align: center;
  overflow: hidden;
}
.sectionWhereToBuy .whereToBuy__bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .sectionWhereToBuy .whereToBuy__bgVideo {
    animation: none;
  }
}
.sectionWhereToBuy .whereInner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  width: 90%;
}
.sectionWhereToBuy h2 {
  position: relative;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  color: #000000;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-size: 28px;
  margin-top: 40px;
}
@media (min-width: 375px) {
  .sectionWhereToBuy h2 {
    font-size: 32px;
  }
}
@media (min-width: 480px) {
  .sectionWhereToBuy h2 {
    font-size: 42px;
  }
}
@media (min-width: 599.9px) {
  .sectionWhereToBuy h2 {
    font-size: 52px;
    margin-top: 60px;
  }
}
@media (min-width: 899.9px) {
  .sectionWhereToBuy h2 {
    margin-top: 80px;
  }
}
@media (min-width: 1023.9px) {
  .sectionWhereToBuy h2 {
    font-size: 32px;
    margin-top: 80px;
  }
}
@media (min-width: 1100px) {
  .sectionWhereToBuy h2 {
    margin-top: 80px;
  }
}
.sectionWhereToBuy .retailersGrid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  width: 250px;
  margin-top: 30px;
  margin-bottom: 20px;
  gap: 1.5rem;
}
@media (min-width: 375px) {
  .sectionWhereToBuy .retailersGrid {
    width: 350px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (min-width: 480px) {
  .sectionWhereToBuy .retailersGrid {
    width: 400px;
  }
}
@media (min-width: 599.9px) {
  .sectionWhereToBuy .retailersGrid {
    width: 550px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1023.9px) {
  .sectionWhereToBuy .retailersGrid {
    flex-direction: row;
    flex-wrap: wrap;
    width: 840px;
    margin-top: 86px;
    margin-bottom: 86px;
    gap: 2rem;
  }
}
@media (min-width: 1220px) {
  .sectionWhereToBuy .retailersGrid {
    width: 1051px;
  }
}
.sectionWhereToBuy .retailersGrid .retailerLogo {
  transition: transform 0.2s ease;
  cursor: pointer;
}
.sectionWhereToBuy .retailersGrid .retailerLogo:hover {
  transform: scale(1.06);
}
.sectionWhereToBuy .retailersGrid .retailerLogo a {
  display: block;
}
.sectionWhereToBuy .retailersGrid .retailerLogo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 375px) {
  .sectionWhereToBuy .retailersGrid .retailerLogo img {
    height: 50px;
  }
}
@media (min-width: 599.9px) {
  .sectionWhereToBuy .retailersGrid .retailerLogo img {
    height: 60px;
  }
}
@media (min-width: 1023.9px) {
  .sectionWhereToBuy .retailersGrid .retailerLogo img {
    height: 70px;
  }
}
@media (min-width: 1023.9px) {
  .sectionWhereToBuy .whereInner {
    width: 100%;
  }
}

.site-header.is-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.site-header.is-dark .header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
}
@media (min-width: 899.9px) {
  .site-header.is-dark .header-inner {
    height: 16rem;
    padding: 0 3rem;
  }
}
.site-header.is-dark .main-nav {
  display: none;
}
@media (min-width: 899.9px) {
  .site-header.is-dark .main-nav {
    display: flex;
  }
  .site-header.is-dark .main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .site-header.is-dark .main-nav a {
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    transition: opacity 0.3s;
  }
  .site-header.is-dark .main-nav a:hover {
    opacity: 0.7;
  }
}

body {
  overflow-x: hidden;
}

.contactSection {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  width: 100vw;
  left: 0;
  right: 0;
  background: #FEDD00;
}
.contactSection .contactSection__bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .contactSection .contactSection__bgVideo {
    animation: none;
  }
}
.contactSection .contactInner {
  position: relative;
  z-index: 10;
  max-width: 75rem;
  width: 100%;
  padding: 5rem 1.25rem;
  box-sizing: border-box;
}

.contactSection ~ .site-header .main-nav a,
body:has(.contactSection) .site-header .main-nav a {
  color: #09101d;
}
.contactSection ~ .site-header .menu-toggle,
body:has(.contactSection) .site-header .menu-toggle {
  color: #09101d;
}
.contactSection ~ .site-header .logo img,
body:has(.contactSection) .site-header .logo img {
  filter: none;
}

/* Fallback if your environment doesn't support :has() */
.site-header.is-dark .main-nav a {
  color: #000;
}
.site-header.is-dark .menu-toggle {
  color: #000;
}

.contactSection {
  background: #FEDD00;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.8125rem 1rem 8rem;
}
@media (min-width: 899.9px) {
  .contactSection {
    padding: 8rem 1rem 8rem;
  }
}
.contactSection .contactInner {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
}

.contactFormWrap {
  width: 100%;
}

.contactForm {
  width: 100%;
}

h1.formTitle {
  margin: 0;
  padding: 0 0 1.875rem;
  text-align: center;
  color: #000;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: none;
}
@media (max-width: 0) {
  h1.formTitle {
    font-size: 1.625rem;
  }
}
@media (min-width: 899.9px) {
  h1.formTitle {
    font-size: 2rem;
    padding-top: 1.875rem;
  }
}

.formGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 899.9px) {
  .formGrid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 1.5rem;
    row-gap: 2rem;
  }
}

@media (min-width: 899.9px) {
  .field {
    grid-column: span 5;
  }
}
@media (min-width: 899.9px) {
  .field.full {
    grid-column: span 12;
  }
}
@media (min-width: 899.9px) {
  .field.half {
    grid-column: span 6;
  }
}
@media (min-width: 899.9px) {
  .field.titleField {
    grid-column: span 2;
  }
}
.field label {
  display: block;
  margin-bottom: 0.5rem;
  color: #111;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.35;
  text-align: left;
}
.field label span {
  color: #111;
}
.field input:not([type=checkbox]):not([type=radio]),
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 2px;
  background: #fff;
  padding: 0.625rem 0.75rem;
  color: #000;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  appearance: none;
}
.field input:not([type=checkbox]):not([type=radio]):focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid #4f46e5;
  outline-offset: 0;
}
.field select {
  color: #6b7280;
  padding-right: 2.25rem;
}
.field textarea {
  resize: vertical;
  min-height: 13rem;
}

.selectWrap {
  position: relative;
}
.selectWrap .selectArrow {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 0.6875rem;
  pointer-events: none;
}

.hint {
  margin: 0.375rem 0 0;
  color: #6b7280;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-size: 0.6875rem;
  line-height: 1.2;
  text-align: left;
}

.uploadRow {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.uploadRow input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.browseBtn {
  margin: 0;
  display: inline-block;
  border: 0.5px solid #000;
  background: #efefef;
  color: #000;
  padding: 0.1875rem 0.5625rem;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
}

.fileName {
  margin: 0;
  color: #000;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-size: 0.8125rem;
}

.termsField {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.termsField input[type=checkbox] {
  margin-top: 0.1875rem;
  width: 1rem;
  height: 1rem;
  border: 1px solid #d1d5db;
  accent-color: #4f46e5;
}
.termsField label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
}
.termsField a {
  color: #2563eb;
  text-decoration: underline;
}

.submitBtn {
  margin-top: 1.5rem;
  border: 0;
  border-radius: 0.375rem;
  background: #000;
  color: #FEDD00;
  padding: 0.625rem 1.25rem;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
}

/* ================= AGE GATE WRAPPER ================= */
.ageGateWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  overflow-y: auto;
}
.ageGateWrapper.hidden {
  display: none !important;
}

/* ================= SMOKE VIDEO BACKGROUND ================= */
.ageGate__video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ================= MAIN WRAPPER ================= */
.ageGate {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem;
  gap: 3rem;
}
@media (min-width: 0) and (max-width: 599.9px) {
  .ageGate {
    padding: 2rem 0.75rem;
    gap: 2rem;
  }
}

/* ================= YELLOW BOX ================= */
.ageGate__content {
  width: 90%;
  max-width: 41.25rem;
  background: #FEDD00;
  padding: 3.125rem 1.875rem;
  text-align: center;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ageGate__content img {
  display: block;
  margin: 0 auto 1.25rem;
  width: 100%;
  max-width: 15rem;
  height: auto;
}
@media (max-width: 0) {
  .ageGate__content img {
    max-width: 15.625rem;
  }
}
.ageGate__content p {
  color: #09101d;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.875rem;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: normal;
  max-width: 100%;
}
@media (max-width: 0) {
  .ageGate__content p {
    font-size: 1.375rem;
  }
}
@media (min-width: 899.9px) {
  .ageGate__content p {
    font-size: 1.75rem;
    margin-bottom: 2.1875rem;
  }
}
.ageGate__content .ageGate__form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 420px;
}
.ageGate__content .ageGate__form input {
  flex: 1;
  min-width: 0;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  color: #09101d;
  background: #fff;
  border: none;
  padding: 1rem;
  text-align: center;
  font-size: 1.125rem;
  border-radius: 0.5rem;
}
.ageGate__content #ageSubmit {
  width: 100%;
  max-width: 420px;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  background: #09101d;
  color: #FEDD00;
  border: none;
  padding: 1.125rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-top: 0.625rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.ageGate__content #ageSubmit:hover {
  opacity: 0.9;
}
@media (min-width: 899.9px) {
  .ageGate__content {
    width: 41.25rem;
    padding: 8rem 5rem;
  }
}

.errorMessage {
  color: #ff0000;
  font-size: 1rem;
  font-weight: 700;
}

/* ================= FOOTER ================= */
.ageGate__footer {
  width: min(100%, 45rem);
  text-align: center;
  color: #fff;
  font-family: "BarlowSemiCondensedLight", "Barlow Semi Condensed", "OpenSansLight", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
}
.ageGate__footer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}
.ageGate__footer .ageGate__aware {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.siteFooter {
  position: relative;
  z-index: 100;
  width: 100%;
  background: #1d1d1b;
  color: #fff;
  text-align: center;
  padding: 2.5rem 0;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
}
@media (min-width: 599.9px) {
  .siteFooter {
    padding: 3.125rem 0;
  }
}
.siteFooter .footerInner {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.siteFooter .footerCopy {
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  color: #FEDD00;
  line-height: 1.2;
  font-size: 1.125rem;
  margin: 0 0 1rem;
}
@media (min-width: 599.9px) {
  .siteFooter .footerCopy {
    font-size: 1.1875rem;
  }
}
@media (min-width: 899.9px) {
  .siteFooter .footerCopy {
    font-size: 1.25rem;
  }
}
@media (min-width: 1023.9px) {
  .siteFooter .footerCopy {
    font-size: 1.3125rem;
  }
}
.siteFooter .footerLegal {
  font-family: "BarlowSemiCondensedLight", "Barlow Semi Condensed", "OpenSansLight", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  font-size: 0.8125rem;
  margin: 0 auto;
}
@media (min-width: 599.9px) {
  .siteFooter .footerLegal {
    font-size: 0.875rem;
    width: 24rem;
  }
}
@media (min-width: 899.9px) {
  .siteFooter .footerLegal {
    font-size: 0.9375rem;
    width: 32rem;
  }
}
@media (min-width: 1023.9px) {
  .siteFooter .footerLegal {
    font-size: 1rem;
    width: 32rem;
  }
}
.siteFooter .footerAwareRow {
  width: auto;
  max-width: max-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
  padding-top: 0.375rem;
  white-space: nowrap;
}
.siteFooter .footer18 {
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}
.siteFooter .footerAwareText {
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}
.siteFooter .footerSocial {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 2.5rem auto 0;
  height: 2.625rem;
}
.siteFooter .footerSocial a {
  width: 2.625rem;
  height: 2.625rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.siteFooter .footerSocial a:hover {
  opacity: 0.85;
  transform: scale(1.1);
}
.siteFooter .footerSocial i {
  font-size: 1.875rem;
  line-height: 1;
}
.siteFooter .footerSocial .socialIcon {
  width: 1.875rem;
  height: 1.875rem;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}
.siteFooter .footerSocial a:hover .socialIcon {
  filter: brightness(0) invert(1) opacity(0.85);
}
.siteFooter .footerPolicy {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem auto 0;
  height: 2.625rem;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}
.siteFooter .footerPolicy button,
.siteFooter .footerPolicy a {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: 2.625rem;
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.siteFooter .footerPolicy button:hover,
.siteFooter .footerPolicy a:hover {
  text-decoration: underline;
}

body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

.cookieConsentWrapper {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 1.125rem;
  overflow-x: hidden;
  overflow-y: auto;
  background: #09101d;
}
.cookieConsentWrapper.show {
  display: flex !important;
}

.cookieConsentWrapper .ageGate__video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: grayscale(1) brightness(0.72) contrast(1.12);
  transform: scale(1.07);
  pointer-events: none;
}

.cookieConsentWrapper #age-gate,
.cookieConsentWrapper .cookie-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cookieConsentWrapper .hidden {
  display: none !important;
}

.cookieConsentWrapper .is-flex {
  display: flex !important;
}

.cookieConsentWrapper::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 64%, rgba(184, 194, 204, 0.2) 0%, rgba(10, 14, 19, 0.28) 44%, rgba(0, 0, 0, 0.52) 100%), linear-gradient(180deg, rgba(2, 4, 8, 0.34) 0%, rgba(0, 0, 0, 0.56) 100%);
}

.cookieConsentWrapper::after {
  content: "";
  position: fixed;
  inset: -4%;
  z-index: 1;
  pointer-events: none;
  background: url("../../../assets/Smoke1.png") center center/120% auto no-repeat, url("../../../assets/Smoke2.png") center center/120% auto no-repeat;
  opacity: 0.34;
  mix-blend-mode: screen;
  filter: grayscale(1) blur(1px);
}

.cookieConsentWrapper > * {
  position: relative;
  z-index: 2;
}

.cookieConsentWrapper .cookie-panel {
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  width: calc(100% - 2.25rem);
  max-width: 46.25rem;
  border-radius: 0.5rem;
  background: #fbf8f3;
  padding: 1.5rem;
  box-shadow: 0 1rem 3.25rem rgba(0, 0, 0, 0.45);
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 0) and (max-width: 599.9px) {
  .cookieConsentWrapper .cookie-panel {
    width: calc(100% - 3.5rem);
  }
}
@media (min-width: 599.9px) {
  .cookie-panel {
    width: calc(100% - 4.75rem);
  }
}
.cookie-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#closeBtn {
  width: 5rem;
  min-width: 5rem;
  text-align: left;
  margin-top: 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#closeBtn img {
  width: 1.125rem;
  height: auto;
  cursor: pointer;
}

.cookie-header-spacer {
  width: 5rem;
  min-width: 5rem;
}

#cookieHeading {
  margin: 1.5625rem 0;
  width: auto;
  flex: 1;
  text-align: center;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  font-size: 1.65625rem;
  line-height: 2rem;
  letter-spacing: -0.02em;
}

#smallText,
#largeText {
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4rem;
  text-align: left;
  width: 92%;
}

.cookie-bullets,
.policy-bullets {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.cookie-bullet-item,
.policy-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}

.policy-bullet-item {
  gap: 1rem;
}

.cookie-bullet-item + .cookie-bullet-item {
  margin-top: 0.25rem;
}

.policy-bullet-item + .policy-bullet-item {
  margin-top: 1rem;
}

.cookie-bullet-dot {
  font-size: 0.95rem;
  line-height: 1;
}

#largeText {
  max-height: none;
  overflow: hidden;
  padding-right: 0.5rem;
}

.policy-scroll {
  max-height: 16.6875rem;
  overflow-y: auto;
  overflow-x: auto;
  margin-bottom: 1rem;
  padding-right: 1.25rem;
  color: #09101d;
}

.policy-scroll > * + * {
  margin-top: 1rem;
}

.policy-intro > * + * {
  margin-top: 0.5rem;
}

.policy-copy {
  line-height: 1.25rem;
}

.policy-toc {
  line-height: 2rem;
}

.policy-bold {
  font-weight: 700;
}

.policy-link,
.policy-cookie-links,
.policy-cookie-links a {
  color: #4f46e5;
  text-decoration: underline;
  text-underline-offset: 0.0625rem;
}

.policy-divider {
  margin-bottom: 0.75rem;
  border: 0;
  border-top: 1px solid #9A9A9A;
}

.policy-note {
  margin-bottom: 0.5rem;
}

.policy-consent-list > * + * {
  margin-top: 0.75rem;
}

.policy-consent-item {
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: start;
  column-gap: 0.5rem;
  cursor: pointer;
}

.policy-checkbox {
  width: 1rem;
  height: 1rem;
  margin: 0.125rem 0 0 0;
  accent-color: #FEDD00;
}

.policy-provider {
  color: #09101d;
}

.scrollbar-always::-webkit-scrollbar {
  width: 0.5rem;
}

.scrollbar-always::-webkit-scrollbar-thumb {
  background: #09101d;
  border-radius: 0.5rem;
}

.scrollbar-always::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
}

.cookie-table {
  display: grid;
  min-width: 40rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  border: 1px solid #09101d;
  background: #fff;
  font-size: 0.625rem;
  line-height: 0.875rem;
}

.cookie-table-colhead {
  padding: 0.25rem;
  font-weight: 700;
  background: #d1d5db;
  border-right: 1px solid #09101d;
  border-bottom: 1px solid #09101d;
}

.cookie-table-colhead-last {
  border-right: 0;
}

.cookie-table-rowhead {
  padding: 0.25rem;
  font-weight: 600;
  background: #fff;
  border-right: 1px solid #09101d;
  border-bottom: 1px solid #09101d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-table-rowhead-last {
  border-bottom: 0;
}

.cookie-table-cell {
  padding: 0.25rem;
  background: #fff;
  border-right: 1px solid #09101d;
  border-bottom: 1px solid #09101d;
}

.cookie-table-cell-vcenter {
  display: flex;
  align-items: center;
}

.cookie-table-cell-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-table-cell-last {
  border-right: 0;
}

.cookie-table-cell-right {
  border-right: 1px solid #09101d;
}

.cookie-table-cell-all {
  border: 1px solid #09101d;
}

.cookie-table-subhead {
  padding: 0.25rem;
  background: #efefef;
  border-right: 1px solid #09101d;
  border-bottom: 1px solid #09101d;
}

.cookie-table-break-all {
  word-break: break-all;
}

#submitCookiesBtn.submit-disabled {
  background: #9A9A9A;
  cursor: not-allowed;
}

#submitCookiesBtn.submit-enabled {
  background: #FEDD00;
  cursor: pointer;
}

.cookie-actions {
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 92%;
  color: #000;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  font-size: 0.5rem;
  line-height: 0.5rem;
  gap: 0.5rem;
}

.cookie-actions button {
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: #FEDD00;
  color: #1d1d1b;
  cursor: pointer;
  white-space: normal;
}

.cookie-actions button p {
  margin: 0;
  text-align: center;
  letter-spacing: -0.02em;
}

#submitCookiesBtn {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

#disclaimer {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding-top: 1.25rem;
}

#disclaimer p {
  position: relative;
  margin: 0 auto;
  width: min(100%, 45rem);
  text-align: center;
  color: #fff;
  font-family: "BarlowSemiCondensedLight", "Barlow Semi Condensed", "OpenSansLight", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.2;
}

.cookie-aware-row {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "BarlowSemiCondensedLight", "Barlow Semi Condensed", "OpenSansLight", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1;
}

.cookie-aware-line {
  white-space: nowrap;
}

@media (min-width: 0) and (max-width: 599.9px) {
  .cookie-actions {
    justify-content: center;
  }
  .cookie-actions button {
    flex: 1 1 calc(50% - 0.5rem);
    justify-content: center;
  }
  #rejectAllCookieBtns {
    order: 3;
    flex-basis: 100%;
  }
  #smallText {
    letter-spacing: -0.03rem;
  }
  .cookie-bullets {
    line-height: 0.625rem;
  }
  #disclaimer {
    padding-top: 1rem;
  }
}
@media (min-width: 599.9px) and (max-width: 899.9px) {
  #age-gate {
    padding-top: 1.25rem;
  }
  .cookie-actions {
    margin-top: 5rem;
    margin-bottom: 1.75rem;
    font-size: 0.625rem;
    line-height: 0.625rem;
  }
  .cookie-actions button {
    padding: 0.25rem 0.75rem;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  #submitCookiesBtn {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  #disclaimer p {
    width: min(100%, 61.25rem);
  }
}
@media (min-width: 899.9px) {
  #age-gate {
    padding-top: 0.75rem;
  }
  .cookie-panel {
    width: 46.25rem;
  }
  .cookie-table {
    font-size: 0.6875rem;
    line-height: 0.875rem;
  }
  .cookie-actions {
    margin-top: 2rem;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    line-height: 0.95rem;
  }
  .cookie-actions button {
    padding: 0.25rem 1rem;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  #submitCookiesBtn {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  #disclaimer {
    padding-top: 1.5rem;
  }
  #disclaimer p {
    width: min(100%, 66rem);
  }
}
body {
  color: #09101d;
  overflow-x: hidden;
  margin: 0;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: normal;
  font-style: normal;
}
@media (min-width: 1023.9px) {
  body {
    font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: normal;
    font-style: normal;
  }
}

/* Global reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button,
a {
  cursor: pointer;
}

/* Links */
a {
  color: #3f37d7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

li {
  list-style: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Forms */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  padding: 1rem;
  border: 1px solid #4f46e5;
  width: 100%;
  border-radius: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus {
  outline: 2px solid #FEDD00;
}

svg:focus,
svg:focus-visible {
  border: none;
  outline: none;
}

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

::selection {
  background-color: #33578e;
  color: #e4e2f9;
}

.skip-to-content {
  position: absolute;
  top: -46px;
  left: 0;
  background: #fff;
  color: #09101d;
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: top 0.3s ease;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 0;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1023.9px) {
  .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

h1,
.h1 {
  text-transform: uppercase;
  font-family: "GarageGothicBold", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: 0.0625rem;
  font-style: normal;
}
@media (min-width: 899.9px) and (max-width: 1023.9px) {
  h1,
  .h1 {
    font-family: "GarageGothicBold", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 8rem;
    line-height: 8rem;
    letter-spacing: 0.0625rem;
    font-style: normal;
  }
}
@media (min-width: 1023.9px) {
  h1,
  .h1 {
    font-family: "GarageGothicBold", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 10rem;
    line-height: 4.5rem;
    letter-spacing: 0.0625rem;
    font-style: normal;
  }
}

h2,
.h2 {
  color: #09101d;
  text-transform: uppercase;
  font-family: "GarageGothicBold", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 5rem;
  letter-spacing: 0.0625rem;
  font-style: normal;
}
@media (min-width: 899.9px) and (max-width: 1023.9px) {
  h2,
  .h2 {
    font-family: "GarageGothicBold", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 2.8125rem;
    line-height: 3.5rem;
    letter-spacing: 0.0625rem;
    font-style: normal;
  }
}
@media (min-width: 1023.9px) {
  h2,
  .h2 {
    font-family: "GarageGothicBold", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 8rem;
    line-height: 4rem;
    letter-spacing: 0.0625rem;
    font-style: normal;
  }
}

h3,
.h3 {
  font-family: "GarageGothicBold", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25rem;
  letter-spacing: 0.0625rem;
  font-style: normal;
}
@media (min-width: 899.9px) {
  h3,
  .h3 {
    font-family: "GarageGothicBold", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.875rem;
    letter-spacing: 0.0625rem;
    font-style: normal;
  }
}

.c-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 1023.9px) {
  .c-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.c-padding-bottom {
  padding-bottom: 2rem;
}
@media (min-width: 1023.9px) {
  .c-padding-bottom {
    padding-bottom: 3rem;
  }
}

.c-margin-bottom {
  margin-bottom: 2rem;
}
@media (min-width: 1023.9px) {
  .c-margin-bottom {
    margin-bottom: 3rem;
  }
}

.sectionBreadcrumb {
  position: relative;
}

@media (min-width: 899.9px) {
  .responsiveRichContent {
    gap: 4rem;
    grid-column: span 6;
  }
}
.responsiveRichContent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 12 columns - Default for desktop min-width 1200px */
}
@media (min-width: 599.9px) and (max-width: 899.9px) {
  .responsiveRichContent {
    grid-template-columns: repeat(4, 1fr);
  }
}
.responsiveRichContent {
  /* Tablet breakpoint (lg to xl): 8 columns */
}
@media (min-width: 899.9px) {
  .responsiveRichContent {
    grid-template-columns: repeat(12, 1fr);
  }
}
.responsiveRichContent div {
  grid-column: 1/span 4;
}
@media (min-width: 599.9px) and (max-width: 899.9px) {
  .responsiveRichContent div {
    grid-column: 1/span 4;
  }
}
@media (min-width: 899.9px) {
  .responsiveRichContent div {
    grid-column: span 6;
  }
}
