@font-face {
  font-display: swap;
  font-family: "Degular Demo";
  font-style: normal;
  font-weight: 400;
  src: url("https://beautyinstem.com/cdn/shop/t/5/assets/DegularDemo-Regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 400;
  src: url("https://beautyinstem.com/cdn/shop/t/5/assets/Metropolis-Regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Metropolis";
  font-style: normal;
  font-weight: 600;
  src: url("https://beautyinstem.com/cdn/shop/t/5/assets/Metropolis-SemiBold.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #202020;
  --ink-soft: #4b4b4b;
  --brown: #331b0f;
  --green: #103c2d;
  --green-2: #1f6047;
  --bronze: #b99353;
  --rose: #d7b9ad;
  --cream: #f7f3ee;
  --paper: #fbfaf8;
  --mist: #ebe7df;
  --white: #ffffff;
  --line: rgba(51, 27, 15, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 70px rgba(32, 32, 32, 0.14);
  --shell: min(1280px, calc(100% - 40px));
  --scroll: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Degular Demo",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  text-rendering: geometricPrecision;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 20000;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 30000;
  background: var(--paper);
  opacity: 1;
  pointer-events: none;
  transition: opacity 900ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

body.is-ready .page-transition {
  opacity: 0 !important;
  visibility: hidden;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 900ms cubic-bezier(0.11, 0.82, 0.39, 0.92),
    transform 900ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  color: var(--ink);
  backdrop-filter: none;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(15px, 1.875vw, 36px) clamp(15px, 3.125vw, 60px);
  background: rgba(255, 255, 255, 0.82);
}

.header__nav {
  display: flex;
  align-items: center;
  flex: 1 1 0;
}

.header__nav--left {
  gap: clamp(20px, 3.021vw, 58px);
  justify-content: flex-start;
}

.header__nav--right {
  gap: clamp(22px, 3.333vw, 64px);
  justify-content: flex-end;
}

.header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(95px, 11.302vw, 217px);
  transform: translate(-50%, -50%);
}

.header__logo img,
.header__menu-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: var(--ink);
  font-size: clamp(14px, 1.0417vw, 20px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 500ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

.header__link:hover::after,
.header__link:focus-visible::after {
  transform: scaleX(1);
}

.header__icon {
  justify-content: center;
  width: 34px;
}

.header__icon::after {
  display: none;
}

.header__mobile-icon span {
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 99px;
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.header__mobile-actions {
  display: none;
  align-items: center;
  gap: 14px;
}

.header__mobile-icon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--ink);
}

.header__burger {
  position: relative;
  width: 28px;
  height: 22px;
  background: transparent;
}

.header__burger span {
  position: absolute;
  right: 0;
  height: 2px;
  background: var(--brown);
  transition: width 700ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

.header__burger span:nth-child(1) {
  top: 3px;
  width: 100%;
}

.header__burger span:nth-child(2) {
  top: 10px;
  width: 62%;
}

.header__burger span:nth-child(3) {
  top: 17px;
  width: 100%;
}

.header__menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

.header__menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header__menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.header__menu-logo {
  display: flex;
  align-items: center;
  width: 142px;
}

.header__menu-top button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--brown);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.header__menu-nav {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
  background:
    linear-gradient(rgba(247, 243, 238, 0.88), rgba(247, 243, 238, 0.95)),
    url("assets/hemp-plant.webp");
  background-size: cover;
  background-position: center;
}

.menu-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--bronze);
}

.header__menu-nav a {
  overflow: hidden;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.header__menu-nav a span {
  display: block;
}

.header__menu-follow {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px 20px 40px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
}

.header__menu-follow span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.header__menu-follow a {
  color: var(--green);
  font-size: 1.1rem;
  text-decoration: underline;
}

.button-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  overflow: hidden;
  border: 1px solid var(--brown);
  padding: 0 24px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    color 520ms cubic-bezier(0.11, 0.82, 0.39, 0.92),
    border-color 520ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

.button-link::before,
.button-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateY(-110%);
}

.button-link::before {
  background: var(--rose);
  transition: transform 250ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

.button-link::after {
  background: var(--brown);
  transition: transform 560ms cubic-bezier(0.11, 0.82, 0.39, 0.92) 100ms;
}

.button-link > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}

.button-link:hover,
.button-link:focus-visible {
  color: #fff;
  border-color: var(--brown);
}

.button-link:hover::before,
.button-link:hover::after,
.button-link:focus-visible::before,
.button-link:focus-visible::after {
  transform: translateY(0);
}

.button-link--light {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.button-link--outline {
  border-color: var(--green);
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--green);
  color: #fff;
}

.hero__video {
  position: absolute;
  top: clamp(-50px, -2.604vw, -20px);
  left: 0;
  width: 100%;
  height: 115dvh;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, calc(var(--scroll) * 0.022px), 0) scale(1.02);
  filter: saturate(0.96) contrast(1);
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%, rgba(16, 60, 45, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05), transparent 56%, rgba(0, 0, 0, 0.06));
}

