@font-face {
  font-family: "RT Dyans Basic";
  src: url("assets/fonts/RTDyansBasic.woff2") format("woff2"),
    url("assets/fonts/RTDyansBasic.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fdfef9;
  --blue-grey: #f6f8f9;
  --teal: #4897a7;
  --teal-dark: #1d4952;
  --teal-light: #a1e2e4;
  --grey-dark: #141c22;
  --grey-mid: #3f484d;
  --yellow: #febd01;
  --yellow-deep: #f4bb00;
  --spritz-yellow: #fce07f;
  --red: #dc5341;
  --canvas: 1536px;
  --content: 1440px;
}

* {
  box-sizing: border-box;
}

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

body {
  width: var(--canvas);
  min-width: var(--canvas);
  margin: 0 auto;
  background: var(--white);
  color: var(--grey-dark);
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: auto;
}

img {
  display: block;
  max-width: none;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 85px;
  padding: 0 120px;
  background: var(--white);
}

.logo {
  width: 58px;
  height: 117px;
  flex: 0 0 auto;
}

.logo img {
  width: 58px;
  height: 117px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  height: 85px;
  color: var(--teal);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 2px;
}

.main-nav a {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.hero {
  position: relative;
  height: 1229px;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero.is-playing {
  height: calc(100vh - 85px);
  min-height: 520px;
  background: #000;
}

.hero-poster {
  position: absolute;
  inset: 0;
  transition: opacity 0.42s ease;
}

.hero.is-playing .hero-poster {
  opacity: 0;
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1924px;
  height: 1229px;
  transform: translateX(-50%);
}

.hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(72, 151, 167, 0.94);
  color: var(--white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 42px rgba(29, 73, 82, 0.26);
  transition: background 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.hero-play[hidden] {
  display: none;
}

.hero-play::before {
  position: absolute;
  inset: -9px;
  border: 2px solid rgba(72, 151, 167, 0.38);
  border-radius: 50%;
  animation: hero-play-pulse 2.4s ease-out infinite;
  content: "";
}

.hero-play:hover {
  background: var(--teal-dark);
  box-shadow: 0 20px 52px rgba(29, 73, 82, 0.36);
  transform: translate(-50%, -50%) scale(1.06);
}

.hero-play:focus-visible,
.hero-close:focus-visible {
  outline: 3px solid var(--teal-light);
  outline-offset: 4px;
}

.hero-play svg {
  width: 42px;
  height: 42px;
  margin-left: 7px;
  fill: currentColor;
}

.hero.is-playing .hero-play {
  opacity: 0;
  pointer-events: none;
}

@keyframes hero-play-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.95);
  }

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

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.46s ease;
}

.hero.is-playing .hero-video-wrap {
  opacity: 1;
  pointer-events: auto;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 768px) and (max-height: 820px) {
  .hero.is-playing .hero-video-wrap {
    background: var(--white);
  }

  .hero.is-playing .hero-video {
    object-fit: contain;
  }
}

.hero-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(253, 254, 249, 0.94);
  color: var(--teal-dark);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(20, 28, 34, 0.24);
}

.hero-sound {
  position: absolute;
  top: 24px;
  right: 88px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: auto;
  min-width: 92px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 0;
  background: rgba(253, 254, 249, 0.94);
  color: var(--teal-dark);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(20, 28, 34, 0.24);
}

.hero-sound[aria-pressed="true"] .hero-sound-off,
.hero-sound[aria-pressed="false"] .hero-sound-on {
  display: none;
}

.hero-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.natural-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 20px 120px 88px;
  background: var(--white);
  text-align: center;
}

.hero.is-playing + .natural-section {
  padding-top: 88px;
}

