/*
 * Our Story page stylesheet.
 * Section-level selectors use the `our-story-` prefix so this page can evolve
 * independently from the homepage while retaining shared component behavior.
 */

@font-face {
  font-family: "RDF Optima";
  font-style: normal;
  font-weight: 300;
  src:
    local("Optima Light"),
    local("OptimaLTStd-Light"),
    local("Candara Light");
  font-display: swap;
}

@font-face {
  font-family: "RDF Optima";
  font-style: normal;
  font-weight: 400;
  src:
    local("Optima"),
    local("Optima Regular"),
    local("Candara");
  font-display: swap;
}

@font-face {
  font-family: "RDF Optima";
  font-style: normal;
  font-weight: 600 700;
  src:
    local("Optima Bold"),
    local("Candara Bold");
  font-display: swap;
}

:root {
  --rdf-crimson: #a33341;
  --rdf-crimson-deep: #73242e;
  --neutral-lightest: #f7f5f1;
  --neutral-lighter: #f3f0eb;
  --neutral-line: #e3ded8;
  --neutral-muted: #858585;
  --neutral-dark: #2b2727;
  --neutral-black: #070303;
  --font-title: "RDF Optima", Optima, Candara, sans-serif;
  --font-description: "RDF Optima", Optima, Candara, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--neutral-dark);
  background: var(--neutral-lightest);
  font-family: var(--font-title);
  font-feature-settings:
    "lnum" 1,
    "tnum" 1;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0;
}

html.is-mega-menu-open {
  overflow: hidden;
}

body.is-mega-menu-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

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

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

.site-frame {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background: var(--neutral-lightest);
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 145px;
  padding: 24px clamp(36px, 5vw, 72px) 21px;
  background: #f7f5f1;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  position: absolute;
  top: 28px;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--rdf-crimson);
  font-family: var(--font-description);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.96);
}

.brand-icon {
  width: 44px;
  height: 38px;
  object-fit: contain;
  filter: none;
}

