@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&display=swap");

:root {
  --yellow: #e9bd34;
  --paper-yellow: #dfae2a;
  --paper-yellow-light: #f4cf5c;
  --warm: #fefcee;
  --teal: #00aca0;
  --teal-dark: #00887d;
  --red: #e73525;
  --leaf: #245d43;
  --leaf-light: #4f8c62;
  --leaf-deep: #173b2e;
  --soft-black: #18362f;
  --grey: #5c6a61;
  --line: rgba(24, 54, 47, 0.22);
  --heading: "Arial Black", "Lexend", system-ui, sans-serif;
  --body: "Lexend", system-ui, -apple-system, sans-serif;
  --shadow: 0 24px 80px rgba(24, 54, 47, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--soft-black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

body.is-rtl {
  direction: rtl;
}

body.is-rtl .brand,
body.is-rtl .article-brand,
body.is-rtl .footer-brand,
body.is-rtl .language-picker select {
  direction: ltr;
}

body.is-rtl .hero-title,
body.is-rtl .section-title,
body.is-rtl .article-copy h1 {
  letter-spacing: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link,
.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:focus {
  left: 16px;
  top: 16px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--yellow);
}

.promo-bar {
  position: relative;
  z-index: 100;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  background: var(--red);
  color: var(--warm);
  border-bottom: 1px solid rgba(24, 54, 47, 0.16);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee var(--marquee-duration, 26s) linear infinite;
  will-change: transform;
}

.promo-track span {
  padding: 8px 28px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transform: skew(-7deg);
}

.promo-track .promo-icon {
  padding-inline: 10px;
  color: var(--warm);
  font-size: 18px;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100vw;
  max-width: 100vw;
  background: var(--warm);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(24, 54, 47, 0.1);
}

.header-inner {
  display: grid;
  width: 100vw;
  max-width: 100vw;
  min-height: 67px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
}

.desktop-nav,
.utility-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-nav {
  justify-content: flex-end;
}

.language-picker {
  display: inline-flex;
  position: relative;
  flex: 0 0 auto;
  align-items: center;
}

.language-picker-text {
  display: none;
}

.language-picker::after {
  content: "";
  position: absolute;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  pointer-events: none;
  transform: translateY(-2px) rotate(45deg);
}

.language-picker select {
  width: 92px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  appearance: none;
  background: var(--warm);
  color: var(--soft-black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 0 30px 0 13px;
  text-transform: uppercase;
}

.language-picker select option {
  font-size: 15px;
}

.language-picker select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.brand {
  display: grid;
  justify-items: center;
  color: var(--red);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.62;
  text-transform: lowercase;
}

.brand small {
  font-family: var(--body);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
}

.plain-button,
.plain-link {
  border: 0;
  padding: 4px 0;
  background: transparent;
  color: var(--soft-black);
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

.plain-button:hover,
.plain-link:hover {
  text-decoration: underline;
}

.bag-button {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 8px;
}

.bag-count {
  position: absolute;
  right: -6px;
  top: -7px;
  display: grid;
  min-width: 18px;
  min-height: 18px;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--warm);
  font-size: 10px;
  line-height: 1;
}

.cart-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--leaf-deep);
  color: var(--warm);
  font-size: 24px;
  line-height: 1;
}

.mega-menu {
  position: fixed;
  top: 101px;
  left: 0;
  z-index: 80;
  width: 100%;
  padding: 24px;
  background: var(--warm);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .mega-menu {
  top: 67px;
}

.mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-panel {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
}

.mega-panel.is-active {
  display: block;
}

.mega-columns {
  display: grid;
  grid-template-columns: 1fr 280px 280px;
  gap: 22px;
}

.mega-columns > div {
  display: grid;
  align-content: start;
  gap: 14px;
}

.mega-columns a {
  font-weight: 800;
  text-transform: uppercase;
}

.mega-image {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--soft-black);
  background: #f6f2e8;
}

.mega-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.mega-image:hover img {
  transform: scale(1.07);
}

.mega-image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-block;
  padding: 8px 12px;
  background: var(--yellow);
  color: var(--soft-black);
  border: 1px solid var(--soft-black);
}

.mobile-only {
  display: none;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(23, 59, 46, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 120;
  width: min(462px, 100vw);
  background: var(--warm);
  box-shadow: var(--shadow);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer[aria-hidden="true"] {
  pointer-events: none;
}

.cart-drawer,
.search-drawer {
  right: 0;
  transform: translateX(110%);
}

.mobile-menu {
  left: 0;
  transform: translateX(-110%);
}

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

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

.drawer-title {
  font-weight: 900;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--soft-black);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.mobile-menu-body,
.search-drawer,
.cart-drawer {
  overflow-y: auto;
}

.mobile-menu-body {
  display: grid;
  gap: 0;
  padding: 8px 20px 24px;
}

.mobile-language-row {
  display: none;
}

.mobile-accordion {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: transparent;
  text-align: left;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-search {
  width: 100%;
  border: 1px solid var(--soft-black);
  background: var(--yellow);
  padding: 14px 16px;
  margin: 14px 0 6px;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.mobile-accordion-panel {
  display: none;
  gap: 12px;
  padding: 14px 0 18px 16px;
}

.mobile-accordion-panel.is-open {
  display: grid;
}

.search-box {
  padding: 20px;
}

.search-box input,
.newsletter input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--soft-black);
  background: #fff;
  padding: 0 16px;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 20px 18px;
}

.suggestions .eyebrow {
  flex-basis: 100%;
}

.suggestions button {
  border: 1px solid var(--soft-black);
  background: transparent;
  padding: 8px 11px;
  cursor: pointer;
  font-weight: 700;
}

.search-results,
.cart-items,
.cart-empty,
.cart-footer {
  padding: 0 20px 20px;
}

.mini-product,
.cart-line,
.search-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.mini-product img,
.cart-line img,
.search-row img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #f6f2e8;
}

.mini-product h4,
.cart-line h4,
.search-row h4 {
  margin: 0 0 2px;
  font-size: 14px;
}

.mini-product p,
.cart-line p,
.search-row p {
  margin: 0;
  color: var(--grey);
  font-size: 12px;
}

.small-add {
  border: 1px solid var(--soft-black);
  background: var(--yellow);
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 900;
}

.free-shipping {
  padding: 18px 20px;
}

.free-shipping p {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
}

.progress {
  height: 7px;
  overflow: hidden;
  background: #d9d9d9;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--teal);
  transition: width 220ms ease;
}

.cart-empty h3 {
  margin: 12px 0 4px;
  font-size: 22px;
}

.cart-empty-actions {
  display: flex;
  gap: 10px;
  margin: 18px 0 26px;
}

.cart-footer {
  position: sticky;
  bottom: 0;
  background: var(--warm);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 900;
}

.quantity {
  display: flex;
  width: fit-content;
  align-items: center;
  border: 1px solid var(--soft-black);
}

.quantity button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity span {
  min-width: 28px;
  text-align: center;
}

.hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  min-height: 855px;
  overflow: hidden;
  color: #7c0c0c;
  background: #efe2d0;
}