.hero__title {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 2.604vw, 50px);
  z-index: 2;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
}

.hero__title[data-reveal] {
  transform: translateX(-50%) translateY(42px);
}

.hero__title[data-reveal].is-visible {
  transform: translateX(-50%) translateY(0);
}

.hero__title p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 650;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 auto;
  max-width: none;
  font-family: "Metropolis", "Degular Demo", sans-serif;
  font-size: clamp(32px, 3.6458vw, 70px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(1) {
  margin-bottom: clamp(5px, 1.0417vw, 20px);
  text-transform: none;
}

.hero h1 span:nth-child(2) {
  font-size: clamp(22px, 2.6042vw, 50px);
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.collection,
.philosophy,
.steps,
.manufacturing,
.trust,
.news {
  scroll-margin-top: 92px;
}

.collection {
  position: relative;
  overflow: hidden;
  padding: 130px 0 150px;
  background: var(--paper);
}

.section-kicker {
  width: var(--shell);
  margin: 0 auto 56px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-kicker h2,
.title-chip {
  margin: 0;
  color: var(--brown);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  text-transform: lowercase;
}

.section-kicker a,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 650;
  text-transform: uppercase;
}

.collection__track {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.125vw, 60px);
}

.product-card {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  color: var(--ink);
  transition:
    transform 650ms cubic-bezier(0.11, 0.82, 0.39, 0.92),
    opacity 650ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
  transition-delay: var(--delay, 0ms);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-8px);
}

.product-card__select {
  position: absolute;
  left: clamp(18px, 2.1vw, 34px);
  right: clamp(18px, 2.1vw, 34px);
  bottom: clamp(18px, 2vw, 32px);
  z-index: 2;
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(51, 27, 15, 0.48);
  background: rgba(255, 255, 255, 0.22);
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(10px);
  transition:
    opacity 480ms cubic-bezier(0.11, 0.82, 0.39, 0.92),
    transform 480ms cubic-bezier(0.11, 0.82, 0.39, 0.92),
    background 480ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

.product-card figure {
  position: relative;
  display: grid;
  aspect-ratio: 1088 / 1445;
  place-items: center;
  margin: 0 0 22px;
  overflow: hidden;
  background: #f7f7f4;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

.product-card:hover img,
.product-card:focus-visible img {
  transform: scale(1.025);
}

.product-card:hover .product-card__select,
.product-card:focus-visible .product-card__select {
  opacity: 1;
  transform: translateY(0);
}

.product-card__select:hover {
  background: rgba(255, 255, 255, 0.44);
}

.product-card div {
  display: grid;
  gap: 8px;
}

.product-card h3 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(1.1rem, 1.25vw, 1.5rem);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.product-card strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.04vw, 1.25rem);
  font-weight: 400;
  line-height: 1.1;
}

.product-card p {
  max-width: 28ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.04vw, 1.2rem);
  line-height: 1.38;
}

.philosophy {
  position: relative;
  overflow: hidden;
  padding: 60px 0 170px;
  background: var(--paper);
  text-align: center;
}

.philosophy h2 {
  width: min(1000px, calc(100% - 34px));
  margin: 70px auto 90px;
  color: var(--brown);
  font-size: 4.3rem;
  font-weight: 520;
  line-height: 1.08;
  text-transform: uppercase;
}

.philosophy__diagram {
  position: relative;
  width: var(--shell);
  min-height: 650px;
  margin: 0 auto 42px;
}

.molecule {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(51, 27, 15, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(16, 60, 45, 0.12), transparent 47%),
    linear-gradient(135deg, rgba(215, 185, 173, 0.18), rgba(255, 255, 255, 0.12));
  animation: slow-turn 22s linear infinite;
}

.molecule::before,
.molecule::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(51, 27, 15, 0.14);
  border-radius: 50%;
}

.molecule::after {
  inset: 31%;
  border-color: rgba(16, 60, 45, 0.22);
}

