@font-face {
  font-family: "Fjalla One";
  src: url("assets/fonts/FjallaOne-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #000000;
  --ink: #151515;
  --red: #ff000d;
  --cream: #ccb99b;
  --white: #ffffff;
  --muted-white: #d9d9d9;
  --content: 1320px;
  --edge: 18px;
  --fast: 160ms;
  --medium: 520ms;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --kick-ease: cubic-bezier(.16, 1.18, .32, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Fjalla One", "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.age-locked {
  overflow: hidden;
}

body:not(.age-locked) {
  overflow-y: auto;
}

button,
input,
a {
  font: inherit;
  letter-spacing: 0;
}

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

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

a {
  color: inherit;
}

p,
h1,
h2,
dl,
dd,
figure,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform var(--fast) var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.display {
  font-family: "Fjalla One", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .9;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 1px 0 currentColor, -1px 0 currentColor;
}

.display--hero {
  font-size: 3.25rem;
}

.display--hero span {
  display: block;
}

.display--hero em {
  display: inline-block;
  color: var(--red);
  font-style: normal;
  transform: rotate(-2deg) scaleY(1.08);
  transform-origin: 50% 70%;
}

.display--section {
  font-size: 3.4rem;
}

.display--cream {
  color: var(--cream);
}

.eyebrow {
  color: var(--red);
  font-size: .88rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-lead {
  max-width: 38rem;
  font-size: 1.12rem;
  line-height: 1.55;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition:
    transform var(--fast) var(--ease),
    background-color var(--fast) ease,
    color var(--fast) ease;
}

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

.button:active {
  transform: translateY(0);
}

.button--red {
  border-color: var(--red);
  background: var(--red);
  color: var(--black);
}

.button--red:hover,
.button--red:focus-visible {
  background: var(--white);
  border-color: var(--white);
}

.button--cream {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

.button--cream:hover,
.button--cream:focus-visible {
  background: var(--white);
  border-color: var(--white);
}

.button--small {
  min-height: 44px;
  padding: 9px 14px;
  font-size: .9rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid var(--white);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--fast) ease, border-color var(--fast) ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

/* Age check */

.age-gate {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  min-height: 100svh;
  overflow: auto;
  isolation: isolate;
  background: var(--black);
}

.age-gate::after {
  content: "";
  position: fixed;
  z-index: 20;
  inset: -10%;
  pointer-events: none;
  background: var(--red);
  transform: translateX(-120%) skewX(-8deg);
}

.age-gate.is-leaving::after {
  animation: gate-wipe 760ms var(--ease) both;
}

@keyframes gate-wipe {
  0% { transform: translateX(-120%) skewX(-8deg); }
  48% { transform: translateX(0) skewX(-8deg); }
  100% { transform: translateX(120%) skewX(-8deg); }
}

.age-gate__product {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .3;
}

.age-gate__product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .54);
}

.age-gate__product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

.age-gate__panel {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, 590px);
  padding: 30px var(--edge) 24px;
}

.age-gate__logo {
  width: 158px;
  height: auto;
  margin-bottom: 28px;
}

.age-gate__title {
  max-width: 9ch;
  margin-top: 8px;
  font-size: 3.55rem;
  line-height: .88;
  text-transform: uppercase;
  text-shadow: 1px 0 currentColor, -1px 0 currentColor;
}

.age-gate__intro {
  margin-top: 16px;
  color: var(--muted-white);
  font-size: 1.08rem;
}

.age-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 440px;
  margin-top: 24px;
}

.date-field {
  display: grid;
  gap: 7px;
  color: var(--white);
  text-transform: uppercase;
}

.date-field input {
  width: 100%;
  min-height: 52px;
  border: 2px solid var(--white);
  border-radius: 0;
  padding: 10px 12px;
  background: var(--white);
  color: var(--black);
  color-scheme: light;
}

.date-field input[aria-invalid="true"] {
  border-color: var(--red);
}

.field-help,
.field-error {
  font-size: .88rem;
  line-height: 1.35;
}

.field-help {
  color: var(--muted-white);
}

.field-help a {
  color: var(--white);
  text-underline-offset: 3px;
}

.field-help a:hover,
.field-help a:focus-visible {
  color: var(--red);
}

.field-error {
  color: var(--red);
}

.age-form__enter {
  width: 100%;
}

.underage-link {
  justify-self: start;
  min-height: 44px;
  padding-top: 10px;
  color: var(--white);
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.age-gate__responsibility {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted-white);
  font-size: .8rem;
  text-transform: uppercase;
}

.age-gate__responsibility img {
  width: 94px;
  height: auto;
}

.noscript-message {
  max-width: 410px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--white);
  color: var(--cream);
}