.hero-stage {
  cursor: pointer;
}

.hero-stage,
.hero-slide,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-stage {
  overflow: hidden;
  background: #efe2d0;
}

.hero-slide {
  opacity: 0;
  transform: translateY(5%);
  clip-path: inset(100% 0 0 0);
  transition:
    clip-path 1050ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 650ms ease,
    transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.hero-slide.is-leaving {
  z-index: 2;
  opacity: 0;
  transform: translateY(-5%);
  clip-path: inset(0 0 100% 0);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.045);
  transition: transform 6200ms ease;
}

.hero-slide-pure img,
.hero-slide-berries img {
  object-position: 72% center;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-veil {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 232, 214, 0.72) 0%, rgba(244, 232, 214, 0.58) 36%, rgba(244, 232, 214, 0.32) 58%, rgba(244, 232, 214, 0.08) 76%, rgba(244, 232, 214, 0) 92%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  width: 100vw;
  min-height: 855px;
  max-width: 1520px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 84px clamp(32px, 4vw, 68px) 152px;
}

.hero-title,
.section-title {
  margin: 0;
  font-family: var(--heading);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
  line-height: 0.92;
}

.hero-title-wrap {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 920px;
}

.hero-title {
  width: auto;
  max-width: 900px;
  color: #7c0c0c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 5.2vw, 100px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: none;
}

.hero-title .letter,
.hero-title .space {
  display: inline-block;
}

.hero-title .word {
  display: inline-block;
  white-space: nowrap;
}

.hero-title .letter {
  opacity: 0;
  transform: translateY(44px) scale(0.88) rotate(1.8deg);
}

.hero-text-panel.is-active .hero-title .letter {
  animation: letterPop 720ms cubic-bezier(0.2, 1.35, 0.28, 1) forwards;
  animation-delay: calc(280ms + (var(--letter-index) * 38ms));
}

.hero-title-burst {
  position: absolute;
  left: calc(100% + 10px);
  top: 0.18em;
  width: 96px;
  height: 86px;
  opacity: 0;
  --burst-rotate: 0deg;
  --burst-rotate-pop: 4deg;
  transform: translateY(16px) scale(0.72) rotate(var(--burst-rotate));
  filter: drop-shadow(0 2px 0 rgba(124, 12, 12, 0.12));
}

.hero-title-burst-origin {
  --burst-rotate: -8deg;
  --burst-rotate-pop: -3deg;
  top: 0.18em;
  background:
    linear-gradient(var(--yellow), var(--yellow)) 18% 24% / 48px 9px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 24% 50% / 58px 9px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 16% 76% / 45px 9px no-repeat;
}

.hero-title-burst-shot {
  --burst-rotate: -24deg;
  --burst-rotate-pop: -16deg;
  top: -0.08em;
  width: 74px;
  height: 74px;
  background:
    radial-gradient(circle at 34% 35%, var(--yellow) 0 6px, transparent 7px),
    linear-gradient(var(--yellow), var(--yellow)) 53% 36% / 43px 8px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 45% 63% / 32px 8px no-repeat;
  border-radius: 999px;
}

.hero-title-burst-berries {
  --burst-rotate: 72deg;
  --burst-rotate-pop: 78deg;
  top: 0.52em;
  width: 86px;
  height: 92px;
  background:
    linear-gradient(var(--yellow), var(--yellow)) 30% 8% / 9px 40px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 58% 20% / 9px 46px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 82% 50% / 9px 42px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 52% 82% / 9px 34px no-repeat;
}

.hero-text-panel.is-active .hero-title-burst {
  animation: burstPop 620ms cubic-bezier(0.2, 1.45, 0.28, 1) forwards;
  animation-delay: calc(420ms + (var(--letter-count, 30) * 38ms));
}

.hero-copy {
  width: 100%;
  max-width: 560px;
  margin: 4px 0 0;
  color: #1f2a2b;
  background: linear-gradient(90deg, rgba(254, 252, 238, 0.78), rgba(254, 252, 238, 0.52) 78%, rgba(254, 252, 238, 0));
  font-size: 22px;
  font-weight: 400;
  line-height: 1.28;
  padding: 4px 22px 4px 0;
  text-shadow: 0 1px 0 rgba(254, 252, 238, 0.9), 0 0 16px rgba(254, 252, 238, 0.78);
}

.hero-copy-stack {
  position: relative;
  width: min(820px, 52vw);
  min-height: 660px;
  margin-left: clamp(-72px, -3.2vw, -28px);
}

@media (min-width: 1600px) {
  .hero-content {
    padding-left: clamp(42px, 3vw, 56px);
  }

  .hero-copy-stack {
    margin-left: clamp(-112px, -5.5vw, -88px);
  }
}

