@font-face {
  font-family: "Geometrica";
  src: url("fonts/Geometrica-Light.woff2") format("woff2"),
    url("fonts/Geometrica-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geometrica";
  src: url("fonts/Geometrica-Light-Italic.woff2") format("woff2"),
    url("fonts/Geometrica-Light-Italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Geometrica";
  src: url("fonts/Geometrica-Regular.woff2") format("woff2"),
    url("fonts/Geometrica-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geometrica";
  src: url("fonts/Geometrica-Italic.woff2") format("woff2"),
    url("fonts/Geometrica-Italic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Geometrica";
  src: url("fonts/Geometrica-Medium.woff2") format("woff2"),
    url("fonts/Geometrica-Medium.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geometrica";
  src: url("fonts/Geometrica-Medium-Italic.woff2") format("woff2"),
    url("fonts/Geometrica-Medium-Italic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Geometrica";
  src: url("fonts/Geometrica-Bold.woff2") format("woff2"),
    url("fonts/Geometrica-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geometrica";
  src: url("fonts/Geometrica-Bold-Italic.woff2") format("woff2"),
    url("fonts/Geometrica-Bold-Italic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Hupsite";
  src: url("fonts/Hupsite-Regular.woff2") format("woff2"),
    url("fonts/Hupsite-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-coffee: #34241d;
  --color-white: #ffffff;
  --color-sand: #c5a580;
  --color-beige: #f6eadb;
  --color-sandstone: #b58f5e;

  --font-base: "Geometrica", system-ui, sans-serif;
  --font-script: "Hupsite", cursive;
  --font-hand: "Caveat", cursive;
  --font-serif: "Lora", Georgia, serif;

  --page-max: 1440px;
  --content-width: 1280px;
  --page-gutter: 40px;
  --topbar-height: 64px;
}

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

* {
  margin: 0;
}

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

body {
  font-family: var(--font-base);
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-coffee);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

picture {
  display: contents;
}

source {
  display: none;
}

.shell {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

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

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--topbar-height);
  background-color: var(--color-coffee);
}

.topbar__logo {
  width: 200px;
  height: 32px;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding-top: 20px;
  padding-bottom: 64px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  transform: scale(1.1);
  transform-origin: right top;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(52, 36, 29, 0) 25%, var(--color-coffee) 88%);
}

.hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-white);
  position: relative;
}

.hero__brand-logo {
  width: 128px;
  height: 68px;
  object-fit: contain;
}

.hero__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

.hero__menu-icon {
  width: 13px;
  height: 8px;
  transition: transform 0.2s ease;
}

.hero__menu-toggle {
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.hero__menu-toggle[aria-expanded="true"] .hero__menu-icon {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 64px;
  background-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0.25s;
  pointer-events: none;
  width: 100%;
  text-align: center;
  align-items: center;
}

.dropdown[hidden] {
  display: none;
}

.dropdown--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .dropdown {
    transform: none;
    transition: visibility 0s linear 0s;
  }

  .dropdown--open {
    transition: none;
  }
}

.dropdown__item {
  display: flex;
  gap: 20px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--color-coffee);
}

.dropdown__num {
  color: var(--color-sandstone);
}

.dropdown__item:hover .dropdown__label {
  text-decoration: underline;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: var(--content-width);
}

.hero__logo {
  width: 400px;
  height: auto;
}

.hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.hero__script-wrap {
  display: flex;
  justify-content: flex-end;
  width: 880px;
  max-width: 100%;
}

.hero__script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 90px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-white);
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 9.52px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  width: 1144px;
  max-width: 100%;
  margin-inline: auto;
}

.hero__title-line--left {
  text-align: left;
}

.hero__title-line--center {
  text-align: center;
}

.hero__title-line--right {
  text-align: right;
}

.hero__intro {
  max-width: 1080px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.hero__scroll-line {
  width: 11px;
  height: 120px;
}

.contest {
  position: relative;
  height: 1234px;
  overflow: hidden;
  background-color: var(--color-coffee);
}

.contest__inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--page-max);
  height: 100%;
}

.contest__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/texture-paper.jpg");
  background-image: image-set(url("assets/texture-paper.webp") type("image/webp"), url("assets/texture-paper.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.12;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 260px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 260px);
}

.contest__illustration {
  position: absolute;
  top: 261px;
  left: 50%;
  transform: translateX(-50%);
  width: 716px;
  height: auto;
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0.5;
  pointer-events: none;
}

.contest__head {
  position: absolute;
  top: 0;
  left: 80px;
  z-index: 2;
  width: 1280px;
  text-align: center;
}

.contest__eyebrow {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 2.72px;
  text-transform: uppercase;
}

.contest__title {
  width: 998px;
  margin: 32px auto 0;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 8.16px;
  text-transform: uppercase;
}

.contest__collage {
  position: absolute;
  top: 140px;
  left: 80px;
  z-index: 2;
  width: var(--content-width);
  height: 966px;
}

.polaroid {
  position: absolute;
  width: max-content;
  padding: 10px;
  background-color: var(--color-beige);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.polaroid__img {
  max-width: none;
}

.polaroid__img {
  display: block;
  object-fit: cover;
}

.polaroid--a {
  left: 332px;
  top: 347px;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.polaroid--a .polaroid__img {
  width: 383px;
  height: 300px;
}

.polaroid--b {
  left: 202px;
  top: 609px;
  transform: translate(-50%, -50%) rotate(4deg);
}

.polaroid--b .polaroid__img {
  width: 300px;
  height: 382px;
}

.polaroid--c {
  left: 1165px;
  top: 472px;
  transform: translate(-50%, -50%) rotate(3deg);
}

.polaroid--c .polaroid__img {
  width: 300px;
  height: 382px;
}

.polaroid--d {
  left: 1073px;
  top: 813px;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.polaroid--d .polaroid__img {
  width: 383px;
  height: 300px;
}

.contest__arrow {
  position: absolute;
  z-index: 3;
}

.contest__arrow--1 {
  left: 572px;
  top: 638px;
  width: 96px;
  transform: translate(-50%, -50%);
}

.contest__arrow--2 {
  left: 876px;
  top: 586px;
  width: 122px;
  transform: translate(-50%, -50%);
}

.lot {
  position: absolute;
  z-index: 2;
}

.lot--1 {
  left: 586px;
  top: 727px;
  width: 340px;
  transform: translate(-50%, -50%) rotate(4deg);
}

.lot--2 {
  left: 819px;
  top: 411px;
  width: 300px;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.lot__num {
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--color-sandstone);
  opacity: 0.25;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: -40px;
}

.lot__name {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-sandstone);
}

.lot__desc {
  margin-top: 10px;
  font-family: var(--font-hand);
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-white);
}

.contest__cta {
  position: absolute;
  left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
  z-index: 2;
}

.section-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/texture-paper.jpg");
  background-image: image-set(url("assets/texture-paper.webp") type("image/webp"), url("assets/texture-paper.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.12;
  pointer-events: none;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 56px;
  padding: 16px 32px;
  background-color: var(--color-sandstone);
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  font-family: var(--font-base);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: var(--color-sand);
}

.button:disabled {
  cursor: default;
  opacity: 0.5;
}

.button:disabled:hover {
  background-color: var(--color-sandstone);
}

.button__icon {
  width: 24px;
  height: 24px;
}

.editorial {
  position: relative;
  background-color: var(--color-coffee);
}

.editorial__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: 128px 0;
}

.editorial__col--text {
  position: relative;
  flex: 0 0 660px;
}

.editorial__number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  font-weight: 300;
  font-size: 240px;
  line-height: 1;
  color: var(--color-sand);
  opacity: 0.1;
}

.editorial__text {
  position: relative;
  z-index: 1;
  width: 560px;
  margin-left: 100px;
  padding-top: 106px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
}

.editorial__title {
  font-weight: 300;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-sandstone);
}

.editorial__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.editorial__body p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

.editorial__media-img {
  width: 480px;
  height: 611px;
  object-fit: cover;
}

.winter {
  position: relative;
  overflow: hidden;
  background-color: var(--color-coffee);
}

.winter__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.winter__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-coffee) 44%, rgba(52, 36, 29, 0) 71%, var(--color-coffee) 100%);
  pointer-events: none;
}