.molecule span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--paper);
}

.molecule span:nth-child(1) {
  left: 48%;
  top: 10%;
}

.molecule span:nth-child(2) {
  right: 15%;
  top: 38%;
}

.molecule span:nth-child(3) {
  left: 20%;
  bottom: 20%;
}

.molecule span:nth-child(4) {
  right: 28%;
  bottom: 12%;
}

.molecule i {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: rgba(51, 27, 15, 0.18);
}

.molecule i:nth-of-type(1) {
  left: 50%;
  top: 18%;
  width: 174px;
  transform: rotate(42deg);
}

.molecule i:nth-of-type(2) {
  left: 29%;
  top: 61%;
  width: 210px;
  transform: rotate(-22deg);
}

.molecule i:nth-of-type(3) {
  left: 52%;
  top: 54%;
  width: 150px;
  transform: rotate(72deg);
}

.philosophy__note {
  position: absolute;
  width: 270px;
  text-align: left;
}

.philosophy__note strong {
  display: block;
  color: var(--brown);
  font-size: 2rem;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.philosophy__note p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.32;
}

.philosophy__note--1 {
  right: 4%;
  top: 78px;
}

.philosophy__note--2 {
  left: 9%;
  top: 270px;
}

.philosophy__note--3 {
  right: 8%;
  bottom: 100px;
}

.philosophy__note--4 {
  left: 21%;
  bottom: 20px;
}

.system-image {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  background: var(--green);
}

.system-image img {
  position: absolute;
  inset: -8dvh 0 auto;
  width: 100%;
  height: 116dvh;
  object-fit: cover;
  transform: translate3d(0, calc(var(--scroll) * -0.025px), 0);
  filter: saturate(0.84) contrast(1.03);
}

.system-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 243, 238, 0.74), rgba(247, 243, 238, 0.25) 45%, rgba(16, 60, 45, 0.32));
}

.system-image h2 {
  position: absolute;
  right: 60px;
  top: 170px;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: var(--brown);
  font-size: 4.1rem;
  font-weight: 480;
  line-height: 1.06;
  text-transform: uppercase;
}

.steps {
  position: relative;
  overflow: clip;
  padding: 135px 0 180px;
  background:
    linear-gradient(180deg, var(--paper), var(--cream));
}

.steps__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  width: var(--shell);
  margin: 0 auto 135px;
}

.steps__title-number {
  height: 190px;
  color: var(--rose);
  font-size: 11.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 0.86;
}

.steps__title h2 {
  margin: 0;
  color: var(--brown);
  font-size: 4.4rem;
  font-weight: 560;
  line-height: 1;
  text-transform: uppercase;
}

.steps__title p {
  max-width: 570px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 1.35rem;
  line-height: 1.22;
}

.steps__main {
  position: relative;
  width: var(--shell);
  margin: 0 auto;
}

.steps__sticky {
  position: sticky;
  top: 96px;
  z-index: 0;
  display: grid;
  min-height: 520px;
  place-items: center;
  pointer-events: none;
}

.steps__sticky .button-link {
  pointer-events: auto;
}

.steps__emblem {
  position: absolute;
  display: grid;
  width: 360px;
  height: 360px;
  place-items: center;
  border: 1px solid rgba(51, 27, 15, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(247, 243, 238, 0.36) 58%, transparent 59%),
    repeating-linear-gradient(90deg, rgba(16, 60, 45, 0.05) 0 1px, transparent 1px 28px);
  animation: slow-turn 28s linear infinite reverse;
}

.steps__emblem img {
  width: 160px;
  opacity: 0.74;
}

.steps__wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 150px;
  padding-bottom: 70px;
}

.step-block {
  display: flex;
  width: min(600px, 100%);
  gap: 28px;
  color: var(--ink);
}

.step-block:nth-child(even) {
  justify-self: end;
}

.step-block > span {
  flex: 0 0 auto;
  color: var(--rose);
  font-size: 5.8rem;
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;
}

.step-block p {
  margin: 4px 0 10px;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 650;
  text-transform: uppercase;
}

.step-block h3 {
  margin: 0;
  color: var(--brown);
  font-size: 2.35rem;
  font-weight: 650;
  line-height: 0.98;
  text-transform: uppercase;
}

.step-block strong {
  display: block;
  max-width: 42ch;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
}

.step-block small {
  display: inline-block;
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.manufacturing {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 62px;
  width: var(--shell);
  margin: 0 auto;
  padding: 140px 0 150px;
  align-items: center;
  background: var(--paper);
}

.manufacturing__media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--green);
}

