:root {
  --ink: #112a22;
  --green: #17382d;
  --green-mid: #315a48;
  --cream: #f3eedf;
  --sand: #d9c6a5;
  --coral: #f27b61;
  --yellow: #f2c94c;
  --white: #fffdf7;
  --line: rgba(17, 42, 34, 0.18);
  --radius: 26px;
  --shadow: 0 22px 60px rgba(17, 42, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.offer-bar {
  position: relative;
  z-index: 12;
  padding: 10px 24px;
  color: var(--cream);
  background: var(--green);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.offer-bar p {
  margin: 0;
}

.offer-bar a {
  margin-left: 10px;
  font-weight: 700;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 238, 223, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  fill: var(--green);
}

.brand-mark .mark-detail {
  fill: none;
  stroke: var(--cream);
  stroke-width: 2.8;
  stroke-linecap: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  color: var(--cream);
  background: var(--green);
  font-size: 0.85rem;
}

.button-primary {
  min-width: 270px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(23, 56, 45, 0.18);
}

.button-primary:hover {
  box-shadow: 0 16px 32px rgba(23, 56, 45, 0.26);
}

.button-coral {
  color: var(--green);
  background: var(--coral);
  white-space: nowrap;
}

.hero {
  overflow: hidden;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 36px;
  padding-block: 46px 50px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 16px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--green-mid);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: var(--coral);
}

.eyebrow-light {
  color: var(--sand);
}

.hero h1,
.manifesto h2,
.story-copy h2,
.comparison-header h2,
.preorder h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(4.2rem, 7.6vw, 7.1rem);
}

h1 em,
h2 em {
  color: var(--coral);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-lede {
  max-width: 570px;
  margin: 30px 0;
  color: #456057;
  font-size: 1.15rem;
  line-height: 1.65;
}

.hero-offer {
  display: flex;
  align-items: center;
  gap: 24px;
}

.price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: 9px;
}

.price-now {
  grid-row: span 2;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.price-was {
  color: #6f7d77;
  font-size: 0.9rem;
  text-decoration: line-through;
}

.price-label {
  color: #6f7d77;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.microcopy {
  margin: 13px 0 0 132px;
  color: #6f7d77;
  font-size: 0.75rem;
}

.hero-product {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.sun-shape {
  position: absolute;
  inset: 6% -12% auto auto;
  width: 580px;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 47% 53% 58% 42% / 43% 40% 60% 57%;
  transform: rotate(-8deg);
}

.sun-shape::before,
.sun-shape::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(17, 42, 34, 0.14);
  border-radius: inherit;
}

.sun-shape::before {
  inset: -14px 20px 12px -10px;
}

.sun-shape::after {
  inset: 14px -16px -10px 18px;
}

.bag-illustration {
  position: relative;
  z-index: 1;
  width: min(520px, 94%);
  height: 610px;
  overflow: visible;
  animation: bag-float 5s ease-in-out infinite;
}

.bag-illustration .clubs path {
  fill: #b8a37e;
  stroke: #132e25;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bag-illustration text,
.story-visual text {
  fill: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.bag-mark {
  fill: #e7deca;
}

.weight-stamp {
  position: absolute;
  top: 52px;
  left: 5px;
  z-index: 2;
  width: 104px;
  height: 104px;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  align-items: end;
  gap: 3px;
  color: var(--cream);
  background: var(--coral);
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 6px 7px 0 var(--green);
  transform: rotate(-10deg);
}

.weight-stamp strong {
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  line-height: 0.8;
}

.weight-stamp span {
  font-weight: 800;
  font-size: 0.8rem;
}

.color-tag {
  position: absolute;
  right: 8%;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 15px;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.color-tag span {
  width: 13px;
  height: 13px;
  background: var(--green-mid);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--green-mid);
}

.ticker {
  width: 102%;
  margin-left: -1%;
  overflow: hidden;
  color: var(--cream);
  background: var(--green);
  border-block: 2px solid var(--green);
  transform: rotate(-1deg);
}

.ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 16px 0;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ticker i {
  color: var(--coral);
  font-style: normal;
}

.section {
  padding-block: 130px;
}

.section-label {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 54px;
}

.section-label span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-label p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 42px;
  border-bottom: 1px solid var(--line);
}

.manifesto .section-label {
  display: flex;
  align-items: center;
}

.manifesto-copy h2 {
  max-width: 820px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.manifesto-copy > p {
  max-width: 670px;
  margin: 38px 0 0 auto;
  color: #4b625a;
  font-size: 1.15rem;
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-block: 22px 130px;
}

.stat-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 42px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-card h3 {
  position: relative;
  z-index: 1;
  max-width: 230px;
  margin: 88px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.stat-card > p:last-of-type {
  position: relative;
  z-index: 1;
  max-width: 270px;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

.stat-number {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.stat-number span {
  margin-left: 4px;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.stat-light {
  background: var(--white);
}

.stat-green {
  color: var(--cream);
  background: var(--green);
}

.stat-green svg {
  position: absolute;
  right: -20px;
  bottom: 12px;
  width: 250px;
}

.stat-green svg path {
  fill: none;
  stroke: var(--sand);
  stroke-width: 5;
  stroke-linecap: round;
}

.stat-coral {
  background: var(--coral);
}

.alpaca-peek {
  position: absolute;
  right: -25px;
  bottom: -50px;
  width: 190px;
  height: 180px;
  color: var(--green);
  background: var(--sand);
  border: 5px solid var(--green);
  border-radius: 50% 50% 40% 40%;
}

.alpaca-peek::before,
.alpaca-peek::after {
  position: absolute;
  top: -35px;
  width: 55px;
  height: 90px;
  content: "";
  background: var(--sand);
  border: 5px solid var(--green);
  border-radius: 80% 20% 50% 50%;
}

.alpaca-peek::before {
  left: 12px;
  transform: rotate(-25deg);
}

.alpaca-peek::after {
  right: 12px;
  transform: rotate(25deg) scaleX(-1);
}

.alpaca-peek span {
  position: relative;
  top: 45px;
  left: 57px;
  z-index: 2;
  margin-right: 40px;
  font-size: 1.8rem;
}

.flag {
  position: absolute;
  right: 52px;
  bottom: 25px;
  width: 7px;
  height: 180px;
  background: var(--green);
}

.flag::before {
  position: absolute;
  top: 0;
  left: 7px;
  width: 85px;
  height: 60px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 28%, 0 100%);
}

.flag::after {
  position: absolute;
  bottom: -10px;
  left: -28px;
  width: 65px;
  height: 18px;
  content: "";
  border: 4px solid var(--green);
  border-radius: 50%;
}

.product-story {
  overflow: hidden;
  color: var(--cream);
  background: var(--green);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 90px;
}

.story-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.story-circle {
  position: absolute;
  width: 540px;
  height: 540px;
  background: var(--coral);
  border-radius: 50%;
}

.story-circle::after {
  position: absolute;
  inset: 25px;
  content: "";
  border: 2px dashed rgba(17, 42, 34, 0.35);
  border-radius: 50%;
}

.story-visual svg {
  position: relative;
  z-index: 1;
  width: 465px;
  max-height: 590px;
  overflow: visible;
  filter: drop-shadow(0 30px 25px rgba(0, 0, 0, 0.2));
}

.detail-callout {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  color: var(--green);
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.75rem;
  font-weight: 700;
}

.detail-callout span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.65rem;
}

.callout-one {
  top: 19%;
  right: -4%;
}

.callout-two {
  right: -2%;
  bottom: 19%;
}

.story-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.story-lede {
  margin: 30px 0 45px;
  color: #c8d2cd;
  font-size: 1.08rem;
  line-height: 1.7;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-list li > span {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-list strong {
  font-family: "Manrope", sans-serif;
}

.feature-list p {
  margin: 5px 0 0;
  color: #aebdb6;
  font-size: 0.86rem;
  line-height: 1.5;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 62px;
}

.comparison-header h2 {
  font-size: clamp(3rem, 5.8vw, 5.5rem);
}

.comparison-header > p {
  margin: 0 0 8px;
  color: #556a62;
  line-height: 1.65;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
}

.comparison-row:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.comparison-row > span {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  text-align: center;
}

.comparison-row > span:first-child {
  justify-content: flex-start;
  font-weight: 600;
  text-align: left;
}

.comparison-title {
  background: rgba(217, 198, 165, 0.25);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-title > span {
  min-height: 84px;
}

.clusa-column {
  color: var(--cream);
  background: var(--green);
  font-weight: 700;
}

.comparison-title .clusa-column {
  position: relative;
  flex-direction: column;
  gap: 5px;
}

.comparison-title i {
  padding: 4px 8px;
  color: var(--green);
  background: var(--coral);
  border-radius: 99px;
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.05em;
}

.preorder {
  position: relative;
  overflow: hidden;
  padding-block: 125px;
  color: var(--cream);
  background: #102d24;
}

.preorder::before {
  position: absolute;
  top: -260px;
  right: -130px;
  width: 620px;
  height: 620px;
  content: "";
  border: 100px solid rgba(242, 123, 97, 0.1);
  border-radius: 50%;
}

.preorder-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.preorder h2 {
  font-size: clamp(3.2rem, 5vw, 5rem);
}

.preorder-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0;
  color: #bdc9c4;
  font-size: 1.05rem;
  line-height: 1.7;
}

.preorder-price {
  display: flex;
  align-items: center;
  gap: 20px;
}

.preorder-price > strong {
  font-family: "Manrope", sans-serif;
  font-size: 3.6rem;
  letter-spacing: -0.07em;
}

.preorder-price div {
  display: grid;
  gap: 4px;
}

.preorder-price s {
  color: #81928b;
}

.preorder-price span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 700;
}

.order-card {
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
}

.order-card-top {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
}

.mini-bag {
  position: relative;
  width: 78px;
  height: 90px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 18px;
}

.mini-bag span {
  width: 34px;
  height: 58px;
  background: var(--green-mid);
  border-radius: 8px 8px 12px 12px;
  transform: rotate(4deg);
}

.mini-bag span::before {
  position: absolute;
  top: 11px;
  left: 30px;
  width: 3px;
  height: 36px;
  content: "";
  background: var(--ink);
  transform: rotate(-12deg);
}

.order-card-top > div:last-child {
  display: grid;
  gap: 3px;
}

.order-card-top p {
  margin: 0;
  color: #77847f;
  font-size: 0.77rem;
}

.order-card-top strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
}

.order-card-top span {
  color: var(--green-mid);
  font-size: 0.76rem;
}

.preorder-form {
  padding: 30px;
}

.preorder-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.preorder-form input {
  min-width: 0;
  padding: 0 17px;
  color: var(--ink);
  background: #f3f0e8;
  border: 1px solid transparent;
  border-radius: 999px;
}

.preorder-form input:focus {
  border-color: var(--green-mid);
  outline: 3px solid rgba(242, 201, 76, 0.75);
}

.form-note,
.form-status {
  margin: 12px 4px 0;
  color: #6a7872;
  font-size: 0.72rem;
}

.form-status {
  min-height: 1em;
  color: var(--green-mid);
  font-weight: 700;
}

.order-benefits {
  display: flex;
  gap: 26px;
  padding: 17px 30px;
  background: #eee9dc;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
}

.footer {
  color: var(--cream);
  background: #0a211a;
}

.footer-top {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.brand-footer {
  color: var(--cream);
}

.brand-footer .brand-mark {
  fill: var(--cream);
}

.brand-footer .mark-detail {
  stroke: var(--green);
}

.footer-top p {
  color: #91a19a;
  font-family: Georgia, serif;
  font-style: italic;
}

.footer-top > a:last-child {
  justify-self: end;
  font-weight: 700;
  text-underline-offset: 5px;
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #778b82;
  font-size: 0.72rem;
}

@keyframes bag-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

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

@media (max-width: 980px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-offer {
    justify-content: center;
  }

  .microcopy {
    margin-left: 0;
  }

  .hero-product {
    width: min(650px, 100%);
    margin-inline: auto;
  }

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

  .manifesto-copy > p {
    margin-left: 0;
  }

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

  .stats article:last-child {
    grid-column: 1 / -1;
  }

  .story-grid,
  .preorder-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .story-copy {
    max-width: 680px;
  }

  .comparison-header {
    grid-template-columns: 1fr;
  }
}

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

  .site-header {
    background: var(--cream);
    backdrop-filter: none;
  }

  .offer-bar {
    padding-inline: 16px;
    font-size: 0.72rem;
  }

  .offer-bar a {
    display: none;
  }

  .nav {
    min-height: 70px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--green);
    transition: transform 180ms ease;
  }

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

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

  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    margin: 0;
    color: var(--cream);
    background: var(--green);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-links a {
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(255, 255, 255, 0.3);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only) {
    background: var(--cream);
  }

  .hero-grid {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-offer {
    flex-direction: column;
  }

  .button-primary {
    width: 100%;
  }

  .hero-product {
    min-height: 480px;
  }

  .sun-shape {
    top: 5%;
    right: -15%;
    width: 440px;
  }

  .bag-illustration {
    height: 470px;
  }

  .weight-stamp {
    top: 10px;
    left: 3%;
    width: 86px;
    height: 86px;
  }

  .weight-stamp strong {
    font-size: 2rem;
  }

  .color-tag {
    right: 0;
  }

  .section {
    padding-block: 90px;
  }

  .manifesto-copy h2,
  .comparison-header h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .stats {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
  }

  .stats article:last-child {
    grid-column: auto;
  }

  .stat-card {
    min-height: 370px;
  }

  .story-grid {
    gap: 60px;
  }

  .story-visual {
    min-height: 450px;
  }

  .story-circle {
    width: 390px;
    height: 390px;
  }

  .story-visual svg {
    width: 340px;
    height: 440px;
  }

  .detail-callout {
    font-size: 0.66rem;
  }

  .callout-one {
    top: 14%;
    right: 0;
  }

  .callout-two {
    right: 0;
    bottom: 14%;
  }

  .comparison-table {
    overflow-x: auto;
    border-radius: 18px;
  }

  .comparison-row {
    width: 690px;
  }

  .preorder {
    padding-block: 90px;
  }

  .preorder-grid {
    gap: 55px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .preorder-form input {
    min-height: 54px;
  }

  .order-benefits {
    flex-direction: column;
    gap: 8px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 45px;
  }

  .footer-top p {
    margin: 0;
  }

  .footer-top > a:last-child {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding-block: 20px;
  }

  .footer-bottom p {
    margin: 0;
  }
}

@media (max-width: 420px) {
  .hero-product {
    min-height: 420px;
  }

  .bag-illustration {
    height: 420px;
  }

  .sun-shape {
    width: 370px;
  }

  .story-circle {
    width: 330px;
    height: 330px;
  }

  .story-visual svg {
    width: 300px;
  }

  .detail-callout {
    display: none;
  }

  .order-card-top,
  .preorder-form,
  .order-benefits {
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