.utility-nav {
  position: absolute;
  top: 39px;
  right: clamp(36px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  color: #242d2ab8;
  font-family: var(--font-description);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-shadow:
    0 1px 14px rgba(255, 255, 255, 0.96),
    0 0 1px rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
}

.utility-nav a:nth-child(-n + 2) {
  display: inline;
}

.utility-nav a:last-child {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  text-align: inherit;
}

.bag-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.main-nav {
  position: absolute;
  right: auto;
  bottom: 22px;
  left: 50%;
  display: grid;
  width: min(860px, calc(100% - 280px));
  transform: translateX(-50%);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: clamp(18px, 2.4vw, 44px);
  color: #242d2ab8;
  font-family: var(--font-description);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08px;
  text-align: center;
  text-shadow:
    0 1px 14px rgba(255, 255, 255, 0.96),
    0 0 1px rgba(255, 255, 255, 0.76);
}

.main-nav .nav-item {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.main-nav .nav-link {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
}

.main-subnav {
  position: fixed;
  z-index: 60;
  top: 145px;
  right: 0;
  left: 0;
  display: grid;
  width: 100vw;
  min-width: 0;
  max-height: calc(100vh - 169px);
  padding: clamp(26px, 3vw, 36px) clamp(34px, 6vw, 96px)
    clamp(30px, 3.4vw, 42px);
  overflow-y: auto;
  border: 0;
  border-top: 1px solid rgba(36, 45, 42, 0.09);
  background: #f7f5f1;
  box-shadow: 0 28px 58px rgba(7, 3, 3, 0.11);
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-shadow: none;
  transform: translateY(-18px);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 220ms ease;
  visibility: hidden;
}

.main-subnav::before {
  display: none;
}

.main-subnav a {
  color: #242d2ab8;
  text-shadow: none;
}

.main-subnav a[aria-current="page"] {
  color: var(--rdf-crimson);
  font-weight: 600;
}

.main-subnav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mega-menu-close {
  position: absolute;
  top: clamp(14px, 2vw, 24px);
  right: clamp(20px, 3vw, 42px);
  z-index: 2;
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  appearance: none;
  color: var(--rdf-crimson);
  background: transparent;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.mega-menu-close::before,
.mega-menu-close::after {
  position: absolute;
  width: 16px;
  height: 1px;
  border: 0;
  background: currentColor;
  content: "";
  transform-origin: center;
}

.mega-menu-close::before {
  transform: rotate(45deg);
}

.mega-menu-close::after {
  transform: rotate(-45deg);
}

.mega-menu-close:hover,
.mega-menu-close:focus-visible {
  color: var(--rdf-crimson-deep);
  outline: none;
  transform: scale(1.06);
}

.mobile-mega-back {
  display: none;
}

.mega-menu-sidebar {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding-right: clamp(18px, 2.5vw, 30px);
  border-right: 1px solid rgba(36, 45, 42, 0.11);
  gap: 10px;
}

.mega-menu-view-all {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--rdf-crimson) !important;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1;
}

.mega-menu-tab {
  position: relative;
  display: grid;
  min-height: 58px;
  align-content: center;
  padding: 10px 24px 10px 0;
  color: rgba(36, 45, 42, 0.78);
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.mega-menu-tab::after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  opacity: 0.34;
  transform: translateY(-50%) rotate(45deg);
  transition:
    opacity 180ms ease,
    right 180ms ease;
}

.mega-menu-tab span {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
}

.mega-menu-tab small {
  display: block;
  margin-top: 6px;
  color: rgba(36, 45, 42, 0.48);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.mega-menu-tab:hover,
.mega-menu-tab:focus-visible,
.mega-menu-tab.is-active {
  color: var(--rdf-crimson);
  outline: none;
  transform: translateX(3px);
}

.mega-menu-tab:hover::after,
.mega-menu-tab:focus-visible::after,
.mega-menu-tab.is-active::after {
  right: 0;
  opacity: 0.84;
}

.mega-product-columns {
  display: grid;
  min-width: 0;
  align-content: start;
  justify-content: center;
  grid-template-columns: minmax(250px, 320px);
}

.mega-product-card {
  display: none;
  min-width: 0;
  align-content: start;
  color: rgba(36, 45, 42, 0.76);
  opacity: 1;
  text-align: center;
  transition:
    color 180ms ease,
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: normal;
}

.mega-product-main {
  display: grid;
  min-width: 0;
  color: inherit;
  text-align: center;
}

.mega-product-card.is-active {
  display: grid;
  color: var(--neutral-black);
  animation: megaProductReveal 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mega-product-card:hover,
.mega-product-card.is-product-hovered {
  color: var(--neutral-black);
  transform: translateY(-3px);
}

.mega-product-main:focus-visible {
  outline: 1px solid rgba(163, 51, 65, 0.36);
  outline-offset: 8px;
}

.mega-product-media {
  display: grid;
  aspect-ratio: 4 / 5;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  place-items: center;
  background: #ffffff;
}

.mega-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 180ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mega-product-card:hover .mega-product-media img,
.mega-product-card.is-product-hovered .mega-product-media img {
  transform: scale(1.018);
}

.mega-product-image.is-changing {
  opacity: 0.42;
}

.mega-product-type {
  display: block;
  color: rgba(36, 45, 42, 0.48);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.mega-product-card h3 {
  margin: 8px 0 0;
  color: inherit;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.18;
}

.mega-product-card p {
  margin: 10px 0 0;
  color: rgba(36, 45, 42, 0.58);
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
}

.mega-swatches {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.mega-swatch {
  display: block;
  padding: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(36, 45, 42, 0.16);
  appearance: none;
  background-clip: padding-box;
  border-radius: 0;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.mega-swatch:hover,
.mega-swatch:focus-visible {
  border-color: rgba(36, 45, 42, 0.42);
  outline: none;
  transform: translateY(-1px);
}

.mega-swatch.is-active {
  border-color: rgba(36, 45, 42, 0.58);
  box-shadow: 0 0 0 1px rgba(36, 45, 42, 0.18);
}

@keyframes megaProductReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileMegaProductSlideIn {
  from {
    opacity: 0;
    transform: translateX(42px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mobileMegaListSlideIn {
  from {
    opacity: 0;
    transform: translateX(-42px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-subnav.is-mobile-product-view .mega-product-columns,
  .main-subnav.is-mobile-list-returning .mega-menu-sidebar {
    animation: none !important;
  }
}

.utility-nav a,
.main-nav > a,
.main-nav .nav-link {
  transition: color 180ms ease;
}

.utility-nav a:hover,
.main-nav > a:hover,
.main-nav .nav-link:hover {
  color: var(--rdf-crimson);
}

.main-nav > a.is-active,
.main-nav .nav-link.is-active {
  color: var(--rdf-crimson);
  font-weight: 600;
  text-shadow: none;
}

.main-nav > a:hover,
.main-nav .nav-link:hover {
  text-shadow: none;
}

.menu-toggle {
  display: none;
  grid-column: 2;
  grid-row: 1;
}

.our-story-hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), transparent 18%),
    var(--neutral-lightest);
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}

.our-story-hero::after {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0);
  contain: paint;
  background:
    linear-gradient(rgba(251, 250, 247, 0.24), rgba(251, 250, 247, 0.24)),
    url("https://img.youtube.com/vi/A5d8mqUcbUI/maxresdefault.jpg") center / cover no-repeat,
    linear-gradient(180deg, #fdfcfb 0%, #fbfaf7 50%, #f7f4f0 100%);
}

.hero-youtube,
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.96;
}

.hero-youtube {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.hero-youtube iframe,
iframe.hero-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-video {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  transform: none;
  object-fit: cover;
  transition: opacity 700ms ease;
}

.our-story-hero.is-youtube-active .hero-youtube {
  opacity: 1;
}

.our-story-hero.is-youtube-active .hero-video {
  opacity: 0;
}

.video-veil {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  background:
    linear-gradient(180deg, rgba(7, 3, 3, 0.18) 0%, rgba(7, 3, 3, 0.28) 48%, rgba(7, 3, 3, 0.38) 100%),
    radial-gradient(circle at 50% 50%, rgba(7, 3, 3, 0.04), rgba(7, 3, 3, 0.22) 72%);
}

.ambient {
  position: absolute;
  display: block;
  border-radius: 999px;
  pointer-events: none;
}

.ambient-one {
  z-index: 3;
  top: 17%;
  left: 50%;
  width: min(52vw, 680px);
  height: min(52vw, 680px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(163, 51, 65, 0.055), rgba(163, 51, 65, 0) 63%);
  filter: blur(7px);
  opacity: 0.38;
  animation: breathe 9s ease-in-out infinite;
}

.ambient-two {
  z-index: 3;
  right: 11%;
  bottom: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 68%);
  opacity: 0.36;
}

.hero-watermark {
  position: absolute;
  z-index: 1;
  top: 49%;
  left: 50%;
  width: min(31vw, 330px);
  min-width: 210px;
  transform: translate(-50%, -50%);
  opacity: 0.028;
  pointer-events: none;
  user-select: none;
}

.white-breath-intro {
  max-width: 420px;
  margin: 0 0 24px;
  color: rgba(43, 43, 43, 0.66);
  font-family: var(--font-description);
  font-size: clamp(15px, 1.18vw, 17px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.white-breath-cue {
  position: relative;
  display: grid;
  width: fit-content;
  margin: 0 0 clamp(70px, 7.2vw, 112px);
  padding-bottom: 0;
  align-items: center;
  column-gap: 0;
  grid-template-columns: 1em 0.18em 1em 0.18em 1em;
  row-gap: 7px;
  justify-items: center;
  color: rgba(43, 43, 43, 0.82);
  font-family: var(--font-title);
  font-feature-settings:
    "lnum" 1,
    "tnum" 1;
  font-size: 90px !important;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 400 !important;
  line-height: 0.82;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.white-breath-cue-counts {
  display: contents;
}

.white-breath-cue-counts > span {
  grid-row: 1;
}

.white-breath-cue-counts > span:nth-child(1) {
  grid-column: 1;
}

.white-breath-cue-counts > span:nth-child(2) {
  grid-column: 2;
}

.white-breath-cue-counts > span:nth-child(3) {
  grid-column: 3;
}

.white-breath-cue-counts > span:nth-child(4) {
  grid-column: 4;
}

.white-breath-cue-counts > span:nth-child(5) {
  grid-column: 5;
}

.white-breath-cue-dot {
  color: #2b2b2bd1;
  font-size: 0.28em;
  line-height: 1;
  transform: translateY(0.02em);
}

.white-breath-cue-label {
  display: contents;
  color: rgba(43, 43, 43, 0.58);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.white-breath-cue-label > span {
  grid-row: 2;
}

.white-breath-cue-label span:nth-child(1) {
  grid-column: 1;
}

.white-breath-cue-label span:nth-child(2) {
  grid-column: 3;
}

.white-breath-cue-label span:nth-child(3) {
  grid-column: 5;
}

.white-breath-cue::after {
  display: none;
  content: none;
}

.white-breath-cue-center {
  transform: none;
}

.inline-breath-dot {
  display: inline-block;
  margin: 0 0.08em;
  font-size: 0.75em;
  line-height: 1;
  vertical-align: 0.00em;
}

.mechanism-breath-dot {
  display: inline-block;
  margin: 0 0.08em;
  font-size: 0.72em;
  line-height: 1;
  vertical-align: 0.04em;
}

.white-breath-section {
  display: flex;
  min-height: clamp(390px, 54vh, 580px);
  padding: clamp(94px, 10vw, 142px) 24px clamp(102px, 11vw, 152px);
  align-items: center;
  justify-content: center;
  background: #f7f6f3;
}

.white-breath-section .white-breath-cue {
  margin-bottom: 0;
}

.hero-content {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  padding: 96px 24px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.our-story-hero-message {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 120px 24px 96px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-title);
  text-align: center;
  text-shadow: 0 18px 46px rgba(7, 3, 3, 0.4);
  pointer-events: none;
}

.our-story-hero-message p {
  margin: 0;
  color: inherit;
  font-size: clamp(20px, 2vw, 28px) !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.our-story-checkerboard {
  display: grid;
  width: 100%;
  margin: 100px auto;
  gap: 0;
  padding: 0;
  background: #f7f5f1;
  color: rgba(36, 45, 42, 0.94);
}

.our-story-checkerboard-row {
  display: grid;
  width: 100%;
  min-height: 690px;
  align-items: stretch;
  gap: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.our-story-checkerboard-media {
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #e7e1d9;
}

.our-story-checkerboard-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.our-story-checkerboard-copy {
  display: grid;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  place-items: center;
  padding: clamp(64px, 8vw, 128px);
  background: #f7f5f1;
  text-align: center;
}

.our-story-checkerboard-copy-group {
  width: min(100%, 620px);
}

.our-story-checkerboard-heading {
  margin: 0 0 clamp(72px, 8vw, 116px);
  color: var(--rdf-crimson);
  font-family: var(--font-title);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.our-story-checkerboard-copy p {
  margin: 0;
  color: rgba(7, 3, 3, 0.92);
  font-family: var(--font-title);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.18;
}

.our-story-checkerboard-copy p + p {
  margin-top: 26px;
}

.our-story-checkerboard-closing {
  margin-top: 34px !important;
}

.our-story-checkerboard-row.is-image-right .our-story-checkerboard-media {
  grid-column: 2;
}

.our-story-checkerboard-row.is-image-right .our-story-checkerboard-copy {
  grid-column: 1;
  grid-row: 1;
}

@media (min-width: 1280px) {
  .our-story-checkerboard-row {
    height: clamp(690px, 50vw, 900px);
    min-height: 0;
  }

  .our-story-checkerboard-copy {
    padding: clamp(52px, 4.8vw, 86px);
  }

  .our-story-checkerboard-heading {
    margin-bottom: clamp(42px, 4vw, 68px);
    font-size: clamp(27px, 2.2vw, 36px);
  }

  .our-story-checkerboard-copy p {
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.34;
  }

  .our-story-checkerboard-copy p + p {
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .our-story-checkerboard {
    margin-bottom: 0;
  }

  .our-story-checkerboard-row {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .our-story-checkerboard-media,
  .our-story-checkerboard-row.is-image-right .our-story-checkerboard-media {
    min-height: 0;
    aspect-ratio: 620 / 690;
    grid-column: 1;
    grid-row: 1;
  }

  .our-story-checkerboard-copy,
  .our-story-checkerboard-row.is-image-right .our-story-checkerboard-copy {
    min-height: 420px;
    grid-column: 1;
    grid-row: 2;
    padding: 68px 24px 72px;
  }

  .our-story-checkerboard-copy p {
    font-size: clamp(16px, 4.5vw, 19px);
    line-height: 1.28;
  }

  .our-story-checkerboard-heading {
    margin-bottom: 48px;
    font-size: 28px;
  }

  .our-story-checkerboard-copy p br {
    display: none;
  }
}

.white-page-hero {
  display: grid;
  width: min(100%, 980px);
  justify-items: center;
  color: rgba(247, 245, 241, 0.78);
  font-family: var(--font-title);
  text-align: center;
  text-shadow:
    0 4px 18px rgba(7, 3, 3, 0.42),
    0 24px 66px rgba(7, 3, 3, 0.38);
}

.white-page-kicker,
.white-page-subtitle,
.white-page-line {
  display: block;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.white-page-kicker {
  font-size: clamp(18px, 1.58vw, 22px);
  line-height: 1.2;
}

.white-page-title {
  display: block;
  margin-top: clamp(78px, 7.6vw, 92px);
  color: inherit;
  font-size: clamp(56px, 5.6vw, 76px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.white-page-subtitle {
  margin-top: 20px;
  font-size: clamp(24px, 2.42vw, 32px);
  font-weight: 300;
  line-height: 1.15;
}

.white-page-line {
  margin-top: clamp(48px, 4.8vw, 62px);
  font-size: clamp(13px, 1.22vw, 16px);
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.hero-control {
  display: inline-flex;
  width: 24px;
  height: 24px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  padding: 0;
  color: rgba(119, 16, 28, 0.78);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(7, 3, 3, 0.14);
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-control:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--rdf-crimson);
  transform: translateY(-1px);
}

.control-symbol {
  display: block;
  width: 7px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.video-play-toggle.is-paused .control-symbol {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  border-right: 0;
}

.sound-symbol {
  display: block;
  width: 14px;
  height: 14px;
}

.sound-symbol path,
.sound-symbol circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sound-control.is-sound-on {
  color: #ffffff;
  background: rgba(163, 51, 65, 0.9);
  border-color: rgba(255, 255, 255, 0.7);
}

.our-story-white-collection {
  display: flex;
  min-height: 744px;
  padding: 96px 24px 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7f6f3;
  color: rgba(43, 43, 43, 0.78);
  text-align: center;
}

.section-kicker {
  margin: 0 0 116px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.our-story-white-collection h1 {
  max-width: 980px;
  margin: 0;
  color: rgba(43, 43, 43, 0.82);
  font-size: clamp(25px, 2.35vw, 32px);
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.18;
  text-transform: uppercase;
}

.section-copy {
  max-width: 850px;
  margin: 132px 0 0;
  color: rgba(43, 43, 43, 0.76);
  font-family: var(--font-description);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  letter-spacing: 0.15px;
  line-height: 1.18;
  text-transform: uppercase;
}

.collection-products {
  padding: 126px clamp(24px, 6vw, 88px) 84px;
  background: var(--neutral-lightest);
  color: rgba(36, 45, 42, 0.78);
}

.collection-product-grid {
  display: grid;
  max-width: 1060px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 5.6vw, 74px);
}

.collection-product-card {
  position: relative;
  min-height: 560px;
  text-align: center;
}

.collection-product-media {
  display: grid;
  width: 100%;
  height: 405px;
  min-height: 405px;
  margin: 0;
  overflow: hidden;
  place-items: center;
  background: #ffffff;
  color: rgba(36, 45, 42, 0.72);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.collection-product-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.collection-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.collection-product-image.is-changing {
  opacity: 0.72;
  transform: scale(1.008);
}

.collection-product-card.is-product-hovered .collection-product-image {
  transform: scale(1.015);
}

.collection-product-card.is-product-hovered .collection-product-image.is-changing {
  transform: scale(1.02);
}

.collection-product-details {
  position: relative;
  z-index: 1;
  width: min(76%, 190px);
  margin: 22px auto 0;
  padding: 18px 20px 16px;
  background: var(--neutral-lightest);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-product-card:hover .collection-product-details,
.collection-product-card.is-product-hovered .collection-product-details {
  background: var(--neutral-lightest);
  box-shadow: none;
  transform: translateY(-104px);
}

.collection-product-details h2 {
  margin: 0;
  color: rgba(36, 45, 42, 0.76);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.collection-product-details h2 a {
  color: inherit;
}

.collection-product-details h2 a:hover,
.collection-product-details h2 a:focus-visible {
  color: var(--rdf-crimson);
  outline: none;
}

.product-page-shell {
  background: var(--neutral-lightest);
  color: var(--neutral-black);
}

.product-page-shell > .product-detail {
  display: grid;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 170px clamp(20px, 3vw, 32px) 96px;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
  gap: clamp(52px, 7vw, 116px);
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.product-gallery-thumbnails,
.product-gallery-arrow {
  display: none;
}

.product-photo-placeholder {
  display: grid;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  place-items: center;
  background: #ffffff;
  color: rgba(7, 3, 3, 0.9);
  font-family: var(--font-description);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.product-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.product-gallery-image.is-changing {
  opacity: 0.72;
  transform: scale(1.008);
}

.product-feature-anchor {
  display: flex;
  min-height: 760px;
  padding: clamp(118px, 12vw, 176px) 24px clamp(132px, 14vw, 210px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #f9f9f7;
  color: rgba(36, 45, 42, 0.72);
  font-family: var(--font-description);
  text-align: center;
}

.product-feature-kicker {
  margin: 0 0 clamp(84px, 8.2vw, 120px);
  font-size: clamp(15px, 1.28vw, 18px);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-feature-kicker-plain {
  letter-spacing: 0.01em;
  text-transform: none;
}

.product-feature-anchor h2 {
  margin: 0;
  color: rgba(36, 45, 42, 0.74);
  font-size: clamp(39px, 4.25vw, 58px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.22;
  text-transform: uppercase;
}

.product-feature-anchor h2.product-feature-question-title {
  max-width: 980px;
  color: rgba(36, 45, 42, 0.78);
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.product-feature-question-title span {
  display: block;
}

.product-feature-question-title .product-feature-question-intro {
  margin-bottom: 4px;
  font-size: clamp(16px, 1.45vw, 20px);
}

.product-feature-copy {
  max-width: 760px;
  margin: clamp(44px, 4.5vw, 58px) auto 0;
  color: #242d2ab8;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.22;
}

.product-feature-copy-wide {
  max-width: 1120px;
}

.product-feature-copy-secondary {
  margin-top: clamp(22px, 2.6vw, 32px);
}

.grounding-feature-anchor {
  min-height: 760px;
  padding-top: clamp(118px, 12vw, 176px);
  justify-content: center;
}

.grounding-feature-anchor .product-feature-copy {
  max-width: 1060px;
  margin-top: clamp(24px, 2.8vw, 32px);
  color: rgba(36, 45, 42, 0.72);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.18;
}

.grounding-feature-anchor h2.grounding-feature-line {
  margin-top: 0;
  color: rgba(36, 45, 42, 0.72);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.18;
  text-transform: none;
}

.product-feature-close {
  margin: clamp(46px, 4.8vw, 60px) 0 0;
  color: #242d2ab8;
  font-size: clamp(24px, 2.15vw, 30px);
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-sensory-anchor {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: clamp(116px, 12vw, 176px) clamp(24px, 5vw, 72px)
    clamp(136px, 14vw, 198px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(247, 246, 243, 0) 34%),
    radial-gradient(circle at 13% 18%, rgba(163, 51, 65, 0.05), rgba(163, 51, 65, 0) 34%),
    radial-gradient(circle at 88% 4%, rgba(91, 98, 91, 0.08), rgba(91, 98, 91, 0) 34%),
    #f9f9f7;
  color: rgba(36, 45, 42, 0.72);
  font-family: var(--font-description);
  text-align: center;
}

.product-sensory-heading {
  max-width: 860px;
  margin: 0 auto clamp(82px, 8vw, 116px);
}

.product-sensory-heading h2 {
  margin: 0;
  color: rgba(36, 45, 42, 0.72);
  font-size: clamp(28px, 2.45vw, 34px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.18;
  text-transform: uppercase;
}

.product-sensory-heading p {
  margin: clamp(36px, 4vw, 48px) 0 0;
  color: #242d2ab8;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.26;
}

.product-sensory-grid {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-sensory-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 330px;
  border: 1px solid rgba(36, 45, 42, 0.1);
  border-radius: 8px;
  padding: 30px clamp(22px, 2.3vw, 34px) 34px;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.48);
  box-shadow: 0 26px 76px rgba(55, 59, 55, 0.06);
}

.product-sensory-card h3 {
  max-width: none;
  min-height: 58px;
  margin: 0 0 24px;
  color: rgba(36, 45, 42, 0.86);
  font-family: var(--font-title);
  font-size: clamp(15px, 1.28vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: uppercase;
}

.product-sensory-card p {
  margin: 0;
  color: #242d2ab8;
  font-size: clamp(15px, 1.28vw, 18px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.32;
  text-align: left;
}

.product-sensory-card p::before {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 26px;
  background: rgba(36, 45, 42, 0.1);
  content: "";
}

.regulation-feature-tiles {
  display: flex;
  min-height: 760px;
  padding: clamp(86px, 8vw, 118px) clamp(20px, 5vw, 72px);
  align-items: center;
  justify-content: center;
}

.regulation-feature-tiles .product-sensory-grid {
  width: min(100%, 596px);
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.regulation-feature-tiles .product-sensory-card {
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  box-shadow: none;
  isolation: isolate;
}

.regulation-feature-tiles .product-sensory-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 62%),
    linear-gradient(180deg, rgba(249, 249, 247, 0.08), rgba(249, 249, 247, 0.2));
  content: "";
}

.regulation-feature-tiles .product-sensory-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  transform: scale(1.01);
  transition: opacity 180ms ease;
}

.regulation-feature-tiles .product-sensory-card img.is-changing {
  opacity: 0.35;
}

.regulation-feature-tiles .product-sensory-card h3 {
  position: relative;
  z-index: 2;
  max-width: 230px;
  min-height: 0;
  margin: 0;
  color: #090908;
  font-family: var(--font-description);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.92);
  text-transform: none;
}

.product-sensory-mechanism {
  min-height: 760px;
  padding: clamp(86px, 9vw, 126px) clamp(24px, 5vw, 72px)
    clamp(102px, 10vw, 142px);
  background: #f7f6f3;
  color: rgba(36, 45, 42, 0.72);
  font-family: var(--font-description);
  text-align: center;
}

.product-sensory-mechanism-photo {
  width: min(100%, 382px);
  margin: 0 auto;
  background: #ffffff;
  aspect-ratio: 382 / 478;
  overflow: hidden;
}

.product-sensory-mechanism-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-sensory-mechanism-photo img.is-changing {
  opacity: 0.58;
  transform: scale(1.012);
}

.product-sensory-mechanism-copy {
  max-width: 820px;
  margin: clamp(46px, 5vw, 58px) auto 0;
}

.product-sensory-mechanism-copy h2 {
  margin: 0;
  color: rgba(36, 45, 42, 0.72);
  font-size: clamp(15px, 1.22vw, 17px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.22;
  text-transform: uppercase;
}

.product-sensory-mechanism-copy p {
  max-width: 810px;
  margin: clamp(18px, 2vw, 22px) auto 0;
  color: #242d2ab8;
  font-size: clamp(15px, 1.28vw, 17px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.22;
}

.product-material-section {
  position: relative;
  display: flex;
  min-height: 760px;
  padding: clamp(118px, 12vw, 176px) clamp(24px, 5vw, 72px)
    clamp(132px, 14vw, 198px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(242, 234, 221, 0.5), rgb(255 255 255 / 51%)),
    url("../assets/product-detail/hoodie-reset-white-p5.jpg") center / cover no-repeat, #f1e7d8;
  color: rgba(36, 45, 42, 0.72);
  font-family: var(--font-description);
  overflow: hidden;
  text-align: center;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.44);
}

.product-material-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 234, 221, 0.42), rgba(242, 234, 221, 0.72) 46%, rgba(242, 234, 221, 0.46)),
    radial-gradient(circle at 50% 48%, rgba(255, 252, 246, 0.42), rgba(226, 211, 190, 0.14) 58%, rgba(91, 75, 60, 0.18) 100%);
  content: "";
}

.product-material-section > * {
  position: relative;
  z-index: 1;
}

.product-material-kicker {
  margin: 0 0 clamp(70px, 6.8vw, 96px);
  color: #090908;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.product-material-section h2 {
  max-width: 760px;
  margin: 0;
  color: #090908;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
}

.product-material-copy {
  width: min(100%, 940px);
  margin: clamp(64px, 6.4vw, 86px) auto 0;
}

.product-material-copy p {
  max-width: 900px;
  margin: 0 auto;
  color: #242d2ab8;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.18;
  text-align: center;
}

.product-material-copy p + p {
  margin-top: clamp(26px, 3vw, 34px);
}

.product-detail-panel {
  width: min(100%, 520px);
  padding-top: 28px;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--rdf-crimson);
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
}

.product-back-link span {
  display: inline-block;
  line-height: 1;
}

.product-back-link-label {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-back-link-arrow {
  text-decoration: none;
}

.product-back-link:hover,
.product-back-link:focus-visible {
  color: #7d1f2d;
  outline: none;
}

.product-detail-heading h1 {
  margin: 0;
  color: var(--neutral-black);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-detail-heading p {
  margin: 12px 0 0;
  color: var(--neutral-black);
  font-size: 14px !important;
  line-height: 1;
}

.product-option-group {
  margin-top: 38px;
}

.product-colour {
  margin: 0;
  color: var(--neutral-black);
  font-size: 16px !important;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.product-colour span {
  color: var(--rdf-crimson);
}

.product-colour-swatches {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.product-colour-swatch {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(7, 3, 3, 0.62);
  padding: 0;
  appearance: none;
  cursor: pointer;
}

.product-colour-swatch:hover,
.product-colour-swatch:focus-visible {
  outline: 2px solid rgba(163, 51, 65, 0.36);
  outline-offset: 3px;
}

.product-colour-swatch.is-active {
  box-shadow:
    0 0 0 3px var(--neutral-lightest),
    0 0 0 4px rgba(7, 3, 3, 0.32);
}

.product-colour-swatch-cloud {
  background: #5a5a58;
}

.product-colour-swatch-angel {
  border-color: rgba(210, 239, 255, 0.72);
  background: #d2efff;
}

.product-colour-swatch-white {
  border-color: rgba(36, 45, 42, 0.2);
  background: #ffffff;
}

.product-size-group {
  margin-top: 54px;
}

.product-size-heading p {
  margin: 0 0 16px;
  color: var(--neutral-black);
  font-size: 16px !important;
}

.product-size-row {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 36px);
  flex-wrap: wrap;
}

.product-size-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-size-options button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 3, 3, 0.28);
  padding: 0;
  color: rgba(7, 3, 3, 0.68);
  background: var(--neutral-lightest);
  font: inherit;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.product-size-options button:hover,
.product-size-options button:focus-visible {
  border-color: rgba(7, 3, 3, 0.58);
  color: var(--neutral-black);
  outline: none;
}

.product-size-options button.is-active {
  border-color: var(--rdf-crimson);
  color: #ffffff;
  background: var(--rdf-crimson);
  font-weight: 400;
}

.product-fit-guide,
.product-packaging-trigger,
.product-info-list a,
.product-help a {
  color: var(--rdf-crimson);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-fit-guide {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.product-fit-guide:hover,
.product-fit-guide:focus-visible {
  color: #7d1f2d;
  outline: none;
}

.product-add-cart {
  display: inline-flex;
  min-width: min(100%, 260px);
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid var(--rdf-crimson);
  padding: 0 34px;
  color: #ffffff;
  background: var(--rdf-crimson);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.product-add-cart:hover,
.product-add-cart:focus-visible {
  border-color: var(--rdf-crimson-deep);
  background: var(--rdf-crimson-deep);
  outline: none;
}

.product-summary {
  max-width: 470px;
  margin: 42px 0 0;
  color: var(--neutral-black);
  font-size: 15px !important;
  line-height: 1.22;
}

.product-info-list {
  display: grid;
  max-width: 520px;
  margin-top: 38px;
  gap: 18px;
}

.product-info-accordion {
  display: grid;
  gap: 12px;
}

.product-info-list button {
  display: inline-flex;
  justify-content: flex-start;
  border: 0;
  padding: 0;
  color: var(--neutral-black);
  background: transparent;
  font: inherit;
  font-size: 15px;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

.product-info-list button span {
  margin-left: 8px;
}

.product-info-panel {
  display: grid;
  max-width: 500px;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 340ms ease,
    opacity 240ms ease,
    transform 340ms ease,
    visibility 0s linear 340ms;
  visibility: hidden;
}

.product-info-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 340ms ease,
    opacity 240ms ease 70ms,
    transform 340ms ease,
    visibility 0s;
  visibility: visible;
}

.product-info-panel[hidden] {
  display: none;
}

.product-info-panel p {
  margin: 0;
  font-size: 15px !important;
  line-height: 1.58;
}

@media (prefers-reduced-motion: reduce) {
  .product-info-panel {
    transform: none;
    transition: none;
  }
}

.product-info-list a {
  font-size: 15px;
  line-height: 1;
}

.product-info-list .product-packaging-trigger {
  display: inline-flex;
  justify-content: flex-start;
  border: 0;
  padding: 0;
  color: var(--rdf-crimson);
  background: transparent;
  font: inherit;
  font-size: 15px;
  line-height: 1;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.product-info-list .product-packaging-trigger:hover,
.product-info-list .product-packaging-trigger:focus-visible {
  color: #7d1f2d;
  outline: none;
}

.product-help {
  margin: 44px 0 0;
  color: rgba(7, 3, 3, 0.58);
  font-size: 18px !important;
  line-height: 1.2;
}

.fit-guide-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(7, 3, 3, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.fit-guide-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fit-guide-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  display: flex;
  width: min(640px, 100vw);
  height: 100vh;
  flex-direction: column;
  padding: 46px clamp(24px, 4vw, 44px) 42px;
  overflow-y: auto;
  background: #ffffff;
  color: rgba(7, 3, 3, 0.68);
  box-shadow: -18px 0 48px rgba(7, 3, 3, 0.13);
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.fit-guide-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 3, 3, 0.18);
  border-radius: 50%;
  color: rgba(7, 3, 3, 0.7);
  background: transparent;
  font: inherit;
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}

.fit-guide-close:hover,
.fit-guide-close:focus-visible {
  border-color: rgba(7, 3, 3, 0.48);
  outline: none;
}

.fit-guide-drawer h2,
.fit-guide-copy h3 {
  margin: 0;
  color: rgba(7, 3, 3, 0.68);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.fit-guide-intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 30px;
}

.fit-guide-photo {
  display: grid;
  aspect-ratio: 1;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: var(--neutral-lightest);
}

.fit-guide-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 320ms ease;
}

.fit-guide-photo img.is-changing {
  opacity: 0.55;
}

.fit-guide-copy p {
  margin: 20px 0 0;
  color: rgba(7, 3, 3, 0.68);
  font-size: 18px !important;
  line-height: 1.18;
}

.fit-guide-copy .fit-guide-colour {
  margin-top: 26px;
  font-size: 15px !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fit-guide-colour span {
  color: var(--rdf-crimson);
}

.fit-guide-unit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 20px;
  color: rgba(7, 3, 3, 0.68);
  font-size: 17px;
}

.fit-guide-unit span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--neutral-lightest);
  transition: background-color 220ms ease;
}

.fit-guide-size-chart {
  display: block;
  margin: 20px 0 36px;
}

.fit-guide-table-wrap {
  display: block;
  visibility: visible;
  width: 100%;
  overflow-x: auto;
  opacity: 1;
}

.fit-guide-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: rgba(7, 3, 3, 0.68);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}

.fit-guide-table th,
.fit-guide-table td {
  padding: 22px 8px;
  border-bottom: 3px solid #ffffff;
  text-align: center;
}

.fit-guide-table th:first-child {
  width: 31%;
  padding-left: 24px;
  text-align: left;
}

.fit-guide-table thead tr {
  background: #e4afb7;
}

.fit-guide-table tbody tr {
  background: var(--neutral-lightest);
}

.sock-size-chart {
  margin: 28px 0 36px;
}

.sock-size-select-wrap {
  position: relative;
  margin: 0 0 34px;
  border-top: 1px solid rgba(36, 45, 42, 0.14);
  border-bottom: 1px solid rgba(36, 45, 42, 0.14);
}

.sock-size-select-wrap::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(7, 3, 3, 0.76);
  border-bottom: 1px solid rgba(7, 3, 3, 0.76);
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
  content: "";
}

.sock-size-select {
  width: 100%;
  border: 0;
  padding: 17px 28px 17px 0;
  appearance: none;
  color: #090908;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}

.sock-size-select:focus-visible {
  outline: 1px solid rgba(164, 82, 72, 0.5);
  outline-offset: 4px;
}

.sock-size-table-wrap {
  overflow-x: visible;
}

.sock-size-table {
  min-width: 0;
  color: #090908;
  font-size: 15px;
  font-weight: 300;
}

.sock-size-table th,
.sock-size-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(164, 82, 72, 0.18);
}

.sock-size-table thead tr,
.sock-size-table tbody tr {
  background: transparent;
}

.sock-size-table thead th:first-child,
.sock-size-table tbody th {
  width: 33%;
  padding: 18px;
  color: #ffffff;
  background: #a45248;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
}

.fit-guide-table.sock-size-table thead th:first-child,
.fit-guide-table.sock-size-table tbody th:first-child {
  padding: 18px;
  text-align: center;
}

.sock-size-table thead th:not(:first-child),
.sock-size-table tbody td {
  color: #090908;
  background: #f7f5f1;
  text-align: center;
}

.fit-guide-measure {
  margin-top: 0;
  padding-top: 6px;
}

.fit-guide-measure h3 {
  margin: 0 0 20px;
  color: var(--neutral-black);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.fit-guide-measure h4 {
  margin: 24px 0 12px;
  color: var(--neutral-black);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.fit-guide-measure h4:first-child {
  margin-top: 0;
}

.fit-guide-measure p {
  max-width: 540px;
  margin: 0;
  color: var(--neutral-black);
  font-size: 15px !important;
  line-height: 1.24;
}

.fit-guide-measure-photo {
  width: min(100%, 430px);
  margin: 24px 0 0;
  overflow: hidden;
  background: var(--neutral-lightest);
}

.fit-guide-measure-photo img {
  display: block;
  width: 100%;
  height: auto;
}

body.is-fit-guide-open {
  overflow: hidden;
}

.packaging-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(7, 3, 3, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

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

.packaging-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  width: min(420px, 100vw);
  height: 100vh;
  padding: 64px 16px 44px;
  overflow-y: auto;
  background: #ffffff;
  color: var(--neutral-black);
  box-shadow: -18px 0 48px rgba(7, 3, 3, 0.13);
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.packaging-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(7, 3, 3, 0.66);
  font: inherit;
  font-size: 26px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}

.packaging-close:hover,
.packaging-close:focus-visible {
  background: rgba(7, 3, 3, 0.82);
  outline: none;
}

.packaging-heading {
  margin: 0 0 38px;
}

.packaging-heading h2,
.packaging-heading p {
  margin: 0;
  color: var(--neutral-black);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.18;
}

.packaging-heading h2 {
  font-size: 23px;
}

.packaging-heading p {
  margin-top: 2px;
  font-size: 19px;
}

.packaging-media {
  display: grid;
  width: 100%;
  aspect-ratio: 9 / 7;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.packaging-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.packaging-copy {
  margin: 24px 0 0;
  color: rgba(7, 3, 3, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px !important;
  line-height: 1.42;
}

.packaging-copy strong {
  color: var(--neutral-black);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.is-packaging-open {
  overflow: hidden;
}

.product-detail-heading p,
.product-colour,
.product-colour span,
.product-size-heading p,
.product-size-options button,
.product-summary,
.product-info-list button,
.product-info-list a,
.product-info-panel p,
.product-info-list .product-packaging-trigger,
.product-help,
.product-help a,
.product-back-link,
.product-fit-guide,
.product-packaging-trigger,
.fit-guide-drawer,
.fit-guide-drawer h2,
.fit-guide-copy h3,
.fit-guide-copy p,
.fit-guide-copy .fit-guide-colour,
.fit-guide-colour span,
.fit-guide-unit,
.fit-guide-table,
.fit-guide-table th,
.fit-guide-table td,
.fit-guide-measure h3,
.fit-guide-measure h4,
.fit-guide-measure p,
.packaging-drawer,
.packaging-heading h2,
.packaging-heading p,
.packaging-copy,
.packaging-copy strong {
  color: rgba(36, 45, 42, 0.72);
  font-weight: 300;
}

.product-detail-heading h1,
.product-detail-heading p,
.product-colour,
.product-colour span,
.product-summary,
.product-info-list button:not(.product-packaging-trigger) {
  color: #090908;
  font-weight: 400;
}

.product-fit-guide,
.product-info-list .product-packaging-trigger,
.product-packaging-trigger,
.product-help,
.product-help a {
  color: var(--rdf-crimson);
  font-weight: 400;
}

@media (max-width: 900px) {
  .product-page-shell > .product-detail {
    padding-top: 136px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-gallery {
    position: relative;
    display: grid;
    width: 100%;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .product-photo-placeholder {
    display: none;
    position: relative;
    width: 100%;
    grid-column: 1;
    grid-row: 1;
  }

  .product-gallery:not(.is-product-gallery-carousel-ready)
    .product-photo-placeholder:first-child,
  .product-photo-placeholder.is-product-gallery-active {
    display: grid;
  }

  .product-detail-panel {
    width: min(100%, 620px);
    padding-top: 0;
  }

  .product-feature-anchor {
    min-height: 640px;
    padding: 104px 24px 132px;
  }

  .product-feature-kicker {
    margin-bottom: 72px;
  }

  .product-sensory-anchor {
    min-height: auto;
    padding: 104px 28px 126px;
  }

  .product-sensory-heading {
    margin-bottom: 68px;
  }

  .product-sensory-grid {
    max-width: 680px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-sensory-card {
    min-height: auto;
    padding: 28px 26px 32px;
  }

  .product-sensory-card h3 {
    min-height: 0;
  }

  .product-sensory-card p {
    max-width: none;
  }

  .product-sensory-mechanism {
    min-height: auto;
    padding: 84px 28px 108px;
  }

  .product-sensory-mechanism-photo {
    width: min(100%, 372px);
  }

  .product-material-section {
    min-height: auto;
    padding: 104px 28px 132px;
  }

  .product-material-kicker {
    margin-bottom: 64px;
  }

  .product-material-copy {
    max-width: 720px;
    margin-top: 56px;
  }

  .fit-guide-drawer {
    width: min(560px, 100vw);
  }

  .packaging-drawer {
    width: min(420px, 100vw);
  }
}

@media (max-width: 560px) {
  .product-page-shell > .product-detail {
    padding: 124px 16px 74px;
  }

  .product-gallery {
    width: 100%;
  }

  .product-photo-placeholder {
    min-height: 300px;
  }

  .product-feature-anchor {
    min-height: 560px;
    padding: 86px 20px 112px;
  }

  .product-feature-kicker {
    margin-bottom: 56px;
  }

  .product-feature-anchor h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .product-feature-copy br {
    display: none;
  }

  .product-sensory-anchor {
    padding: 84px 20px 104px;
  }

  .product-sensory-heading {
    margin-bottom: 54px;
  }

  .product-sensory-heading p br {
    display: none;
  }

  .product-sensory-grid {
    gap: 16px;
  }

  .product-sensory-card {
    padding: 26px 22px 30px;
  }

  .product-sensory-card h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .product-sensory-card p {
    font-size: 16px;
    line-height: 1.2;
  }

  .product-sensory-card p::before {
    margin-bottom: 22px;
  }

  .product-sensory-mechanism {
    padding: 72px 20px 90px;
  }

  .product-sensory-mechanism-photo {
    width: min(100%, 320px);
  }

  .product-material-section {
    padding: 86px 20px 104px;
  }

  .product-material-kicker {
    margin-bottom: 52px;
  }

  .product-material-section h2 {
    font-size: clamp(29px, 8.6vw, 38px);
  }

  .product-material-copy {
    margin-top: 42px;
  }

  .product-material-copy p {
    font-size: 17px;
    line-height: 1.24;
  }

  .product-size-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .product-size-options button {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .product-help {
    font-size: 17px !important;
  }

  .fit-guide-drawer {
    padding: 54px 16px 32px;
  }

  .fit-guide-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fit-guide-photo {
    width: min(100%, 260px);
  }

  .fit-guide-copy p {
    font-size: 17px !important;
  }

  .fit-guide-table {
    min-width: 500px;
    font-size: 16px;
  }

  .sock-size-table {
    min-width: 0;
    font-size: 14px;
  }

  .fit-guide-table th,
  .fit-guide-table td {
    padding: 18px 10px;
  }

  .sock-size-table th,
  .sock-size-table td {
    padding: 16px 10px;
  }

  .fit-guide-size-chart {
    margin-bottom: 32px;
  }

  .fit-guide-measure p {
    max-width: none;
  }

  .fit-guide-measure-photo {
    width: 100%;
  }

  .packaging-drawer {
    padding: 58px 16px 36px;
  }

  .packaging-media {
    aspect-ratio: 9 / 7;
  }
}

.product-page-shell h1 {
  margin: 0;
  font-weight: 300;
}

.product-page-shell .product-detail-heading h1,
.product-page-shell .product-detail-heading p,
.product-page-shell .product-colour,
.product-page-shell .product-colour span,
.product-page-shell .product-summary,
.product-page-shell .product-info-list button:not(.product-packaging-trigger) {
  color: #090908;
  font-weight: 400 !important;
}

.product-page-shell .product-fit-guide,
.product-page-shell .product-info-list .product-packaging-trigger,
.product-page-shell .product-packaging-trigger,
.product-page-shell .product-help,
.product-page-shell .product-help a {
  color: var(--rdf-crimson);
  font-weight: 400 !important;
}

.collection-product-price {
  display: block;
  margin-top: 20px;
  color: rgba(36, 45, 42, 0.76);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
}

.collection-swatches {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.collection-swatch {
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 1px solid rgba(36, 45, 42, 0.12);
  border-radius: 0;
  appearance: none;
  background-clip: padding-box;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.collection-swatch:hover,
.collection-swatch:focus-visible {
  border-color: rgba(36, 45, 42, 0.42);
}

.collection-swatch:focus-visible {
  outline: 2px solid rgba(163, 51, 65, 0.42);
  outline-offset: 3px;
}

.collection-swatch.is-active {
  border-color: rgba(36, 45, 42, 0.58);
  box-shadow:
    0 0 0 3px var(--neutral-lightest),
    0 0 0 4px rgba(36, 45, 42, 0.26);
  transform: translateY(-1px);
}

.swatch-charcoal {
  background: #545454;
}

.swatch-ice {
  background: #d2efff;
}

.swatch-white {
  background: #ffffff;
}

.collection-future {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(86px, 9vw, 126px) clamp(28px, 5vw, 72px)
    clamp(96px, 10vw, 138px);
  background: #f1efeb;
  color: rgba(36, 45, 42, 0.78);
  text-align: center;
}

.collection-future-heading {
  margin: 0 auto clamp(52px, 6vw, 74px);
}

.collection-future-heading p {
  margin: 0 0 22px;
  color: rgba(36, 45, 42, 0.7);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 1.35;
}

.collection-future-heading h2 {
  margin: 0;
  color: rgba(36, 45, 42, 0.76);
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.08;
  text-transform: uppercase;
}

.collection-future-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 82px);
}

.future-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 4vw, 54px) clamp(26px, 3.2vw, 44px);
  border: 1px solid rgba(36, 45, 42, 0.04);
}

.future-card h3 {
  margin: 0 0 22px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400 !important;
  letter-spacing: 0.15px;
  line-height: 1.12;
  text-transform: none;
}

.future-card p {
  max-width: 280px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.12px;
  line-height: 1.28;
}

.future-card a {
  display: inline-flex;
  margin-top: 38px;
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1px;
  line-height: 1;
  text-decoration: none;
}

.future-card .future-card-notify {
  min-width: 154px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 5px;
  padding: 8px 20px 9px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(7, 3, 3, 0.08);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px) saturate(1.08);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.future-card .future-card-notify:hover,
.future-card .future-card-notify:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 50px rgba(7, 3, 3, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.future-card .future-card-notify:active {
  transform: translateY(0);
}

.future-card-white {
  background: rgba(255, 255, 255, 0.82);
  color: rgba(36, 45, 42, 0.72);
}

.future-card-red {
  background: #a52a38;
  color: rgba(255, 255, 255, 0.95);
}

.future-card-red p {
  color: rgba(255, 255, 255, 0.92);
}

.future-card-red .future-card-notify {
  border-color: rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.94);
}

.future-card-black {
  background: #444040;
  color: rgba(255, 255, 255, 0.95);
}

.future-card-black p {
  color: rgba(255, 255, 255, 0.92);
}

.future-card-black .future-card-notify {
  border-color: rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(7, 3, 3, 0.16);
}

.future-card-black .future-card-notify:hover,
.future-card-black .future-card-notify:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 50px rgba(7, 3, 3, 0.22);
}

body.is-notify-popup-open {
  overflow: hidden;
}

.notify-popup {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: grid;
  padding: clamp(20px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition:
    opacity 200ms ease,
    visibility 200ms ease;
  visibility: hidden;
}

.notify-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.notify-popup-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(7, 3, 3, 0.42);
  cursor: default;
}

.notify-popup-panel {
  position: relative;
  width: min(100%, 560px);
  max-height: min(720px, calc(100vh - 40px));
  overflow-y: auto;
  padding: clamp(34px, 4vw, 46px);
  border: 1px solid rgba(36, 45, 42, 0.12);
  border-radius: 7px;
  background: #f7f5f1;
  box-shadow: 0 28px 86px rgba(7, 3, 3, 0.22);
  color: rgba(36, 45, 42, 0.78);
  text-align: left;
  transform: translateY(10px);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.notify-popup.is-open .notify-popup-panel {
  transform: translateY(0);
}

.notify-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(36, 45, 42, 0.16);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(36, 45, 42, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  place-items: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.notify-popup-close:hover,
.notify-popup-close:focus-visible {
  background: #ffffff;
  color: var(--rdf-crimson);
  outline: none;
  transform: translateY(-1px);
}

.notify-popup-view {
  display: grid;
}

.notify-popup-view[hidden] {
  display: none;
}

.notify-popup-kicker {
  margin: 0 0 18px;
  color: var(--rdf-crimson);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.notify-popup h2 {
  max-width: none;
  margin: 0;
  color: rgba(36, 45, 42, 0.94);
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.08;
  white-space: nowrap;
}

.notify-popup p {
  margin: 20px 0 0;
  color: rgba(36, 45, 42, 0.7);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05px;
  line-height: 1.36;
}

.notify-form {
  display: grid;
  margin-top: 30px;
  gap: 18px;
}

.notify-form label {
  display: grid;
  gap: 8px;
}

.notify-name-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.notify-form span {
  color: rgba(36, 45, 42, 0.76);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.notify-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(36, 45, 42, 0.18);
  border-radius: 5px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(36, 45, 42, 0.92);
  font: inherit;
  font-size: 16px;
  letter-spacing: 0;
  outline: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.notify-form input:focus {
  border-color: rgba(163, 51, 65, 0.54);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(163, 51, 65, 0.12);
}

.notify-form-submit {
  display: inline-flex;
  width: fit-content;
  min-width: 154px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border: 1px solid rgba(36, 45, 42, 0.34);
  border-radius: 5px;
  padding: 9px 22px 10px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 44px rgba(7, 3, 3, 0.08);
  color: rgba(36, 45, 42, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.notify-form-submit:hover,
.notify-form-submit:focus-visible {
  border-color: rgba(163, 51, 65, 0.48);
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(7, 3, 3, 0.14);
  color: var(--rdf-crimson);
  outline: none;
  transform: translateY(-1px);
}

.notify-popup-success {
  min-height: 260px;
  align-content: center;
}

body.is-offer-popup-open {
  overflow: hidden;
}

.offer-popup {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  padding: clamp(18px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
  visibility: hidden;
}

.offer-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.offer-popup-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16), transparent 34%),
    rgba(7, 3, 3, 0.46);
  cursor: default;
}

.offer-popup-panel {
  position: relative;
  display: grid;
  width: min(100%, 850px);
  max-height: calc(100vh - 36px);
  max-height: calc(100dvh - 36px);
  overflow: hidden;
  border: 1px solid rgba(163, 51, 65, 0.18);
  border-radius: 8px;
  padding: 0;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.86), rgba(247, 245, 241, 0.96) 52%),
    #f7f5f1;
  box-shadow:
    0 30px 90px rgba(7, 3, 3, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: rgba(36, 45, 42, 0.86);
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  text-align: left;
  transform: translateY(14px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-popup.is-open .offer-popup-panel {
  transform: translateY(0) scale(1);
}

.offer-popup-panel::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--rdf-crimson), transparent);
  content: "";
  pointer-events: none;
}

.offer-popup-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #24302b;
}

.offer-popup-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.offer-popup-content {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(38px, 4vw, 48px);
}

.offer-popup-mark {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border: 1px solid rgba(163, 51, 65, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(163, 51, 65, 0.94) 0 3px, transparent 4px),
    rgba(163, 51, 65, 0.08);
  box-shadow: 0 14px 30px rgba(163, 51, 65, 0.12);
}

.offer-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(36, 45, 42, 0.16);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(36, 45, 42, 0.68);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  place-items: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.offer-popup-close:hover,
.offer-popup-close:focus-visible {
  background: #ffffff;
  color: var(--rdf-crimson);
  outline: none;
  transform: translateY(-1px);
}

.offer-popup p.offer-popup-kicker {
  margin: 0 0 16px;
  color: var(--rdf-crimson);
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.offer-popup h2 {
  max-width: 10em;
  margin: 0;
  color: rgba(36, 45, 42, 0.94);
  font-size: clamp(31px, 3.6vw, 44px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  white-space: pre-line;
}

.offer-popup p {
  margin: 20px 0 0;
  color: rgba(36, 45, 42, 0.72);
  font-size: 15px !important;
  font-weight: 300 !important;
  letter-spacing: 0;
  line-height: 1.42;
}

.offer-popup-code {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  border: 1px solid rgba(163, 51, 65, 0.24);
  border-radius: 999px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 44px rgba(7, 3, 3, 0.08);
}

.offer-popup-code span {
  color: rgba(36, 45, 42, 0.56);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.offer-popup-code strong {
  color: var(--rdf-crimson);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}

.offer-popup-email {
  display: block;
  width: 100%;
  margin-top: 26px;
}

.offer-popup-email input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(163, 51, 65, 0.3);
  border-radius: 5px;
  padding: 11px 14px 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(7, 3, 3, 0.08);
  color: rgba(36, 45, 42, 0.9);
  font: inherit;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.offer-popup-email input::placeholder {
  color: rgba(36, 45, 42, 0.5);
}

.offer-popup-email input:focus {
  border-color: var(--rdf-crimson);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(163, 51, 65, 0.14);
}

.offer-popup-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.offer-popup-cta,
.offer-popup-secondary {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 11px 20px 12px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.offer-popup-cta {
  border: 1px solid rgba(163, 51, 65, 0.58);
  background: var(--rdf-crimson);
  box-shadow: 0 20px 48px rgba(163, 51, 65, 0.2);
  color: #fffaf8;
}

.offer-popup-secondary {
  border: 1px solid rgba(36, 45, 42, 0.18);
  background: rgba(255, 255, 255, 0.38);
  color: rgba(36, 45, 42, 0.68);
}

.offer-popup-cta:hover,
.offer-popup-cta:focus-visible,
.offer-popup-secondary:hover,
.offer-popup-secondary:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.offer-popup-cta:hover,
.offer-popup-cta:focus-visible {
  background: var(--rdf-crimson-deep);
  box-shadow: 0 24px 54px rgba(115, 36, 46, 0.24);
}

.offer-popup-secondary:hover,
.offer-popup-secondary:focus-visible {
  border-color: rgba(163, 51, 65, 0.34);
  background: #ffffff;
  color: var(--rdf-crimson);
}

@media (max-width: 700px) {
  .offer-popup {
    padding: 12px;
  }

  .offer-popup-panel {
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    overflow-x: hidden;
    overflow-y: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .offer-popup-media {
    height: clamp(160px, 30dvh, 230px);
    min-height: 0;
  }

  .offer-popup-media img {
    object-position: 50% 28%;
  }

  .offer-popup-content {
    overflow: visible;
    padding: 30px 24px 28px;
  }

  .offer-popup h2 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .offer-popup-actions > * {
    flex: 1 1 125px;
  }
}

.our-story-collection-showcase {
  position: relative;
  overflow: hidden;
  padding: 52px clamp(24px, 5vw, 86px) 72px;
  background:
    linear-gradient(180deg, rgba(91, 98, 91, 0.075), rgba(91, 98, 91, 0) 34%),
    linear-gradient(180deg, #ececea 0%, #f2f1ee 48%, #f7f6f3 100%);
  color: rgba(43, 43, 43, 0.78);
  text-align: center;
}

.our-story-collection-showcase::before {
  position: absolute;
  top: 0;
  right: clamp(20px, 5vw, 86px);
  left: clamp(20px, 5vw, 86px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 98, 91, 0.26), transparent);
  content: "";
}

.our-story-collection-showcase::after {
  position: absolute;
  top: -210px;
  left: -120px;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 98, 91, 0.08), rgba(91, 98, 91, 0) 66%);
  content: "";
  pointer-events: none;
}

.showcase-heading {
  position: relative;
  z-index: 1;
  margin: 0 auto 32px;
}

.showcase-heading h2 {
  margin: 0;
  color: rgba(43, 43, 43, 0.8);
  font-size: clamp(25px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.25px;
  line-height: 1.08;
  text-transform: uppercase;
}

.showcase-heading h2.showcase-title-normal {
  text-transform: none;
}

.showcase-heading p {
  margin: 27px 0 0;
  color: rgba(43, 43, 43, 0.76);
  font-family: var(--font-description);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.4;
}

.showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6.4vw, 136px);
}

.showcase-card {
  min-width: 0;
}

.showcase-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  margin: 0;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(55, 59, 55, 0.08);
}

.showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(7, 3, 3, 0.16) 100%);
  content: "";
}

.showcase-card h3 {
  margin: 30px 0 0;
  color: rgba(43, 43, 43, 0.78);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.showcase-card p {
  margin: 17px auto 0;
  max-width: 320px;
  color: rgba(43, 43, 43, 0.74);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.12px;
  line-height: 1.18;
}

.belonging-intro-section {
  min-height: 250px;
  padding: 0px;
  background: #f7f6f3;
  color: rgba(7, 3, 3, 0.95);
}

.belonging-retreats-intro {
  display: grid;
  width: 100%;
  max-width: 500px;
  min-width: 0;
  justify-items: center;
  margin-bottom: 0;
}

.belonging-intro-section h1 {
  max-width: 980px;
  margin: 0;
  color: rgba(43, 43, 43, 0.82);
  font-size: clamp(25px, 2.35vw, 32px);
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.18;
  text-transform: uppercase;
}

.belonging-intro-section p {
  width: 100%;
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(43, 43, 43, 0.76);
  font-family: var(--font-description);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  letter-spacing: 0.15px;
  line-height: 1.18;
  text-transform: uppercase;
}

.belonging-retreats-intro p {
  text-transform: none;
}

.belonging-retreats-overview {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 88px 24px 116px;
  background: #eeeae5;
  color: rgba(7, 3, 3, 0.9);
  text-align: center;
}

.belonging-retreats-list {
  width: min(100%, 980px);
}

.belonging-retreats-list h2 {
  max-width: 980px;
  margin: 0;
  color: rgba(43, 43, 43, 0.82);
  font-size: clamp(25px, 2.35vw, 32px);
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.18;
  text-transform: none;
}

.belonging-retreat-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 11vw, 156px);
  margin-top: 60px;
}

.belonging-retreat-grid h3 {
  margin: 0 0 20px;
  color: var(--rdf-crimson);
  font-size: 17px;
  font-weight: 800 !important;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.belonging-retreat-name {
  display: block;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.belonging-retreat-meta {
  display: block;
  margin-bottom: 10px;
}

.belonging-retreat-grid button {
  display: inline-flex;
  min-width: 154px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  border: 1px solid currentColor;
  border-radius: 5px;
  padding: 8px 20px 9px;
  appearance: none;
  color: rgba(43, 43, 43, 0.78);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(7, 3, 3, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px) saturate(1.08);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.belonging-retreat-grid button:hover,
.belonging-retreat-grid button:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 50px rgba(7, 3, 3, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.belonging-retreat-grid button:active {
  transform: translateY(0);
}

.belonging-audience {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  place-items: center;
  padding: 120px 24px;
  background:
    linear-gradient(90deg, rgba(247, 246, 243, 0.82), rgba(247, 246, 243, 0.56) 52%, rgba(247, 246, 243, 0.7)),
    url("../assets/collection-showcase-girl.png") center 33% / cover no-repeat,
    #f7f6f3;
  color: rgba(7, 3, 3, 0.92);
  text-align: center;
}

.belonging-audience::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.36), transparent 42%),
    linear-gradient(180deg, rgba(247, 246, 243, 0.04), rgba(247, 246, 243, 0.18));
  content: "";
  pointer-events: none;
}

.belonging-audience::after {
  display: none;
  content: none;
}

.belonging-audience-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 760px);
  gap: 76px;
}

.belonging-audience h2 {
  margin: 0;
  color: rgb(255 255 255 / 92%);
  font-size: clamp(18px, 1.65vw, 22px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
}

.belonging-audience-copy {
  display: grid;
  gap: 28px;
}

.belonging-audience p {
  margin: 0;
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.18;
}

.belonging-neurowellness {
  padding: 124px clamp(24px, 6vw, 92px) 98px;
  background: #ffffff;
}

.belonging-neurowellness::before,
.belonging-neurowellness::after {
  display: none;
}

.belonging-neurowellness .showcase-heading {
  margin-bottom: 78px;
}

.belonging-neurowellness .showcase-heading p {
  margin: 0;
  color: rgba(36, 45, 42, 0.9);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
}

.belonging-neurowellness .showcase-heading p:first-child {
  text-transform: uppercase;
}

.belonging-neurowellness .showcase-heading p + p {
  margin-top: 18px;
}

.belonging-neurowellness-line {
  display: block;
  margin-bottom: 40px;
}

.belonging-neurowellness .showcase-heading h2 {
  margin: 22px 0 18px;
  color: rgba(36, 45, 42, 0.94);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
}

.belonging-neurowellness-grid {
  max-width: 930px;
  gap: clamp(44px, 6vw, 78px);
}

.belonging-neurowellness .showcase-media {
  aspect-ratio: 1;
  box-shadow: none;
}

.belonging-neurowellness .showcase-media::after {
  display: none;
}

.belonging-neurowellness .showcase-card h3 {
  margin-top: 20px;
  color: rgba(36, 45, 42, 0.9);
  font-size: 19px;
  font-weight: 800 !important;
  letter-spacing: 0;
  line-height: 1.08;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.belonging-neurowellness .showcase-card p {
  margin-top: 2px;
  color: rgba(36, 45, 42, 0.9);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
}

.belonging-session-duration {
  display: block;
  margin-top: 15px;
}

.belonging-neurowellness-button {
  display: inline-flex;
  min-width: 154px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin: 62px auto 0;
  border: 1px solid rgba(165, 42, 56, 0.58);
  border-radius: 5px;
  padding: 9px 22px 10px;
  background: var(--rdf-crimson);
  box-shadow: 0 18px 44px rgba(7, 3, 3, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.belonging-neurowellness-button:hover,
.belonging-neurowellness-button:focus-visible {
  border-color: rgba(165, 42, 56, 0.72);
  background: #a52a38;
  box-shadow: 0 22px 50px rgba(7, 3, 3, 0.14);
  color: #ffffff;
  outline: none;
  transform: translateY(-1px);
}

.belonging-neurowellness-button:active {
  transform: translateY(0);
}

.our-story-system-film {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  padding: 120px 24px;
  background:
    url("https://img.youtube.com/vi/4HhjMDHLZQs/maxresdefault.jpg") center / cover no-repeat,
    #070303;
  color: #ffffff;
  text-align: center;
}

.our-story-system-film::after {
  display: none;
  content: none;
}

.system-film-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.system-film-media iframe,
.system-film-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 1;
  pointer-events: none;
}

.system-film-media video {
  object-fit: cover;
}

.system-film-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 96px));
  padding: 0;
}

.our-story-system-film h2 {
  margin: 0;
  color: #ffffff61;
  font-family: var(--font-title);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.14;
  text-transform: none;
  text-shadow: none;
}

.our-story-system-film h2 span {
  display: block;
}

.our-story-system-film h2 .keep-line {
  white-space: nowrap;
}

.belonging-stay-close {
  min-height: 760px;
  padding: 84px 24px 86px;
  background: #191512;
  color: rgba(255, 255, 255, 0.92);
}

.belonging-stay-close::before {
  display: none;
  content: none;
}

.belonging-stay-close .neurowellness-video video {
  filter: none;
  opacity: 1;
}

.belonging-stay-close-copy {
  display: grid;
  width: min(920px, calc(100vw - 48px));
  justify-items: center;
  gap: 22px;
}

.belonging-stay-close-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-title);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-shadow:
    0 4px 18px rgba(7, 3, 3, 0.56),
    0 18px 54px rgba(7, 3, 3, 0.58);
}

.belonging-stay-close-copy p:first-child {
  margin-bottom: 42px;
  font-size: clamp(17px, 1.55vw, 22px);
  text-transform: uppercase;
}

.belonging-stay-close h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.16;
  text-transform: none;
  text-shadow:
    0 4px 18px rgba(7, 3, 3, 0.56),
    0 22px 66px rgba(7, 3, 3, 0.62);
}

.belonging-stay-close .belonging-subscribe-button {
  margin-top: 20px;
}

.our-story-brand-benefits {
  padding: 100px 65px;
  background: #f7f6f3;
  color: rgba(37, 43, 41, 0.88);
  text-align: center;
}

.brand-benefits-title {
  margin: 0 auto 42px;
  max-width: min(760px, calc(100% - 40px));
  color: rgba(43, 43, 43, 0.8);
  font-size: clamp(25px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.25px;
  line-height: 1.08;
  text-transform: uppercase;
}

.benefits-brand {
  display: flex;
  justify-content: center;
  margin: 0 auto 72px;
}

.benefits-brand img {
  width: min(280px, 58vw);
  height: auto;
  object-fit: contain;
}

.benefits-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6.4vw, 136px);
}

.benefit-card {
  min-width: 0;
}

.benefit-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  margin: 0;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(73, 62, 55, 0.09);
}

.benefit-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card h3 {
  margin: 27px auto 0;
  max-width: 280px;
  color: rgba(37, 43, 41, 0.88);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.12;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 25px auto 0;
  max-width: 290px;
  color: rgba(37, 43, 41, 0.86);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.14;
}

.our-story-tee-showcase {
  position: relative;
  overflow: hidden;
  padding: 84px clamp(24px, 5vw, 86px) 94px;
  background: #eeeae5;
  color: rgba(43, 43, 43, 0.78);
  text-align: center;
}

.our-story-tee-showcase::before {
  display: none;
  position: absolute;
  top: 0;
  right: clamp(20px, 5vw, 86px);
  left: clamp(20px, 5vw, 86px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163, 51, 65, 0.22), transparent);
  content: "";
}

.our-story-tee-showcase::after {
  display: none;
  position: absolute;
  top: -180px;
  right: -110px;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 51, 65, 0.09), rgba(163, 51, 65, 0) 66%);
  content: "";
  pointer-events: none;
}

.tee-heading {
  position: relative;
  z-index: 1;
  margin: 0 auto 34px;
}

.tee-heading h2 {
  margin: 0;
  color: rgba(43, 43, 43, 0.8);
  font-size: clamp(25px, 2.2vw, 31px);
  font-weight: 500;
  letter-spacing: 0.18px;
  line-height: 1.08;
  text-transform: none;
}

.tee-heading p {
  margin: 27px 0 0;
  color: rgba(43, 43, 43, 0.76);
  font-family: var(--font-description);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.4;
}

.tee-grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6.4vw, 136px);
}

.tee-card {
  min-width: 0;
}

.tee-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  margin: 0;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(73, 62, 55, 0.09);
}

.tee-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tee-media::after {
  position: absolute;
  inset: 0;
  content: "";
}

.tee-card h3 {
  margin: 30px auto 0;
  max-width: 330px;
  color: rgba(43, 43, 43, 0.78);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08px;
  line-height: 1.16;
  text-transform: uppercase;
}

.tee-card p {
  margin: 24px auto 0;
  max-width: 340px;
  color: rgba(43, 43, 43, 0.74);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.16;
}

.belonging-tee-copy {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 760px;
  margin: 0px auto;
  gap: 28px;
}

.belonging-tee-copy p {
  margin: 0;
  color: rgba(43, 43, 43, 0.76);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.18;
}

.our-story-sock-showcase {
  padding: 72px clamp(24px, 5vw, 86px) 94px;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(247, 246, 243, 0) 26%),
    rgb(247, 246, 243);
  color: rgba(43, 43, 43, 0.78);
  text-align: center;
}

.sock-heading {
  margin: 0 auto 34px;
}

.sock-heading h2 {
  margin: 0;
  color: rgba(43, 43, 43, 0.8);
  font-size: clamp(25px, 2.2vw, 31px);
  font-weight: 500;
  letter-spacing: 0.18px;
  line-height: 1.08;
  text-transform: none;
}

.sock-heading p {
  margin: 23px 0 0;
  color: rgba(43, 43, 43, 0.76);
  font-family: var(--font-description);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.4;
}

.sock-grid {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6.4vw, 136px);
}

.sock-card {
  min-width: 0;
}

.sock-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  margin: 0;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(73, 62, 55, 0.09);
}

.sock-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sock-card h3 {
  margin: 30px auto 0;
  max-width: 330px;
  color: #a33341;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08px;
  line-height: 1.16;
  text-transform: capitalize;
}

.sock-card p {
  margin: 18px auto 0;
  max-width: 340px;
  color: rgba(36, 45, 42, 0.72);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.52;
}

.our-story-state-luxury {
  position: relative;
  display: grid;
  min-height: 740px;
  overflow: hidden;
  place-items: center;
  padding: 120px 24px;
  background:
    linear-gradient(rgba(242, 234, 221, 0.48), rgba(242, 234, 221, 0.48)),
    url("../assets/state-luxury-bg-v2.png") center / cover no-repeat,
    #f1e7d8;
  color: rgba(36, 45, 42, 0.92);
  text-align: center;
}

.our-story-state-luxury::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 234, 221, 0.34), rgba(242, 234, 221, 0.64) 43%, rgba(242, 234, 221, 0.42)),
    radial-gradient(circle at 50% 48%, rgba(255, 252, 246, 0.36), rgba(226, 211, 190, 0.12) 58%, rgba(91, 75, 60, 0.18) 100%);
  content: "";
}

.state-luxury-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100vw - 48px));
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.44);
}

.our-story-state-luxury h2 {
  margin: 0;
  color: rgba(36, 45, 42, 0.96);
  font-family: var(--font-title);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.our-story-state-luxury p {
  margin: 84px 0 0;
  color: rgba(36, 45, 42, 0.92);
  font-family: var(--font-description);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.our-story-neurowellness-session {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  place-items: center;
  padding: 84px 24px 86px;
  background:
    linear-gradient(rgba(7, 3, 3, 0.34), rgba(7, 3, 3, 0.34)),
    url("../assets/neurowellness-bg.png") center / cover no-repeat,
    #191512;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.neurowellness-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.neurowellness-video iframe,
.neurowellness-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  filter: saturate(0.82) contrast(1.06) brightness(0.86);
  opacity: 0.82;
  transform: translate(-50%, -50%) scale(1.08);
}

.neurowellness-video video {
  object-fit: cover;
}

.our-story-neurowellness-session::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 38%, rgba(248, 241, 229, 0.2), rgba(7, 3, 3, 0.18) 38%, rgba(7, 3, 3, 0.54) 100%),
    linear-gradient(180deg, rgba(7, 3, 3, 0.5), rgba(7, 3, 3, 0.26) 44%, rgba(7, 3, 3, 0.62));
  content: "";
}

.neurowellness-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100vw - 48px));
}

.neurowellness-kicker {
  margin: 0 0 88px;
  color: #ffffff61;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.our-story-neurowellness-session h2 {
  max-width: 820px;
  margin: 0 auto;
  color: #ffffff61;
  font-family: var(--font-title);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.16;
  text-transform: uppercase;
  text-shadow: 0 16px 46px rgba(7, 3, 3, 0.44);
}

.neuro-breath-button {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 2.2vw, 30px);
  margin: 58px auto 0;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.44);
  background: transparent;
  cursor: default;
  font-family: var(--font-title);
  font-feature-settings:
    "lnum" 1,
    "tnum" 1;
  font-size: clamp(94px, 15vw, 178px);
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 0.95;
  text-shadow: 0 26px 70px rgba(7, 3, 3, 0.48);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.neuro-breath-step {
  display: grid;
  min-width: clamp(74px, 10vw, 136px);
  align-content: start;
  justify-items: center;
  gap: clamp(8px, 0.9vw, 12px);
}

.neuro-breath-number,
.neuro-breath-separator {
  display: block;
  color: currentColor;
  transition: color 200ms ease;
}

.neuro-breath-number {
  line-height: 0.82;
}

.neuro-breath-separator {
  margin-top: 1em;
  font-size: 0.35em;
  line-height: 0.82;
}

.neuro-breath-label {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-description);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 10px 26px rgba(7, 3, 3, 0.38);
  text-transform: uppercase;
  transition: color 200ms ease;
}

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

.neuro-breath-button:hover .neuro-breath-number,
.neuro-breath-button:hover .neuro-breath-separator {
  color: rgba(255, 255, 255, 0.96);
}

.neuro-breath-button:hover .neuro-breath-label {
  color: rgba(255, 255, 255, 0.74);
}

.neurowellness-action {
  appearance: none;
  display: flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 42px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 8px 22px 9px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(166, 166, 164, 0.34);
  box-shadow: 0 18px 44px rgba(7, 3, 3, 0.18);
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 8px 22px rgba(7, 3, 3, 0.34);
  backdrop-filter: blur(10px) saturate(1.08);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.neurowellness-action:hover,
.neurowellness-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(166, 166, 164, 0.48);
  box-shadow: 0 22px 50px rgba(7, 3, 3, 0.24);
  outline: none;
  transform: translateY(-1px);
}

.neurowellness-action:active {
  transform: translateY(0);
}

.our-story-neuro-pillars {
  position: relative;
  overflow: hidden;
  padding: 100px clamp(32px, 5.8vw, 25px) 50px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(247, 246, 243, 0) 34%),
    radial-gradient(circle at 13% 18%, rgba(163, 51, 65, 0.06), rgba(163, 51, 65, 0) 34%),
    radial-gradient(circle at 88% 4%, rgba(91, 98, 91, 0.08), rgba(91, 98, 91, 0) 34%),
    #f7f6f3;
  color: rgba(36, 45, 42, 0.92);
}

.our-story-neuro-pillars::before {
  display: none;
}

.neuro-pillars-inner {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid rgba(36, 45, 42, 0.1);
  border-radius: 8px;
  padding: 28px clamp(20px, 2.1vw, 34px) 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.48);
  box-shadow: 0 26px 76px rgba(55, 59, 55, 0.06);
}

.pillar-card::before {
  display: none;
}

.pillar-card + .pillar-card {
  padding-left: clamp(20px, 2.1vw, 34px);
  border-left: 1px solid rgba(36, 45, 42, 0.1);
}

.pillar-number {
  display: block;
  margin: 0 0 30px;
  color: rgba(163, 51, 65, 0.86);
  background: transparent;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.pillar-card h3 {
  min-height: 76px;
  margin: 0 0 26px;
  color: rgba(36, 45, 42, 0.92);
  font-family: var(--font-title);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
}

.pillar-card p:last-child {
  margin: 0;
  max-width: none;
  color: rgba(36, 45, 42, 0.78);
  font-family: var(--font-description);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.32;
}

.pillar-summary {
  max-width: 820px;
  margin: 64px auto 0;
  border-top: 1px solid rgba(36, 45, 42, 0.1);
  padding-top: 28px;
  color: rgba(36, 45, 42, 0.72);
  font-family: var(--font-description);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.our-story-begin-today {
  padding: 110px clamp(32px, 5vw, 72px) 104px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(247, 246, 243, 0) 26%),
    #f7f6f3;
  color: rgba(36, 45, 42, 0.92);
}

.begin-today-heading {
  margin: 0 auto 30px;
  text-align: center;
}

.begin-today-heading p {
  margin: 0 0 26px;
  color: rgba(36, 45, 42, 0.82);
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.begin-today-heading h2 {
  margin: 0;
  color: rgba(36, 45, 42, 0.96);
  font-family: var(--font-title);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.12;
  text-transform: uppercase;
}

.session-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 108px);
}

.session-card {
  min-width: 0;
}

.session-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin: 0 0 25px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(7, 3, 3, 0.06);
}

.session-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(7, 3, 3, 0.16) 100%);
  content: "";
  opacity: 0.45;
  pointer-events: none;
}