.hero-text-panel {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-text-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-text-panel.is-leaving {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: none;
}

.hero-brand-line,
.hero-title-wrap,
.hero-rule,
.hero-subtitle,
.hero-copy,
.hero-tags,
.hero-controls {
  opacity: 0;
  transform: translateY(34px);
}

.hero-text-panel.is-active .hero-brand-line,
.hero-text-panel.is-active .hero-title-wrap,
.hero-text-panel.is-active .hero-rule,
.hero-text-panel.is-active .hero-subtitle,
.hero-text-panel.is-active .hero-copy,
.hero-text-panel.is-active .hero-tags,
.hero-content.is-ready .hero-controls {
  animation: heroTextRise 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-text-panel.is-active .hero-brand-line {
  animation-delay: 120ms;
}

.hero-text-panel.is-active .hero-title-wrap {
  animation-delay: 260ms;
}

.hero-text-panel.is-active .hero-rule:first-of-type {
  animation-delay: 430ms;
}

.hero-text-panel.is-active .hero-subtitle {
  animation-delay: 510ms;
}

.hero-text-panel.is-active .hero-rule:last-of-type {
  animation-delay: 620ms;
}

.hero-text-panel.is-active .hero-copy {
  animation-delay: 710ms;
}

.hero-text-panel.is-active .hero-tags {
  animation-delay: 870ms;
}

.hero-content.is-ready .hero-controls {
  animation-delay: 1040ms;
}

.hero-brand-line {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
  color: #7c0c0c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  letter-spacing: 0.22em;
}

.hero-brand-line span:last-child {
  color: #323a3d;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.hero-brand-line i {
  width: 1px;
  height: 42px;
  background: rgba(38, 38, 38, 0.55);
}

.hero-rule {
  width: 42px;
  height: 1px;
  margin: 12px 0 9px;
  background: #c78f39;
}

.hero-subtitle {
  margin: 0;
  color: #30383a;
  font-size: 26px;
  font-weight: 300;
}

.hero-tags {
  display: flex;
  max-width: 700px;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 4px 0 0;
  background: linear-gradient(90deg, rgba(254, 252, 238, 0.72), rgba(254, 252, 238, 0.42) 78%, rgba(254, 252, 238, 0));
  color: #8a1414;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.2;
  padding: 4px 20px 4px 0;
  text-shadow: 0 1px 0 rgba(254, 252, 238, 0.92), 0 0 14px rgba(254, 252, 238, 0.74);
}

.hero-tags span {
  color: #c78f39;
  font-family: var(--body);
  font-size: 16px;
}

.hero-controls {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.hero-dot {
  width: 42px;
  height: 3px;
  border: 0;
  background: rgba(124, 12, 12, 0.28);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.hero-dot.is-active {
  width: 68px;
  background: #7c0c0c;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--soft-black);
  border-radius: 0;
  padding: 0 22px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-yellow {
  background: var(--yellow);
  color: var(--soft-black);
}

.button-red {
  background: var(--red);
  color: var(--warm);
}

.button-outline {
  background: transparent;
  color: var(--soft-black);
}

.button.full {
  width: 100%;
}

.feature-marquee {
  overflow: hidden;
  border-top: 1px solid var(--soft-black);
  border-bottom: 1px solid var(--soft-black);
  background: var(--warm);
}

.feature-track {
  --marquee-duration: 32s;
}

.feature-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 38px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.feature-track span::before {
  content: "";
  width: 30px;
  height: 30px;
  border: 2px solid var(--soft-black);
  border-radius: 999px;
  background: var(--yellow);
}

.texture-yellow {
  background-color: var(--paper-yellow);
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.3), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(119, 85, 9, 0.12), transparent 25%),
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.18), transparent 27%),
    repeating-linear-gradient(8deg, rgba(96, 70, 6, 0.08) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(96deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, var(--paper-yellow-light), var(--paper-yellow));
  background-size: auto;
}

.texture-red {
  background-color: var(--red);
  color: var(--warm);
  background-image: linear-gradient(135deg, rgba(23, 59, 46, 0.12) 25%, transparent 25%),
    linear-gradient(225deg, rgba(23, 59, 46, 0.12) 25%, transparent 25%);
  background-size: 18px 18px;
}

.highlights,
.product-section,
.benefits,
.ritual,
.research,
.social,
.journal {
  padding: 72px 24px;
}

.page-grid {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: center;
}

.section-title {
  font-size: 72px;
}

.goji-puree-section {
  min-height: 720px;
  overflow: hidden;
}

.goji-puree-section .page-grid {
  align-items: center;
}

.second-copy {
  opacity: 0;
  transform: translateY(32px);
}

.second-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.second-title {
  max-width: 560px;
}

.second-title .word {
  display: inline-block;
  white-space: nowrap;
}

.second-title .letter,
.second-title .space {
  display: inline-block;
}

.second-title .letter {
  opacity: 0;
  transform: translateY(38px) scale(0.86) rotate(1.5deg);
}

.second-copy.is-visible .second-title .letter {
  animation: letterPop 680ms cubic-bezier(0.2, 1.35, 0.28, 1) forwards;
  animation-delay: calc(80ms + (var(--letter-index) * 36ms));
}

.second-lede {
  max-width: 540px;
  margin: 22px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(28px);
}

.second-copy.is-visible .second-lede {
  animation: heroTextRise 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(260ms + (var(--letter-count, 20) * 30ms));
}

.highlight-media {
  overflow: hidden;
  border: 1px solid var(--soft-black);
}

.flip-gallery {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  background: transparent;
  cursor: pointer;
  perspective: 1200px;
}

.flip-gallery:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.flip-card {
  display: block;
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.highlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 600ms ease;
}

.flip-gallery img {
  backface-visibility: hidden;
}

.fade-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-layer.is-visible {
  opacity: 1;
  transform: scale(1);
}

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

.flip-tiles {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  pointer-events: none;
  perspective: 1200px;
}

.flip-tile {
  background-image: var(--tile-image);
  background-size: var(--tile-bg-size);
  background-position: var(--tile-position);
  transform: rotateY(90deg);
  transform-origin: center;
  animation: squareFlip 430ms cubic-bezier(0.18, 0.9, 0.2, 1) forwards;
  animation-delay: var(--tile-delay);
  backface-visibility: hidden;
}

.highlight-media:not(.flip-gallery):hover img {
  transform: scale(1.05);
}

.flip-gallery:hover img,
.flip-gallery.is-flipping img {
  transform: none;
}

.flip-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: 1px solid var(--soft-black);
  background: var(--warm);
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.flip-gallery:hover .flip-hint,
.flip-gallery:focus-visible .flip-hint {
  opacity: 1;
  transform: translateY(0);
}

.highlight-items {
  display: grid;
  max-width: 1280px;
  margin: 48px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.highlight-item {
  border-top: 2px solid var(--soft-black);
  padding-top: 18px;
}

.second-item {
  opacity: 0;
  transform: translateY(34px) scale(0.96);
}

.goji-puree-section.is-visible .second-item {
  animation: itemBounce 680ms cubic-bezier(0.2, 1.35, 0.28, 1) forwards;
}

.goji-puree-section.is-visible .second-item:nth-child(1) {
  animation-delay: 180ms;
}

.goji-puree-section.is-visible .second-item:nth-child(2) {
  animation-delay: 320ms;
}

.goji-puree-section.is-visible .second-item:nth-child(3) {
  animation-delay: 460ms;
}

.highlight-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 14px;
}

.highlight-item h3,
.ritual-card h3,
.research-card h3,
.subscribe-benefits h3 {
  margin: 0 0 8px;
  font-size: 24px;
  text-transform: uppercase;
}

.highlight-item p,
.research-card p,
.subscribe-benefits p,
.ritual-card p {
  margin: 0;
}

.section-head {
  display: flex;
  max-width: 1280px;
  margin: 0 auto 32px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head.light .button-outline,
.section-head.light {
  color: var(--warm);
}

.carousel-shell {
  display: grid;
  max-width: 1376px;
  margin: 0 auto;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}

.product-showcase {
  max-width: 1180px;
  margin: 0 auto;
}

.product-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  overflow: visible;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid var(--soft-black);
  background: #f6f2e8;
}

.product-media {
  --base-x: 0%;
  --base-scale: 1;
  --base-opacity: 1;
  --base-blur: 0px;
  --hover-x: 104%;
  --hover-scale: 0.985;
  --hover-opacity: 0;
  --wipe-left: 0%;
  --wipe-opacity: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--soft-black);
  background: #fbf7ef;
  cursor: crosshair;
  isolation: isolate;
}

.product-image-stack {
  position: absolute;
  inset: 0;
}

.product-media::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -18%;
  bottom: -18%;
  left: var(--wipe-left);
  width: 74px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 198, 0, 0.42), rgba(255, 255, 255, 0.88), transparent);
  opacity: var(--wipe-opacity);
  pointer-events: none;
  transform: translateX(-50%) skewX(-16deg);
  mix-blend-mode: screen;
  transition: left 130ms linear, opacity 130ms linear;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  will-change: transform, opacity, filter;
  transition:
    transform 150ms linear,
    opacity 150ms linear,
    filter 150ms linear;
}