.winter__editorial {
  position: relative;
  z-index: 1;
  padding-top: 10px;
}

.winter__feature {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
  min-height: 700px;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-bottom: 128px;
  text-align: center;
}

.winter__number {
  font-weight: 300;
  font-size: 240px;
  line-height: 1;
  color: var(--color-white);
  opacity: 0.3;
  margin-bottom: -130px;
}

.winter__title {
  font-weight: 300;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 8.16px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.winter__scroll-line {
  width: 11px;
  height: auto;
}

.carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 0 64px;
  background-color: var(--color-coffee);
}

.carousel__swiper {
  width: 100%;
  overflow: hidden;
}

.carousel__slide {
  width: 400px;
  height: 509px;
}

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

.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.carousel__dots .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0;
  border-radius: 50%;
  background-color: var(--color-sand);
  opacity: 0.4;
  transition:
    opacity 0.2s ease,
    width 0.2s ease,
    height 0.2s ease;
}

.carousel__dots .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  opacity: 1;
}

.reasons {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  min-height: 1293px;
  padding: 128px 160px;
  overflow: hidden;
  background-color: var(--color-coffee);
}

.reasons__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reasons__bg-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 132.36%;
  height: auto;
}

.reasons__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-coffee) 44%, rgba(52, 36, 29, 0.8) 50%, rgba(52, 36, 29, 0) 87%, rgba(52, 36, 29, 1) 92%);
  pointer-events: none;
}