.manufacturing__media video {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.manufacturing__copy h2 {
  margin: 34px 0 0;
  color: var(--brown);
  font-size: 4.1rem;
  font-weight: 520;
  line-height: 1.02;
  text-transform: uppercase;
}

.manufacturing__copy > p:not(.title-chip) {
  max-width: 58ch;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.62;
}

.manufacturing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust {
  overflow: hidden;
  padding: 120px 0 140px;
  background: var(--cream);
}

.trust__head {
  width: var(--shell);
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: minmax(160px, 0.25fr) minmax(0, 0.75fr);
  gap: 48px;
  align-items: end;
}

.trust__head h2 {
  margin: 0;
  color: var(--brown);
  font-size: 4.4rem;
  font-weight: 540;
  line-height: 1.02;
  text-transform: uppercase;
}

.trust__badges {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.trust__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid var(--line);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 650;
  text-transform: uppercase;
}

.review-marquee {
  overflow: hidden;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 8px 0;
  animation: marquee 34s linear infinite;
}

.review-card {
  width: 380px;
  min-height: 250px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  padding: 22px;
}

.review-card span {
  color: var(--bronze);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.review-card p {
  margin: 44px 0 32px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.32;
}

.review-card strong {
  color: var(--green);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.featured-line {
  width: var(--shell);
  margin: 72px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.featured-line span,
.featured-line strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  padding: 0 12px;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 650;
  text-transform: uppercase;
}

.featured-line span {
  border-color: transparent;
  color: var(--ink-soft);
}

.news {
  padding: 130px 0 150px;
  background: var(--paper);
}

.news__grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  display: grid;
  border: 1px solid var(--line);
  background: var(--white);
}

.news-card--wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
}

.news-card__image {
  display: block;
  min-height: 300px;
  overflow: hidden;
  background: var(--cream);
}

.news-card__image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

.news-card:hover .news-card__image img {
  transform: scale(1.04);
}

.news-card > div {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
}

.news-card time {
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  color: var(--brown);
  font-size: 1.52rem;
  line-height: 1.04;
  text-transform: uppercase;
}

.news-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) repeat(4, minmax(0, 0.72fr));
  gap: 34px;
  padding: 72px max(20px, calc((100% - 1280px) / 2)) 34px;
  background: var(--green);
  color: #fff;
}

.footer__brand img {
  width: 190px;
}

.footer__brand p {
  max-width: 36ch;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.footer form {
  display: grid;
  gap: 10px;
  max-width: 360px;
}

.footer label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer form div {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.footer input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 12px;
}

.footer input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.footer form button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer__nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer__nav h2 {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.25;
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: #fff;
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1800;
  background: rgba(32, 32, 32, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1900;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  width: min(520px, 100vw);
  height: 100dvh;
  transform: translateX(105%);
  background: var(--paper);
  color: var(--ink);
  box-shadow: -32px 0 80px rgba(32, 32, 32, 0.18);
  transition: transform 560ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
}

.cart-sidebar.is-open {
  transform: translateX(0);
}

.cart-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
  padding: 0 20px;
  text-transform: uppercase;
}

.cart-sidebar__head button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brown);
  text-transform: uppercase;
}

.cart-sidebar__empty {
  padding: 40px 24px;
}

.cart-sidebar__empty p {
  margin: 0;
  color: var(--brown);
  font-size: 2.2rem;
  font-weight: 520;
  line-height: 1.08;
  text-transform: uppercase;
}

.cart-upsell {
  min-height: 0;
  overflow: auto;
  padding: 0 20px 24px;
}

.cart-upsell__title {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.cart-upsell__track {
  display: grid;
  gap: 14px;
}

.cart-upsell__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
}

.cart-upsell__image {
  display: grid;
  min-height: 118px;
  place-items: center;
  background: var(--cream);
}

.cart-upsell__image img {
  width: 86%;
  max-height: 108px;
  object-fit: contain;
}

.cart-upsell__top {
  display: grid;
  gap: 4px;
}