/* Navigation */

.site {
  background: var(--black);
}

body.age-locked .site {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.site-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(88px, 112px) minmax(0, 1fr) auto auto;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 10px var(--edge);
  border-bottom: 1px solid #303030;
  background: var(--black);
}

.site-header__brand {
  display: flex;
  min-height: 44px;
  align-items: center;
}

.site-header__brand img {
  width: 104px;
  height: auto;
}

.language-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #4a4a4a;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color var(--fast) ease, color var(--fast) ease;
}

.language-link:hover,
.language-link:focus-visible {
  border-color: var(--red);
  color: var(--white);
}

.site-nav {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  grid-template-areas:
    "product"
    "copy";
  grid-template-rows: auto auto;
  min-height: calc(100svh - 108px);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  color: var(--white);
}

.hero__copy {
  position: relative;
  z-index: 4;
  grid-area: copy;
  align-self: center;
  padding: 18px var(--edge) 30px;
}

.hero__eyebrow {
  margin-bottom: 9px;
}

.hero__intro {
  max-width: 36rem;
  margin-top: 18px;
  color: var(--muted-white);
  font-size: 1.03rem;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 20px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #4a4a4a;
  color: var(--cream);
  font-size: .82rem;
  text-transform: uppercase;
}

.hero__facts li {
  position: relative;
}

.hero__facts li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 4px;
  height: 4px;
  background: var(--red);
  transform: translateY(-50%) rotate(45deg);
}

.hero__product {
  position: relative;
  z-index: 2;
  grid-area: product;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 2466 / 1080;
  align-self: center;
}

.hero__product-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero__product-mask {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: var(--red);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transform-origin: 100% 50%;
  transition: transform 560ms var(--kick-ease) 80ms;
  will-change: transform;
}

.hero__product-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  transform: translate3d(0, var(--hero-product-y, 0), 0) scale(var(--hero-product-scale, 1));
  transform-origin: 50% 50%;
  will-change: transform;
}

.js .site.site-ready .hero .hero__copy {
  transition:
    opacity 360ms ease 90ms,
    -webkit-clip-path 680ms var(--kick-ease) 90ms,
    clip-path 680ms var(--kick-ease) 90ms,
    transform 680ms var(--kick-ease) 90ms;
  will-change: opacity, transform;
}

.js .site.site-ready .hero:not(.is-active) .hero__copy {
  -webkit-clip-path: inset(0 99.5% 0 0);
  clip-path: inset(0 99.5% 0 0);
  opacity: 0;
  transform: translateX(18px);
}

.site-ready .hero.is-active .hero__copy {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateX(0);
}

.site-ready .hero.is-active .hero__product-frame img {
  transform: translate3d(0, var(--hero-product-y, 0), 0) scale(var(--hero-product-scale, 1));
}

.site-ready .hero.is-active .hero__product-mask {
  transform: translate3d(101%, 0, 0);
}

.js .site.site-ready .hero:not(.is-active) .display--hero > span {
  -webkit-clip-path: inset(0 99.5% 0 0);
  clip-path: inset(0 99.5% 0 0);
  transform: translateX(-34px) skewX(-4deg);
}

.site-ready .hero.is-active .display--hero > span {
  animation: hero-line 620ms var(--ease) both;
}

.site-ready .hero.is-active .display--hero > span:nth-child(2) {
  animation-delay: 110ms;
}

.site-ready .hero.is-active .display--hero em {
  animation: kick-land 540ms var(--ease) 420ms both;
}