.reasons__illustration {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 716px;
  height: auto;
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0.5;
  pointer-events: none;
}

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

.reasons__title {
  max-width: 618px;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 5.44px;
  text-transform: uppercase;
  text-align: center;
}

.reasons__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 980px;
  max-width: var(--content-width);
}

.reason {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.reason+.reason {
  padding-left: 40px;
}

.reason+.reason::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.25);
}

.reason__icon {
  width: 64px;
  height: 64px;
}

.reason__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

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

.reasons__note {
  max-width: 830px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.portrait {
  position: relative;
  z-index: 1;
  margin-top: -83px;
  background-color: var(--color-coffee);
}

.portrait__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 80px;
  max-width: var(--content-width);
  margin-inline: auto;
  margin-top: -83px;
}

.portrait__col--text {
  position: relative;
  flex: 1;
}

.portrait__number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  font-weight: 300;
  font-size: 240px;
  line-height: 1;
  color: var(--color-sand);
  opacity: 0.1;
}

.portrait__text {
  position: relative;
  z-index: 1;
  margin-left: 15%;
  padding-top: 168px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.portrait__title {
  max-width: 611px;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 8.16px;
  text-transform: uppercase;
  color: var(--color-sandstone);
}

.portrait__lead {
  max-width: 531px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
}

.portrait__body {
  max-width: 531px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

.portrait__col--media {
  position: relative;
  flex: 0 0 480px;
}

.portrait__img {
  width: 480px;
  height: 611px;
  object-fit: cover;
}

.portrait__arrow {
  position: absolute;
  right: calc(100% + 23px);
  top: 100%;
  width: 174px;
  height: auto;
  pointer-events: none;
  transform: rotate(118deg);
}

.quote {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 800px;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: 128px 0;
}

.quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5;
}

.quote__author {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  background-color: var(--color-coffee);
}

.video__frame {
  position: relative;
  z-index: 1;
  width: 732px;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--color-coffee);
}

.video__player {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-white);
  cursor: pointer;
}

.video__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
}

.terroir {
  position: relative;
  overflow: hidden;
  background-color: var(--color-coffee);
  padding: 240px 160px 128px;
}

.terroir__number {
  position: absolute;
  top: 120px;
  left: calc(443 / 1440 * 100vw);
  z-index: 0;
  font-weight: 300;
  font-size: 240px;
  line-height: 1;
  color: var(--color-white);
  opacity: 0.1;
  pointer-events: none;
  z-index: 2;
}

.terroir__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  max-width: var(--content-width);
  margin-inline: auto;
}

.terroir__media {
  position: relative;
  z-index: 2;
  flex: 0 0 480px;
  height: 636px;
  margin-right: -80px;
}

