:root {
  --font-nimbu: "Nimbu Demo", "Trebuchet MS", "Avenir Next", Verdana, sans-serif;
  --font-nimbu-slanted: "Nimbu Demo Slanted", "Nimbu Demo", "Trebuchet MS", sans-serif;
  --font-poppins: "Poppins", "Segoe UI", Arial, sans-serif;
  --green: #09543d;
  --green-deep: #063c2d;
  --pink: #ffa9e9;
  --brown: #461e10;
  --cream: #fffdf8;
  --white: #ffffff;
  --shadow: #241007;
}

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

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nimbu Demo";
  src: url("assets/nimbu-fonts/NimbuDemo-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nimbu Demo";
  src: url("assets/nimbu-fonts/NimbuDemo-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nimbu Demo";
  src: url("assets/nimbu-fonts/NimbuDemo-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nimbu Demo";
  src: url("assets/nimbu-fonts/NimbuDemo-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nimbu Demo";
  src: url("assets/nimbu-fonts/NimbuDemo-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nimbu Demo Slanted";
  src: url("assets/nimbu-fonts/NimbuDemo-SemiBoldSlanted.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Nimbu Demo Slanted";
  src: url("assets/nimbu-fonts/NimbuDemo-BoldSlanted.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--white);
  background: var(--cream);
  font-family: var(--font-nimbu);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.site-shell {
  width: min(100%, 1339px);
  margin: 0 auto;
  padding: 16px;
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.08), transparent 25%),
    radial-gradient(circle at 75% 62%, rgba(0, 0, 0, 0.08), transparent 28%),
    var(--green);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 9px 9px;
  mix-blend-mode: soft-light;
}

.hero::after {
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.7px, transparent 0.8px);
  background-size: 4px 4px;
}

.hero__nav,
.hero__content {
  position: relative;
  z-index: 1;
}

.hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 42px 0 45px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}

.brand__mark {
  display: block;
  width: 22px;
  height: 22px;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0 25px;
  color: var(--brown);
  background: var(--pink);
  box-shadow: 3px 4px 0 var(--shadow);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 2px 0 var(--shadow);
}

.button--small {
  min-height: 43px;
  padding-inline: 18px;
}

.button--secondary {
  background: var(--white);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(440px, 1fr);
  align-items: center;
  gap: 32px;
  min-height: 657px;
  padding: 26px 0 52px 45px;
}

.hero__copy {
  max-width: 690px;
  padding-top: 30px;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-nimbu);
  font-size: 75.21px;
  font-weight: 600;
  line-height: 76.15px;
  letter-spacing: 0.54px;
  text-transform: uppercase;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.hero h1 .line > span {
  display: inline-block;
}

.hero h1 em {
  display: inline-block;
  padding: 0 17px 3px;
  color: var(--brown);
  background: var(--pink);
  font-family: var(--font-nimbu-slanted);
  font-weight: 600;
  font-style: italic;
  transform: translateY(-2px);
}

.hero p {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-poppins);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 56px;
}

.hero__art {
  position: relative;
  align-self: end;
  min-height: 545px;
}

.hero__art img {
  position: absolute;
  right: -1px;
  bottom: 22px;
  width: min(55vw, 589px);
  max-width: none;
  filter: contrast(1.08);
}

.why {
  position: relative;
  min-height: 1053px;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(ellipse at 50% 64%, rgba(70, 30, 16, 0.08), transparent 42%),
    #fffdf7;
  color: var(--brown);
  padding: 124px 42px 86px;
}

.why::before,
.why::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  content: "";
  background: repeating-linear-gradient(to bottom, rgba(51, 38, 1, 0.16), rgba(51, 38, 1, 0.16) 7px, transparent 7px, transparent 17px);
}

.why::before {
  left: 46px;
}

.why::after {
  right: 46px;
}

.why__heading {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin: 0 auto;
  text-align: center;
}

.why__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--brown);
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 600;
}

.why__eyebrow img {
  width: 14px;
  height: 14px;
}

.why h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(42px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 0.94;
}

.why h2 .title-line {
  display: block;
  overflow: hidden;
}

.why h2 .title-line > span {
  display: inline-block;
}

.why h2 em {
  display: inline-block;
  margin-top: 4px;
  padding: 0 10px 5px;
  background: var(--pink);
  font-family: var(--font-nimbu-slanted);
  font-style: italic;
  font-weight: 700;
}

.has-js .hero__nav,
.has-js .hero p,
.has-js .hero__actions,
.has-js .hero__art,
.has-js .why__eyebrow,
.has-js .why__heading > p:last-child,
.has-js .benefit-card {
  visibility: hidden;
}