.product-img-base {
  z-index: 1;
  opacity: var(--base-opacity);
  filter: blur(var(--base-blur));
  transform: translate3d(var(--base-x), 0, 0) scale(var(--base-scale));
}

.product-img-hover {
  z-index: 2;
  opacity: var(--hover-opacity);
  transform: translate3d(var(--hover-x), 0, 0) scale(var(--hover-scale));
}

.product-badge {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  border: 1px solid var(--soft-black);
  background: var(--yellow);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.product-card:hover .product-badge {
  background: var(--red);
  color: var(--warm);
  transform: translateY(-2px);
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-info h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
}

.product-info p {
  margin: 0;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.45;
}

.product-kicker {
  color: var(--soft-black) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.product-points span {
  border: 1px solid rgba(38, 38, 38, 0.28);
  background: rgba(255, 198, 0, 0.24);
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.circle-control {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--soft-black);
  background: transparent;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.benefits {
  background: var(--teal);
  color: var(--warm);
}

.goji-benefits {
  overflow: hidden;
  background-color: var(--paper-yellow);
  color: var(--soft-black);
  background-image:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.32), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(118, 86, 14, 0.12), transparent 28%),
    radial-gradient(circle at 42% 86%, rgba(255, 255, 255, 0.16), transparent 30%),
    repeating-linear-gradient(7deg, rgba(96, 70, 6, 0.08) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 10px),
    linear-gradient(180deg, var(--paper-yellow-light), var(--paper-yellow));
  background-size: auto;
}

.benefit-layout {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 72px;
  align-items: start;
}

.benefit-menu .eyebrow {
  margin-bottom: 28px;
  letter-spacing: 0.18em;
}

.benefit-choice-list {
  display: grid;
  gap: 34px;
}

.benefit-choice {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--soft-black);
  cursor: pointer;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
}

.benefit-choice::after {
  content: "";
  position: absolute;
  left: -34px;
  right: 6%;
  bottom: -24px;
  height: 118px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 760 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M84 86C119 20 282 8 470 25C668 43 754 93 683 121C610 151 313 144 135 118C38 104 28 76 94 51' fill='none' stroke='%23fffcee' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M110 96C232 130 525 136 659 112' fill='none' stroke='%23fffcee' stroke-width='5' stroke-linecap='round' opacity='.72'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0;
  pointer-events: none;
  transform: rotate(-2deg) scaleX(0.74);
  transform-origin: left center;
}

.benefit-choice:hover::after,
.benefit-choice:focus-visible::after {
  animation: circleSketch 520ms cubic-bezier(0.2, 1, 0.28, 1) forwards;
}

.benefit-index {
  position: absolute;
  z-index: 1;
  left: -66px;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--soft-black);
  color: var(--yellow);
  font-size: 15px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-50%) scale(0.86);
  transition: opacity 160ms ease, transform 220ms cubic-bezier(0.2, 1, 0.28, 1);
}

.benefit-choice:hover .benefit-index,
.benefit-choice:focus-visible .benefit-index {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.benefit-choice-text {
  position: relative;
  z-index: 1;
  font-family: var(--heading);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.86;
}

.benefit-panels {
  position: relative;
  min-height: 620px;
}

.benefit-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 520ms;
}

.benefit-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0ms;
}

.benefit-panel img {
  width: min(100%, 440px);
  aspect-ratio: 1 / 1;
  justify-self: start;
  object-fit: cover;
  border: 1px solid var(--soft-black);
  box-shadow: 14px 14px 0 rgba(38, 38, 38, 0.12);
}