.terroir__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.terroir__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.terroir__title {
  padding-top: 64px;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 8.16px;
  text-transform: uppercase;
  text-align: left;
  z-index: 2;
  max-width: 570px;
  width: 100%;
}

.accordion {
  padding-left: 200px;
}

.accordion__item {
  border-bottom: 1px solid var(--color-white);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 16px 24px 0;
  border: none;
  background: none;
  color: var(--color-white);
  font: inherit;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
}

.accordion__icon::before {
  width: 18px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.accordion__icon::after {
  width: 1.5px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.accordion__item--open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__header:focus-visible {
  outline: 2px solid var(--color-sandstone);
  outline-offset: 2px;
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.accordion__item--open .accordion__panel {
  max-height: 600px;
}

.accordion__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 40px;
  padding-bottom: 24px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
}

.accordion__body ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .accordion__panel {
    transition: none;
  }
}

.discover {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 300px 160px 128px;
  overflow: hidden;
  background-color: var(--color-coffee);
  isolation: isolate;
}

.discover__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: var(--content-width);
}

.discover__number {
  position: absolute;
  left: calc(438 / 1440 * 100vw);
  top: -171px;
  transform: translateX(-50%);
  z-index: -1;
  font-weight: 300;
  font-size: 240px;
  line-height: 1;
  color: var(--color-sand);
  opacity: 0.1;
}

.discover__title {
  font-weight: 300;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 8.16px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-sandstone);
}

.discover__subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.discover__grid {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: var(--content-width);
  height: 652px;
}

.card {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  transition: flex-grow 0.45s ease;
}

.card:hover,
.card:focus-within {
  flex-grow: 1.8;
}

.card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5));
  transition: background 0.35s ease;
}

.card:hover::after,
.card:focus::after,
.card:focus-within::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.7));
}

.card:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: -2px;
}

.card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card__title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 5.44px;
  text-transform: uppercase;
}

.card:hover .card__title,
.card:focus-within .card__title {
  writing-mode: horizontal-tb;
  transform: none;
}

.card__reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.45s ease;
}

.card:hover .card__reveal,
.card:focus-within .card__reveal {
  max-height: 200px;
  opacity: 1;
}

.card__text {
  max-width: 320px;
  padding-top: 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.discover__footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.discover__note {
  width: 616px;
  max-width: 100%;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 821px;
  padding: 0 160px 160px;
  overflow: hidden;
  background-color: var(--color-coffee);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: var(--color-coffee);
  background-image: linear-gradient(rgba(52, 36, 29, 0.55), rgba(52, 36, 29, 0.55)), url("assets/texture-paper.jpg");
  background-image: linear-gradient(rgba(52, 36, 29, 0.55), rgba(52, 36, 29, 0.55)), image-set(url("assets/texture-paper.webp") type("image/webp"), url("assets/texture-paper.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: normal, multiply;
  -webkit-mask-image: linear-gradient(180deg, var(--color-coffee) 0%, transparent 73.33%);
  mask-image: linear-gradient(180deg, var(--color-coffee) 0%, transparent 73.33%);
  pointer-events: none;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.cta__logo {
  width: 272px;
  height: auto;
  filter: brightness(0) invert(1);
}

.cta__title {
  display: flex;
  flex-direction: column;
  width: 1038px;
  max-width: 100%;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 8.16px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.cta__title-line--left {
  text-align: left;
}

.cta__title-line--right {
  text-align: right;
}

.cta__subtitle {
  width: 608px;
  max-width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px var(--page-gutter);
  background-color: #251914;
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
}

.footer__legal-link {
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-base);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.footer__legal-link:hover {
  color: var(--color-sand);
}

.footer__logo--alula {
  width: 192px;
  height: auto;
}

.footer__logo--eurosport {
  width: 200px;
  height: auto;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  background-color: #251914;
  border-top: 1px solid var(--color-sandstone);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
}

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

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: 24px var(--page-gutter);
}

.cookie-banner__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
}

.cookie-banner__link {
  color: var(--color-sand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
}

.button--ghost {
  background-color: transparent;
  border: 1px solid var(--color-sand);
}

.button--ghost:hover {
  background-color: rgba(197, 165, 128, 0.15);
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px var(--page-gutter);
  }

  .cookie-banner__actions {
    justify-content: center;
  }

  .cookie-banner__actions .button {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
}

.modal[hidden] {
  display: none;
}

.modal--open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(20, 13, 10, 0.8);
}

.modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1280px;
  max-height: 90vh;
  padding: 80px 128px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.modal__panel[hidden] {
  display: none;
}

.modal__panel--quiz {
  background-color: var(--color-beige);
  color: var(--color-coffee);
}

.modal__panel--form {
  overflow-y: auto;
  background-color: var(--color-coffee);
  color: var(--color-white);
}

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  color: currentColor;
  cursor: pointer;
}

.modal__close svg {
  width: 100%;
  height: 100%;
}

.modal__title {
  position: relative;
  z-index: 1;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 6.8px;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-sandstone);
}

.modal__notice {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  padding: 16px 24px;
  border: 1px solid var(--color-sandstone);
  background-color: rgba(181, 143, 94, 0.12);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: var(--color-coffee);
}

.quiz {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.quiz--closed {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(1);
}

.quiz__questions {
  display: flex;
  gap: 64px;
  width: 100%;
}

.quiz__question {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
  text-align: center;
}

.quiz__legend {
  font-weight: 300;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--color-sandstone);
  opacity: 0.25;
}

.quiz__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.quiz__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--color-coffee);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
}

.chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.chip:has(input:checked) {
  background-color: var(--color-sandstone);
}

.chip:has(input:focus-visible) {
  outline: 2px solid var(--color-sandstone);
  outline-offset: 2px;
}

.contact {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 37px;
  width: 595px;
  max-width: 100%;
}

.contact__row {
  display: flex;
  gap: 39px;
  width: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.field__label {
  font-weight: 300;
  font-size: 16px;
}

.field__input {
  padding: 4px 0;
  border: none;
  border-bottom: 1px solid var(--color-white);
  background: none;
  color: var(--color-white);
  font: inherit;
  font-weight: 300;
  font-size: 16px;
}

.field__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.field__input:focus {
  outline: none;
  border-bottom-color: var(--color-sandstone);
}

.consents {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 595px;
  max-width: 100%;
}

.consent {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.consent__box {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  display: grid;
  place-content: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-sand);
  cursor: pointer;
}

.consent__box::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--color-sandstone);
  transform: scale(0);
  transition: transform 0.1s ease;
}

.consent__box:checked::after {
  transform: scale(1);
}

.consent__box:focus-visible {
  outline: 2px solid var(--color-sandstone);
  outline-offset: 2px;
}

.consent__text {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
}

.consent__link {
  text-decoration: underline;
}

.consent__required {
  color: var(--color-sandstone);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.modal__panel {
  animation: modal-panel-in 0.35s ease;
}

@keyframes modal-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .modal__panel {
    animation: none;
  }
}

.modal__panel--success,
.modal__panel--error {
  overflow: hidden;
  background-color: var(--color-coffee);
  color: var(--color-white);
}

.success {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 640px;
  text-align: center;
}

.success__text {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
}