.site-ready .hero.is-active .display--hero {
  animation: registration-hit 720ms steps(2, end) 120ms both;
}

@keyframes hero-line {
  from {
    -webkit-clip-path: inset(0 99.5% 0 0);
    clip-path: inset(0 99.5% 0 0);
    transform: translateX(-34px) skewX(-4deg);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transform: translateX(0) skewX(0);
  }
}

@keyframes registration-hit {
  0%, 35% { text-shadow: 5px 0 var(--red), -5px 0 var(--cream); }
  70% { text-shadow: 2px 0 var(--red), -2px 0 var(--cream); }
  100% { text-shadow: 1px 0 currentColor, -1px 0 currentColor; }
}

@keyframes kick-land {
  0% { transform: translateY(-26px) rotate(-8deg) scale(1.24, .78); }
  62% { transform: translateY(4px) rotate(2deg) scale(.96, 1.08); }
  100% { transform: translateY(0) rotate(-2deg) scale(1, 1.08); }
}

.brand-rail {
  min-height: 48px;
  overflow: hidden;
  background: var(--cream);
  color: var(--black);
  font-size: .88rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-rail__track {
  display: flex;
  width: max-content;
  min-height: 48px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.site-ready .brand-rail__track {
  animation: brand-rail 24s linear infinite;
}

.brand-rail__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  padding: 8px 8px;
}

.brand-rail__group i {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: var(--red);
  transform: rotate(45deg);
}

@keyframes brand-rail {
  to { transform: translate3d(-50%, 0, 0); }
}

/* Film */

.film-section {
  display: grid;
  min-height: 1px;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}

.film-section__frame {
  position: relative;
  width: min(100%, calc(100svh * 16 / 9));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.film-section__frame.is-portrait {
  width: min(100%, calc(100svh * 4 / 5));
  aspect-ratio: 4 / 5;
}

.film-section__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Ingredient story */

.ingredient-section {
  display: grid;
  gap: 46px;
  padding: 76px var(--edge);
  background: var(--cream);
  color: var(--black);
}

.ingredient-section .eyebrow,
.faq-section .eyebrow {
  color: #b00009;
}

.ingredient-section__copy .display {
  margin-top: 10px;
}

.ingredient-section__copy .section-lead {
  margin-top: 24px;
}

.ingredient-list {
  display: grid;
  margin-top: 34px;
  border-top: 2px solid var(--black);
}

.ingredient-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .45);
}

.ingredient-list dt {
  color: #8b0007;
  text-transform: uppercase;
}

.ingredient-list dd {
  min-width: 0;
}

.ingredient-section__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: center;
}

.ingredient-image {
  overflow: hidden;
  border: 5px solid var(--black);
  background: var(--black);
}

.ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-image--wide {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 2;
}

.ingredient-image--wide img {
  object-position: 52% 54%;
}

