/* Basic CSS reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

:root {
  --yellow: #FDFF78;
  --red: #E83630;
  --text: #3B4A1A;
  --paper: #ffffff;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: "acumin-pro", "Acumin Pro Light", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

.container {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
}

h1,
h2 {
  font-family: "acumin-pro-extra-condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.hero {
  position: relative;
  min-height: 720px;
  padding-block: clamp(56px, 8vw, 80px);
  overflow: hidden;
  background: #000;

  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #3B4A1A 0%, rgba(59, 74, 26, 0) 100%);
  z-index: 1;
  pointer-events: none;
  width: 40vw;
}

.hero__video {
  position: absolute;
  top: -12%;
  left: 0%;
  width: 100%;
  height: 124%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

.hero__content {
  position: relative;
  z-index: 2;
  will-change: transform;
}

.hero__content h1 {
  margin-top: clamp(90px, 15vw, 170px);

  max-width: 564px;
  font-size: clamp(2.2rem, 7vw, 90px);
}

.hero__content h1 span {
  display: block;

  color: var(--yellow);
}

.logo {
  width: min(180px, 45vw);
  height: auto;
  margin-bottom: 1rem;
  margin-left: 0;
}

.hero__badge {
  position: absolute;
  right: 1.5rem;
  bottom: 2.3rem;
  width: clamp(120px, 20vw, 229px);
  height: auto;
}

.card-yellow {
  z-index: 999;
  margin-top: -40px;
  background: var(--yellow);
  border-radius: 30px 30px 0 0;
  position: relative;
}

.card-yellow::after  {
  content: '';

  position: absolute;
  bottom: 0; left: 0; right: 0;

  height: 64px;
  background-color: #fff;
}

.intro .container {
  display: flex;
  gap: clamp(32px, 6vw, 80px);
  padding-top: clamp(52px, 9vw, 120px);
  position: relative;
  z-index: 999;
}

.intro__copy {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intro__copy h1 {
  max-width: 564px;
  font-size: clamp(2.2rem, 7vw, 90px);

  color: var(--red)
}

.intro__copy h1 span {
  display: block;

  color: var(--text);
}

.intro__copy p {
  font-size: clamp(1.08rem, 1.3vw + 0.75rem, 24px);
  line-height: 1.65;
  font-weight: 600;
  margin-top: 16px;
}

.intro__copy p + p {
  margin-top: 1rem;
}

.retailers {
  margin-top: 1.25rem;
  max-width: 430px;
}

.retailers span {
  background: #fff;
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.image-slot--intro {
  flex-basis: 474px;
}

.feature {
  z-index: 1000;
  position: relative;
  padding-block: clamp(70px, 12vw, 155px);
}

.feature .container {
  display: flex;
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
}

.image-slot--orchard {
  flex-basis: 474px;
}

.image-slot--kitchen {
  flex-basis: 598px;
}

.feature__copy {
  flex: 1 1 0;
}

.feature h2 {
  color: var(--red);
  font-size: clamp(2rem, 5.5vw, 72px);
  margin-bottom: clamp(22px, 4vw, 40px);
  text-transform: uppercase;
}

.feature p {
  font-size: clamp(1rem, 0.45vw + 0.88rem, 18px);
  line-height: 1.85;
}

.feature + .feature {
  padding-top: 0;
}

.image-slot {
  width: 100%;
  min-height: 230px;
}

.image-slot--intro {
  min-height: 260px;
}

.preclosing {
  padding-block: 64px;
  background-color: var(--yellow);
  margin-bottom: -30px;
  border-radius: 30px 30px 0 0;
}

.preclosing h2 {
  max-width: 514px;
  font-size: clamp(2rem, 6vw, 72px);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  color: var(--red);
}

.closing {
  padding-block: clamp(72px, 14vw, 180px);
  display: flex;
  color: #fff;

  background: url('../images/glow.png') no-repeat center center / cover;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  min-height: 275px;
}

.closing h2 {
  max-width: 514px;
  font-size: clamp(2rem, 6vw, 72px);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.bottom-strip {
  height: clamp(100px, 16vw, 170px);
  background: var(--yellow);
}

.bottom-strip img {
  max-width: clamp(220px, 48vw, 430px);
  position: relative;
  top: clamp(-42px, -7vw, -61px);
  display: block;
  margin-left: 0;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3000;
  width: min(92vw, 420px);
  padding: 16px;
  border-radius: 14px;
  background: rgba(59, 74, 26, 0.96);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.cookie-banner p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.cookie-banner__btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner__btn--reject {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.cookie-banner__btn--accept {
  background: var(--yellow);
  color: #1f2a0f;
}

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

@media (min-width: 760px) {
  .feature--reverse .image-slot--kitchen {
    order: 2;
  }
}

@media (min-width: 1200px) {
  .container {
    width: min(100% - 140px, 1160px);
  }
}

.shown {
  display: none;
}

@media (max-width: 980px) {
  .hidden {
    display: none;
  }

  .shown {
    display: block;
  }

  .intro .container,
  .feature .container {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Text first, image below on mobile / narrow viewports */
  .feature .feature__copy {
    order: 1;
  }

  .feature .image-slot {
    order: 2;
  }

  .image-slot--intro,
  .image-slot--orchard,
  .image-slot--kitchen {
    flex-basis: auto;
    width: 100%;
    max-width: 680px;
  }

  .feature + .feature {
    padding-top: clamp(24px, 6vw, 56px);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .hero {
    min-height: 320px;
    padding-top: 40px;
    padding-bottom: 52px;
  }

  .hero__content h1 {
    max-width: 460px;
    line-height: 0.92;
  }

  .logo {
    width: min(150px, 40vw);
  }

  .hero__badge {
    right: 0;
    top: 0;
    bottom: auto;
    width: 75%;
    max-width: 170px;
  }

  .card-yellow {
    border-radius: 24px 24px 0 0;
  }

  .closing {
    border-radius: 24px 24px 0 0;
  }

  .feature p {
    line-height: 1.7;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

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

  .cookie-banner__btn {
    flex: 1 1 0;
  }
}

@media (max-width: 480px) {
  .hero__content h1 {
    margin-top: 72px;
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .hero__badge {
    top: 0;
    bottom: auto;
    width: 75%;
    max-width: 100px;
  }

  .intro__copy p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .feature h2,
  .closing h2 {
    line-height: 0.96;
  }
}