.benefit-panel h3 {
  margin: 0 0 14px;
  font-family: var(--heading);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.94;
  text-transform: lowercase;
}

.benefit-panel p {
  max-width: 520px;
  margin: 0 0 22px;
  font-size: 17px;
  font-weight: 700;
}

.benefit-panel .eyebrow {
  color: #8a1414;
}

.ritual-grid {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ritual-card {
  color: var(--soft-black);
  background: var(--warm);
  border: 1px solid var(--soft-black);
}

.ritual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--soft-black);
}

.ritual-card h3,
.ritual-card p {
  padding-inline: 16px;
}

.ritual-card h3 {
  padding-top: 16px;
}

.ritual-card p {
  padding-bottom: 18px;
}

.split-section {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.split-media {
  height: 100%;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.split-media:hover img {
  transform: scale(1.04);
}

.split-copy {
  max-width: 610px;
  padding: 64px;
}

.split-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  font-size: 18px;
}

.purpose {
  background: #f6f2e8;
}

.research-grid {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.research-card {
  min-height: 280px;
  border: 1px solid var(--soft-black);
  background: var(--warm);
  padding: 24px;
}

.research-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 26px;
}

.subscribe {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 32px;
  padding: 80px 24px;
  background:
    radial-gradient(circle at 13% 16%, rgba(233, 189, 52, 0.24), transparent 24%),
    radial-gradient(circle at 86% 24%, rgba(254, 252, 238, 0.16), transparent 30%),
    radial-gradient(circle at 78% 86%, rgba(79, 140, 98, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(254, 252, 238, 0.06), transparent 34%),
    linear-gradient(180deg, #2d684d 0%, #173b2e 100%);
  color: var(--warm);
}

.subscribe::before {
  position: absolute;
  inset: -12%;
  content: "";
  background-image:
    radial-gradient(ellipse at 20% 36%, rgba(133, 183, 119, 0.2) 0 8%, transparent 9%),
    radial-gradient(ellipse at 62% 28%, rgba(133, 183, 119, 0.16) 0 7%, transparent 8%),
    radial-gradient(ellipse at 76% 72%, rgba(233, 189, 52, 0.14) 0 6%, transparent 7%);
  background-size: 360px 260px, 420px 300px, 330px 240px;
  opacity: 0.85;
  pointer-events: none;
}

.subscribe-copy,
.subscribe-benefits {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 0 auto;
}

.subscribe-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  font-size: 18px;
}

.subscribe-benefits {
  display: grid;
  gap: 18px;
}

.subscribe-benefits article {
  border-top: 1px solid rgba(254, 252, 238, 0.34);
  padding-top: 18px;
}

.journey {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 680px;
  flex-direction: column;
  gap: 34px;
  background: var(--paper-yellow);
  padding: 48px 0 66px;
  color: var(--soft-black);
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.3), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(99, 74, 10, 0.12), transparent 28%),
    radial-gradient(circle at 52% 88%, rgba(255, 255, 255, 0.16), transparent 24%),
    repeating-linear-gradient(8deg, rgba(96, 70, 6, 0.08) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(96deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, var(--paper-yellow-light), var(--paper-yellow));
  background-size: auto;
}

.journey-images {
  order: 2;
  display: flex;
  width: max-content;
  min-width: 200%;
  gap: clamp(24px, 3vw, 44px);
  padding: 4px 0 32px;
  animation: journeyDrift 34s linear infinite;
  will-change: transform;
}

.journey-images img {
  flex: 0 0 clamp(220px, 22vw, 330px);
  width: clamp(220px, 22vw, 330px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--soft-black);
  box-shadow: 12px 12px 0 rgba(38, 38, 38, 0.12);
}

.journey-images img:nth-child(3n + 1) {
  margin-top: 18px;
}

.journey-images img:nth-child(3n + 2) {
  margin-top: 96px;
}

.journey-images img:nth-child(3n) {
  margin-top: 52px;
}

.journey::after {
  content: none;
}

.journey-copy {
  position: relative;
  order: 1;
  z-index: 1;
  max-width: 760px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}

.journey-copy .section-title {
  font-size: clamp(44px, 5.5vw, 78px);
}

.journey-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 24px;
  font-size: 18px;
  font-weight: 600;
}

.social {
  overflow: hidden;
}

.social-wheel {
  max-width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.social-wheel.is-dragging {
  cursor: grabbing;
}

.social-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.social-track img {
  flex: 0 0 clamp(190px, 15.5vw, 245px);
  width: clamp(190px, 15.5vw, 245px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--soft-black);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.journal {
  background: #f6f2e8;
  padding-bottom: 24px;
}

.journal-shell {
  max-width: 1280px;
  margin: 0 auto;
}

.journal-title {
  margin: 0 0 26px;
  font-family: var(--heading);
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
}

.journal-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(180px, 0.8fr));
  gap: 20px;
  align-items: start;
}

.journal-showcase::after {
  position: absolute;
  left: 32%;
  bottom: 112px;
  z-index: 2;
  width: 86px;
  height: 86px;
  content: "";
  background: var(--yellow);
  clip-path: polygon(
    46% 0,
    55% 38%,
    92% 18%,
    62% 49%,
    100% 58%,
    61% 60%,
    78% 98%,
    50% 68%,
    19% 100%,
    36% 61%,
    0 54%,
    38% 47%,
    14% 14%,
    45% 38%
  );
  transform: rotate(-16deg);
  pointer-events: none;
}

.guide-card {
  min-width: 0;
  color: var(--soft-black);
  transform-origin: center;
}

.guide-card:hover .guide-image-wrap img {
  transform: scale(1.05);
}

.guide-card:hover .guide-title {
  color: var(--red);
}

.guide-image-wrap {
  display: block;
  overflow: hidden;
  background: var(--yellow);
}

.guide-image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.19, 1, 0.22, 1);
}

.guide-card-large .guide-image-wrap img {
  aspect-ratio: 1;
}

.guide-category,
.guide-title {
  display: block;
}