.ingredient-image--detail {
  grid-column: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.ingredient-image--detail img {
  object-position: 50% 52%;
}

.ingredient-image--stamp {
  position: relative;
  grid-column: 2;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.ingredient-image--stamp img {
  object-position: 50% 50%;
}

/* Audience */

.hedonist-section {
  position: relative;
  display: grid;
  grid-template-areas:
    "portrait"
    "copy"
    "dj";
  gap: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  color: var(--white);
}

.hedonist-section__portrait {
  grid-area: portrait;
  height: 64svh;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 8px solid var(--black);
}

.hedonist-section__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% 58%;
}

.hedonist-section__copy {
  position: relative;
  z-index: 3;
  grid-area: copy;
  padding: 72px var(--edge);
  background: var(--red);
  color: var(--black);
}

.hedonist-section .eyebrow {
  color: var(--black);
}

.hedonist-section .display--cream {
  margin-top: 10px;
  color: var(--black);
}

html[lang="nl"] .hedonist-section__copy .display--section {
  font-size: 2.9rem;
}

.hedonist-section__copy > p:not(.eyebrow, .hedonist-section__line) {
  max-width: 42rem;
  margin-top: 24px;
  font-size: 1.18rem;
}

.hedonist-section__line {
  max-width: 12ch;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 3px solid var(--black);
  font-size: 2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.hedonist-section__dj {
  position: relative;
  z-index: 2;
  grid-area: dj;
  width: 100%;
  aspect-ratio: 1207 / 955;
  overflow: visible;
  background: var(--black);
}

.hedonist-section__dj img {
  position: static;
  width: 100%;
  height: auto;
  transform-origin: 50% 100%;
}

.js .site.scroll-motion .hedonist-section__dj img {
  opacity: var(--reveal-opacity, 0);
  transform:
    translate3d(0, var(--lift-y, 52px), 0)
    rotate(var(--lift-rotate, 2deg))
    scale(var(--lift-scale, .94));
  will-change: opacity, transform;
}

/* Can */

.can-section {
  display: grid;
  position: relative;
  grid-template-areas:
    "product"
    "copy"
    "hippo";
  background: var(--black);
  color: var(--white);
}

.can-section__product {
  grid-area: product;
  width: 100%;
  aspect-ratio: 1;
  align-self: center;
  background: var(--ink);
}

.can-section__product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

.can-section__copy {
  grid-area: copy;
  padding: 66px var(--edge) 76px;
}

.can-section__copy .display {
  margin-top: 10px;
}

.can-section__copy .display span {
  color: var(--red);
}

.can-section__copy .section-lead {
  margin-top: 24px;
  color: var(--muted-white);
}

.can-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 2px solid var(--white);
}

.can-facts div {
  min-width: 0;
  padding: 14px 10px 14px 0;
  border-bottom: 1px solid #4a4a4a;
}

.can-facts dt {
  color: var(--red);
  font-size: .78rem;
  text-transform: uppercase;
}

.can-facts dd {
  margin-top: 3px;
  color: var(--white);
  font-size: 1.02rem;
}

.can-section__hippo {
  display: grid;
  grid-area: hippo;
  min-height: 520px;
  place-items: end center;
  overflow: hidden;
  padding: 28px var(--edge) 0;
  background: var(--red);
}

.can-section__hippo img {
  width: min(100%, 520px);
  height: auto;
  transform-origin: 50% 82%;
}

.js .site.scroll-motion .can-section__hippo img {
  opacity: var(--hippo-opacity, 0);
  transform:
    translate3d(var(--hippo-x, -18px), var(--hippo-y, 96px), 0)
    rotate(var(--hippo-rotate, -3deg))
    scale(var(--hippo-scale, .91));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

/* Moment */

.moment-section {
  display: grid;
  background: var(--black);
  color: var(--white);
}

.moment-section__image {
  height: 58svh;
  min-height: 410px;
  overflow: hidden;
}

.moment-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 68%;
}

.moment-section__copy {
  padding: 64px var(--edge) 76px;
  border-top: 8px solid var(--red);
}

.moment-section__copy .display {
  margin-top: 10px;
}

.moment-section__copy p:last-child {
  max-width: 36rem;
  margin-top: 24px;
  color: var(--muted-white);
  font-size: 1.15rem;
}

/* FAQ */

.faq-section {
  display: grid;
  gap: 42px;
  padding: 76px var(--edge);
  background: var(--cream);
  color: var(--black);
}

.faq-section__header .display {
  margin-top: 10px;
}

.faq-list {
  border-top: 3px solid var(--black);
}

.faq-list details {
  border-bottom: 1px solid rgba(0, 0, 0, .55);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 13px 52px 13px 0;
  cursor: pointer;
  font-size: 1.12rem;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 22px;
  height: 2px;
  background: var(--black);
  transform: translateY(-50%);
  transition: transform var(--fast) var(--ease);
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list details p {
  max-width: 46rem;
  padding: 0 52px 20px 0;
  line-height: 1.6;
}

/* Shop */

.shop-section {
  display: grid;
  background: var(--red);
  color: var(--black);
}

.shop-section__copy {
  padding: 72px var(--edge);
}

.shop-section .eyebrow {
  color: var(--black);
}

.shop-section .display--cream {
  margin-top: 10px;
  color: var(--black);
}

.shop-section__copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 24px;
  font-size: 1.15rem;
}

.shop-section__copy .button {
  margin-top: 28px;
}

.shop-section__image {
  height: 70svh;
  min-height: 480px;
  overflow: hidden;
  background: var(--cream);
}

.shop-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 64%;
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 30px var(--edge);
  border-top: 1px solid #303030;
  background: var(--black);
  color: var(--muted-white);
  font-size: .78rem;
  text-transform: uppercase;
}