.has-js .hero h1 .line > span,
.has-js .why h2 .title-line > span {
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .has-js .hero__nav,
  .has-js .hero p,
  .has-js .hero__actions,
  .has-js .hero__art,
  .has-js .why__eyebrow,
  .has-js .why__heading > p:last-child,
  .has-js .benefit-card,
  .has-js .hero h1 .line > span,
  .has-js .why h2 .title-line > span {
    visibility: visible;
  }
}

.why__heading > p:last-child {
  margin: 20px 0 0;
  color: rgba(70, 30, 16, 0.62);
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 500;
}

.why__cards {
  position: relative;
  z-index: 1;
  width: min(860px, 78vw);
  min-height: 650px;
  margin: 106px auto 0;
}

.benefit-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  min-height: 160px;
  border-radius: 18px;
  padding: 42px 48px;
  background: var(--white);
  box-shadow: 0 22px 46px rgba(51, 38, 1, 0.07);
  color: #332601;
  cursor: default;
  outline: none;
  transform-origin: center;
  transition:
    box-shadow 220ms ease,
    background-color 220ms ease;
  will-change: transform;
}

.benefit-card::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(51, 38, 1, 0);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition:
    border-color 220ms ease,
    inset 220ms ease;
}

.benefit-card:is(:hover, :focus-visible) {
  background: #fffefa;
  box-shadow: 0 32px 62px rgba(51, 38, 1, 0.13);
}

.benefit-card:is(:hover, :focus-visible)::after {
  inset: 8px;
  border-color: rgba(51, 38, 1, 0.14);
}

.benefit-card:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 169, 233, 0.78),
    0 32px 62px rgba(51, 38, 1, 0.13);
}

.benefit-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-poppins);
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
  transition: color 180ms ease;
}

.benefit-card p {
  max-width: 310px;
  margin: 0;
  color: rgba(51, 38, 1, 0.86);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  transition: color 180ms ease;
}

.benefit-card img {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  object-fit: contain;
  transform-origin: 50% 85%;
  will-change: transform;
}

.benefit-card:is(:hover, :focus-visible) h3 {
  color: var(--brown);
}

.benefit-card:is(:hover, :focus-visible) p {
  color: rgba(51, 38, 1, 0.96);
}

.benefit-card--calm {
  top: 0;
  left: 0;
  width: 674px;
  transform: rotate(0.4deg);
}

.benefit-card--flavour {
  top: 228px;
  right: 0;
  width: 674px;
  transform: rotate(-3.1deg);
}

.benefit-card--comfort {
  top: 365px;
  left: 112px;
  width: 674px;
  transform: rotate(6deg);
}

@media (max-width: 980px) {
  .site-shell {
    padding: 10px;
  }

  .hero {
    min-height: 0;
  }

  .hero__nav {
    padding: 24px 24px 0;
  }

  .hero__content {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 80px 24px 34px;
  }

  .hero__copy {
    max-width: 720px;
    padding-top: 0;
  }

  .hero__art {
    min-height: 380px;
  }

  .hero__art img {
    right: 50%;
    bottom: -12px;
    width: min(92vw, 560px);
    transform: translateX(50%);
  }

  .why {
    min-height: 0;
    padding: 96px 24px 80px;
  }

  .why::before,
  .why::after {
    display: none;
  }

  .why__cards {
    display: grid;
    gap: 22px;
    width: min(100%, 680px);
    min-height: 0;
    margin-top: 70px;
  }

  .benefit-card {
    position: static;
    width: 100%;
    min-height: 150px;
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 640px) {
  .hero__nav {
    align-items: flex-start;
  }

  .brand {
    font-size: 20px;
  }

  .button--small {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .hero__content {
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(35px, 10.6vw, 42px);
    line-height: 1.02;
    letter-spacing: 0.3px;
  }

  .hero h1 em {
    padding-inline: 10px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 36px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .why {
    padding: 72px 18px 56px;
  }

  .why h2 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .why__heading > p:last-child {
    font-size: 16px;
  }

  .benefit-card {
    align-items: flex-start;
    gap: 20px;
    border-radius: 12px;
    padding: 28px 24px;
  }

  .benefit-card h3 {
    font-size: 25px;
  }

  .benefit-card p {
    font-size: 14px;
  }

  .benefit-card img {
    width: 72px;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-card,
  .benefit-card::after,
  .benefit-card h3,
  .benefit-card p {
    transition: none;
  }
}

@media (max-width: 430px) {
  .site-shell {
    padding: 0;
  }

  .hero {
    border-radius: 0;
  }

  .hero__nav {
    padding-inline: 18px;
  }

  .hero__content {
    padding-inline: 18px;
  }
}