.natural-section h1,
.cocktails h2,
.where-content h2 {
  margin: 0;
  color: var(--teal);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 200px;
  font-weight: 400;
  line-height: 172px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.natural-section h1 span,
.cocktails h2 span {
  display: block;
}

.mint-crop {
  position: absolute;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.mint-crop img {
  position: absolute;
  width: 368px;
  height: auto;
}

.mint-natural {
  left: 188px;
  top: 87px;
  width: 116px;
  height: 184px;
  transform: rotate(36deg);
}

.mint-natural img {
  left: -25px;
  top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 32px;
  border-radius: 4px;
  color: var(--white);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.button-teal {
  background: linear-gradient(113deg, var(--teal) 35%, var(--teal-dark) 242%);
}

.button-yellow {
  background: var(--yellow);
}

.button-spritz {
  background: var(--spritz-yellow);
}

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

.button-light {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.intro-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: var(--content);
  margin: 0 auto;
  padding: 72px 0 64px;
  background: var(--white);
}

.intro-images {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.pattern {
  width: 209px;
  height: 468px;
}

.pattern-left {
  margin-top: 190px;
}

.intro-photo {
  width: 525px;
  height: 658px;
  object-fit: cover;
  border-radius: 8px;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: -86px;
  padding: 0 180px;
}

.intro-copy p {
  width: 416px;
  margin: 0 0 26px auto;
  color: var(--teal);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  text-align-last: center;
  white-space: normal;
}

.intro-copy strong {
  color: var(--teal);
  font-weight: 700;
}

.intro-copy small {
  display: block;
  width: 416px;
  margin: 6px 0 0 auto;
  color: var(--teal);
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
}

.collection-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 614px;
  gap: 90px;
  width: 100%;
  height: 680px;
  padding: 80px 120px 0;
  background: var(--teal);
}

.collection-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  max-width: 550px;
  padding-bottom: 90px;
  text-align: center;
}

.script-title {
  margin: 0;
  color: var(--teal-dark);
  font-family: "Birthstone", cursive;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.collection-copy h2 {
  margin: 16px 0 24px;
  color: var(--white);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 92px;
  font-weight: 400;
  line-height: 72px;
  text-transform: uppercase;
}

.collection-copy p:not(.script-title) {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.collection-image {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.collection-photo {
  position: relative;
  z-index: 2;
  width: 525px;
  height: 520px;
  margin-top: 0;
  object-fit: cover;
  border-radius: 8px;
}

.pattern-collection {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 149px;
  height: 467px;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: 100%;
  padding: 150px 0 170px;
  background: var(--white);
  overflow: hidden;
}

.product {
  display: grid;
  align-items: center;
  width: 1120px;
  margin: 0 auto;
  gap: 30px;
}

.product-left {
  grid-template-columns: 120px 520px 360px;
  padding-right: 0;
}

.product-right {
  grid-template-columns: 360px 520px 120px;
  padding-left: 0;
}

.side-pattern {
  width: 120px;
  height: 467px;
}

.packshot {
  width: 520px;
  height: auto;
  object-fit: contain;
}

.product-mentheuse {
  margin-left: 0;
}

.product-pulpeuse {
  margin-top: 0;
  margin-right: 0;
}

.product-spritz {
  margin-top: 0;
  margin-left: 0;
}

.product-croqueuse {
  margin-top: 0;
  margin-right: 0;
}

.product-mentheuse .packshot,
.product-spritz .packshot {
  justify-self: start;
}

.product-pulpeuse .packshot,
.product-croqueuse .packshot {
  justify-self: end;
}

.product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.product-right .product-copy {
  align-items: flex-end;
  text-align: right;
}

.product-copy h3 {
  margin: -8px 0 0;
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.product-copy p:not(.script-title) {
  width: 340px;
  margin: 0;
  color: var(--teal);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-copy .script-title {
  margin: 0;
}

.product-mentheuse .script-title,
.product-mentheuse .product-copy p:not(.script-title) {
  color: var(--teal);
}

.product-pulpeuse .script-title,
.product-pulpeuse .product-copy p:not(.script-title) {
  color: var(--yellow);
}

.product-spritz .script-title,
.product-spritz .product-copy p:not(.script-title) {
  color: var(--spritz-yellow);
}

.product-croqueuse .script-title,
.product-croqueuse .product-copy p:not(.script-title) {
  color: var(--red);
}

.teal {
  color: var(--teal);
}

.yellow {
  color: var(--yellow);
}

.spritz-yellow {
  color: var(--spritz-yellow);
}

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

.cocktails {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 1320px;
  padding-top: 120px;
  background: var(--blue-grey);
  text-align: center;
  overflow: hidden;
}

.cocktails h2 {
  margin: 40px 0;
}

.cocktail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  justify-items: center;
  gap: 72px;
  width: min(1320px, calc(100% - 96px));
  height: 800px;
  margin-top: 48px;
  padding: 0;
}

.cocktail-card {
  display: block;
  transition: transform 180ms ease;
}

.cocktail-card:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 8px;
}

.cocktail-card img {
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.cocktail-card:nth-child(1) {
  transform: translateY(80px);
}

.cocktail-card:nth-child(2) {
  transform: translateY(30px);
}

.cocktail-card:nth-child(3) {
  transform: translateY(-10px);
}

.recipe-card[id] {
  scroll-margin-top: 110px;
}

.where-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1364px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.where-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.where-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.where-content .script-title,
.where-content h2 {
  color: var(--white);
}

.button-row {
  display: flex;
  gap: 48px;
  justify-content: center;
}

.where-section .button-light {
  background: var(--white);
  color: var(--teal-dark);
}

.mint-where {
  right: 257px;
  bottom: 232px;
  z-index: 2;
  width: 126px;
  height: 134px;
  overflow: visible;
  transform: none;
}

.mint-where img {
  left: 0;
  top: 0;
  width: 100%;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  padding: 0 0 80px;
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 542px 1fr 120px;
  gap: 120px;
  align-items: flex-start;
  width: 100%;
  padding-left: 120px;
}

.footer-logo {
  width: 542px;
  height: auto;
  aspect-ratio: 774 / 487;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: var(--grey-mid);
  font-size: 14px;
  font-weight: 300;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 50%;
  background: var(--teal-light);
}

.socials img {
  width: 20px;
  height: 20px;
}


.footer-cookie-button {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--grey-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--teal);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 0 120px;
  color: var(--grey-mid);
  font-size: 14px;
  font-weight: 300;
}

.footer-bottom p {
  margin: 0;
}

.contact-page {
  background: var(--white);
}

.legal-page {
  background: var(--white);
}

.legal-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 140px 120px 80px;
  overflow: hidden;
  text-align: center;
}

.legal-hero::before,
.legal-hero::after {
  position: absolute;
  top: 118px;
  width: 120px;
  height: 467px;
  background: url("assets/pattern-teal.svg") center / 100% 100% no-repeat;
  opacity: 0.18;
  content: "";
}

.legal-hero::before {
  left: 64px;
}

.legal-hero::after {
  right: 64px;
  transform: scaleX(-1);
}

.legal-hero .script-title {
  position: relative;
  z-index: 1;
  color: var(--teal);
  font-size: 48px;
}

.legal-hero h1 {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 130px;
  font-weight: 400;
  line-height: 110px;
  text-transform: uppercase;
}

.legal-content {
  width: min(980px, calc(100% - 240px));
  margin: 0 auto;
  padding: 40px 0 160px;
  color: var(--teal-dark);
}

.legal-content article {
  margin: 0 0 54px;
}

.legal-content h2 {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 38px;
  text-transform: uppercase;
}

.legal-content h3 {
  margin: 34px 0 14px;
  color: var(--teal-dark);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--teal);
}

.privacy-page .legal-hero h1 {
  max-width: 980px;
  font-size: 112px;
  line-height: 96px;
}

.legal-table-wrap {
  width: 100%;
  margin: 28px 0 34px;
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: var(--teal-dark);
  font-size: 16px;
  line-height: 24px;
}

.legal-table th,
.legal-table td {
  padding: 16px;
  border: 1px solid rgba(72, 151, 167, 0.22);
  vertical-align: top;
}

.legal-table th {
  background: rgba(72, 151, 167, 0.1);
  color: var(--teal);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  text-transform: uppercase;
}

.legal-table td {
  background: rgba(253, 254, 249, 0.82);
}

.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: 120px;
  overflow: hidden;
  text-align: center;
}

.contact-heading {
  position: relative;
  z-index: 2;
  width: 820px;
}

.contact-heading h1 {
  margin: 18px 0 28px;
  color: var(--teal);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 160px;
  font-weight: 400;
  line-height: 132px;
  text-transform: uppercase;
}

.contact-heading p:not(.script-title) {
  margin: 0 auto;
  max-width: 620px;
  color: var(--grey-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.contact-pattern {
  position: absolute;
  width: 209px;
  height: 468px;
}

.contact-pattern-left {
  left: 120px;
  bottom: 70px;
}

.contact-pattern-right {
  right: 120px;
  top: 118px;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 80px;
  width: var(--content);
  margin: 0 auto;
  padding: 0 120px 160px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field:nth-child(3),
.field:nth-child(4) {
  grid-column: 1 / -1;
}

.field label {
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(72, 151, 167, 0.35);
  border-radius: 4px;
  background: var(--white);
  color: var(--grey-dark);
  font: 500 18px/26px "Inter", Arial, sans-serif;
}

.field input {
  height: 52px;
  padding: 0 16px;
}

.field textarea {
  min-height: 188px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(161, 226, 228, 0.55);
  outline-offset: 2px;
}

.contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-card {
  align-self: start;
  padding: 48px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
}

.contact-card .script-title {
  color: var(--teal-dark);
}

.contact-card h2 {
  margin: 12px 0 24px;
  color: var(--white);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 56px;
  text-transform: uppercase;
}

.contact-card p:not(.script-title) {
  margin: 0 0 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.contact-card a {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.recipes-page {
  background: var(--white);
}

.recipes-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 650px;
  padding: 120px;
  overflow: hidden;
  text-align: center;
}

.recipes-heading {
  position: relative;
  z-index: 2;
  width: 920px;
}

.recipes-heading h1 {
  margin: 18px 0 28px;
  color: var(--teal);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 170px;
  font-weight: 400;
  line-height: 136px;
  text-transform: uppercase;
}

.recipes-heading p:not(.script-title) {
  margin: 0 auto;
  max-width: 780px;
  color: var(--grey-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.recipes-hero .contact-pattern-left {
  left: 96px;
  bottom: 122px;
  width: 132px;
  height: 296px;
}

.recipes-list {
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: 100%;
  padding: 20px 0 150px;
  overflow: hidden;
}

.recipe-card {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 76px;
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  padding: 0 120px;
}

.recipe-card.recipe-reverse {
  grid-template-columns: minmax(0, 1fr) 430px;
}

.recipe-reverse .recipe-visual {
  grid-column: 2;
}

.recipe-reverse .recipe-content {
  grid-column: 1;
  grid-row: 1;
}

.recipe-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 430px;
  height: 520px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(72, 151, 167, 0.18);
  background: rgba(246, 248, 249, 0.74);
}

.recipe-visual::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(72, 151, 167, 0.16);
  border-radius: 4px;
  content: "";
}

.recipe-visual::after {
  content: none;
}

.recipe-visual.has-image {
  border: 0;
  background: transparent;
}

.recipe-visual.has-image::before {
  content: none;
}

.recipe-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.recipe-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-visual span {
  position: relative;
  z-index: 2;
  color: rgba(29, 73, 82, 0.5);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.recipe-content {
  color: var(--grey-dark);
}

.recipe-product {
  margin: 0;
  color: var(--recipe-accent);
  font-family: "Birthstone", cursive;
  font-size: 44px;
  line-height: 1;
}

.recipe-content h2 {
  margin: 8px 0 30px;
  color: var(--recipe-accent);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 62px;
  text-transform: uppercase;
}

.recipe-columns {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 56px;
}

.recipe-content h3 {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 28px;
  text-transform: uppercase;
}

.recipe-content ul {
  margin: 0;
  padding-left: 20px;
}

.recipe-content li,
.recipe-content p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.recipe-content li {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.recipe-garnish {
  margin-top: 22px !important;
  color: var(--teal-dark);
  font-weight: 500 !important;
}

.recipe-mentheuse {
  --recipe-accent: var(--teal);
}

.recipe-croqueuse {
  --recipe-accent: var(--red);
}

.recipe-pulpeuse,
.recipe-spritz {
  --recipe-accent: var(--yellow);
}

.age-gate-locked {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.68);
  color: var(--teal-dark);
}

.age-gate.is-visible {
  display: grid;
}

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

.age-gate::before,
.age-gate::after {
  content: none;
}

.age-gate-panel {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  padding: 46px 56px 44px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.age-gate-logo {
  width: 250px;
  height: auto;
  margin: 0 auto 26px;
}

.age-gate-title {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.age-gate-title span {
  display: block;
}

.age-gate-subtitle {
  margin: 0 auto 24px;
  color: var(--grey-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.age-gate-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.age-gate-input {
  width: min(100%, 220px);
  min-height: 58px;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.age-gate-input:focus-visible {
  outline: 3px solid rgba(161, 226, 228, 0.9);
  outline-offset: 4px;
}

.age-gate-remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--grey-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.age-gate-note,
.age-gate-legal {
  max-width: 720px;
  margin: 0 auto;
  color: var(--grey-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.age-gate-submit {
  min-width: 144px;
  min-height: 56px;
  margin-top: 2px;
}

.age-gate-copy {
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--grey-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.age-gate-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.age-gate-choice {
  min-width: 144px;
  min-height: 60px;
  padding: 12px 34px;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  background: transparent;
  color: var(--teal);
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.age-gate-choice:hover,
.age-gate-choice:focus-visible {
  transform: translateY(-1px);
}

.age-gate-choice:focus-visible {
  outline: 3px solid rgba(161, 226, 228, 0.9);
  outline-offset: 4px;
}

.age-gate-yes {
  background: var(--teal);
  color: var(--white);
}

.age-gate-yes:hover,
.age-gate-yes:focus-visible {
  background: var(--teal-dark);
  color: var(--white);
}

.age-gate-no:hover,
.age-gate-no:focus-visible {
  background: rgba(72, 151, 167, 0.08);
}

.age-gate-error {
  min-height: 22px;
  margin: 18px 0 0;
  color: var(--red);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  width: min(620px, calc(100vw - 56px));
  color: var(--teal-dark);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 26px 28px;
  border: 1px solid rgba(72, 151, 167, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(29, 73, 82, 0.18);
}

.cookie-banner-kicker {
  margin: 0 0 6px;
  color: var(--teal);
  font-family: "RT Dyans Basic", "Barlow", Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cookie-banner h2 {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-family: "RT Dyans Basic", "Barlow", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
}

.cookie-button {
  min-width: 112px;
  min-height: 46px;
  padding: 10px 18px;
  border: 1.5px solid var(--teal);
  border-radius: 6px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-button-primary {
  background: var(--teal);
  color: var(--white);
}

.cookie-button-primary:hover,
.cookie-button-primary:focus-visible {
  background: var(--teal-dark);
}

.cookie-button-secondary {
  background: var(--white);
  color: var(--teal-dark);
}

.cookie-button-secondary:hover,
.cookie-button-secondary:focus-visible {
  background: rgba(72, 151, 167, 0.08);
}
.product-page {
  background: var(--white);
}

.product-hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 760px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.product-hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 300px;
  background: var(--white);
  clip-path: polygon(0 90%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.product-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(29, 73, 82, 0.46);
  content: "";
}

.product-hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: 70px;
}

.product-hero-content .script-title {
  color: var(--yellow);
  font-size: 52px;
}

.product-hero h1 {
  margin: 16px 0 0;
  color: var(--white);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 190px;
  font-weight: 400;
  line-height: 158px;
  text-transform: uppercase;
}

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

.pulpeuse-intro {
  position: relative;
  min-height: 1360px;
  padding: 40px 120px 80px;
  overflow: hidden;
  text-align: center;
}

.pulpeuse-intro > .script-title,
.pulpeuse-intro > h2,
.pulpeuse-intro > .button {
  position: relative;
  z-index: 2;
}

.pulpeuse-intro > .script-title {
  color: var(--teal-dark);
  font-size: 50px;
}

.pulpeuse-intro h2 {
  margin: 42px auto 34px;
  color: var(--yellow);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 174px;
  font-weight: 400;
  line-height: 142px;
  text-transform: uppercase;
}

.pulpeuse-intro h2 span {
  display: block;
}

.lemon-peel {
  position: absolute;
  z-index: 3;
  width: 150px;
  height: auto;
}

.lemon-peel-title {
  top: 480px;
  right: 250px;
  transform: rotate(-18deg);
}

.pulpeuse-story {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 190px;
  align-items: center;
  width: 1120px;
  margin: 120px auto 0;
  text-align: left;
}

.pulpeuse-copy {
  color: var(--teal-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0;
  text-align: center;
  text-align-last: center;
  text-transform: none;
}

.pulpeuse-copy p {
  margin: 0 0 34px;
}

.pulpeuse-photo-wrap {
  position: relative;
  width: 560px;
  height: 650px;
}

.product-stripes {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}

.product-stripes-intro {
  left: -72px;
  top: 46px;
  width: 850px;
  height: 650px;
  object-fit: fill;
}

.pulpeuse-photo {
  position: relative;
  z-index: 2;
  width: 520px;
  height: 650px;
  object-fit: cover;
}

.product-hero-mentheuse > img {
  object-position: center;
}

.mentheuse-page .product-hero-content .script-title {
  color: var(--teal-light);
}

.mentheuse-intro h2 {
  color: var(--teal);
}

.product-hero-croqueuse > img {
  object-position: center;
}

.croqueuse-page .product-hero-content .script-title {
  color: var(--red);
}

.croqueuse-intro h2 {
  color: var(--red);
}

.product-hero-spritz > img {
  object-position: center;
}

.spritz-page .product-hero-content .script-title {
  color: var(--spritz-yellow);
}

.spritz-intro h2 {
  color: var(--spritz-yellow);
}

.mentheuse-tasting .tasting-copy .script-title {
  color: var(--teal-light);
}

.mentheuse-tasting .tasting-copy p:not(.script-title) {
  color: var(--white);
}

.mentheuse-page .range-section::before {
  background: var(--teal);
}

.tasting-section {
  position: relative;
  display: grid;
  grid-template-columns: 520px 560px;
  gap: 140px;
  align-items: start;
  min-height: 660px;
  padding: 36px 180px 48px;
  overflow: hidden;
  background: var(--yellow);
}

.tasting-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 360px;
  background: var(--yellow);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.tasting-section.mentheuse-tasting {
  background: var(--teal);
}

.tasting-section.mentheuse-tasting::after {
  background: var(--teal);
}

.tasting-section.croqueuse-tasting {
  background: var(--red);
}

.tasting-section.croqueuse-tasting::after {
  background: var(--red);
}

.tasting-section.spritz-tasting {
  background: var(--spritz-yellow);
}

.tasting-section.spritz-tasting::after {
  background: var(--spritz-yellow);
}

.croqueuse-tasting .tasting-copy .script-title,
.croqueuse-tasting .tasting-copy p:not(.script-title) {
  color: var(--white);
}

.croqueuse-page .range-section::before {
  background: var(--red);
}

.spritz-page .range-section::before {
  background: var(--spritz-yellow);
}

.croqueuse-page .pulpeuse-copy,
.croqueuse-page .tasting-copy p:not(.script-title) {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
}

.croqueuse-page .pulpeuse-copy {
  font-size: 16px;
  line-height: 27px;
}

.croqueuse-page .tasting-copy p:not(.script-title) {
  font-size: 16px;
  line-height: 26px;
}

.intro-copy p,
.intro-copy small,
.collection-copy p:not(.script-title),
.product-copy p:not(.script-title),
.pulpeuse-copy,
.tasting-copy p:not(.script-title),
.contact-heading p:not(.script-title),
.contact-form label,
.contact-card p:not(.script-title),
.contact-card a,
.recipes-heading p:not(.script-title),
.recipe-visual span,
.recipe-content li,
.recipe-content p,
.footer-links a,
.footer-bottom p {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tasting-stripes {
  left: -10px;
  top: 150px;
  z-index: 1;
  width: 209px;
  height: 468px;
  object-fit: fill;
}

.tasting-photo {
  position: relative;
  z-index: 2;
  width: 500px;
  height: 625px;
  object-fit: cover;
  transform: translateY(34px);
}

.tasting-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-self: center;
  text-align: center;
}

.product-info {
  margin: 0 auto 10px;
  color: var(--white);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.tasting-copy .script-title {
  color: var(--teal-dark);
  font-size: 50px;
}

.tasting-copy h2 {
  margin: 10px 0 24px;
  color: var(--white);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 60px;
  text-transform: uppercase;
}

.tasting-copy p:not(.script-title) {
  margin: 0 auto;
  max-width: 470px;
  color: var(--teal-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-page .tasting-copy p.product-info {
  color: var(--white);
  font-size: 25px;
  line-height: 1.15;
}

.range-section {
  position: relative;
  display: grid;
  place-items: center;
  height: 900px;
  overflow: hidden;
  text-align: center;
}

.range-section::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 3;
  height: 340px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  content: "";
}

.range-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: 360px;
  background: var(--white);
  clip-path: polygon(0 95%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.range-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.range-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(29, 73, 82, 0.56);
}

.range-content {
  position: relative;
  z-index: 4;
}

.range-content .script-title {
  color: var(--white);
  font-size: 54px;
}

.range-content h2 {
  margin: 18px 0 28px;
  color: var(--white);
  font-family: "RT Dyans Basic", sans-serif;
  font-size: 104px;
  font-weight: 400;
  line-height: 90px;
  text-transform: uppercase;
}

.range-content .button-light {
  background: var(--white);
  color: var(--teal-dark);
}

@media (max-width: 1535px) {
  body {
    zoom: calc(100vw / 1536px);
  }
}

@media (max-width: 767px) {
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    zoom: 1;
  }

  img {
    max-width: 100%;
  }

  .site-header {
    align-items: center;
    height: auto;
    min-height: 84px;
    padding: 8px 18px;
  }

  .logo,
  .logo img {
    width: 38px;
    height: 77px;
  }

  .menu-toggle {
    position: relative;
    z-index: 31;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin-left: auto;
    background: var(--teal);
    transform-origin: center;
    transition: transform 160ms ease, opacity 160ms ease;
  }

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

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

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

  .main-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
    width: min(280px, calc(100vw - 36px));
    height: auto;
    padding: 24px;
    border-radius: 0 0 4px 4px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(29, 73, 82, 0.14);
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1.5px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    height: auto;
  }

  .hero.is-playing {
    height: calc(100vh - 143px);
    min-height: 360px;
  }

  .hero-poster {
    position: relative;
  }

  .hero.is-playing .hero-poster {
    position: absolute;
  }

  .hero-visual {
    position: relative;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .hero-play {
    width: 84px;
    height: 84px;
  }

  .hero-play svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
  }

  .hero-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .hero-sound {
    top: 16px;
    right: 68px;
    min-width: 82px;
    height: 42px;
    padding: 0 14px;
    font-size: 11px;
  }

  .natural-section {
    gap: 24px;
    padding: 64px 20px 92px;
  }

  .natural-section h1,
  .cocktails h2,
  .where-content h2 {
    font-size: 72px;
    line-height: 64px;
  }

  .mint-natural {
    left: 20px;
    top: 70px;
    width: 62px;
    height: 96px;
  }

  .mint-crop img {
    width: 198px;
  }

  .mint-natural img,
  .mint-where img {
    left: -13px;
  }

  .mint-where img {
    left: 0;
    width: 100%;
  }

  .button {
    min-height: 44px;
    padding: 8px 24px;
    font-size: 15px;
  }

  .intro-section {
    width: 100%;
    padding: 88px 20px;
  }

  .intro-images {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pattern,
  .pattern-left,
  .pattern-right,
  .pattern-collection,
  .side-pattern {
    display: none;
  }

  .intro-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 525 / 658;
  }

  .intro-copy {
    margin-top: 0;
    padding: 32px 0 0;
  }

  .intro-copy p,
  .intro-copy small {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .intro-copy p {
    text-align: center;
    text-align-last: center;
  }


  .collection-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: auto;
    padding: 88px 20px;
  }

  .collection-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .script-title {
    font-size: 36px;
  }

  .collection-copy h2 {
    margin: 12px 0 18px;
    font-size: 54px;
    line-height: 46px;
  }

  .collection-image {
    justify-content: center;
  }

  .collection-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 525 / 590;
  }

  .products {
    gap: 116px;
    padding: 88px 20px;
  }

  .product,
  .product-left,
  .product-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .product-right .product-copy {
    order: 2;
  }

  .product-right .packshot {
    order: 1;
  }

  .packshot {
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: 502 / 578;
  }

  .product-copy,
  .product-right .product-copy {
    align-items: center;
    margin-top: -44px;
    text-align: center;
  }

  .product-copy h3 {
    margin-top: -12px;
    font-size: 42px;
    line-height: 40px;
  }

  .product-copy p:not(.script-title),
  .collection-copy p:not(.script-title) {
    font-size: 16px;
    line-height: 24px;
  }

  .cocktails {
    height: auto;
    padding: 88px 20px;
  }

  .cocktails h2 {
    margin: 28px 0;
  }

  .cocktail-cards {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    height: auto;
    margin-top: 48px;
    padding: 0;
  }

  .cocktail-card,
  .cocktail-card:nth-child(1),
  .cocktail-card:nth-child(2),
  .cocktail-card:nth-child(3) {
    position: static;
    margin-top: 0;
    transform: none;
  }

  .cocktail-card img {
    width: min(78vw, 288px);
    height: auto;
  }

  .recipe-card[id] {
    scroll-margin-top: 96px;
  }

  .where-section {
    height: 720px;
  }

  .where-bg {
    object-position: 54% 50%;
  }

  .where-content {
    gap: 28px;
    padding: 0 20px;
  }

  .button-row {
    gap: 16px;
  }

  .mint-where {
    right: 24px;
    bottom: 130px;
    width: 72px;
    height: 77px;
  }

  .site-footer {
    gap: 32px;
    padding-bottom: 40px;
  }

  .contact-hero {
    min-height: 430px;
    padding: 76px 20px 56px;
  }

  .contact-heading {
    width: 100%;
  }

  .contact-heading h1 {
    margin: 12px 0 22px;
    font-size: 76px;
    line-height: 66px;
  }

  .contact-heading p:not(.script-title) {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-pattern {
    display: none;
  }

  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    padding: 0 20px 88px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field:nth-child(3),
  .field:nth-child(4) {
    grid-column: auto;
  }

  .contact-form .button {
    justify-self: stretch;
    width: 100%;
  }

  .contact-card {
    width: 100%;
    padding: 32px 24px;
  }

  .contact-card h2 {
    font-size: 42px;
    line-height: 40px;
  }

  .recipes-hero {
    min-height: 520px;
    padding: 96px 20px 72px;
  }

  .recipes-heading {
    width: 100%;
  }

  .recipes-heading h1 {
    margin: 12px 0 22px;
    font-size: 76px;
    line-height: 66px;
  }

  .recipes-heading p:not(.script-title) {
    font-size: 16px;
    line-height: 24px;
  }

  .recipes-list {
    gap: 64px;
    padding: 0 0 88px;
  }

  .recipe-card,
  .recipe-card.recipe-reverse {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding: 0 20px;
  }

  .recipe-reverse .recipe-visual,
  .recipe-reverse .recipe-content {
    grid-column: auto;
    grid-row: auto;
  }

  .recipe-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .recipe-visual.has-image img {
    object-fit: contain;
  }

  .recipe-visual span {
    font-size: 12px;
    line-height: 18px;
  }

  .recipe-product {
    font-size: 38px;
  }

  .recipe-content h2 {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 44px;
  }

  .recipe-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recipe-content li {
    font-size: 16px;
    line-height: 24px;
  }

  .recipe-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .age-gate {
    padding: 24px 20px;
  }

  .age-gate-panel {
    padding: 34px 22px 32px;
    border-radius: 8px;
  }

  .age-gate-logo {
    width: 190px;
    margin-bottom: 22px;
  }

  .age-gate-copy,
  .age-gate-subtitle,
  .age-gate-legal {
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.5;
  }

  .age-gate-actions,
  .age-gate-form {
    flex-direction: column;
    gap: 14px;
  }

  .age-gate-choice,
  .age-gate-submit {
    width: min(100%, 220px);
    min-height: 52px;
    font-size: 18px;
  }

  .product-hero {
    height: 560px;
  }

  .product-hero::after {
    height: 210px;
  }

  .product-hero-content {
    padding: 0 20px 54px;
  }

  .product-hero-content .script-title {
    font-size: 38px;
  }

  .product-hero h1 {
    font-size: 76px;
    line-height: 66px;
  }

  .pulpeuse-intro {
    min-height: 0;
    padding: 64px 20px 56px;
  }

  .pulpeuse-intro > .script-title {
    font-size: 36px;
  }

  .pulpeuse-intro h2 {
    margin: 28px auto 24px;
    font-size: 58px;
    line-height: 50px;
  }

  .lemon-peel-title {
    top: 260px;
    right: 20px;
    width: 78px;
  }

  .pulpeuse-story {
    display: flex;
    flex-direction: column;
    gap: 42px;
    width: 100%;
    margin-top: 78px;
    text-align: left;
  }

  .pulpeuse-copy {
    order: 2;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
  }

  .pulpeuse-photo-wrap {
    order: 1;
    width: 100%;
    height: auto;
  }

  .pulpeuse-stripes,
  .mentheuse-stripes,
  .croqueuse-stripes,
  .spritz-stripes {
    display: none;
  }

  .pulpeuse-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .tasting-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-height: 0;
    padding: 56px 20px 72px;
  }

  .tasting-section::after {
    height: 190px;
  }

  .tasting-stripes {
    display: none;
  }

  .tasting-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    transform: none;
  }

  .tasting-copy {
    gap: 36px;
  }

  .product-info {
    margin-bottom: 4px;
    font-size: 25px;
    line-height: 1;
  }

  .tasting-copy .script-title {
    font-size: 36px;
  }

  .tasting-copy h2 {
    font-size: 42px;
    line-height: 38px;
  }

  .tasting-copy p:not(.script-title) {
    font-size: 16px;
    line-height: 24px;
  }

  .product-page .tasting-copy p.product-info {
    font-size: 25px;
    line-height: 1.15;
  }

  .range-section {
    height: 560px;
  }

  .range-section::before,
  .range-section::after {
    height: 190px;
  }

  .range-section > img {
    object-position: 45% 50%;
  }

  .range-content {
    padding: 0 20px;
  }

  .range-content .script-title {
    font-size: 36px;
  }

  .range-content h2 {
    font-size: 56px;
    line-height: 50px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 56px 20px 0;
  }

  .footer-logo {
    width: min(100%, 542px);
    height: auto;
  }

  .footer-links {
    padding-top: 0;
  }

  
.footer-cookie-button {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--grey-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--teal);
}
.footer-bottom {
    flex-direction: column;
    padding: 0 20px;
    font-size: 12px;
    line-height: 18px;
  }

  .cookie-banner {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px;
  }

  .cookie-banner-actions {
    flex-direction: column-reverse;
  }

  .cookie-button {
    width: 100%;
  }}