.site-footer__brand {
  width: 116px;
  height: auto;
}

.site-footer p {
  grid-column: 1 / -1;
}

.site-footer__legal-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-underline-offset: 4px;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible {
  color: var(--red);
}

.site-footer__nix {
  width: 96px;
  height: auto;
}

/* Privacy statement */

.privacy-page {
  min-height: 100vh;
  background: var(--white);
  color: var(--ink);
}

.privacy-header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--edge);
  border-bottom: 1px solid #303030;
  background: var(--black);
  color: var(--white);
}

.privacy-header__brand {
  display: flex;
  min-height: 44px;
  align-items: center;
}

.privacy-header__brand img {
  width: 104px;
  height: auto;
}

.privacy-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-header__back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid var(--white);
  color: var(--white);
  font-size: .88rem;
  text-decoration: none;
  text-transform: uppercase;
}

.privacy-header__back:hover,
.privacy-header__back:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.privacy-shell {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding-inline: var(--edge);
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding-block: 72px 58px;
  background: var(--black);
  color: var(--white);
}

.privacy-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 10px;
  background: var(--red);
  content: "";
}

.privacy-hero__title {
  max-width: 12ch;
  margin-top: 12px;
  overflow-wrap: anywhere;
  font-size: 3.65rem;
}

.privacy-hero__intro {
  max-width: 42rem;
  margin-top: 22px;
  color: var(--muted-white);
  font-size: 1.12rem;
  line-height: 1.6;
}

.privacy-updated {
  margin-top: 20px;
  color: var(--cream);
  font-size: .84rem;
  text-transform: uppercase;
}

.privacy-status {
  padding-block: 24px;
  background: var(--red);
  color: var(--black);
}

.privacy-status strong {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
}

.privacy-status p {
  max-width: 54rem;
  margin-top: 6px;
  line-height: 1.55;
}

.privacy-content {
  padding-block: 18px 72px;
  background: var(--white);
  color: var(--ink);
}

.privacy-section {
  display: grid;
  gap: 12px;
  padding-block: 30px;
  border-top: 1px solid #c9c9c9;
}

.privacy-section > * {
  min-width: 0;
}

.privacy-section:first-child {
  border-top: 0;
}

