@font-face {
  font-family: 'High Voltage Rough';
  src: url('../fonts/HighVoltageRough.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/dinpro_light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/dinpro_lightitalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/dinpro.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/dinpro_italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/dinpro_medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/dinpro_mediumitalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/dinpro_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/dinpro_bolditalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/dinpro_black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN Pro';
  src: url('../fonts/dinpro_blackitalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --color-black: #1e1e1e;
  --color-gold: #c39c4d;
  --color-cream: #f5f0e8;
  --color-white: #ffffff;
  --color-red: #b41e24;
  --color-text: #2a2a2a;
  --color-component-black: #222222;
  --color-component-white: #eeece7;
  --color-disabled: #626262;
  --color-muted: #acacac;
  --header-height: 110px;
  --container-padding: 64px;
  --divider-height: 326px;
  --font-main: 'DIN Pro', system-ui, sans-serif;
  --font-display: 'High Voltage Rough', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: var(--color-black);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #c39c4d;
  outline-offset: 4px;
}

.page {
  min-height: 100vh;
}

.container {
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Hero section */
.hero-section {
  position: relative;
  width: 100%;
  overflow: visible;
  background-color: var(--color-black);
  background-image: url('../images/hero-back.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* Header */
.header {
  position: relative;
  z-index: 20;
  height: var(--header-height);
  width: 100%;
  padding: 15px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.header__logo img {
  height: 78px;
  width: auto;
}

.header__logo {
  animation: header-item-reveal 0.55s ease-out 0.82s both;
}

.header__nav {
  animation: header-item-reveal 0.55s ease-out 0.9s both;
}

.header__actions {
  animation: header-item-reveal 0.55s ease-out 0.98s both;
}

.header__burger {
  animation: header-item-reveal 0.55s ease-out 0.9s both;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 30;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-white);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header__menu a:hover {
  color: #c39c4d;
  border-bottom-color: #c39c4d;
}

.header__menu a:active {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 4px;
}

.header__social img,
.footer__social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.header__social a:hover img,
.footer__social a:hover img {
  filter: brightness(0) saturate(100%) invert(65%) sepia(42%) saturate(642%) hue-rotate(2deg) brightness(92%);
}

.header__social a:active img,
.footer__social a:active img {
  opacity: 0.72;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.header__lang-btn {
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.header__lang-btn:hover {
  color: #c39c4d;
}

.header__lang-btn--active {
  color: var(--color-white);
  font-weight: 500;
  border-bottom: 1px solid var(--color-gold);
}

.header__lang-sep {
  color: rgba(255, 255, 255, 0.6);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 999px;
  box-shadow: 1px 1px 0 1px #c39c4d;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.header__cta:hover {
  color: var(--color-white);
  background-color: #bd9363;
  border-color: #bd9363;
}

.header__cta:active {
  color: #b38c63;
  background-color: var(--color-component-white);
  border-color: var(--color-component-white);
}

/* Hero composition: title behind pirate */
.hero {
  position: relative;
  z-index: 1;
  padding-top: 1%;
}

.hero__composition {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 800;
  overflow: visible;
}

.hero__title {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  pointer-events: none;
  animation: hero-title-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

.hero__pirate {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: calc(var(--divider-height) * 0.08);
  width: 64.17%;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
  animation: hero-pirate-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

@keyframes hero-pirate-reveal {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translate(-50%, 24px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes hero-title-reveal {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.99);
  }

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

@keyframes header-item-reveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About section — its top divider overlaps the hero */
.about {
  --about-reveal-distance: 90px;
  position: relative;
  width: 100%;
  overflow: visible;
  background-color: #deded8;
  background-image: url('../images/white-bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--color-text);
}

.about__divider--top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  transform: translateY(-30%);
}

.about__divider--top img {
  width: 100%;
  height: auto;
  display: block;
}

.about__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(24px, 3vw, 48px) clamp(24px, 3.5vw, 56px);
  padding-top: 0;
  padding-bottom: 0;
  min-height: clamp(620px, 52vw, 780px);
}

.about__content {
  position: relative;
  z-index: 99;
  max-width: 44em;
  align-self: center;
  justify-self: start;
  margin-top: clamp(40px, 5vw, 80px);
}

.about__title {
  margin: 0 0 clamp(20px, 2vw, 32px);
  font-family: var(--font-display);
  font-size: clamp(34px, 4.3vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--color-red);
}

.about__text {
  margin: 0 0 clamp(24px, 2.5vw, 40px);
  font-size: clamp(14px, 1.15vw, 20px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
  max-width: 70%;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 60px;
  padding: 16px 24px 16px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
  background-color: var(--color-component-black);
  border: 2px solid transparent;
  border-right-color: #c39c4d;
  border-bottom-color: #c39c4d;
  border-radius: 999px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.about__btn:hover {
  background-color: #bd9363;
}

.about__btn:active {
  background-color: var(--color-component-black);
  border-color: #c39c4d;
}

.about__btn[aria-disabled='true'] {
  color: rgba(255, 255, 255, 0.6);
  background-color: var(--color-disabled);
  border-color: transparent #c39c4d #c39c4d transparent;
  pointer-events: none;
}

.about__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
}

.about__btn-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.about__media {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin-top: calc(var(--divider-height) * -0.55);
  margin-bottom: calc(var(--divider-height) * -0.45);
}

.js .about__content,
.js .about__media {
  opacity: 0;
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .about__content {
  transform: translate3d(calc(-1 * var(--about-reveal-distance)), 0, 0);
}

.js .about__media {
  transform: translate3d(var(--about-reveal-distance), 0, 0);
}

.js .about.is-visible .about__content,
.js .about.is-visible .about__media {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about__media img {
  width: 100%;
  max-width: 650px;
  height: auto;
}

/* Assortment — Spiced Gold; top divider overlaps about */
.assortment {
  --assortment-reveal-distance: 90px;
  position: relative;
  width: 100%;
  overflow: visible;
  background-color: #c2a65d;
  background-image: url('../images/pattern-dot2.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-top: 5%;
  padding-bottom: 0;
  color: var(--color-text);
}

.js .assortment__inner > .assortment__content,
.js .assortment__inner > .assortment__media {
  opacity: 0;
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .assortment__inner > :first-child {
  transform: translate3d(calc(-1 * var(--assortment-reveal-distance)), 0, 0);
}

.js .assortment__inner > :last-child {
  transform: translate3d(var(--assortment-reveal-distance), 0, 0);
}

.js .assortment.is-visible .assortment__inner > .assortment__content,
.js .assortment.is-visible .assortment__inner > .assortment__media {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.assortment__divider--top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  transform: translateY(-35%);
}

.assortment__divider--top img {
  width: 100%;
  height: auto;
  display: block;
}

.assortment__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  gap: clamp(16px, 2vw, 40px) clamp(20px, 3vw, 40px);
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.assortment__media {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  align-self: stretch;
  margin-left: calc(-1 * var(--container-padding));
}

.assortment__media img {
  width: calc(100% + var(--container-padding));
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.assortment__content {
  position: relative;
  z-index: 1;
  justify-self: start;
  align-self: center;
  padding-top: clamp(12px, 2vw, 32px);
  isolation: isolate;
}

.assortment__content::before {
  content: '';
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 48%;
  width: 145%;
  aspect-ratio: 714 / 542;
  height: auto;
  max-height: 108%;
  transform: translate(-50%, -50%);
  background: #caa865;
  border-radius: 50%;
  filter: blur(clamp(28px, 4vw, 56px));
  pointer-events: none;
}

.assortment__content > * {
  position: relative;
  z-index: 1;
}

.assortment__label {
  display: inline-block;
  margin: 0 0 clamp(12px, 1.5vw, 20px);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  padding-bottom: 0px;
  border-bottom: 2px solid rgba(30, 30, 30, 0.55);
}

.assortment__title {
  margin: 0 0 clamp(10px, 1.2vw, 16px);
  font-family: var(--font-display);
  font-size: clamp(34px, 4.3vw, 82px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--color-red);
}

.assortment__title-mark {
  position: relative;
  display: inline-block;
  isolation: isolate;
  vertical-align: baseline;
}

.assortment__title-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 110%;
  height: 1.20em;
  transform: translate(-50%, -55%) scaleX(1.3) scaleY(1);
  max-width: none;
  object-fit: fill;
  pointer-events: none;
}

.assortment__title-word {
  position: relative;
  z-index: 1;
}

.assortment__tagline {
  margin: 0 0 clamp(16px, 1.8vw, 24px);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-red);
}

.assortment__text {
  margin: 0 0 clamp(20px, 2vw, 28px);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
  max-width: 31em;
}

.assortment__features {
  margin: 0 0 clamp(24px, 2.5vw, 36px);
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assortment__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

.assortment__star {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  object-fit: contain;
}

.assortment__volumes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.assortment__volume {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-width: 5.5em;
  min-height: 2.6em;
  padding: 0.55em 1em;
  font-size: clamp(15px, 1.15vw, 18px);
  isolation: isolate;
}

.assortment__volume-frame {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 112%;
  height: 118%;
  transform: translate(-50%, -50%);
  max-width: none;
  object-fit: fill;
  pointer-events: none;
}

.assortment__volume-icon {
  position: relative;
  z-index: 1;
  width: auto;
  height: 1.35em;
  flex-shrink: 0;
  object-fit: contain;
}

.assortment__volume-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--color-black);
  white-space: nowrap;
}

/* Assortment — Spiced Black */
.assortment--black {
  background-color: var(--color-black);
  background-image: url('../images/hero-back.jpg');
  background-position: center;
  color: var(--color-white);
}

.assortment__inner--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: clamp(640px, 54vw, 820px);
}

.assortment__content--black {
  padding-left: clamp(20px, 6vw, 96px);
}

.assortment__content--black::before {
  display: none;
}

.assortment__content--black .assortment__label,
.assortment__content--black .assortment__text,
.assortment__content--black .assortment__features li {
  color: var(--color-white);
}

.assortment__content--black .assortment__label {
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

.assortment__content--black .assortment__title-word {
  color: var(--color-red);
}

.assortment__media--black {
  justify-content: center;
  align-items: flex-end;
  margin-right: calc(-1 * var(--container-padding));
  margin-left: 0;
}

.assortment__media--black img {
  width: min(100%, 756px);
  max-width: 756px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

/* Assortment — Espresso */
.assortment--espresso {
  background-color: #deded8;
  background-image: url('../images/white-bg.png');
  background-position: center;
  color: var(--color-text);
}

.assortment__inner--espresso {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: clamp(640px, 54vw, 820px);
}

.assortment__content--espresso::before {
  display: none;
}

.assortment__title-frame--espresso {
  width: 100%;
  height: 1.36em;
  transform: translate(-50%, -55%) scaleX(1.2) scaleY(1.1);
}

.assortment__title-word--espresso {
  color: var(--color-white);
}

.assortment__media--espresso {
  align-items: flex-end;
  margin-top: calc(var(--divider-height) * -0.1);
  margin-bottom: calc(var(--divider-height) * -0.08);
}

.assortment__media--espresso img {
  width: calc(100% + var(--container-padding));
  max-width: 714px;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
}

.assortment__volume--espresso .assortment__volume-frame {
  width: 118%;
  height: 126%;
}

.assortment__volume--espresso .assortment__volume-text {
  color: var(--color-white);
}

/* Assortment — Original Rum */
.assortment--original {
  background-color: #c2a65d;
  background-image: url('../images/pattern-dot2.png');
  background-position: center top;
  color: var(--color-text);
}

.assortment__inner--original {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: clamp(640px, 54vw, 820px);
}

.assortment__content--original {
  padding-left: clamp(20px, 5vw, 80px);
}

.assortment--original .assortment__title {
  text-transform: uppercase;
}

.assortment__title-frame--original {
  width: 108%;
  height: 1.34em;
  transform: translate(-50%, -52%) scaleX(1.12);
}

.assortment__media--original {
  justify-content: center;
  align-items: flex-end;
  margin-top: calc(var(--divider-height) * -0.04);
  margin-right: calc(-1 * var(--container-padding));
  margin-left: 0;
}

.assortment__media--original img {
  width: min(100%, 606px);
  max-width: 606px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

/* Cocktail carousel */
.mix {
  position: relative;
  width: 100%;
  overflow: visible;
  background-color: #deded8;
  background-image: url('../images/white-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-text);
}

.mix__divider {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  transform: translateY(-35%);
}

.mix__divider img {
  width: 100%;
  height: auto;
}

.mix__inner {
  position: relative;
  z-index: 3;
  padding-top: clamp(150px, 15vw, 230px);
  padding-bottom: clamp(72px, 8vw, 120px);
}

.mix__header {
  margin-bottom: clamp(28px, 3vw, 48px);
  text-align: center;
}

.mix__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-red);
}

.mix__subtitle {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
}

.mix__carousel {
  display: block;
}

.mix__viewport {
  min-width: 0;
  overflow: hidden;
  margin-block: -40px;
  padding-block: 40px;
  outline: none;
  touch-action: pan-y;
}

.mix__viewport:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 5px;
}

.mix__track {
  --mix-gap: clamp(14px, 1.8vw, 28px);
  display: flex;
  gap: var(--mix-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.mix-card {
  flex: 0 0 calc((100% - (var(--mix-gap) * 2)) / 3);
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  min-width: 0;
  min-height: clamp(330px, 28vw, 420px);
  padding: clamp(20px, 2.2vw, 34px);
  background: rgba(247, 246, 241, 0.96);
  border-radius: 28px;
  box-shadow: 0 14px 32px rgba(30, 30, 30, 0.12);
}

.mix-card__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.mix-card__media img {
  width: auto;
  max-width: 100%;
  height: min(100%, 300px);
  object-fit: contain;
  object-position: center bottom;
}

.mix-card__content {
  min-width: 0;
}

.mix-card__title {
  margin: 0 0 clamp(14px, 1.5vw, 22px);
  font-family: var(--font-display);
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1;
  color: var(--color-red);
}

.mix-card__ingredients {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 clamp(18px, 2vw, 28px);
  padding: 0;
  list-style: none;
}

.mix-card__ingredients li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  line-height: 1.3;
}

.mix-card__ingredients li::before {
  content: '✦';
  position: absolute;
  top: 0;
  left: 0;
  color: #b38c63;
}

.mix-card__description {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-red);
}

.mix-card:nth-child(1) .mix-card__description {
  color: #b38c63;
}

.mix-card:nth-child(2) .mix-card__description,
.mix-card:nth-child(4) .mix-card__description {
  color: var(--color-red);
}

.mix-card:nth-child(3) .mix-card__description {
  color: var(--color-black);
}

.mix__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 14px;
  margin-top: clamp(22px, 2.5vw, 36px);
}

.mix__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: transparent;
  border: 2px solid rgba(30, 30, 30, 0.55);
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mix__dot:hover {
  transform: scale(1.15);
}

.mix__dot--active {
  background: var(--color-black);
}

@media (prefers-reduced-motion: reduce) {
  .hero__pirate,
  .hero__title,
  .header__logo,
  .header__nav,
  .header__actions,
  .header__burger {
    animation: none;
  }

  .js .about__content,
  .js .about__media,
  .js .assortment__inner > .assortment__content,
  .js .assortment__inner > .assortment__media {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mix__track {
    transition: none;
  }
}

/* Purchase section */
.purchase {
  position: relative;
  width: 100%;
  overflow: visible;
  background-color: var(--color-black);
  background-image: url('../images/hero-back.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-white);
}

.purchase__divider {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.purchase__divider img {
  width: 100%;
  height: auto;
}

.purchase__divider--top {
  top: 0;
  z-index: 5;
  transform: translateY(-35%);
}

.purchase__divider--bottom {
  bottom: 0;
  z-index: 3;
  transform: translateY(15%);
}

.purchase__inner {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  align-items: center;
  min-height: clamp(680px, 54vw, 820px);
  padding-top: 20px;
  padding-bottom: clamp(110px, 10vw, 160px);
}

.purchase__content {
  max-width: 720px;
  padding-left: clamp(30px, 7vw, 112px);
}

.purchase__eyebrow {
  display: inline-block;
  margin: 0 0 clamp(24px, 2.5vw, 38px);
  padding-bottom: 4px;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.2vw, 20px);
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.purchase__title {
  margin: 0 0 clamp(20px, 2vw, 30px);
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 400;
  line-height: 1;
  color: var(--color-red);
}

.purchase__store {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(30px, 3.5vw, 54px);
  font-size: clamp(15px, 1.25vw, 20px);
}

.purchase__store-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.purchase__store-brand img {
  width: 1.2em;
  height: 1.2em;
}

.purchase__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 22px);
  max-width: 650px;
  margin: 0 0 clamp(28px, 3vw, 46px);
  padding: 0;
  list-style: none;
}

.purchase__benefits li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 120px;
  padding: 16px 10px;
  font-size: clamp(12px, 1vw, 15px);
  text-align: center;
  background: #222222;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.purchase__benefits img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.purchase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  padding: 16px 24px 16px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-component-black);
  background: var(--color-component-white);
  border: 2px solid transparent;
  border-right-color: #c39c4d;
  border-bottom-color: #c39c4d;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.purchase__button:hover {
  color: var(--color-white);
  background: #bd9363;
}

.purchase__button:active {
  color: var(--color-component-black);
  background: var(--color-component-white);
  border-color: #c39c4d;
}

.purchase__button img,
.contact-form__submit img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
  transition: filter 0.2s ease;
}

.purchase__button:hover img,
.contact-form__submit:hover img {
  filter: brightness(0) invert(1);
}

.purchase__button:active img,
.contact-form__submit:active img {
  filter: none;
}

.purchase__media {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  margin-top: calc(var(--divider-height) * -0.12);
  margin-bottom: calc(var(--divider-height) * -0.5);
  margin-right: 5%;
}

.purchase__media img {
  width: min(100%, 540px);
  max-height: 1120px;
  object-fit: contain;
}

/* Contact section */
.contact {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-black);
  background-image: url('../images/hero-back.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-white);
}

.contact__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(380px, 0.48fr);
  align-items: start;
  gap: clamp(40px, 7vw, 110px);
  min-height: clamp(650px, 52vw, 790px);
  padding-top: clamp(100px, 10vw, 10px);
  padding-bottom: clamp(160px, 18vw, 150px);
}

.contact__content {
  max-width: 610px;
  padding-left: clamp(30px, 7vw, 112px);
}

.contact__title {
  margin: 0 0 clamp(28px, 3vw, 44px);
  font-family: var(--font-display);
  font-size: clamp(50px, 5.3vw, 84px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--color-red);
}

.contact__text {
  max-width: 38em;
  margin: 0;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.5;
}

.contact-form-shell {
  position: relative;
  width: 100%;
  max-width: 570px;
}

.contact-form {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 570px;
  padding: clamp(28px, 3.5vw, 52px);
  background: #222222;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.contact-form__title {
  margin: 0 0 clamp(18px, 2vw, 30px);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 400;
}

.contact-form__field {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  min-height: 54px;
  padding: 16px 8px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.contact-form__field textarea {
  min-height: 88px;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #ffffff;
  opacity: 1;
  transition: color 0.2s ease;
}

.contact-form__field:hover input,
.contact-form__field:hover textarea,
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-bottom-color: #c39c4d;
}

.contact-form__field input:focus::placeholder,
.contact-form__field textarea:focus::placeholder {
  color: var(--color-muted);
}

.contact-form__field input:user-invalid,
.contact-form__field textarea:user-invalid {
  border-bottom-color: #ff0000;
}

.contact-form__consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.contact-form__consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-content: center;
}

.contact-form__consent input::before {
  content: '';
  width: 10px;
  height: 6px;
  margin-top: -2px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.15s ease;
}

.contact-form__consent input:checked {
  background: #c39c4d;
  border-color: #c39c4d;
}

.contact-form__consent input:checked::before {
  transform: rotate(-45deg) scale(1);
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  padding: 16px 24px 16px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-component-black);
  background: var(--color-component-white);
  border: 2px solid transparent;
  border-right-color: #c39c4d;
  border-bottom-color: #c39c4d;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.contact-form__submit:hover {
  color: var(--color-white);
  background: #bd9363;
}

.contact-form__submit:active {
  color: var(--color-component-black);
  background: var(--color-component-white);
  border-color: #c39c4d;
}

.contact-form__submit:disabled {
  color: rgba(255, 255, 255, 0.6);
  background: var(--color-disabled);
  border-color: transparent #c39c4d #c39c4d transparent;
  cursor: not-allowed;
}

.contact-form__submit:disabled img {
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.contact-form__status {
  min-height: 1.3em;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--color-gold);
  text-align: center;
}

.contact__tentacles {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  transform: translateY(15%);
}

.js .contact__tentacles {
  opacity: 0;
  transform: translateY(42%);
}

.js .contact.is-visible .contact__tentacles {
  animation: contact-tentacles-loop 3.2s ease-in-out 0.175s infinite both;
}

@keyframes contact-tentacles-loop {
  0%,
  10% {
    opacity: 0;
    transform: translateY(42%);
  }

  30%,
  58% {
    opacity: 1;
    transform: translateY(15%);
  }

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

@media (prefers-reduced-motion: reduce) {
  .js .contact__tentacles,
  .js .contact.is-visible .contact__tentacles {
    opacity: 1;
    transform: translateY(15%);
    animation: none;
  }
}

.contact__tentacles img {
  width: 100%;
  height: auto;
}

.contact__warning {
  position: relative;
  z-index: 5;
  margin: 0;
  padding: 8px var(--container-padding);
  font-family: var(--font-main);
  font-size: clamp(20px, 2.3vw, 36px);
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: #565656;
  background: #f3f1ec;
}

/* Privacy policy page */
.policy {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #222222;
  background-image: url('../images/hero-back.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: var(--color-white);
}

.policy__inner {
  position: relative;
  z-index: 3;
  padding-top: 24px;
  padding-bottom: clamp(180px, 18vw, 260px);
}

.policy__card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1311px;
  margin: 0 auto;
  padding: 56px;
  background: #222222;
  border-radius: 24px;
}

.policy__title {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-red);
}

.policy__content {
  color: #eeece7;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.policy__content > *:first-child {
  margin-top: 0;
}

.policy__content > *:last-child {
  margin-bottom: 0;
}

.policy__content p {
  margin: 0 0 20px;
}

.policy__content h2,
.policy__content h3,
.policy__content h4 {
  margin: 28px 0 12px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-white);
}

.policy__content h2 {
  font-size: clamp(24px, 2vw, 28px);
}

.policy__content h3 {
  font-size: clamp(20px, 1.6vw, 22px);
}

.policy__content ul,
.policy__content ol {
  margin: 0 0 20px;
  padding-left: 1.25em;
}

.policy__content li {
  margin-bottom: 8px;
}

.policy__content a {
  color: var(--color-gold);
  text-decoration: underline;
}

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

.policy__tentacles {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  transform: translateY(15%);
}

.js .policy__tentacles {
  opacity: 0;
  transform: translateY(42%);
}

.js .policy.is-visible .policy__tentacles {
  animation: contact-tentacles-loop 3.2s ease-in-out 0.175s infinite both;
}

@media (prefers-reduced-motion: reduce) {
  .js .policy__tentacles,
  .js .policy.is-visible .policy__tentacles {
    opacity: 1;
    transform: translateY(15%);
    animation: none;
  }
}

.policy__tentacles img {
  display: block;
  width: 100%;
  height: auto;
}

.policy__warning {
  position: relative;
  z-index: 5;
  margin: 0;
  padding: 8px var(--container-padding);
  font-family: var(--font-main);
  font-size: clamp(20px, 2.3vw, 36px);
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: #565656;
  background: #f3f1ec;
}

@media (max-width: 767px) {
  .policy__inner {
    padding-top: 16px;
    padding-bottom: 0;
  }

  .policy__card {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .policy__title {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .policy__content {
    font-size: 14px;
  }

  .policy__tentacles {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    height: 168px;
    margin-top: -44px;
    overflow: hidden;
    transform: none;
  }

  .js .policy__tentacles,
  .js .policy.is-visible .policy__tentacles {
    opacity: 1;
    transform: translateY(30%);
    animation: none;
  }

  .policy__tentacles img {
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 178%;
    max-width: none;
    height: auto;
  }

  .policy__warning {
    min-height: 72px;
    padding: 8px 16px;
    font-size: clamp(16px, 5vw, 22px);
    line-height: 1.15;
  }
}

/* Footer */
.footer {
  width: 100%;
  color: rgba(255, 255, 255, 0.78);
  background: #191919;
}

.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(300px, 1.35fr) minmax(280px, 1fr) minmax(100px, auto);
  grid-template-areas:
    'logo company nav social'
    'copyright . . privacy';
  align-items: start;
  gap: clamp(28px, 3vw, 42px) clamp(34px, 4vw, 64px);
  padding-top: clamp(26px, 2.5vw, 38px);
  padding-bottom: clamp(22px, 2.2vw, 34px);
}

.footer__inner::after {
  content: '';
  position: absolute;
  right: var(--container-padding);
  bottom: clamp(54px, 4.8vw, 70px);
  left: var(--container-padding);
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.footer__logo {
  grid-area: logo;
  display: inline-flex;
  width: fit-content;
}

.footer__logo img {
  width: clamp(190px, 17.6vw, 253px);
  height: auto;
}

.footer__company {
  grid-area: company;
  margin: 0;
  font-size: clamp(10px, 0.82vw, 12px);
  font-style: normal;
  line-height: 1.35;
}

.footer__nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 20px clamp(28px, 3vw, 44px);
  font-size: clamp(11px, 0.9vw, 14px);
}

.footer__nav a,
.footer__privacy a {
  display: inline-block;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  border-bottom: 1px solid transparent;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer__nav a:hover,
.footer__privacy a:hover {
  color: #c39c4d;
  border-bottom-color: #c39c4d;
}

.footer__social {
  grid-area: social;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.footer__social a,
.footer__social img {
  width: 24px;
  height: 24px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.footer__copyright {
  grid-area: copyright;
  align-self: end;
  margin: 0;
  font-size: clamp(9px, 0.72vw, 11px);
}

.footer__privacy {
  grid-area: privacy;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px 16px;
  align-self: end;
  justify-self: end;
  font-size: clamp(9px, 0.72vw, 11px);
  white-space: nowrap;
}

.header__lang--mobile,
.header__nav-logo,
.header__social--mobile,
.header__nav-tentacles {
  display: none;
}

/* Responsive */
@media (max-width: 1199px) {
  .header__burger {
    position: relative;
    z-index: 40;
    display: flex;
    animation: none;
  }

  .header__burger span {
    transition: transform 0.15s ease, opacity 0.15s ease;
  }

  .header__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    inset: 0;
    z-index: 35;
    width: 100%;
    height: 100%;
    padding: 56px 24px 0;
    overflow: hidden;
    background-color: #1a1a1a;
    background-image: url('../images/hero-back.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    animation: none;
    transition: opacity 0.12s ease, visibility 0.12s ease;
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__nav-logo {
    display: block;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: min(220px, 58vw);
    margin: 8px auto 0;
  }

  .header__nav-logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .header__menu {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 48px 0 0;
    padding: 0;
  }

  .header__menu a {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
  }

  .header__lang--mobile {
    display: flex;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    justify-content: center;
    margin-top: 36px;
    font-size: 16px;
  }

  .header__social--desktop,
  .header__actions .header__social,
  .header__actions .header__lang {
    display: none !important;
  }

  .header__social--mobile {
    display: flex;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 40px;
  }

  .header__social--mobile a,
  .header__social--mobile img {
    width: 28px;
    height: 28px;
  }

  .header__nav-tentacles {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 210px;
    pointer-events: none;
  }

  .header__nav-tentacle {
    position: absolute;
    display: block;
    height: auto;
    max-width: none;
    mix-blend-mode: lighten;
  }

  .header__nav-tentacle--1 {
    left: 0%;
    bottom: -4%;
    width: 30%;
  }

  .header__nav-tentacle--2 {
    left: 50%;
    bottom: 8%;
    width: 64%;
    transform: translateX(-50%);
  }

  .header__nav-tentacle--3 {
    right: -2%;
    bottom: -4%;
    width: 34%;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  :root {
    --container-padding: 16px;
  }

  .header__inner {
    gap: 16px;
  }

  .header__lang--desktop {
    display: none;
  }

  .header__lang--mobile {
    display: flex;
  }

  .header__cta {
    padding: 8px 16px;
    font-size: 16px;
  }

  .header__nav {
    padding-top: 72px;
  }

  .header__nav-logo {
    width: min(200px, 54vw);
  }

  .header__menu {
    gap: 24px;
    margin-top: 40px;
  }

  .header__lang--mobile {
    margin-top: 32px;
  }

  .header__social--mobile {
    margin-top: 36px;
    gap: 24px;
  }

  .header__nav-tentacles {
    height: 190px;
  }

  .header__nav-tentacle--1 {
    left: 0%;
    bottom: -4%;
    width: 30%;
  }

  .header__nav-tentacle--2 {
    bottom: 0%;
    width: 42%;
  }

  .header__nav-tentacle--3 {
    right: -1%;
    bottom: 20%;
    width: 25%;
  }

  .hero__composition {
    aspect-ratio: 1440 / 1100;
  }

  .hero__title {
    top: 6%;
    width: 94%;
  }

  .hero__pirate {
    width: 78%;
    bottom: 4%;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 12px;
    min-height: 0;
  }

  .about {
    --about-reveal-distance: 42px;
  }

  .assortment {
    --assortment-reveal-distance: 42px;
  }

  .about__content {
    max-width: none;
    order: 1;
  }

  .about__media {
    order: 2;
    margin-top: calc(var(--divider-height) * -0.12);
    margin-bottom: calc(var(--divider-height) * -0.28);
  }

  .about__title {
    font-size: clamp(28px, 7.5vw, 36px);
    margin-bottom: 16px;
  }

  .about__text {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .about__btn {
    min-height: 60px;
    font-size: 18px;
  }

  .about__media img {
    max-width: 420px;
  }

  .assortment__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding-bottom: 0;
    align-items: stretch;
  }

  .assortment__media {
    order: 1;
    margin-left: calc(-1 * var(--container-padding));
    margin-top: calc(var(--divider-height) * -0.2);
    margin-bottom: calc(var(--divider-height) * -0.35);
    min-height: clamp(280px, 70vw, 420px);
  }

  .assortment__media img {
    width: calc(100% + var(--container-padding));
    max-width: none;
    height: 100%;
    margin-inline: 0;
    object-fit: contain;
    object-position: left center;
  }

  .assortment__content {
    order: 2;
    max-width: none;
    align-self: start;
  }

  .assortment__title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .assortment__text {
    max-width: none;
  }

  .assortment__inner--reverse {
    min-height: 0;
  }

  .assortment__content--black {
    order: 1;
    padding-left: 0;
    padding-top: clamp(72px, 18vw, 120px);
  }

  .assortment__media--black {
    order: 2;
    min-height: 0;
    margin: 24px calc(-1 * var(--container-padding)) 0;
  }

  .assortment__media--black img {
    width: min(100%, 520px);
    height: auto;
    margin-inline: auto;
    object-position: center bottom;
  }

  .assortment__inner--espresso {
    min-height: 0;
  }

  .assortment__media--espresso {
    margin-top: calc(var(--divider-height) * -0.08);
    margin-bottom: 0;
    min-height: clamp(340px, 90vw, 520px);
  }

  .assortment__media--espresso img {
    width: calc(100% + var(--container-padding));
    height: 100%;
    object-position: left bottom;
  }

  .assortment__content--espresso {
    padding-top: 20px;
    padding-bottom: 56px;
  }

  .assortment__inner--original {
    min-height: 0;
  }

  .assortment__media--original {
    margin: calc(var(--divider-height) * -0.06) calc(-1 * var(--container-padding)) 0;
    min-height: clamp(340px, 92vw, 540px);
  }

  .assortment__media--original img {
    width: min(100%, 480px);
    height: 100%;
    margin-inline: auto;
    object-position: center bottom;
  }

  .assortment__content--original {
    padding: 24px 0 64px;
  }

  .mix__inner {
    padding-top: 120px;
  }

  .mix-card {
    flex-basis: 100%;
    grid-template-columns: minmax(90px, 0.4fr) minmax(0, 0.6fr);
    min-height: 360px;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .mix-card__media img {
    height: min(100%, 280px);
  }

  .purchase__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 130px;
    padding-bottom: 180px;
  }

  .purchase__content {
    padding-left: 0;
  }

  .purchase__benefits {
    gap: 8px;
  }

  .purchase__benefits li {
    min-height: 104px;
    padding: 12px 6px;
  }

  .purchase__media {
    min-height: 520px;
    margin: 24px 0 -120px;
  }

  .purchase__media img {
    width: min(90%, 360px);
    max-height: 600px;
  }

  .purchase__divider--bottom {
    transform: translateY(42%);
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
    padding-top: 190px;
    padding-bottom: 260px;
  }

  .contact__content {
    padding-left: 0;
  }

  .contact-form-shell,
  .contact-form {
    max-width: none;
  }

  .contact__tentacles {
    bottom: 0;
  }

  .contact__warning {
    font-size: clamp(16px, 5vw, 22px);
  }

  .footer__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'logo social'
      'company company'
      'nav nav'
      'copyright privacy';
    gap: 28px 20px;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
  }

  .footer__privacy {
    white-space: normal;
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .about__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: clamp(600px, 70vw, 740px);
  }

  .about__media {
    margin-top: calc(var(--divider-height) * -0.45);
    margin-bottom: calc(var(--divider-height) * -0.38);
  }

  .assortment__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 0;
    align-items: stretch;
  }

  .assortment__media {
    margin-top: calc(var(--divider-height) * -0.18);
    margin-bottom: calc(var(--divider-height) * -0.62);
  }

  .assortment__title {
    font-size: clamp(40px, 5.5vw, 64px);
  }

  .assortment__inner--reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: clamp(600px, 68vw, 760px);
  }

  .assortment__content--black {
    order: initial;
    padding-top: clamp(48px, 7vw, 84px);
    padding-left: clamp(16px, 3vw, 40px);
  }

  .assortment__media--black {
    order: initial;
    min-height: 0;
    margin-top: clamp(56px, 8vw, 96px);
    margin-right: calc(-1 * var(--container-padding));
    margin-bottom: 0;
    margin-left: 0;
  }

  .assortment__media--black img {
    width: min(100%, 620px);
    height: auto;
    margin-inline: 0;
    object-position: center bottom;
  }

  .assortment__inner--espresso {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: clamp(600px, 68vw, 760px);
  }

  .assortment__media--espresso {
    margin-top: calc(var(--divider-height) * -0.08);
    margin-bottom: calc(var(--divider-height) * -0.06);
  }

  .assortment__media--espresso img {
    width: calc(100% + var(--container-padding));
    height: auto;
    margin-inline: 0;
    object-position: left bottom;
  }

  .assortment__inner--original {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: clamp(600px, 68vw, 760px);
  }

  .assortment__content--original {
    padding-left: clamp(16px, 3vw, 40px);
  }

  .assortment__media--original {
    margin-top: calc(var(--divider-height) * -0.04);
    margin-right: calc(-1 * var(--container-padding));
    margin-bottom: 0;
    margin-left: 0;
  }

  .assortment__media--original img {
    width: min(100%, 540px);
    height: auto;
    margin-inline: 0;
    object-position: center bottom;
  }

  .mix-card {
    flex-basis: calc((100% - var(--mix-gap)) / 2);
  }

  .purchase__inner {
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
    min-height: 650px;
  }

  .purchase__content,
  .contact__content {
    padding-left: clamp(12px, 3vw, 36px);
  }

  .purchase__media img {
    width: min(100%, 430px);
  }

  .contact__inner {
    grid-template-columns: minmax(0, 0.48fr) minmax(330px, 0.52fr);
    gap: clamp(28px, 4vw, 52px);
    padding-top: clamp(190px, 22vw, 260px);
  }

  .footer__inner {
    grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
    grid-template-areas:
      'logo company'
      'nav social'
      'copyright privacy';
    gap: 26px 44px;
  }
}

/* Mobile layout — Figma 375 px */
@media (max-width: 767px) {
  .hero-section {
    height: max(812px, calc(234px + 135.2vw));
    overflow: hidden;
  }

  .header {
    height: 84px;
    padding: 0;
  }

  .header__inner {
    gap: 0;
    height: 84px;
  }

  .header__logo {
    order: 1;
    width: 78px;
    height: 64px;
  }

  .header__logo img {
    width: 78px;
    height: 64px;
    object-fit: contain;
  }

  .header__actions {
    order: 2;
    width: auto;
    max-width: none;
    margin-left: auto;
    gap: 0;
  }

  .header__actions .header__social,
  .header__actions .header__lang {
    display: none !important;
  }

  .header__cta {
    width: 136px;
    min-height: 39px;
    padding: 8px 20px;
  }

  .header__burger {
    order: 3;
    display: flex;
    width: 24px;
    height: 24px;
    margin-left: 16px;
  }

  .hero {
    position: static;
    padding-top: 0;
  }

  .hero__composition {
    position: absolute;
    top: 44px;
    right: 16px;
    left: 16px;
    width: auto;
    height: calc(100% - 84px);
    aspect-ratio: auto;
  }

  .hero__title {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
  }

  .hero__pirate {
    top: 150px;
    bottom: auto;
    width: 100vw;
    height: auto;
    max-width: none;
    object-fit: contain;
  }

  .about {
    height: 890px;
    min-height: 890px;
  }

  .about__divider--top {
    top: -125px;
    height: 180px;
    overflow: hidden;
    transform: none;
  }

  .about__divider--top img {
    width: 1018px;
    max-width: none;
    height: 230px;
    transform: translateX(-351px);
  }

  .about__inner {
    position: relative;
    display: block;
    height: 890px;
    padding: 0;
  }

  .about__content {
    position: absolute;
    top: 87px;
    right: 16px;
    left: 16px;
    width: auto;
    margin: 0;
  }

  .about__title {
    margin-bottom: 16px;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0;
  }

  .about__text {
    max-width: none;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.2;
  }

  .about__media {
    position: absolute;
    top: 496px;
    right: 16px;
    left: 16px;
    width: auto;
    height: auto;
    aspect-ratio: 343 / 379;
    margin: 0;
  }

  .about__media img {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  }

  .assortment,
  .assortment--black,
  .assortment--espresso,
  .assortment--original {
    padding: 0;
  }

  .assortment {
    height: 811px;
  }

  .assortment--black {
    height: 852px;
  }

  .assortment--espresso {
    height: 890px;
  }

  .assortment--original {
    height: 862px;
  }

  .assortment__inner,
  .assortment__inner--reverse,
  .assortment__inner--espresso,
  .assortment__inner--original {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .assortment__content,
  .assortment__content--black,
  .assortment__content--espresso,
  .assortment__content--original {
    position: absolute;
    top: 112px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
    padding: 0;
  }

  .assortment__content--black {
    top: 105px;
  }

  .assortment__content--espresso {
    top: 123px;
  }

  .assortment__content--original {
    top: 115px;
  }

  .assortment__content::before {
    display: none;
  }

  .assortment__label {
    height: 27px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 19px;
  }

  .assortment__content--black .assortment__label,
  .assortment__content--espresso .assortment__label,
  .assortment__content--original .assortment__label {
    margin-bottom: 24px;
  }

  .assortment__title {
    margin-bottom: 8px;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0;
  }

  .assortment__title-frame,
  .assortment__content--black .assortment__title-frame {
    display: block;
    width: 140%;
    height: 1.35em;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -54%);
  }

  .assortment__title-frame--espresso {
    width: 125%;
    height: 1.35em;
    transform: translate(-50%, -55%);
  }

  .assortment__title-frame--original {
    width: 118%;
    height: 1.35em;
    transform: translate(-50%, -53%);
  }

  .assortment > .assortment__inner > .assortment__content:not(.assortment__content--black):not(.assortment__content--espresso):not(.assortment__content--original) .assortment__tagline {
    display: none;
  }

  .assortment__tagline {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0;
  }

  .assortment__text {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
  }

  .assortment__features {
    gap: 12px;
    margin-bottom: 32px;
  }

  .assortment__features li {
    gap: 8px;
    min-height: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
  }

  .assortment__star {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }

  .assortment__volumes {
    gap: 8px;
    height: 20px;
  }

  .assortment__volume {
    position: relative;
    width: 80px;
    height: 20px;
    gap: 2px;
    justify-content: flex-start;
    min-width: 80px;
    min-height: 20px;
    padding: 0 8px;
  }

  .assortment__volume-frame {
    display: block;
    width: 91px;
    height: 48px;
    opacity: 1;
    visibility: visible;
  }

  .assortment__volume--espresso .assortment__volume-frame {
    width: 125px;
    height: 66px;
  }

  .assortment__volume-icon {
    position: static;
    width: 20px;
    height: 20px;
    transform: none;
  }

  .assortment__volume-text {
    position: static;
    font-size: 14px;
    line-height: 20px;
    transform: none;
  }

  .assortment__media,
  .assortment__media--black,
  .assortment__media--espresso,
  .assortment__media--original {
    position: absolute;
    top: 464px;
    right: 16px;
    left: 0;
    width: calc(100% - 16px);
    height: auto;
    aspect-ratio: 359 / 300;
    min-height: 0;
    margin: 0;
  }

  .assortment__media--black {
    top: 484px;
    right: 16px;
    left: 17px;
    width: auto;
    height: auto;
    aspect-ratio: 342 / 362;
    z-index: 6;
  }

  .assortment__media--espresso {
    top: 498px;
    right: 16px;
    left: 0;
    width: calc(100% - 16px);
    height: auto;
    aspect-ratio: 359 / 335;
  }

  .assortment__media--original {
    top: 490px;
    right: 15px;
    left: 16px;
    width: auto;
    height: auto;
    aspect-ratio: 344 / 399;
  }

  .assortment__media img,
  .assortment__media--black img,
  .assortment__media--espresso img,
  .assortment__media--original img {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    object-fit: contain;
    object-position: center bottom;
  }

  .assortment__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .assortment__media picture img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin-inline: auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .assortment__divider--top {
    top: -84px;
    height: 180px;
    overflow: hidden;
    transform: none;
  }

  .assortment__divider--top img {
    width: 860px;
    max-width: none;
    height: 195px;
    transform: translateX(-142px);
  }

  .assortment--espresso .assortment__divider--top,
  .assortment--original .assortment__divider--top {
    top: -66px;
  }

  .assortment--espresso .assortment__divider--top img,
  .assortment--original .assortment__divider--top img {
    transform: translateX(-240px);
  }

  .mix {
    height: 662px;
    padding: 0;
  }

  .mix__divider {
    top: -59px;
    height: 180px;
    overflow: hidden;
    transform: none;
  }

  .mix__divider img {
    width: 889px;
    max-width: none;
    height: 202px;
    transform: translateX(-273px);
  }

  .mix__inner {
    padding-top: 109px;
    padding-bottom: 0;
  }

  .mix__header {
    margin-bottom: 16px;
    text-align: center;
  }

  .mix__title {
    width: 240px;
    margin: 0 auto 8px;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0;
  }

  .mix__subtitle {
    width: 343px;
    margin-inline: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
  }

  .mix__viewport {
    margin-block: -40px;
    padding-block: 40px;
  }

  .mix__track {
    --mix-gap: 16px;
  }

  .mix-card {
    flex-basis: 100%;
    grid-template-columns: minmax(0, 131fr) minmax(0, 179fr);
    gap: 8px;
    align-items: start;
    width: 100%;
    min-height: 244px;
    height: 244px;
    padding: 12px;
    border-radius: 20px;
  }

  .mix-card__media {
    width: 100%;
    height: 220px;
  }

  .mix-card__media img {
    width: 100%;
    max-width: 100%;
    height: 220px;
  }

  .mix-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .mix-card__title {
    margin: 0 0 -8px;
    font-size: 24px;
  }

  .mix-card__ingredients {
    gap: 6px;
    margin: 0;
  }

  .mix-card__ingredients li {
    min-height: 17px;
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.4;
  }

  .mix-card__ingredients li::before {
    font-size: 16px;
    line-height: 17px;
  }

  .mix-card__description {
    font-size: 16px;
    line-height: 1;
  }

  .mix__dots {
    margin-top: 20px;
  }

  .purchase {
    height: 948px;
    padding: 0;
  }

  .purchase__inner {
    position: relative;
    display: block;
    height: 948px;
    padding: 0;
  }

  .purchase__content {
    position: absolute;
    top: 119px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
    padding: 0;
  }

  .purchase__eyebrow {
    height: 27px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 19px;
  }

  .purchase__title {
    margin-bottom: 16px;
    font-size: 48px;
    line-height: 1;
  }

  .purchase__store {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 22px;
  }

  .purchase__benefits {
    grid-template-columns: 168px 167px;
    gap: 12px 8px;
    width: 343px;
    margin-bottom: 20px;
  }

  .purchase__benefits li {
    flex-direction: row;
    gap: 8px;
    min-height: 56px;
    padding: 16px;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 20px;
    box-shadow: none;
  }

  .purchase__button {
    width: 240px;
  }

  .purchase__media {
    position: absolute;
    top: auto;
    right: 16px;
    bottom: 30px;
    left: 16px;
    width: auto;
    min-height: 0;
    height: auto;
    aspect-ratio: 343 / 459;
    margin: 0;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .purchase__media img {
    width: 199px;
    height: auto;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
  }

  .purchase__divider--top {
    top: -93px;
    height: 180px;
    overflow: hidden;
    transform: none;
  }

  .purchase__divider--top img {
    width: 860px;
    max-width: none;
    height: 195px;
    transform: translateX(-240px);
  }

  .purchase__divider--bottom {
    display: block;
    bottom: -11px;
    height: 193px;
    overflow: hidden;
    transform: none;
  }

  .purchase__divider--bottom img {
    position: absolute;
    right: 0;
    bottom: 0;
    left: auto;
    width: 767px;
    max-width: none;
    height: auto;
    transform: none;
  }

  .contact {
    height: 937px;
  }

  .contact__inner {
    position: relative;
    display: block;
    height: 865px;
    padding: 321px 0 0;
  }

  .contact__content {
    position: absolute;
    top: 43px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
    padding: 0;
  }

  .contact__title {
    margin-bottom: 16px;
    font-size: 48px;
    line-height: 1;
  }

  .contact__text {
    max-width: none;
    font-size: 16px;
    line-height: 1.4;
  }

  .contact-form {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: 424px;
    margin: 0;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: none;
  }

  .contact-form-shell {
    position: relative;
    z-index: 3;
    width: calc(100% - 32px);
    max-width: 343px;
    height: 424px;
    margin: 0 auto;
  }

  .contact-form-shell::before,
  .contact-form-shell::after {
    content: '';
    position: absolute;
    z-index: 0;
    display: block;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
  }

  .contact-form-shell::before {
    top: -91px;
    left: 50%;
    width: 352px;
    max-width: calc(100vw - 8px);
    aspect-ratio: 352 / 184;
    background-image: url('../images/decor-form-top.svg');
    transform: translateX(-50%);
  }

  .contact-form-shell::after {
    bottom: -100px;
    left: -13px;
    width: 329px;
    max-width: calc(100vw - 6px);
    aspect-ratio: 329 / 187;
    background-image: url('../images/decor-form-bottom.svg');
    transform: none;
  }

  .contact__tentacles {
    display: none;
  }

  .contact-form__title {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1;
  }

  .contact-form__field {
    margin-bottom: 24px;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    min-height: 49px;
    padding: 16px 8px;
    font-size: 12px;
    line-height: 1.4;
  }

  .contact-form__field textarea {
    min-height: 66px;
    height: 66px;
  }

  .contact-form__consent {
    min-height: 40px;
    margin: 0 0 12px;
    font-size: 10px;
  }

  .contact-form__consent input {
    width: 20px;
    height: 20px;
  }

  .contact-form__submit {
    width: 303px;
  }

  .contact-form__status {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
  }

  .contact__warning {
    padding: 8px 16px;
    font-size: 20px;
    line-height: 1.15;
  }

  .footer {
    min-height: 407px;
    background: #222222;
  }

  .footer__inner {
    display: grid;
    grid-template-columns: 167px 168px;
    grid-template-areas:
      'logo social'
      'company company'
      'nav nav'
      'copyright copyright'
      'privacy privacy';
    gap: 0 8px;
    min-height: 407px;
    padding: 32px 16px 40px;
  }

  .footer__inner::after {
    right: 16px;
    bottom: 80px;
    left: 16px;
  }

  .footer__logo {
    width: 167px;
    height: 40px;
  }

  .footer__logo img {
    width: 167px;
    height: 40px;
    object-fit: contain;
    object-position: left center;
  }

  .footer__social {
    width: 168px;
    gap: 40px;
  }

  .footer__company {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.1;
  }

  .footer__nav {
    grid-template-columns: 168px 167px;
    gap: 16px 8px;
    margin-top: 32px;
    font-size: 16px;
  }

  .footer__nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 35px;
    padding: 8px 0;
  }

  .footer__copyright {
    margin-top: 32px;
    padding-top: 12px;
    font-size: 10px;
  }

  .footer__privacy {
    justify-self: start;
    margin-top: 8px;
    font-size: 10px;
    text-align: left;
  }
}

/* Hero background video */
.hero-section--video {
  position: relative;
  overflow: hidden;
  background-image: none;
  background-color: #111111;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__video-spacer {
  width: 100%;
  aspect-ratio: 1440 / 800;
}

.hero-section--video .header,
.hero-section--video .hero {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero-section--video .hero__video-spacer {
    aspect-ratio: auto;
    min-height: calc(max(812px, calc(234px + 135.2vw)) - 84px);
  }
}

/* Age verification popup */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.72);
}

.age-gate__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: 48px 56px 40px;
  text-align: center;
  color: #222222;
  background: #eeece7;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.age-gate__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 28px;
  line-height: 1;
  color: #c39c4d;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.age-gate__close:hover {
  color: #ab1e2d;
}

.age-gate__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1;
  color: var(--color-red);
}

.age-gate__text {
  margin: 0 0 28px;
  font-family: var(--font-main);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.4;
  color: #565656;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.age-gate__btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.age-gate__btn--yes {
  padding-left: 16px;
  color: #ffffff;
  background: #222222;
  border: 2px solid #222222;
}

.age-gate__btn--yes img {
  filter: brightness(0) invert(1);
}

.age-gate__btn--yes:hover {
  background: #000000;
  border-color: #000000;
}

.age-gate__btn--no {
  color: #222222;
  background: transparent;
  border: 1px solid #222222;
}

.age-gate__btn--no:hover {
  color: #ffffff;
  background: #222222;
}

body.age-gate-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .age-gate__dialog {
    width: min(100%, 343px);
    padding: 40px 20px 28px;
    border-radius: 20px;
  }

  .age-gate__title {
    font-size: 28px;
  }

  .age-gate__text {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .age-gate__actions {
    flex-direction: column;
    gap: 12px;
  }

  .age-gate__btn {
    width: 100%;
    min-height: 52px;
  }
}