.back-to-top {
  position: fixed;
  right: var(--page-gutter);
  bottom: var(--page-gutter);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 8px;
  background-color: var(--color-sandstone);
  color: var(--color-white);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

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

.back-to-top:hover {
  background-color: var(--color-sand);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.back-to-top__icon {
  width: 24px;
  height: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity 0.3s ease;
    transform: none;
  }
}

.menubar,
.carousel-nav {
  display: none;
}

.menubar__toggle:focus-visible,
.carousel-nav__btn:focus-visible {
  outline: 2px solid var(--color-sandstone);
  outline-offset: 2px;
}

@media (max-width: 1280px) {

  .editorial__inner,
  .winter__editorial,
  .portrait__inner,
  .quote {
    max-width: 100%;
    padding-inline: var(--page-gutter);
  }

  .editorial__col--text {
    flex: 1 1 auto;
    min-width: 0;
  }

  .editorial__col--media,
  .portrait__col--media {
    flex: 0 1 480px;
    min-width: 0;
  }

  .editorial__text {
    width: auto;
    max-width: 560px;
    margin-left: clamp(0px, 6vw, 100px);
  }

  .editorial__media-img,
  .portrait__img {
    width: 100%;
    height: auto;
    max-width: 480px;
  }

  .portrait__text {
    margin-left: clamp(0px, 5vw, 15%);
  }

  .reasons,
  .video {
    padding: 96px var(--page-gutter);
  }

  .reasons__list {
    width: 100%;
  }

  .discover {
    padding: 220px var(--page-gutter) 96px;
  }

  .cta {
    padding: 0 var(--page-gutter) 120px;
  }

  .modal__panel {
    padding: 64px;
  }
}

@media (max-width: 1024px) {
  :root {
    --page-gutter: 16px;
  }

  .back-to-top {
    width: 52px;
    height: 52px;
  }

  .hero__nav {
    display: none;
  }

  .menubar {
    display: block;
    position: relative;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(52, 36, 29, 0.12);
  }

  .menubar__toggle {
    display: block;
    width: 100%;
    height: 64px;
    padding: 0;
    border: none;
    background: none;
    color: var(--color-coffee);
    font: inherit;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
  }

  .menubar__panel {
    padding: 24px;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
  }

  .menubar__panel .dropdown__item {
    white-space: normal;
    text-align: left;
  }

  .menubar__participate {
    border: none;
    background: none;
    font: inherit;
    font-weight: 600;
    color: var(--color-sandstone);
    cursor: pointer;
  }

  .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
  }

  .carousel-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: none;
    color: var(--color-white);
    cursor: pointer;
  }

  .carousel-nav__btn:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .carousel-nav__btn svg {
    width: 20px;
    height: 20px;
  }

  .hero__inner {
    gap: 32px;
    padding-block: 40px;
    gap: 64px;
  }

  .hero__bg-overlay {
    background: linear-gradient(to top, rgba(52, 36, 29, 0.55) 0, rgba(52, 36, 29, 0) 40%), linear-gradient(to bottom, rgba(52, 36, 29, 0) 25%, var(--color-coffee) 60%);
  }


  .hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.25);
    transform-origin: center top;
  }

  .hero__content {
    gap: 24px;
  }

  .hero__logo {
    width: 346px;
    max-width: 100%;
  }

  .hero__script-wrap {
    width: 100%;
    justify-content: center;
  }

  .hero__script {
    font-size: 60px;
  }

  .hero__title {
    display: block;
    font-size: clamp(34px, 10vw, 40px);
    letter-spacing: 6px;
    text-align: left;
  }

  .hero__title-line {
    display: inline;
  }

  .hero__intro {
    font-size: 20px;
    text-align: left;
  }

  .contest {
    height: auto;
    padding-bottom: 48px;
  }

  .contest__inner {
    position: static;
    transform: none;
    height: auto;
  }

  .contest__illustration {
    display: none;
  }

  .contest__head {
    position: unset;
    left: 0;
    width: 100%;
    padding: 40px 16px 0;
    text-align: center;
  }

  .contest__title {
    width: 100%;
    margin-top: 24px;
    font-size: 32px;
    letter-spacing: 5px;
  }

  .contest__cta {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding: 0 16px;
  }

  .contest__collage {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 32px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .contest__collage::-webkit-scrollbar {
    display: none;
  }

  .contest__scene {
    position: relative;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    scroll-snap-align: center;
    padding-block: 30px;
    width: 100%;
    overflow: hidden;
    height: 650px;
  }

  .polaroid {
    position: relative;
    transform: none;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
  }

  .polaroid--a,
  .polaroid--c {
    transform: rotate(-4deg);
  }

  .polaroid--b,
  .polaroid--d {
    transform: rotate(4deg);
    top: 20px;
  }

  .polaroid--a .polaroid__img,
  .polaroid--b .polaroid__img,
  .polaroid--c .polaroid__img,
  .polaroid--d .polaroid__img {
    width: 254px;
    height: 323px;
  }

  .contest__arrow--1,
  .contest__arrow--2 {
    left: 42%;
    top: 59%;
    width: 56px;
  }

  .contest__arrow--2 {
    width: 68px;
  }

  .contest__arrow--1 {
    transform: translateX(-50%) scaleX(-1) rotate(20deg);
  }

  .contest__arrow--2 {
    transform: translateX(-50%) scaleX(-1) rotate(-135deg);
    width: 80px;
    top: 61%;
  }

  .lot {
    left: 0;
    right: 0;
    top: 75%;
    transform: none;
    text-align: left;
    transform: rotate(4deg);
    width: 100%;
    padding-inline: 16px;
    margin-inline: auto;
    max-width: 450px;
  }

  .lot__num {
    font-size: 48px;
    margin-bottom: -26px;
  }

  .lot__name {
    font-size: 32px;
  }

  .lot__desc {
    max-width: 339px;
    width: 100%;
  }

  .lot--2 {
    transform: rotate(-4deg);
  }

  .editorial__inner,
  .winter__editorial {
    flex-direction: column;
    gap: 24px;
    padding: 64px 16px;
    max-width: 100%;
  }

  .editorial--media-right .editorial__inner {
    flex-direction: column-reverse;
  }

  .editorial__col--text,
  .editorial__col--media {
    flex: 1 1 auto;
    width: 100%;
  }

  .editorial__media-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
  }

  .editorial__number {
    font-size: 160px;
    top: -8px;
  }

  .editorial__text {
    width: 100%;
    margin-left: 0;
    padding-top: 92px;
    gap: 24px;
  }

  .editorial__title {
    font-size: 32px;
    letter-spacing: 5px;
  }

  .winter__feature {
    max-width: 100%;
    min-height: 0;
    padding: 64px 16px 80px;
    gap: 16px;
  }

  .winter__bg-img {
    object-fit: scale-down;
    object-position: bottom;
  }

  .winter__bg::after {
    background: linear-gradient(to bottom, var(--color-coffee) calc(100% - 220px), rgba(52, 36, 29, 0) calc(100% - 130px), var(--color-coffee) 100%);
  }

  .winter__number {
    font-size: 160px;
    margin-bottom: -88px;
  }

  .winter__title {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: 5px;
  }

  .winter__subtitle {
    font-size: 18px;
  }

  .winter__scroll {
    display: none;
  }

  .carousel {
    gap: 24px;
    padding-bottom: 48px;
  }

  .carousel__slide {
    width: 78vw;
    height: 60vw;
    max-height: 420px;
  }

  .reasons {
    min-height: 0;
    padding: 64px 16px 80px;
    gap: 32px;
    padding-bottom: calc(357 / 402 * 100vw);
  }

  .reasons__illustration {
    display: none;
  }

  .reasons__inner {
    width: 100%;
    gap: 24px;
  }

  .reasons__title {
    max-width: 100%;
    font-size: 32px;
    letter-spacing: 5px;
  }

  .reasons__list {
    width: 100%;
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .reasons__list::-webkit-scrollbar {
    display: none;
  }

  .reason {
    flex: 0 0 100%;
    padding: 0 8px;
    scroll-snap-align: center;
  }

  .reason+.reason {
    border-left: none;
    padding-left: 8px;
  }

  .reason+.reason::before {
    display: none;
  }

  .reason__text {
    font-size: 20px;
  }

  .reasons__note {
    font-size: 16px;
  }

  .reasons__bg-img {
    width: calc(479 / 402 * 100vw);
    height: calc(470 / 402 * 100vw);
    object-fit: cover;
  }

  .reasons__bg::after {
    background: linear-gradient(to bottom, var(--color-coffee) 64%, rgba(52, 36, 29, 0.8) 71%, rgba(52, 36, 29, 0) 87%, rgba(52, 36, 29, 1) 92%);
  }

  .portrait {
    margin-top: 0;
    background-color: var(--color-coffee);
    background-image: none;
  }

  .portrait__inner {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 24px;
    max-width: 100%;
    padding: 16px 16px 0;
  }

  .portrait__col--media {
    flex: 1 1 auto;
  }

  .portrait__img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
  }

  .portrait__arrow {
    display: none;
  }

  .portrait__text {
    width: 100%;
    margin-left: 0;
    padding-top: 92px;
  }

  .portrait__number {
    font-size: 160px;
    top: -8px;
  }

  .portrait__title {
    font-size: 32px;
    letter-spacing: 5px;
  }

  .portrait__lead {
    font-size: 20px;
  }

  .portrait__body {
    font-size: 16px;
  }

  .quote {
    width: 100%;
    max-width: 100%;
    padding: 56px 16px 64px;
    gap: 24px;
  }

  .quote__text {
    font-size: 32px;
  }

  .video {
    min-height: 0;
    padding: 48px 16px;
  }

  .video__frame {
    width: 100%;
  }

  .terroir {
    padding: 120px 16px 64px;
  }

  .terroir__number {
    top: 0;
    font-size: 160px;
    left: 0;
    text-align: center;
    width: 100%;
  }

  .terroir__inner {
    flex-direction: column;
    gap: 24px;
  }

  .terroir__content {
    display: contents;
  }

  .terroir__title {
    order: 1;
    padding-top: 0;
    font-size: 32px;
    letter-spacing: 5px;
  }

  .terroir__media {
    order: 2;
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  .terroir__img {
    height: 72vw;
    max-height: 520px;
  }

  .accordion {
    order: 3;
    padding-left: 0;
  }

  .accordion__icon {
    transform: rotate(45deg);
  }

  .discover {
    padding: 120px 16px 64px;
    gap: 40px;
  }

  .discover__number {
    top: -120px;
    font-size: 160px;
    left: 0;
    width: 100%;
    text-align: center;
    transform: none;
  }

  .discover__title {
    font-size: 32px;
    letter-spacing: 5px;
  }

  .discover__subtitle {
    font-size: 20px;
  }

  .discover__grid {
    flex-direction: column;
    height: auto;
    gap: 32px;
  }

  .card {
    min-height: 0;
    flex: none;
    justify-content: flex-start;
    overflow: visible;
  }

  .card__img {
    position: static;
    height: auto;
    aspect-ratio: 370 / 402;
  }

  .card::after {
    display: none;
  }

  .card__content {
    position: static;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px 0 0;
    gap: 8px;
  }

  .card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 32px;
    letter-spacing: 5.44px;
  }

  .card__reveal {
    max-height: none;
    opacity: 1;
    overflow: visible;
  }

  .card__text {
    max-width: none;
    padding-top: 0;
    text-align: left;
  }

  .discover__note {
    width: 100%;
    font-size: 16px;
  }

  .cta {
    min-height: 0;
    padding: 80px 16px 64px;
    justify-content: center;
  }

  .cta__logo {
    width: 180px;
  }

  .cta__title {
    width: 100%;
    align-items: center;
    font-size: 32px;
    letter-spacing: 5px;
  }

  .cta__title-line--left,
  .cta__title-line--right {
    text-align: center;
  }

  .cta__subtitle {
    width: 100%;
    font-size: 20px;
  }

  .footer__logos {
    flex-direction: column;
    gap: 24px;
  }

  .modal {
    padding: 16px;
  }

  .modal__panel {
    padding: 56px 20px;
    gap: 24px;
    max-height: 92vh;
  }

  .modal__title {
    font-size: clamp(22px, 6vw, 30px);
    letter-spacing: 3px;
  }

  .modal__title--quiz {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .quiz__questions {
    flex-direction: column;
    gap: 32px;
  }

  .quiz__legend {
    font-size: 24px;
  }

  .contact__row {
    flex-direction: column;
    gap: 24px;
  }

  .contact,
  .consents {
    width: 100%;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {

  .editorial__text,
  .portrait__title,
  .portrait__lead,
  .portrait__body {
    max-width: 100%;
  }

  .editorial__media-img,
  .portrait__img {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero__script {
    font-size: 60px;
  }
}

@media (max-width: 400px) {
  .reasons__bg::after {
    background: linear-gradient(to bottom, var(--color-coffee) 75%, rgba(52, 36, 29, 0.8) 82%, rgba(52, 36, 29, 0) 87%, rgba(52, 36, 29, 1) 92%);
  }

  .discover__title {
    font-size: 28px;
  }


}


@media (max-width: 400px) {
  .hero__script {
    font-size: 50px;
  }
}

@media (max-width: 374px) {
  .hero__script {
    font-size: 40px;
  }
}