.privacy-section h2 {
  color: var(--black);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.privacy-section__body {
  max-width: 44rem;
}

.privacy-section__body p + p {
  margin-top: 14px;
}

.privacy-section a {
  color: #b8000a;
  text-underline-offset: 4px;
}

.privacy-section a:hover,
.privacy-section a:focus-visible {
  color: var(--black);
}

.privacy-section code {
  overflow-wrap: anywhere;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: .88em;
}

@media (max-width: 359px) {
  .privacy-header__brand img {
    width: 88px;
  }

  .privacy-header__actions {
    gap: 8px;
  }

  .privacy-header__back {
    font-size: .78rem;
  }
}

@media (min-width: 760px) {
  .privacy-header {
    min-height: 78px;
  }

  .privacy-header__brand img {
    width: 126px;
  }

  .privacy-hero {
    padding-block: 108px 82px;
  }

  .privacy-hero__title {
    font-size: 5.8rem;
  }

  .privacy-section {
    grid-template-columns: minmax(190px, .65fr) minmax(0, 1.35fr);
    gap: 48px;
    padding-block: 40px;
  }
}

/* Screen-print reveals */

.print-reveal {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.print-reveal__mask {
  display: none;
}

.js .site.scroll-motion .print-reveal__mask {
  display: block;
  position: absolute;
  z-index: 5;
  inset: 0;
  background: var(--red);
  pointer-events: none;
  transform: translate3d(var(--wipe-x, 0%), 0, 0);
  will-change: transform;
}

.js .site.scroll-motion .ingredient-image .print-reveal__mask,
.js .site.scroll-motion .shop-section__image .print-reveal__mask {
  background: var(--black);
}

.js .site.scroll-motion .print-reveal img {
  transform:
    translate3d(var(--image-x, 16px), var(--image-y, 24px), 0)
    rotate(var(--image-rotate, .9deg))
    scale(var(--image-scale, 1.08));
  transform-origin: 50% 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

html.js .site.scroll-motion .can-section__product.print-reveal img {
  transform: translate3d(0, 0, 0) scale(var(--product-scale, 1.035));
}

.js .site.scroll-motion .reveal--type {
  -webkit-clip-path: inset(0 var(--reveal-clip, 99.5%) 0 0);
  clip-path: inset(0 var(--reveal-clip, 99.5%) 0 0);
  opacity: var(--reveal-opacity, 0);
  transform: translate3d(var(--reveal-shift, 24px), 0, 0);
  will-change: opacity, transform;
}

.js .site.scroll-motion .reveal--type .display {
  text-shadow:
    var(--registration-positive, 1px) 0 var(--red),
    var(--registration-negative, -1px) 0 var(--cream);
}

@media (min-width: 390px) {
  :root {
    --edge: 22px;
  }

  .display--hero {
    font-size: 3.75rem;
  }

  .display--section {
    font-size: 3.8rem;
  }

  .age-gate__title {
    font-size: 4rem;
  }

}

@media (min-width: 760px) {
  :root {
    --edge: 34px;
  }

  .display--hero {
    font-size: 5.4rem;
  }

  .display--section {
    font-size: 4.9rem;
  }

  .eyebrow {
    font-size: .95rem;
  }

  .site-header {
    grid-template-columns: 138px minmax(0, 1fr) auto auto;
    min-height: 78px;
    padding-block: 12px;
  }

  .site-header__brand img {
    width: 126px;
  }

  .site-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
  }

  .site-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--muted-white);
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--fast) ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--red);
  }

  .hero {
    grid-template-areas: "copy product";
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    grid-template-rows: auto;
    min-height: calc(100svh - 126px);
  }

  .hero__copy {
    padding: 60px var(--edge);
  }

  .hero__product-frame img {
    object-position: 50% 50%;
  }

  .hero__intro {
    font-size: 1.12rem;
  }

  .brand-rail {
    min-height: 52px;
    font-size: .95rem;
  }

  .ingredient-section {
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: 60px;
    min-height: 780px;
    padding-block: 100px;
  }

  .ingredient-section__images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .ingredient-image--wide {
    grid-column: 1 / -1;
  }

  .ingredient-image--detail {
    grid-column: 1;
  }

  .ingredient-image--stamp {
    grid-column: 2;
  }

  .hedonist-section {
    grid-template-areas:
      "portrait portrait"
      "copy dj";
    grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
    align-items: stretch;
  }

  .hedonist-section__portrait {
    height: 68svh;
    min-height: 560px;
    border-bottom: 8px solid var(--black);
  }

  .hedonist-section__portrait img {
    object-position: 68% 62%;
  }

  .hedonist-section__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    min-height: 470px;
    padding: 76px 34px;
  }

  html[lang="nl"] .hedonist-section__copy .display--section {
    font-size: 3.9rem;
  }

  .hedonist-section__line {
    font-size: 2.4rem;
  }

  .hedonist-section__dj {
    align-self: center;
  }

  .can-section {
    grid-template-areas:
      "product copy"
      "hippo copy";
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    min-height: 720px;
  }

  .can-section__copy {
    align-self: center;
    padding: 90px var(--edge);
  }

  .can-section__hippo {
    min-height: 420px;
    padding-inline: 26px;
  }

  .can-facts div {
    padding-right: 16px;
  }

  .moment-section {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    min-height: 720px;
  }

  .moment-section__image {
    height: auto;
    min-height: 720px;
  }

  .moment-section__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 0;
    border-left: 8px solid var(--red);
    padding: 80px var(--edge);
  }

  .faq-section {
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    gap: 80px;
    padding-block: 104px;
  }

  .shop-section {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    min-height: 760px;
  }

  .shop-section__copy {
    align-self: center;
    padding: 90px var(--edge);
  }

  .shop-section__image {
    height: auto;
    min-height: 760px;
  }

  .site-footer {
    grid-template-columns: 140px minmax(0, 1fr) auto;
    gap: 30px;
  }

  .site-footer p {
    grid-column: auto;
    text-align: center;
  }
}