.guide-category {
  margin-top: 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

.guide-title {
  max-width: 95%;
  margin-top: 12px;
  font-family: var(--heading);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
  text-transform: uppercase;
}

.guide-card:not(.guide-card-large) .guide-title {
  font-size: clamp(19px, 1.7vw, 24px);
  letter-spacing: 0.02em;
}

.journal-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin-top: 30px;
}

.journal-arrow {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--red);
  font-size: 58px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease;
}

.journal-arrow:hover {
  color: var(--soft-black);
  transform: scale(1.18);
}

.journal-cycle {
  min-width: 150px;
}

.journal-showcase.is-pushing-forward .guide-card {
  animation: guidePushLeftOut 360ms cubic-bezier(0.7, 0, 0.84, 0) both;
}

.journal-showcase.is-pushing-back .guide-card {
  animation: guidePushRightOut 360ms cubic-bezier(0.7, 0, 0.84, 0) both;
}

.journal-showcase.is-entering-forward .guide-card {
  animation: guidePushLeftIn 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.journal-showcase.is-entering-back .guide-card {
  animation: guidePushRightIn 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.journal-showcase .guide-card:nth-child(2) {
  animation-delay: 35ms;
}

.journal-showcase .guide-card:nth-child(3) {
  animation-delay: 70ms;
}

.journal-showcase .guide-card:nth-child(4) {
  animation-delay: 105ms;
}

.article-page {
  min-height: 100vh;
  background: var(--warm);
}

.article-nav {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.article-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  color: #8c0e0e;
  letter-spacing: 0.18em;
}

.article-back {
  font-weight: 900;
  text-transform: uppercase;
}

.article-language-picker {
  margin-left: auto;
}

.article-hero {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 76px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.article-hero img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.article-copy .eyebrow {
  color: var(--red);
}

.article-copy h1 {
  margin: 12px 0 22px;
  font-family: var(--heading);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  text-transform: uppercase;
}

.article-lede {
  max-width: 620px;
  font-size: 21px;
  font-weight: 700;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 84px;
  font-size: 18px;
}

.article-body h2 {
  margin: 42px 0 14px;
  font-family: var(--heading);
  font-size: 32px;
  line-height: 1.05;
  text-transform: uppercase;
}

.article-facts {
  display: grid;
  margin: 36px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--soft-black);
}

.article-facts span {
  min-height: 112px;
  padding: 18px;
  font-weight: 900;
  border-right: 1px solid var(--soft-black);
  background:
    repeating-linear-gradient(8deg, rgba(96, 70, 6, 0.08) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, var(--paper-yellow-light), var(--paper-yellow));
  text-transform: uppercase;
}

.article-facts span:last-child {
  border-right: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background: var(--warm);
  color: var(--soft-black);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 48%, rgba(255, 255, 255, 0.26), transparent 25%),
    radial-gradient(circle at 84% 36%, rgba(101, 82, 22, 0.12), transparent 30%),
    repeating-linear-gradient(12deg, rgba(96, 70, 6, 0.08) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(99deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 10px),
    linear-gradient(180deg, var(--paper-yellow-light) 0%, var(--paper-yellow) 100%);
  clip-path: polygon(
    0 11%,
    5% 8%,
    12% 10%,
    20% 7%,
    29% 10%,
    38% 7%,
    48% 12%,
    58% 8%,
    68% 11%,
    78% 7%,
    89% 10%,
    100% 6%,
    100% 100%,
    0 100%
  );
  opacity: 1;
}

.footer-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(108px, 13vw, 176px) 24px 32px;
}

.footer-brand {
  display: grid;
  justify-content: center;
  margin: 0 0 48px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 7vw, 102px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.72;
  text-align: center;
}

.footer-brand small {
  font-family: var(--body);
  font-size: clamp(31px, 3vw, 44px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.65fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.newsletter {
  display: grid;
  max-width: 340px;
  gap: 12px;
}

.newsletter h2 {
  margin: 0;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

.newsletter form {
  display: grid;
  max-width: 310px;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.newsletter input {
  min-height: 42px;
  border: 0;
  border-bottom: 2px solid var(--soft-black);
  background: transparent;
  padding: 0;
  color: var(--soft-black);
}

.newsletter input::placeholder {
  color: rgba(24, 54, 47, 0.72);
}

.newsletter .button {
  width: max-content;
  min-width: 142px;
}

.form-note {
  min-height: 20px;
  margin: 0;
  font-weight: 700;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin: 0;
}

.footer-nav div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-nav h3 {
  margin: 0 0 8px;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fda-notice {
  margin-top: 48px;
  border: 1px solid rgba(24, 54, 47, 0.34);
  padding: 16px;
  color: rgba(24, 54, 47, 0.82);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.support-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  border: 0;
  background: var(--leaf-deep);
  color: var(--warm);
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 800;
}

.giveaway-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 150;
  width: min(640px, calc(100vw - 32px));
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(110deg, rgba(16, 38, 31, 0.9), rgba(22, 48, 38, 0.8) 42%, rgba(22, 48, 38, 0.48)),
    url("assets/rubyst-giveaway-bg.png") center / cover no-repeat;
  color: var(--warm);
  padding: 28px;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.98);
  transition:
    opacity 240ms ease,
    transform 220ms ease;
}

.giveaway-popup::before {
  position: fixed;
  inset: -100vmax;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 20% 20%, rgba(233, 189, 52, 0.16), transparent 28%),
    rgba(12, 34, 27, 0.62);
  backdrop-filter: blur(3px);
}

.giveaway-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.giveaway-popup h2 {
  max-width: 430px;
  margin: 6px 0 10px;
  font-family: var(--heading);
  font-size: 44px;
  line-height: 0.92;
  text-transform: lowercase;
}

.giveaway-popup p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.giveaway-popup .eyebrow {
  color: var(--paper-yellow-light);
}

.giveaway-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(254, 252, 238, 0.72);
  background: transparent;
  color: var(--warm);
  cursor: pointer;
  font-weight: 900;
}

.giveaway-popup form {
  display: grid;
  gap: 10px;
  max-width: 500px;
  margin-top: 16px;
}

.giveaway-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.giveaway-fields label {
  display: grid;
  gap: 5px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.giveaway-fields input,
.giveaway-fields select,
.giveaway-fields textarea {
  width: 100%;
  border: 0;
  background: rgba(254, 252, 238, 0.92);
  color: var(--soft-black);
  padding: 10px 11px;
  font: inherit;
}

.giveaway-fields select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--leaf-deep) 50%),
    linear-gradient(135deg, var(--leaf-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% + 1px),
    calc(100% - 10px) calc(50% + 1px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 30px;
}

.giveaway-popup .button-red {
  border-color: rgba(254, 252, 238, 0.75);
  background: var(--paper-yellow-light);
  color: var(--leaf-deep);
}

.giveaway-fields textarea {
  resize: vertical;
}

.giveaway-address {
  grid-column: 1 / -1;
}

.giveaway-note {
  min-height: 20px;
  color: var(--paper-yellow-light);
  font-size: 13px;
}

.giveaway-note.is-error {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 12px;
  align-items: center;
  border-top: 10px solid var(--leaf);
  background: var(--warm);
  color: var(--soft-black);
  padding: 20px 28px 28px;
  box-shadow: 0 -8px 34px rgba(24, 54, 47, 0.12);
}

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

.cookie-banner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.42;
}

.cookie-close {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 140;
  min-width: 260px;
  max-width: calc(100vw - 32px);
  padding: 14px 18px;
  background: var(--leaf-deep);
  color: var(--warm);
  text-align: center;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes heroTextRise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes letterPop {
  0% {
    opacity: 0;
    transform: translateY(44px) scale(0.88) rotate(1.8deg);
  }
  62% {
    opacity: 1;
    transform: translateY(-8px) scale(1.04) rotate(-0.8deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes burstPop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.58) rotate(var(--burst-rotate));
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.08) rotate(var(--burst-rotate-pop));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--burst-rotate-pop));
  }
}