.cart-upsell__top span,
.cart-upsell__top strong {
  color: var(--brown);
  font-size: 0.84rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.cart-upsell__item p {
  margin: 12px 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.cart-upsell__item button {
  background: transparent;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 750;
  text-transform: uppercase;
}

.cart-sidebar__footer {
  border-top: 1px solid var(--line);
  padding: 18px 20px 22px;
}

.cart-sidebar__footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.cart-sidebar__footer .button-link {
  width: 100%;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #44d46a;
  color: #fff;
  box-shadow: 0 18px 44px rgba(16, 60, 45, 0.28);
}

.noscript {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 40px;
  text-align: center;
}

.noscript img {
  width: 180px;
}

@keyframes slow-turn {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes slow-turn-mobile {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .philosophy h2,
  .system-image h2,
  .manufacturing__copy h2,
  .trust__head h2 {
    font-size: 3.8rem;
  }

  .collection__track {
    overflow-x: auto;
    grid-auto-columns: minmax(320px, 42%);
    grid-template-columns: none;
    grid-auto-flow: column;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .product-card {
    scroll-snap-align: start;
  }

  .manufacturing {
    grid-template-columns: 1fr;
  }

  .manufacturing__media {
    min-height: 520px;
  }

  .manufacturing__media video {
    min-height: 520px;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 30px, 1280px);
  }

  .header__inner {
    min-height: 0;
    padding: 15px;
  }

  .header__nav {
    display: none;
  }

  .header__logo {
    position: static;
    width: 95px;
    transform: none;
  }

  .header__mobile-actions {
    display: flex;
  }

  .hero__title {
    bottom: 20px;
  }

  .hero__video {
    top: -50px;
    height: 115dvh;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h1 span:nth-child(1) {
    margin-bottom: 5px;
  }

  .hero h1 span:nth-child(2) {
    font-size: 22px;
  }

  .collection {
    padding: 84px 0 104px;
  }

  .section-kicker {
    align-items: start;
    flex-direction: column;
  }

  .philosophy {
    padding-bottom: 110px;
  }

  .philosophy h2 {
    margin: 48px auto 40px;
    font-size: 2.7rem;
  }

  .philosophy__diagram {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .molecule {
    position: relative;
    left: auto;
    top: auto;
    width: min(360px, 100%);
    height: 360px;
    margin: 0 auto 20px;
    transform: none;
    animation-name: slow-turn-mobile;
  }

  .philosophy__note {
    position: static;
    width: auto;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    text-align: left;
  }

  .system-image {
    height: 76dvh;
    min-height: 520px;
  }

  .system-image h2 {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 26px;
    font-size: 3.1rem;
  }

  .steps {
    padding: 90px 0 105px;
  }

  .steps__title {
    align-items: start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 70px;
  }

  .steps__title-number {
    height: auto;
    font-size: 7rem;
  }

  .steps__title h2 {
    font-size: 3rem;
  }

  .steps__title p {
    font-size: 1.08rem;
  }

  .steps__sticky {
    display: none;
  }

  .steps__wrapper {
    gap: 52px;
  }

  .step-block,
  .step-block:nth-child(even) {
    justify-self: start;
  }

  .step-block {
    border-bottom: 1px solid var(--line);
    padding-bottom: 46px;
  }

  .step-block > span {
    font-size: 4.5rem;
  }

  .manufacturing {
    padding: 96px 0 104px;
  }

  .manufacturing__copy h2 {
    font-size: 3rem;
  }

  .trust {
    padding: 92px 0 108px;
  }

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

  .trust__badges {
    grid-column: auto;
  }

  .trust__head h2 {
    font-size: 2.8rem;
  }

  .news__grid {
    grid-template-columns: 1fr;
  }

  .news-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header__inner {
    padding: 15px;
  }

  .hero {
    min-height: 100svh;
  }

  .button-link {
    min-height: 46px;
    width: 100%;
  }

  .collection__track {
    grid-auto-columns: minmax(260px, 82%);
    gap: 16px;
  }

  .philosophy h2 {
    font-size: 2.1rem;
  }

  .molecule {
    height: 300px;
  }

  .philosophy__note strong {
    font-size: 1.45rem;
  }

  .system-image h2,
  .manufacturing__copy h2,
  .trust__head h2,
  .steps__title h2 {
    font-size: 2.25rem;
  }

  .manufacturing__media,
  .manufacturing__media video {
    min-height: 430px;
  }

  .manufacturing__actions {
    display: grid;
  }

  .review-card {
    width: 310px;
  }

  .news {
    padding: 86px 0 98px;
  }

  .news-card__image,
  .news-card__image img {
    min-height: 250px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .cart-upsell__item {
    grid-template-columns: 96px 1fr;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero__video,
  .system-image img {
    transform: none;
  }
}