.session-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.session-card:hover .session-media img {
  transform: scale(1.035);
  filter: saturate(0.94);
}

.session-copy {
  padding-right: 8px;
}

.session-copy h3 {
  margin: 0 0 19px;
  color: rgba(36, 45, 42, 0.92);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.12;
  text-transform: uppercase;
}

.session-copy p {
  margin: 0;
  color: rgba(36, 45, 42, 0.88);
  font-family: var(--font-description);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.16;
}

.session-meta {
  margin-top: 19px !important;
  color: rgba(36, 45, 42, 0.8) !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.1 !important;
  text-transform: uppercase;
}

.session-meta + .session-meta {
  margin-top: 8px !important;
}

.showcase-card h3,
.benefit-card h3,
.tee-card h3,
.session-copy h3 {
  color: rgba(36, 45, 42, 0.86);
  font-family: var(--font-title);
  font-size: clamp(16.5px, 1.12vw, 19px);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.34;
  text-wrap: balance;
}

.showcase-card p,
.benefit-card p,
.tee-card p,
.session-copy p {
  max-width: 370px;
  color: rgba(36, 45, 42, 0.72);
  font-family: var(--font-description);
  font-size: clamp(15px, 0.98vw, 16px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.52;
  text-wrap: pretty;
}

.showcase-card h3,
.tee-card h3 {
  margin-top: 34px;
}

.benefit-card h3 {
  margin-top: 31px;
}

.showcase-card p,
.benefit-card p,
.tee-card p {
  margin-top: 20px;
}

.session-copy h3 {
  margin-bottom: 20px;
}

.session-copy p {
  max-width: 390px;
}

.section-copy,
.showcase-heading p,
.showcase-card p,
.benefit-card p,
.tee-heading p,
.tee-card p,
.our-story-state-luxury p,
.pillar-card p:last-child,
.pillar-summary,
.session-copy p,
.footer-newsletter p {
  font-size: 15px;
  font-weight: 300;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 118px clamp(32px, 6vw, 96px) 54px;
  color: rgba(255, 255, 255, 0.9);
  background: #a6a6a4;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  gap: 82px;
}

.site-footer::before {
  display: none;
}

.site-footer::after {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.9fr 1fr minmax(270px, 1.2fr);
  gap: clamp(34px, 5.2vw, 78px);
}

.footer-column h2 {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.22;
}

.footer-column a {
  width: fit-content;
  margin-top: 8px;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.footer-column a:hover {
  color: rgba(255, 255, 255, 1);
  opacity: 1;
  transform: translateX(3px);
}

.footer-newsletter p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-description);
}