@keyframes itemBounce {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
  }
  68% {
    opacity: 1;
    transform: translateY(-7px) scale(1.025);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes circleSketch {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: rotate(-2deg) scaleX(0.74);
  }
  62% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: rotate(-2deg) scaleX(1.04);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: rotate(-2deg) scaleX(1);
  }
}

@keyframes squareFlip {
  0% {
    opacity: 0;
    transform: rotateY(96deg);
  }
  70% {
    opacity: 1;
    transform: rotateY(-10deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-offset, -50%));
  }
}

@keyframes journeyDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes guidePushLeftOut {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scaleX(1);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 40% 0 0);
    transform: translateX(-64px) scaleX(0.78);
  }
}

@keyframes guidePushRightOut {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scaleX(1);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 40%);
    transform: translateX(64px) scaleX(0.78);
  }
}

@keyframes guidePushLeftIn {
  0% {
    opacity: 0;
    clip-path: inset(0 0 0 36%);
    transform: translateX(64px) scaleX(0.82);
  }
  72% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(-6px) scaleX(1.04);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scaleX(1);
  }
}

@keyframes guidePushRightIn {
  0% {
    opacity: 0;
    clip-path: inset(0 36% 0 0);
    transform: translateX(-64px) scaleX(0.82);
  }
  72% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(6px) scaleX(1.04);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scaleX(1);
  }
}