@media (min-width: 1120px) {
  :root {
    --edge: max(48px, calc((100vw - var(--content)) / 2));
  }

  .display--hero {
    font-size: 6.4rem;
  }

  .display--section {
    font-size: 5.7rem;
  }

  .hero {
    grid-template-columns: minmax(420px, .78fr) minmax(620px, 1.22fr);
  }

  .hero__copy {
    padding-right: 30px;
  }

  .hero__product-frame img {
    object-fit: contain;
    object-position: 50% 50%;
  }

  .ingredient-section,
  .faq-section {
    column-gap: 110px;
  }

  .can-section__copy,
  .moment-section__copy,
  .shop-section__copy {
    padding-right: var(--edge);
    padding-left: 72px;
  }

  .age-gate {
    grid-template-columns: minmax(460px, .82fr) minmax(0, 1.18fr);
  }

  .age-gate__panel {
    grid-column: 1;
    padding-left: max(48px, calc((100vw - var(--content)) / 2));
  }

  .age-gate__product {
    grid-column: 2;
    left: 41%;
    opacity: 1;
  }

  .age-gate__product::after {
    display: none;
  }

  .age-gate__product img {
    object-position: 50% 50%;
  }

  .hedonist-section {
    grid-template-areas: "portrait copy dj";
    grid-template-columns: minmax(360px, .82fr) minmax(320px, .62fr) minmax(390px, 1fr);
    min-height: 720px;
  }

  .hedonist-section__portrait {
    height: auto;
    min-height: 720px;
    border-right: 8px solid var(--black);
    border-bottom: 0;
  }

  .hedonist-section__copy {
    min-height: 720px;
    padding-inline: 42px;
  }

  html[lang="nl"] .hedonist-section__copy .display--section {
    font-size: 4.1rem;
  }

  .hedonist-section__dj {
    width: 100%;
    align-self: end;
  }

  .can-section {
    grid-template-areas: "product copy hippo";
    grid-template-columns: minmax(360px, .9fr) minmax(330px, .78fr) minmax(320px, .68fr);
    min-height: 720px;
  }

  .can-section__copy {
    padding: 80px 42px;
  }

  .can-section__hippo {
    min-height: 720px;
    padding: 34px 24px 0;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .age-gate__panel {
    width: min(58%, 620px);
    padding-block: 18px;
  }

  .age-gate__logo {
    width: 118px;
    margin-bottom: 12px;
  }

  .age-gate__title {
    font-size: 2.7rem;
  }

  .age-gate__intro,
  .age-form,
  .age-gate__responsibility {
    margin-top: 10px;
  }

  .age-form {
    grid-template-columns: minmax(220px, 1fr) 150px;
    gap: 8px 12px;
  }

  .date-field,
  .field-help,
  .field-error,
  .underage-link {
    grid-column: 1;
  }

  .age-form__enter {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .hero {
    grid-template-areas: "copy product";
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 580px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .js .site.scroll-motion .reveal--type,
  .js .site.site-ready .hero:not(.is-active) .hero__copy,
  .js .site.site-ready .hero:not(.is-active) .display--hero > span,
  .js .site.scroll-motion .print-reveal img,
  .js .site.scroll-motion .hedonist-section__dj img,
  .js .site.scroll-motion .can-section__hippo img {
    opacity: 1;
    visibility: visible;
    -webkit-clip-path: none;
    clip-path: none;
    transform: none;
  }

  .hero__product-mask,
  .js .site.scroll-motion .print-reveal__mask {
    display: none;
  }

  .brand-rail__track {
    animation: none;
    transform: none;
  }
}