.newsletter-form {
  display: grid;
  max-width: 340px;
  margin-top: 28px;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 0;
  padding-bottom: 0;
}

.newsletter-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 10px 0;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  outline: 0;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.newsletter-form button {
  min-height: 36px;
  border: 1px solid #a33341;
  border-radius: 999px;
  padding: 9px 22px 10px;
  color: #ffffff;
  background: #a33341;
  box-shadow: 0 16px 36px rgba(7, 3, 3, 0.14);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  backdrop-filter: blur(8px) saturate(1.04);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.newsletter-form button:hover {
  border-color: #a33341;
  background: #a33341;
  box-shadow: 0 20px 42px rgba(7, 3, 3, 0.18);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  min-width: 0;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
  text-transform: uppercase;
}

.footer-bottom a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-tagline {
  margin-right: auto;
  font-family: var(--font-description);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-socials a:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.footer-socials svg {
  display: block;
}

.footer-socials rect,
.footer-socials circle,
.footer-socials path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a[aria-label="YouTube"] rect,
.footer-socials a[aria-label="YouTube"] path {
  fill: currentColor;
  stroke: none;
}

.footer-socials a[aria-label="YouTube"] path {
  color: #2f2d29;
}

@keyframes breathe {
  0%,
  100% {
    transform: translateX(-50%) scale(0.92);
    opacity: 0.48;
  }

  52% {
    transform: translateX(-50%) scale(1.08);
    opacity: 0.82;
  }
}

@media (max-width: 900px) {
  .site-frame {
    margin: 0;
    min-height: 100vh;
  }

  .site-header {
    top: 0;
    width: 100%;
    min-height: 112px;
    padding: 17px 20px 20px;
  }

  .brand {
    top: 18px;
    font-size: 18px;
  }

  .brand-icon {
    width: 38px;
    height: 32px;
  }

  .utility-nav {
    display: none;
  }

  .main-nav {
    position: absolute;
    z-index: 30;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    width: 100%;
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - 112px);
    padding: 8px 20px 14px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(36, 45, 42, 0.09);
    color: rgba(36, 45, 42, 0.82);
    background: #f7f5f1;
    box-shadow: 0 18px 34px rgba(7, 3, 3, 0.12);
    font-size: 15px;
    opacity: 0;
    pointer-events: none;
    text-align: left;
    transition:
      opacity 180ms ease,
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 180ms ease;
    visibility: hidden;
  }

  .main-nav.is-mobile-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav .nav-item {
    display: block;
    width: 100%;
  }

  .main-nav .nav-collection > .nav-link {
    position: relative;
    padding-right: 36px;
  }

  .main-nav .nav-collection > .nav-link::after {
    position: absolute;
    top: 50%;
    right: 9px;
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    content: "";
    opacity: 0.52;
    transform: translateY(-72%) rotate(45deg);
    transition: transform 180ms ease;
  }

  .main-nav .nav-collection.is-open > .nav-link {
    color: var(--rdf-crimson);
  }

  .main-nav .nav-collection.is-open > .nav-link::after {
    transform: translateY(-26%) rotate(-135deg);
  }

  .main-nav > a,
  .main-nav .nav-link {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4px;
    border-bottom: 1px solid rgba(36, 45, 42, 0.1);
  }

  .main-nav > a:last-child {
    border-bottom: 0;
  }

  .main-subnav {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    padding: 8px 4px 15px 25px;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid rgba(36, 45, 42, 0.1);
    background: transparent;
    box-shadow: none;
    grid-template-columns: 1fr;
    gap: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
  }

  .main-subnav.is-open {
    display: block;
  }

  .main-subnav .mega-menu-close {
    display: none;
  }

  .main-subnav .mega-menu-sidebar {
    min-height: 0;
    padding: 0;
    border: 0;
    gap: 2px;
  }

  .main-subnav .mega-menu-tab {
    min-height: 66px;
    padding: 10px 34px 10px 0;
  }

  .main-subnav .mega-menu-tab::after {
    right: 5px;
  }

  .main-subnav .mega-menu-tab:hover,
  .main-subnav .mega-menu-tab:focus-visible,
  .main-subnav .mega-menu-tab.is-active {
    transform: none;
  }

  .main-subnav .mega-menu-view-all {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    margin: 0;
    padding: 4px 0 7px;
    color: var(--rdf-crimson) !important;
    font-size: 11.5px;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .main-subnav .mega-menu-view-all:hover,
  .main-subnav .mega-menu-view-all:focus-visible {
    color: var(--rdf-crimson-deep) !important;
    outline: none;
  }

  .main-subnav .mega-product-columns {
    display: none;
    width: 100%;
    padding: 4px 0 8px;
    justify-items: center;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .main-subnav.is-mobile-product-view .mega-menu-sidebar {
    display: none;
  }

  .main-subnav.is-mobile-product-view .mega-product-columns {
    display: grid;
    animation: mobileMegaProductSlideIn 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .main-subnav.is-mobile-list-returning .mega-menu-sidebar {
    animation: mobileMegaListSlideIn 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .main-subnav .mobile-mega-back {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-self: start;
    gap: 10px;
    margin: 0 0 4px;
    padding: 0 6px 0 1px;
    border: 0;
    appearance: none;
    color: var(--rdf-crimson);
    background: transparent;
    font-family: var(--font-description);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
  }

  .main-subnav .mobile-mega-back:hover,
  .main-subnav .mobile-mega-back:focus-visible {
    color: var(--rdf-crimson-deep);
    outline: none;
  }

  .main-subnav .mobile-mega-back:focus-visible {
    box-shadow: 0 0 0 3px rgba(163, 51, 65, 0.13);
  }

  .mobile-mega-back-icon {
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid currentColor;
    border-left: 1px solid currentColor;
    transform: rotate(45deg);
  }

  .main-subnav .mega-product-card.is-active {
    width: min(100%, 320px);
    animation: none;
  }

  .main-subnav .mega-product-card:hover,
  .main-subnav .mega-product-card.is-product-hovered {
    transform: none;
  }

  .main-subnav .mega-product-card:hover .mega-product-media img,
  .main-subnav .mega-product-card.is-product-hovered .mega-product-media img {
    transform: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 37px;
    right: 20px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 7px;
    color: var(--rdf-crimson);
    background: #f7f5f1;
    box-shadow: 0 14px 32px rgba(7, 3, 3, 0.1);
    cursor: pointer;
    backdrop-filter: blur(4px);
    z-index: 31;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 3px;
    border-radius: 99px;
    background: currentColor;
    transition:
      opacity 160ms ease,
      transform 200ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .hero-watermark {
    width: 300px;
    min-width: 0;
  }

  .hero-content {
    padding: 112px 28px 88px;
  }

  .white-page-title {
    margin-top: 70px;
  }

  .white-breath-cue {
    margin-bottom: clamp(56px, 7vw, 86px);
  }

  .white-breath-section {
    min-height: 440px;
    padding: 96px 24px 118px;
  }

  .site-footer {
    min-height: auto;
    padding: 96px 32px 48px;
  }

  .footer-inner {
    min-height: 0;
    gap: 58px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px 34px;
  }

  .footer-socials {
    width: 100%;
    justify-content: flex-start;
  }

  .collection-future-grid {
    max-width: 720px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .future-card {
    min-height: 270px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 104px;
  }

  .brand span {
    font-size: 15px;
  }

  .hero-controls {
    top: auto;
    right: auto;
    bottom: 18px;
    left: 16px;
  }

  .hero-control {
    width: 24px;
    height: 24px;
    min-height: 24px;
  }

  .hero-content {
    padding: 118px 20px 86px;
  }

  .white-page-title {
    margin-top: 58px;
    font-size: clamp(48px, 14vw, 62px);
  }

  .white-page-subtitle {
    font-size: clamp(22px, 7vw, 28px);
  }

  .white-page-line {
    margin-top: 44px;
    max-width: 320px;
  }

  .our-story-white-collection {
    min-height: 680px;
    padding: 104px 24px 104px;
  }

  .section-kicker {
    margin-bottom: 90px;
    font-size: 15px;
  }

  .section-copy {
    margin-top: 96px;
  }

  .our-story-collection-showcase {
    padding-top: 52px;
  }

  .collection-future {
    padding: 74px 20px 86px;
  }

  .collection-future-heading {
    margin-bottom: 42px;
  }

  .collection-future-heading h2 br {
    display: none;
  }

  .future-card {
    min-height: 238px;
    padding: 34px 28px;
  }

  .future-card p {
    font-size: 15px;
    line-height: 1.38;
  }

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

  .showcase-grid {
    gap: 28px;
  }

  .showcase-card p {
    font-size: 15px;
    line-height: 1.52;
  }

  .our-story-system-film {
    min-height: 760px;
    padding: 104px 24px;
  }

  .system-film-copy {
    width: min(660px, calc(100vw - 56px));
    padding: 0;
  }

  .our-story-brand-benefits {
    padding: 56px 28px 112px;
  }

  .brand-benefits-title {
    margin-bottom: 44px;
  }

  .benefits-brand {
    margin-bottom: 58px;
  }

  .benefits-grid {
    gap: 32px;
  }

  .benefit-card h3 {
    font-size: 16px;
    line-height: 1.34;
  }

  .benefit-card p {
    font-size: 15px;
    line-height: 1.52;
  }

  .our-story-tee-showcase {
    padding: 72px 28px 82px;
  }

  .our-story-sock-showcase {
    padding: 72px 28px 82px;
  }

  .tee-grid {
    gap: 28px;
  }

  .sock-grid {
    gap: 28px;
  }

  .tee-card p {
    font-size: 15px;
    line-height: 1.52;
  }

  .sock-card p {
    font-size: 15px;
    line-height: 1.52;
  }

  .our-story-state-luxury {
    min-height: 660px;
    padding: 96px 24px;
    background-position: 42% center;
  }

  .our-story-state-luxury p {
    margin-top: 64px;
  }

  .our-story-neurowellness-session {
    min-height: 700px;
    padding: 76px 24px 78px;
  }

  .neurowellness-kicker {
    margin-bottom: 70px;
  }

  .neuro-breath-button {
    margin-top: 50px;
    font-size: clamp(78px, 16vw, 130px);
  }

  .neurowellness-action {
    margin-top: 48px;
  }

  .our-story-neuro-pillars {
    padding: 112px 32px 94px;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .pillar-card {
    min-height: 320px;
    padding: 26px 24px 30px;
  }

  .pillar-card + .pillar-card {
    padding-left: 24px;
  }

  .pillar-card:nth-child(3) {
    padding-left: 24px;
  }

  .pillar-card:nth-child(n + 3) {
    border-top: 1px solid rgba(36, 45, 42, 0.1);
  }

  .pillar-card h3 {
    min-height: auto;
  }

  .pillar-card p:last-child {
    max-width: 360px;
  }

  .pillar-summary {
    margin-top: 72px;
  }

  .our-story-begin-today {
    padding: 92px 32px 88px;
  }

  .session-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 34px;
  }

  .session-card:nth-child(2),
  .session-card:nth-child(3) {
    margin-top: 0;
  }

  .session-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer {
    padding: 82px 22px 42px;
  }

  .footer-inner {
    gap: 48px;
  }

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

  .footer-column h2 {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .footer-column a,
  .footer-column p {
    font-size: 17px;
    line-height: 1.2;
  }

  .newsletter-form {
    max-width: none;
  }

  .footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-socials {
    margin-top: 14px;
  }

}

@media (max-width: 560px) {
  .our-story-white-collection {
    min-height: 640px;
    padding: 92px 20px 96px;
  }

  .white-breath-cue {
    width: fit-content;
    margin-bottom: 54px;
    padding-bottom: 0;
  }

  .white-breath-cue::after {
    display: none;
  }

  .white-breath-section {
    min-height: 360px;
    padding: 78px 20px 96px;
  }

  .section-kicker {
    margin-bottom: 74px;
  }

  .our-story-white-collection h1 br,
  .section-copy br {
    display: none;
  }

  .section-copy {
    margin-top: 82px;
  }

  .our-story-collection-showcase {
    padding: 56px 20px 68px;
  }

  .collection-products {
    padding: 84px 20px 64px;
  }

  .collection-product-grid {
    max-width: 360px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .collection-product-card {
    min-height: 390px;
  }

  .collection-product-media {
    min-height: 350px;
  }

  .showcase-heading {
    margin-bottom: 34px;
  }

  .showcase-heading h2 br {
    display: none;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .showcase-media {
    aspect-ratio: 4 / 5;
  }

  .showcase-card h3 {
    margin-top: 24px;
  }

  .showcase-card p {
    max-width: 340px;
  }

  .our-story-system-film {
    min-height: 680px;
    padding: 92px 20px;
  }

  .system-film-copy {
    width: min(420px, calc(100vw - 36px));
    padding: 0;
  }

  .our-story-system-film h2 {
    font-size: clamp(24px, 7.6vw, 34px);
  }

  .our-story-system-film h2 .keep-line {
    white-space: normal;
    text-wrap: balance;
  }

  .our-story-brand-benefits {
    padding: 52px 20px 92px;
  }

  .brand-benefits-title {
    margin-bottom: 36px;
  }

  .benefits-brand {
    margin-bottom: 46px;
  }

  .benefits-brand img {
    width: min(230px, 70vw);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .benefit-media {
    max-width: 360px;
    margin: 0 auto;
  }

  .benefit-card h3,
  .benefit-card p {
    max-width: 330px;
  }

  .our-story-tee-showcase {
    padding: 58px 20px 74px;
  }

  .our-story-sock-showcase {
    padding: 58px 20px 74px;
  }

  .tee-heading {
    margin-bottom: 34px;
  }

  .sock-heading {
    margin-bottom: 34px;
  }

  .tee-heading h2 br {
    display: none;
  }

  .sock-heading h2 br {
    display: none;
  }

  .tee-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sock-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .tee-media {
    max-width: 360px;
    margin: 0 auto;
  }

  .sock-media {
    max-width: 360px;
    margin: 0 auto;
  }

  .tee-card h3,
  .tee-card p {
    max-width: 340px;
  }

  .sock-card h3,
  .sock-card p {
    max-width: 340px;
  }

  .our-story-state-luxury {
    min-height: 620px;
    padding: 86px 20px;
    background-position: 38% center;
  }

  .state-luxury-content {
    width: min(360px, calc(100vw - 40px));
  }

  .our-story-state-luxury h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .our-story-state-luxury p {
    margin-top: 54px;
    font-size: 14px;
  }

  .our-story-neurowellness-session {
    min-height: 650px;
    padding: 70px 20px 72px;
    background-position: 48% center;
  }

  .neurowellness-content {
    width: min(360px, calc(100vw - 40px));
  }

  .neurowellness-kicker {
    margin-bottom: 54px;
    font-size: 17px;
  }

  .our-story-neurowellness-session h2 {
    font-size: 14px;
    line-height: 1.24;
  }

  .neuro-breath-button {
    margin-top: 42px;
    font-size: clamp(54px, 18vw, 82px);
    letter-spacing: 0.08em;
  }

  .neurowellness-action {
    margin-top: 42px;
    font-size: 13px;
  }

  .our-story-neuro-pillars {
    padding: 84px 22px 76px;
  }

  .our-story-neuro-pillars::before {
    display: none;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pillar-card,
  .pillar-card + .pillar-card,
  .pillar-card:nth-child(3) {
    min-height: auto;
    border-left: 1px solid rgba(36, 45, 42, 0.1);
    padding: 26px 22px 30px;
  }

  .pillar-card + .pillar-card {
    border-top: 1px solid rgba(36, 45, 42, 0.1);
  }

  .pillar-number {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .pillar-card h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .pillar-card p:last-child {
    max-width: 335px;
    font-size: 16px;
    line-height: 1.18;
  }

  .pillar-summary {
    margin-top: 58px;
    font-size: 12.5px;
  }

  .pillar-summary br {
    display: none;
  }

  .our-story-begin-today {
    padding: 76px 20px 78px;
  }

  .begin-today-heading {
    margin-bottom: 34px;
  }

  .begin-today-heading p {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .begin-today-heading h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .session-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .session-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .session-media {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }

  .session-copy {
    max-width: 360px;
    margin: 0 auto;
    padding-right: 0;
  }

  .session-copy h3 {
    font-size: 17px;
  }

  .session-copy p {
    font-size: 15px;
  }

  .site-footer {
    padding-top: 82px;
  }
}

.section-copy,
.showcase-heading p,
.showcase-card p,
.benefit-card p,
.tee-heading p,
.tee-card p,
.our-story-state-luxury p,
.pillar-card p:last-child,
.pillar-summary,
.session-copy p,
.footer-newsletter p {
  font-size: 15px;
  font-weight: 300;
}

.footer-column a,
.footer-column p,
.footer-bottom p,
.footer-bottom a,
.footer-tagline,
.newsletter-form input {
  font-family: var(--font-description);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.35;
}

p {
  font-size: 15px !important;
  font-weight: 300 !important;
}

h3 {
  font-weight: 400 !important;
}

main > section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.showcase-card h3,
.benefit-card h3,
.tee-card h3,
.session-copy h3 {
  color: #a33341;
  font-weight: 400 !important;
  text-transform: capitalize;
}

.our-story-home-collection-showcase .showcase-card h3 {
  text-transform: none;
}

.our-story-brand-benefits .benefit-card h3 {
  text-transform: none;
}

.our-story-tee-showcase .tee-card h3,
.our-story-sock-showcase .sock-card h3,
.our-story-begin-today .session-copy h3 {
  text-transform: none;
}

.showcase-card p,
.benefit-card p,
.tee-card p,
.sock-card p {
  margin-top: 10px;
}

.our-story-system-film h2 {
  color: #ffffff61;
  font-weight: 500;
}

.our-story-tee-showcase {
  background: #eeeae5;
}

.our-story-sock-showcase {
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(247, 246, 243, 0) 26%),
    rgb(247, 246, 243);
}

.neurowellness-kicker,
.our-story-neurowellness-session h2,
.our-story-state-luxury h2 {
  font-weight: 300;
}

.our-story-state-luxury h2 {
  color: rgba(36, 45, 42, 0.96);
  text-transform: capitalize;
}

.neurowellness-action,
.newsletter-form button {
  border-radius: 5px;
}

.neurowellness-action {
  font-size: 13px;
  font-weight: 300;
}

.site-footer {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

@media (min-width: 760px) {
  .showcase-grid,
  .benefits-grid,
  .tee-grid,
  .sock-grid,
  .session-grid {
    max-width: 1240px;
    gap: clamp(24px, 4.5vw, 76px);
  }

  .showcase-media,
  .benefit-media,
  .tee-media,
  .sock-media,
  .session-media {
    width: 100%;
    max-width: none;
  }
}

.belonging-stay-close h2 {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1.16;
  text-transform: none;
  text-shadow:
    0 4px 18px rgba(7, 3, 3, 0.56),
    0 22px 66px rgba(7, 3, 3, 0.62);
}

.belonging-neurowellness .showcase-heading p,
.belonging-neurowellness .showcase-card p {
  font-size: 14px !important;
  font-weight: 300 !important;
}

@media (max-width: 760px) {
  .belonging-retreats-overview,
  .belonging-audience,
  .belonging-neurowellness {
    padding-right: 20px;
    padding-left: 20px;
  }

  .belonging-retreats-intro {
    margin: 0 auto;
  }

  .belonging-retreat-grid,
  .belonging-neurowellness-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .belonging-audience-inner {
    gap: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-one {
    animation: none;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .our-story-neuro-pillars {
    padding: 88px 32px 78px;
  }

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

  .pillar-card {
    min-height: 0;
  }

  .pillar-card h3 {
    min-height: 0;
  }

  .pillar-card:nth-child(5) {
    width: calc(50% - 9px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

.collection-slider-controls {
  display: none;
}

@media (max-width: 900px) {
  .collection-products {
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }

  .collection-product-grid {
    display: grid;
    width: min(100%, 560px);
    max-width: 560px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .collection-slider-controls {
    display: flex;
    width: min(100%, 560px);
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 10px auto 0;
    padding: 0 20px;
  }

  .collection-slider-controls[hidden] {
    display: none;
  }

  .collection-slider-arrow {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(36, 45, 42, 0.22);
    border-radius: 5px;
    appearance: none;
    color: rgba(36, 45, 42, 0.82);
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition:
      border-color 160ms ease,
      color 160ms ease,
      opacity 160ms ease,
      transform 160ms ease;
  }

  .collection-slider-arrow span {
    display: block;
    width: 9px;
    height: 9px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
  }

  .collection-slider-arrow-previous span {
    transform: rotate(-135deg);
  }

  .collection-slider-arrow-next span {
    transform: rotate(45deg);
  }

  .collection-slider-arrow:hover,
  .collection-slider-arrow:focus-visible {
    border-color: rgba(163, 51, 65, 0.58);
    color: var(--rdf-crimson);
    outline: none;
  }

  .collection-slider-arrow:focus-visible {
    box-shadow: 0 0 0 3px rgba(163, 51, 65, 0.13);
  }

  .collection-slider-arrow:active:not(:disabled) {
    transform: translateY(1px);
  }

  .collection-slider-arrow:disabled {
    cursor: default;
    opacity: 0.28;
  }

  .collection-product-card {
    display: none;
    width: 100%;
    min-width: 0;
    min-height: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .collection-product-card.is-carousel-active {
    display: block;
  }

  .collection-product-card.is-carousel-entering-next {
    animation: collectionProductEnterNext 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .collection-product-card.is-carousel-entering-previous {
    animation: collectionProductEnterPrevious 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .collection-product-media {
    aspect-ratio: 4 / 5;
    height: auto;
    min-height: 0;
  }

  .collection-product-details {
    width: min(78%, 220px);
  }

  .collection-product-card:hover .collection-product-details,
  .collection-product-card.is-product-hovered .collection-product-details {
    transform: none;
  }

  .collection-product-card:hover .collection-product-image,
  .collection-product-card.is-product-hovered .collection-product-image {
    transform: none;
  }
}

@keyframes collectionProductEnterNext {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes collectionProductEnterPrevious {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .collection-product-card.is-carousel-entering-next,
  .collection-product-card.is-carousel-entering-previous {
    animation: none;
  }
}

@media (max-width: 560px) {
  .our-story-white-collection.belonging-intro-section {
    min-height: 250px;
    padding: 32px 20px;
  }
}

@media (max-width: 900px) {
  .product-gallery-thumbnails {
    display: grid;
    width: 100%;
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .product-gallery-thumbnails[hidden],
  .product-gallery-arrow[hidden] {
    display: none;
  }

  .product-gallery-thumbnail {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(36, 45, 42, 0.14);
    border-radius: 4px;
    appearance: none;
    background: #ffffff;
    cursor: pointer;
    opacity: 0.64;
    transition:
      border-color 160ms ease,
      box-shadow 160ms ease,
      opacity 160ms ease,
      transform 160ms ease;
  }

  .product-gallery-thumbnail:hover,
  .product-gallery-thumbnail:focus-visible,
  .product-gallery-thumbnail.is-active {
    border-color: rgba(163, 51, 65, 0.68);
    opacity: 1;
    outline: none;
  }

  .product-gallery-thumbnail:focus-visible {
    box-shadow: 0 0 0 3px rgba(163, 51, 65, 0.13);
  }

  .product-gallery-thumbnail:active {
    transform: translateY(1px);
  }

  .product-gallery-thumbnail-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .product-gallery-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: inline-grid;
    background: rgba(247, 245, 241, 0.9);
    box-shadow: 0 10px 26px rgba(7, 3, 3, 0.12);
    transform: translateY(-50%);
  }

  .product-gallery-arrow-previous {
    left: 12px;
  }

  .product-gallery-arrow-next {
    right: 12px;
  }

  .product-gallery-arrow:active:not(:disabled) {
    transform: translateY(calc(-50% + 1px));
  }

  .product-photo-placeholder.is-product-gallery-entering-next {
    animation: productGalleryEnterNext 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .product-photo-placeholder.is-product-gallery-entering-previous {
    animation: productGalleryEnterPrevious 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@keyframes productGalleryEnterNext {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes productGalleryEnterPrevious {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-photo-placeholder.is-product-gallery-entering-next,
  .product-photo-placeholder.is-product-gallery-entering-previous {
    animation: none;
  }
}

.our-story-social-video {
  padding: clamp(48px, 6vw, 84px) clamp(20px, 5vw, 72px);
  background: #f7f5f1;
}

.our-story-social-video-grid {
  display: grid;
  width: min(100%, 1280px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
}

.our-story-social-video-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #ffffff;
}

.our-story-social-video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

@media (max-width: 900px) {
  .our-story-social-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .our-story-social-video {
    padding: 36px 18px 44px;
  }

  .our-story-social-video-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .our-story-social-video-card {
    width: min(100%, 430px);
    margin: 0 auto;
  }
}

.our-story-day-rhythm {
  padding: clamp(78px, 9vw, 132px) clamp(20px, 5vw, 72px)
    clamp(70px, 8vw, 116px);
  color: var(--neutral-dark);
  background: #f1efeb;
}

.our-story-day-rhythm-intro {
  width: min(100%, 820px);
  margin: 0 auto clamp(54px, 6.5vw, 92px);
  text-align: center;
}

.our-story-day-rhythm-kicker {
  margin: 0 0 clamp(32px, 4vw, 54px);
  font-family: var(--font-description);
  font-size: clamp(14px, 1.35vw, 19px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-transform: uppercase;
}

.our-story-day-rhythm-intro h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1.22;
  text-wrap: balance;
}

.our-story-day-rhythm-grid {
  display: grid;
  width: min(100%, 1280px);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.our-story-day-rhythm-card {
  position: relative;
  min-height: clamp(220px, 19vw, 270px);
  padding: clamp(24px, 2.4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(43, 39, 39, 0.12);
  border-top: 3px solid var(--rdf-crimson);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 44px rgba(43, 39, 39, 0.055);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.our-story-day-rhythm-card:hover {
  border-color: rgba(163, 51, 65, 0.28);
  box-shadow: 0 24px 52px rgba(43, 39, 39, 0.09);
  transform: translateY(-4px);
}

.our-story-day-rhythm-card-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(43, 39, 39, 0.12);
}

.our-story-day-rhythm-card-heading span {
  color: var(--rdf-crimson);
  font-family: var(--font-description);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.our-story-day-rhythm-card h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.our-story-day-rhythm-card ul {
  display: grid;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.our-story-day-rhythm-card li {
  font-family: var(--font-description);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .our-story-day-rhythm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-story-day-rhythm-card {
    min-height: 220px;
  }
}

@media (max-width: 580px) {
  .our-story-day-rhythm {
    padding: 64px 18px 56px;
  }

  .our-story-day-rhythm-intro {
    margin-bottom: 42px;
  }

  .our-story-day-rhythm-kicker {
    margin-bottom: 28px;
  }

  .our-story-day-rhythm-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .our-story-day-rhythm-card {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .our-story-day-rhythm-card {
    transition: none;
  }

  .our-story-day-rhythm-card:hover {
    transform: none;
  }
}

/* Golden Circle Our Story sequence */
.our-story-page main {
  background: #f7f5f1;
}

.our-story-hero-message {
  gap: clamp(28px, 4vw, 54px);
}

.our-story-hero-message span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-description);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.our-story-checkerboard {
  margin: 0 auto;
  padding-top: 80px;
  background: #f7f5f1;
}

.our-story-checkerboard-row {
  min-height: clamp(560px, 55vw, 690px);
  background: #f7f5f1;
}

.our-story-checkerboard-media {
  min-height: clamp(560px, 55vw, 690px);
  background: #ece8e2;
}

.our-story-checkerboard-copy {
  padding: clamp(48px, 6.2vw, 88px);
}

.our-story-checkerboard-copy-group {
  width: min(100%, 590px);
}

.our-story-checkerboard-heading {
  margin: 0 0 clamp(34px, 4.2vw, 58px);
  color: #171717;
  font-size: clamp(24px, 2.15vw, 32px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.15;
  text-transform: none;
}

.our-story-checkerboard-heading em {
  color: var(--rdf-crimson);
  font-style: normal;
}

.our-story-panel-kicker {
  margin-bottom: clamp(54px, 7vw, 92px) !important;
  font-size: 13px !important;
  letter-spacing: 0.03em !important;
}

.our-story-checkerboard-copy p {
  font-size: clamp(14px, 1.2vw, 17px) !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em;
  line-height: 1.36;
}

.our-story-checkerboard-copy p + p {
  margin-top: 20px;
}

.story-panel-why-rdf .our-story-checkerboard-media img,
.story-panel-calmness .our-story-checkerboard-media img,
.story-panel-return .our-story-checkerboard-media img {
  object-position: center;
}

.story-panel-dragonfly .our-story-checkerboard-media img {
  object-position: 52% center;
}

.our-story-practice {
  display: grid;
  min-height: clamp(560px, 55vw, 690px);
  padding: clamp(90px, 11vw, 148px) clamp(32px, 7vw, 104px);
  align-items: center;
  background: #f7f5f1;
}

.our-story-practice-inner {
  width: min(100%, 1140px);
  margin: 0 auto;
}

.our-story-practice h2 {
  margin: 0 0 clamp(70px, 9vw, 116px);
  font-family: var(--font-title);
  font-size: clamp(36px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
}

.our-story-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(44px, 7vw, 100px);
}

.our-story-practice-grid article {
  min-width: 0;
  text-align: center;
}

.our-story-practice-grid span {
  display: inline;
  margin: 0 8px 0 0;
  font-family: var(--font-description);
  color: var(--rdf-crimson);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.our-story-practice-grid h3 {
  display: inline;
  margin: 0;
  color: var(--rdf-crimson);
  font-family: var(--font-title);
  font-size: clamp(21px, 1.8vw, 26px);
  font-weight: 400 !important;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.our-story-practice-grid p {
  max-width: 340px;
  margin: 22px auto 0;
  color: rgba(36, 45, 42, 0.78);
  font-size: clamp(16px, 1.35vw, 18px) !important;
  line-height: 1.55;
  text-wrap: pretty;
}

.our-story-breath-practice {
  position: relative;
  display: grid;
  min-height: clamp(520px, 56vw, 700px);
  padding: clamp(44px, 6vw, 76px) 0;
  overflow: hidden;
  align-items: stretch;
  background: #f7f5f1;
}

.our-story-breath-practice img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.our-story-breath-practice::after {
  position: absolute;
  z-index: 0;
  inset: clamp(44px, 6vw, 76px) 0;
  background: rgba(7, 3, 3, 0.16);
  content: "";
  pointer-events: none;
}

.our-story-breath-copy {
  position: absolute;
  z-index: 1;
  inset: clamp(44px, 6vw, 76px) 24px;
  display: grid;
  align-content: center;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 22px rgba(7, 3, 3, 0.42);
}

.our-story-breath-copy h2 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.our-story-breath-copy p {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 17px) !important;
  font-weight: 300 !important;
}

.our-story-three-paths {
  display: grid;
  min-height: clamp(580px, 57vw, 720px);
  padding: clamp(88px, 10vw, 130px) clamp(32px, 9vw, 138px)
    0;
  align-content: center;
  background: #f7f5f1;
}

.our-story-three-paths-kicker {
  margin: 0 0 clamp(64px, 8vw, 104px);
  color: var(--rdf-crimson);
  font-size: clamp(16px, 1.55vw, 21px) !important;
  font-style: italic;
  letter-spacing: 0.02em;
  text-align: center;
}

.our-story-three-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 30px);
}

.our-story-three-paths-grid article {
  display: flex;
  min-width: 0;
  min-height: 350px;
  flex-direction: column;
  padding: clamp(28px, 2.8vw, 38px) clamp(24px, 2.5vw, 34px) 40px;
  border: 1px solid rgba(43, 39, 39, 0.12);
  border-top: 3px solid var(--rdf-crimson);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(43, 39, 39, 0.07);
}

.our-story-three-paths-grid h3 {
  margin: 0 0 6px;
  font-family: var(--font-description);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 700 !important;
  letter-spacing: 0;
  text-transform: uppercase;
}

.our-story-three-paths-grid span {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(43, 39, 39, 0.14);
  color: rgba(43, 39, 39, 0.62);
  font-family: var(--font-description);
  font-size: 14px;
  font-weight: 600;
}

.our-story-three-paths-grid p {
  margin: 24px 0 0;
  color: rgba(36, 45, 42, 0.8);
  font-size: clamp(14px, 1.25vw, 17px) !important;
  line-height: 1.5;
  text-wrap: pretty;
}

.our-story-three-paths-grid p + p {
  margin-top: 22px;
}

.our-story-three-paths-action {
  margin-top: auto;
  padding-top: 32px;
}

.our-story-three-paths-grid .our-story-three-paths-button {
  min-width: 140px;
  min-height: 38px;
  border-radius: 999px;
  margin: 0;
  font-family: var(--font-description);
}

.our-story-three-paths-closing {
  margin: 50px 0 0;
  color: #171717;
  font-size: clamp(14px, 1.2vw, 17px) !important;
  line-height: 1.35;
  text-align: center;
}

.our-story-collection-products {
  min-height: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #f7f5f1;
}

.our-story-product-price {
  margin: 12px 0 0;
  color: rgba(43, 39, 39, 0.8);
  font-size: 15px !important;
  font-weight: 300 !important;
}

.our-story-collection-products .collection-swatches {
  margin-top: 14px;
}

.our-story-day-rhythm {
  display: grid;
  min-height: 0;
  padding: 50px clamp(32px, 6vw, 82px)
    clamp(70px, 8vw, 104px);
  align-content: center;
  background: #f1efeb;
}

.our-story-day-rhythm-intro {
  width: min(100%, 980px);
  margin-bottom: clamp(58px, 6.5vw, 84px);
}

.our-story-day-rhythm-intro h2 {
  color: var(--rdf-crimson);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
}

.our-story-day-rhythm-grid {
  align-items: stretch;
  gap: clamp(14px, 1.6vw, 22px);
}

.our-story-day-rhythm-card {
  min-height: clamp(245px, 19vw, 290px);
  padding: clamp(24px, 2.3vw, 32px);
  border: 1px solid rgba(43, 39, 39, 0.12);
  border-top: 3px solid var(--rdf-crimson);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(43, 39, 39, 0.065);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.our-story-day-rhythm-card:hover {
  border-color: rgba(163, 51, 65, 0.28);
  box-shadow: 0 24px 52px rgba(43, 39, 39, 0.1);
  transform: translateY(-3px);
}

.our-story-day-rhythm-card-heading {
  display: flex;
  padding: 0 0 18px;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(43, 39, 39, 0.13);
  gap: 14px;
}

.our-story-day-rhythm-card-heading span {
  display: inline;
  color: var(--rdf-crimson);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.our-story-day-rhythm-card h3 {
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 400 !important;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.our-story-day-rhythm-card ul {
  gap: 12px;
  margin-top: 24px;
}

.our-story-day-rhythm-card li {
  color: rgba(36, 45, 42, 0.78);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.45;
}

.our-story-day-rhythm-card strong {
  color: var(--rdf-crimson);
  font-weight: 400;
}

.our-story-system {
  display: grid;
  min-height: clamp(540px, 54vw, 680px);
  padding: clamp(90px, 11vw, 144px) 32px;
  align-content: center;
  justify-items: center;
  background:
    linear-gradient(rgba(7, 3, 3, 0.48), rgba(7, 3, 3, 0.56)),
    url("../assets/neurowellness-bg.png") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.our-story-system h2 {
  margin: 0 0 clamp(50px, 6vw, 74px);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(31px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 22px rgba(7, 3, 3, 0.46);
}

.our-story-system p {
  width: min(100%, 900px);
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(15px, 1.35vw, 19px) !important;
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(7, 3, 3, 0.6);
}

.our-story-system p + p {
  margin-top: 34px;
}

.our-story-system .our-story-system-closing {
  margin-top: clamp(56px, 7vw, 86px);
  font-size: clamp(18px, 1.8vw, 24px) !important;
}

.our-story-take-flight {
  display: grid;
  min-height: clamp(560px, 56vw, 700px);
  padding: clamp(82px, 10vw, 130px) clamp(32px, 10vw, 150px);
  align-items: center;
  justify-items: center;
  background: #f7f5f1;
  text-align: center;
}

.our-story-take-flight-inner {
  display: grid;
  width: min(100%, 840px);
  margin: 0 auto;
  justify-items: center;
}

.our-story-take-flight h2 {
  margin: 0 0 clamp(52px, 6vw, 76px);
  font-family: var(--font-title);
  font-size: clamp(31px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

.our-story-take-flight-grid {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 34px;
}

.our-story-take-flight-grid article {
  display: grid;
  justify-items: center;
}

.our-story-take-flight-grid p {
  margin: 0 0 14px;
  font-size: clamp(16px, 1.5vw, 20px) !important;
  line-height: 1.25;
}

.our-story-take-flight-grid .our-story-take-flight-button {
  min-width: 190px;
  min-height: 44px;
  border-radius: 999px;
  margin: 0 auto;
  font-family: var(--font-description);
  font-size: 13px;
}

@media (max-width: 760px) {
  .our-story-hero-message span {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .our-story-checkerboard-row,
  .story-panel-calmness,
  .story-panel-return {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .our-story-checkerboard-media,
  .our-story-checkerboard-row.is-image-right .our-story-checkerboard-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
    grid-column: 1;
    grid-row: 1;
  }

  .our-story-checkerboard-copy,
  .our-story-checkerboard-row.is-image-right .our-story-checkerboard-copy {
    min-height: 0;
    grid-column: 1;
    grid-row: 2;
    padding: 64px 24px 72px;
  }

  .our-story-checkerboard-heading {
    margin-bottom: 34px;
  }

  .our-story-panel-kicker {
    margin-bottom: 38px !important;
  }

  .our-story-practice {
    padding: 72px 24px 80px;
  }

  .our-story-practice h2 {
    margin-bottom: 54px;
  }

  .our-story-practice-grid,
  .our-story-three-paths-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .our-story-practice-grid {
    gap: 46px;
  }

  .our-story-practice-grid p {
    margin-top: 18px;
  }

  .our-story-breath-practice {
    min-height: 540px;
    padding: 34px 0;
  }

  .our-story-breath-practice img {
    min-height: 472px;
    object-position: 60% center;
  }

  .our-story-breath-practice::after {
    inset: 34px 0;
  }

  .our-story-breath-copy {
    inset: 34px 20px;
  }

  .our-story-three-paths {
    padding: 76px 24px 0;
  }

  .our-story-three-paths-kicker {
    margin-bottom: 58px;
  }

  .our-story-three-paths-grid {
    gap: 24px;
  }

  .our-story-three-paths-grid article {
    min-height: 0;
    padding: 28px 24px 32px;
    border: 1px solid rgba(43, 39, 39, 0.12);
    border-top: 3px solid var(--rdf-crimson);
  }

  .our-story-three-paths-closing {
    margin-top: 50px;
  }

  .our-story-day-rhythm {
    padding: 50px 24px 80px;
  }

  .our-story-day-rhythm-intro {
    margin-bottom: 62px;
  }

  .our-story-day-rhythm-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .our-story-day-rhythm-card {
    min-height: 0;
  }

  .our-story-day-rhythm-card ul {
    margin-top: 22px;
  }

  .our-story-system {
    min-height: 560px;
    padding: 82px 24px;
  }

  .our-story-system h2 {
    margin-bottom: 42px;
  }

  .our-story-take-flight {
    padding: 82px 24px 96px;
  }

  .our-story-take-flight h2 {
    margin-bottom: 48px;
  }
}