@media (max-width: 980px) {
  .desktop-only,
  .desktop-nav {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 16px;
  }

  .brand {
    font-size: 42px;
  }

  .utility-nav {
    gap: 12px;
  }

  .header-language-picker {
    gap: 5px;
    padding: 3px 5px 3px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--warm);
  }

  .header-language-picker .language-picker-text {
    display: inline-flex;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .header-language-picker::after {
    right: 12px;
  }

  .language-picker select {
    width: 82px;
    height: 34px;
    padding: 0 28px 0 11px;
    font-size: 13px;
  }

  .header-language-picker select {
    width: 48px;
    height: 28px;
    border: 0;
    background: transparent;
    font-size: 14px;
    padding: 0 22px 0 0;
  }

  .mobile-language-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-menu-language select {
    width: 158px;
    height: 44px;
    font-size: 16px;
    padding: 0 36px 0 14px;
  }

  .mobile-menu-language::after {
    right: 16px;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero-title {
    font-size: 58px;
  }

  .hero-title-burst {
    left: calc(100% + 6px);
    width: 82px;
    height: 82px;
  }

  .hero-slide-pure img,
  .hero-slide-berries img {
    object-position: 72% center;
  }

  .hero-veil {
    background:
      linear-gradient(90deg, rgba(244, 232, 214, 0.48) 0%, rgba(244, 232, 214, 0.26) 58%, rgba(244, 232, 214, 0.04) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  }

  .hero-content {
    padding: 70px 24px 58px;
  }

  .hero-copy-stack {
    width: min(760px, 86vw);
    min-height: 460px;
    margin-left: 0;
  }

  .hero-brand-line {
    gap: 18px;
    margin-bottom: 28px;
    font-size: 28px;
  }

  .hero-brand-line span:last-child {
    font-size: 13px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-tags {
    margin-top: 34px;
    font-size: 18px;
  }

  .section-title {
    font-size: 52px;
  }

  .page-grid,
  .benefit-layout,
  .split-section,
  .subscribe,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .benefit-layout {
    gap: 44px;
  }

  .benefit-choice-list {
    gap: 22px;
  }

  .benefit-panels {
    min-height: 640px;
  }

  .purpose .split-copy {
    order: 2;
  }

  .purpose .split-media {
    order: 1;
  }

  .split-media img {
    min-height: 420px;
  }

  .split-copy {
    padding: 48px 24px;
  }

  .highlight-items,
  .ritual-grid,
  .research-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journal-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .guide-card-large {
    grid-column: span 2;
  }

  .journal-showcase::after {
    left: 50%;
    bottom: 42%;
  }

  .article-hero {
    grid-template-columns: 1fr;
  }

  .article-hero img {
    min-height: 420px;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .benefit-head,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-track {
    padding-inline: 20px;
  }

  .journey-images {
    animation-duration: 28s;
  }

  .journey-copy {
    margin: 0 auto;
    padding: 0 24px;
  }

  .footer-inner {
    padding-top: clamp(112px, 20vw, 160px);
  }

  .footer-brand {
    margin-bottom: 36px;
  }
}

@media (max-width: 640px) {
  .promo-track span {
    padding-inline: 20px;
  }

  .plain-button,
  .plain-link {
    font-size: 12px;
  }

  .header-inner [data-open-search] {
    display: none;
  }

  .header-inner {
    min-height: 60px;
    grid-template-columns: minmax(44px, auto) minmax(84px, 1fr) minmax(118px, auto);
    gap: 8px;
    padding: 0 10px;
  }

  .utility-nav {
    gap: 6px;
    justify-content: flex-end;
    min-width: 0;
  }

  .language-picker::after {
    right: 10px;
    width: 6px;
    height: 6px;
  }

  .language-picker select {
    width: 72px;
    height: 32px;
    padding: 0 24px 0 10px;
    font-size: 12px;
  }

  .header-language-picker {
    gap: 4px;
    padding: 3px 4px 3px 8px;
  }

  .header-language-picker select {
    width: 44px;
    height: 28px;
    font-size: 14px;
    padding-right: 19px;
  }

  .header-language-picker::after {
    right: 9px;
  }

  .mobile-menu-language select {
    width: 158px;
    height: 44px;
    padding: 0 36px 0 14px;
    font-size: 16px;
  }

  .mobile-menu-language::after {
    right: 16px;
  }

  .bag-button {
    min-width: 32px;
    justify-content: flex-end;
  }

  .bag-label {
    display: none;
  }

  .bag-count {
    min-width: 18px;
    min-height: 18px;
  }

  .hero,
  .hero-content {
    min-height: 0;
  }

  .hero {
    height: min(100vw, 640px);
  }

  .hero-content {
    height: 100%;
    justify-content: flex-end;
    padding: 0 16px 20px;
    pointer-events: none;
  }

  .hero-title {
    font-size: 41px;
  }

  .hero-title-wrap {
    max-width: calc(100vw - 32px);
  }

  .hero-title-burst {
    left: calc(100% + 4px);
    top: auto;
    bottom: -46px;
    width: 66px;
    height: 66px;
  }

  .hero-slide-pure img,
  .hero-slide-berries img {
    object-position: center center;
  }

  .hero-slide-field img {
    object-position: center center;
  }

  .hero-slide {
    transform: none;
    clip-path: none;
    transition: opacity 680ms ease;
  }

  .hero-slide.is-active {
    transform: none;
    clip-path: none;
  }

  .hero-slide.is-leaving {
    transform: none;
    clip-path: none;
  }

  .hero-slide img {
    transform: none;
    transition: none;
  }

  .hero-veil {
    display: none;
  }

  .hero-copy-stack {
    width: calc(100vw - 32px);
    min-height: 0;
    margin-left: 0;
  }

  .hero-text-panel {
    display: none;
  }

  .hero-controls {
    display: none;
  }

  .hero-brand-line {
    gap: 12px;
    margin-bottom: 24px;
    font-size: 22px;
  }

  .hero-brand-line i {
    height: 30px;
  }

  .hero-brand-line span:last-child {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-rule {
    margin: 18px 0 12px;
  }

  .hero-subtitle {
    font-size: 18px;
    max-width: min(330px, calc(100vw - 44px));
  }

  .hero-copy {
    font-size: 16px;
    max-width: min(330px, calc(100vw - 44px));
  }

  .hero-tags {
    gap: 8px;
    margin-top: 28px;
    font-size: 15px;
    max-width: min(340px, calc(100vw - 44px));
  }

  .section-title {
    font-size: 40px;
  }

  .benefit-choice::after {
    left: -16px;
    right: -4px;
    bottom: -16px;
    height: 74px;
  }

  .benefit-index {
    left: -48px;
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .benefit-choice-text {
    font-size: clamp(34px, 12vw, 52px);
  }

  .benefit-panels {
    min-height: 560px;
  }

  .highlights,
  .product-section,
  .benefits,
  .ritual,
  .research,
  .social,
  .journal {
    padding: 48px 16px;
  }

  .highlight-items,
  .ritual-grid,
  .research-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .journal-title {
    text-align: left;
  }

  .journal-showcase {
    grid-template-columns: 1fr;
  }

  .guide-card-large {
    grid-column: auto;
  }

  .journal-showcase::after {
    display: none;
  }

  .journal-controls {
    gap: 18px;
  }

  .article-nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 18px 16px;
  }

  .article-language-picker {
    margin-left: auto;
  }

  .article-back {
    flex-basis: 100%;
  }

  .article-hero {
    padding: 24px 16px 56px;
  }

  .article-hero img {
    min-height: 320px;
  }

  .article-facts {
    grid-template-columns: 1fr;
  }

  .article-facts span,
  .article-facts span:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--soft-black);
  }

  .article-facts span:last-child {
    border-bottom: 0;
  }

  .benefit-panel {
    gap: 24px;
  }

  .benefit-panel h3 {
    font-size: 36px;
  }

  .product-track {
    grid-template-columns: 1fr;
  }

  .subscribe {
    padding: 56px 16px;
  }

  .social-track {
    gap: 10px;
    padding-inline: 16px;
  }

  .social-track img {
    flex-basis: clamp(170px, 68vw, 250px);
    width: clamp(170px, 68vw, 250px);
  }

  .giveaway-popup {
    padding: 22px;
  }

  .giveaway-popup h2 {
    font-size: 34px;
  }

  .giveaway-fields {
    grid-template-columns: 1fr;
  }

  .newsletter h2 {
    font-size: 14px;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: 0;
  }

  .footer-bg {
    clip-path: polygon(
      0 8%,
      8% 6%,
      17% 9%,
      27% 6%,
      38% 10%,
      50% 7%,
      61% 10%,
      72% 6%,
      84% 9%,
      100% 6%,
      100% 100%,
      0 100%
    );
  }

  .footer-inner {
    padding: 92px 18px 28px;
  }

  .footer-brand {
    font-size: 58px;
  }

  .footer-brand small {
    font-size: 28px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .cart-icon {
    display: grid;
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .bag-label {
    display: none;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cookie-close {
    position: absolute;
    right: 12px;
    top: 12px;
  }
}
