.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 0.125rem solid currentColor;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.button--light {
  color: var(--wt-black);
  background: var(--wt-white);
  border-color: var(--wt-white);
}

.button--light:hover {
  color: var(--wt-white);
  background: transparent;
}

.button--dark {
  color: var(--wt-white);
  background: var(--wt-black);
  border-color: var(--wt-black);
  cursor: pointer;
}

.button--dark:hover {
  color: var(--wt-black);
  background: transparent;
}

.text-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 0.1rem solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(0.15rem, -0.15rem);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 0.0625rem solid var(--wt-border);
  background: rgba(244, 240, 233, 0.94);
  background: color-mix(in srgb, var(--wt-bone) 94%, transparent);
  backdrop-filter: blur(1rem);
}

.site-header__inner {
  position: relative;
  display: grid;
  min-height: 4.5rem;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.site-header__inner--acquisition {
  width: calc(100% - 3rem);
  max-width: none;
  min-height: 5.5rem;
}

.site-header__inner--acquisition .site-nav {
  justify-self: end;
}

.site-brand {
  display: inline-flex;
  width: 6rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  overflow: hidden;
  flex: none;
  align-items: center;
  background: var(--wt-black);
}

.site-header__inner--acquisition .site-brand {
  width: 8.4rem;
}

.site-brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: center;
}

.site-nav__list {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__item--products,
.site-nav__sublist {
  display: flex;
  gap: clamp(0.75rem, 1.8vw, 1.25rem);
  align-items: center;
}

.site-nav__sublist {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__sublist a {
  font-size: 0.68rem;
}

.site-nav a,
.site-cart {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 0.0625rem;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-cart {
  gap: 0.5rem;
  justify-self: end;
}

.site-cart__count {
  display: inline-flex;
  min-width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--wt-white);
  background: var(--wt-black);
  font-size: 0.65rem;
}

.site-nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-nav-toggle__icon,
.site-nav-toggle__icon::before,
.site-nav-toggle__icon::after {
  display: block;
  width: 1.35rem;
  height: 0.125rem;
  margin-inline: auto;
  background: var(--wt-black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav-toggle__icon {
  position: relative;
}

.site-nav-toggle__icon::before,
.site-nav-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.site-nav-toggle__icon::before {
  top: -0.42rem;
}

.site-nav-toggle__icon::after {
  top: 0.42rem;
}

/* Hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: min(52rem, calc(100svh - 4.5rem));
  overflow: hidden;
  color: var(--wt-white);
  background: var(--wt-black);
  isolation: isolate;
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.84) 0%, rgba(18, 18, 18, 0.48) 44%, rgba(18, 18, 18, 0.05) 76%),
    linear-gradient(0deg, rgba(18, 18, 18, 0.7) 0%, rgba(18, 18, 18, 0) 48%);
}

.home-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__inner {
  display: flex;
  align-items: flex-end;
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.home-hero__copy {
  max-width: 51rem;
}

.home-hero__eyebrow {
  color: var(--wt-bone);
}

.home-hero h1 {
  max-width: 11ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: var(--wt-white);
  text-transform: uppercase;
  text-shadow: 0 0.12rem 1.5rem rgba(0, 0, 0, 0.28);
}

.home-hero__prelaunch {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.home-hero__prelaunch .concept-status {
  margin-bottom: 0;
}

/* Product focus */
.product-focus {
  background: var(--wt-bone);
}

.product-focus__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(3rem, 8vw, 7.5rem);
  align-items: center;
}

.product-focus__figure {
  margin-bottom: 0;
}

.product-focus__media {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--wt-black);
}

.product-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-focus__figure figcaption {
  padding-top: 0.75rem;
  color: color-mix(in srgb, var(--wt-ink) 72%, transparent);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.product-focus__copy h2 {
  max-width: 10ch;
  margin-bottom: 1.75rem;
  color: var(--wt-black);
  text-transform: uppercase;
}

.product-focus__description {
  max-width: 35rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

/* Movement */
.movement {
  color: var(--wt-ink);
  background: var(--wt-white);
}

.movement__intro {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.45fr);
  column-gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
}

.movement__intro .eyebrow {
  grid-column: 1 / -1;
}

.movement__intro h2 {
  max-width: 12ch;
  margin-bottom: 0;
  text-transform: uppercase;
}

.movement__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.movement-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin: 0;
  background: var(--wt-ink);
}

.movement-card::after {
  position: absolute;
  inset: 38% 0 0;
  content: "";
  background: linear-gradient(0deg, rgba(18, 18, 18, 0.72), transparent);
}

.movement-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.movement-card--gym img {
  object-position: center 22%;
}

.movement-card--climb img {
  object-position: 54% center;
}

.movement-card--swim img {
  object-position: 58% center;
}

.movement-card:hover img {
  transform: scale(1.025);
}

.movement-card figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: var(--wt-white);
}

.movement-card__name {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

/* Ritual */
.ritual {
  color: var(--wt-white);
  background: var(--wt-black);
}

.ritual__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.ritual__intro {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.ritual__intro h2 {
  max-width: 10ch;
  margin-bottom: 1.75rem;
  color: var(--wt-white);
  text-transform: uppercase;
}

.ritual__intro > :last-child {
  max-width: 32rem;
  color: color-mix(in srgb, var(--wt-bone) 78%, transparent);
}

.ritual__steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ritual__steps li {
  display: grid;
  min-height: 10rem;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding-block: 2rem;
  border-top: 0.0625rem solid color-mix(in srgb, var(--wt-border) 32%, transparent);
}

.ritual__steps li:last-child {
  border-bottom: 0.0625rem solid color-mix(in srgb, var(--wt-border) 32%, transparent);
}

.ritual__number {
  color: var(--wt-taupe);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ritual__steps h3 {
  margin-bottom: 0.65rem;
  color: var(--wt-white);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  text-transform: uppercase;
}

.ritual__steps p {
  max-width: 29rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--wt-bone) 75%, transparent);
}

/* Launch status */
.launch-status {
  color: var(--wt-black);
  background: var(--wt-taupe);
  text-align: center;
}

.launch-status__inner {
  max-width: 50rem;
}

.launch-status h2 {
  max-width: 13ch;
  margin-right: auto;
  margin-bottom: 1.25rem;
  margin-left: auto;
  text-transform: uppercase;
}

.launch-status__inner > p:not(.eyebrow) {
  max-width: 37rem;
  margin-right: auto;
  margin-bottom: 1.75rem;
  margin-left: auto;
}

/* Footer */
.site-footer {
  padding-block: clamp(3.5rem, 7vw, 6rem) 1.5rem;
  color: var(--wt-white);
  background: var(--wt-black);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  gap: 3rem;
  align-items: start;
}

.site-brand--footer {
  width: 7.5rem;
}

.site-footer__brand p {
  max-width: 29rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--wt-bone) 75%, transparent);
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__links a {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
}

.site-footer a:not(.site-brand) {
  color: var(--wt-white);
  font-size: 0.83rem;
  text-underline-offset: 0.25rem;
}

.site-footer__legal {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 0.0625rem solid color-mix(in srgb, var(--wt-border) 24%, transparent);
  font-size: 0.75rem;
}

.site-footer__legal p {
  margin-bottom: 0;
}

.content-shell--trust {
  max-width: var(--wt-container);
}

.content-page__header {
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  border-bottom: 0.0625rem solid var(--wt-border);
}

.content-page__header h1 {
  max-width: 11ch;
  margin-bottom: 0;
  text-transform: uppercase;
}

.content-page--about .content-page__body,
.content-page--faq .content-page__body {
  display: grid;
  grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 7vw, 6rem);
}

.content-page--about .content-page__body > h2,
.content-page--faq .content-page__body > h2,
.content-page--about .content-page__body > h2 + p,
.content-page--faq .content-page__body > h2 + p {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 0.0625rem solid var(--wt-border);
  margin-bottom: 0;
}

.content-page--about .content-page__body > h2,
.content-page--faq .content-page__body > h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.25rem);
}

.content-page--about .content-page__body > h2 + p,
.content-page--faq .content-page__body > h2 + p {
  align-self: stretch;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.content-page--contact .content-page__body {
  max-width: 48rem;
  padding-block: clamp(2rem, 5vw, 4rem);
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  border: 0.0625rem solid var(--wt-border);
}

.content-page--contact .content-page__body a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  text-underline-offset: 0.25rem;
}

/* WooCommerce product and checkout flow */
.shop-main,
body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main {
  background: var(--wt-bone);
}

body.woocommerce-cart .content-shell > article,
body.woocommerce-checkout .content-shell > article {
  max-width: none;
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  color: color-mix(in srgb, var(--wt-ink) 68%, transparent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  column-gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

body.single-product.woocommerce div.product div.woocommerce-product-gallery {
  width: 100%;
  float: none;
  margin: 0;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
  display: grid;
  min-height: 0;
  aspect-ratio: 1;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--wt-black);
}

.woocommerce div.product .woocommerce-product-gallery__image,
.woocommerce div.product .woocommerce-product-gallery__image a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

body.single-product.woocommerce div.product div.woocommerce-product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1;
  border: 0;
  object-fit: cover;
}

body.single-product.woocommerce div.product div.summary {
  width: 100%;
  float: none;
  padding: clamp(2rem, 5vw, 4rem);
  margin: 0;
  background: var(--wt-white);
}

.product-summary__eyebrow {
  color: var(--wt-olive);
}

.woocommerce div.product .product_title {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  color: var(--wt-black);
  font-size: clamp(2.6rem, 5vw, 5rem);
  text-transform: uppercase;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin-bottom: 1.5rem;
  color: var(--wt-black);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  max-width: 38rem;
  margin-bottom: 2rem;
  font-size: 1.03rem;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 0;
}

.woocommerce .quantity .qty {
  width: 5rem;
  min-height: 3.25rem;
  padding: 0.6rem;
  border: 0.1rem solid var(--wt-olive);
  background: var(--wt-bone);
  text-align: center;
}

.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button:not(.is-link) {
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border: 0.125rem solid var(--wt-black);
  border-radius: 0;
  color: var(--wt-white);
  background: var(--wt-black);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:not(.is-link):hover {
  color: var(--wt-black);
  background: transparent;
}

.product-policy-summary {
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  border-top: 0.0625rem solid var(--wt-border);
  color: color-mix(in srgb, var(--wt-ink) 76%, transparent);
  font-size: 0.83rem;
}

.product-policy-summary p {
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
  grid-column: 1 / -1;
  margin-top: clamp(3rem, 7vw, 6rem);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-color: var(--wt-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-color: var(--wt-border);
  border-radius: 0;
  background: var(--wt-white);
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 2rem;
  background: var(--wt-white);
}

.woocommerce-notices-wrapper,
.wc-block-components-notice-banner {
  margin-bottom: 1.5rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.wc-block-components-notice-banner {
  border: 0.0625rem solid var(--wt-border);
  border-top: 0.25rem solid var(--wt-olive);
  border-radius: 0;
  color: var(--wt-ink);
  background: var(--wt-white);
}

.woocommerce-error {
  border-top-color: #8d3f3f;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.wc-block-cart__main,
.wc-block-cart__sidebar,
.wc-block-checkout__main,
.wc-block-checkout__sidebar {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--wt-white);
}

.wc-block-cart__main,
.wc-block-checkout__main {
  border-top: 0.25rem solid var(--wt-black);
}

.wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
  border-top: 0.25rem solid var(--wt-taupe);
}

.wc-block-cart-items,
.wc-block-components-totals-wrapper,
.wc-block-checkout__payment-method,
.wc-block-components-checkout-step {
  border-color: var(--wt-border) !important;
}

.wc-block-components-product-name,
.wc-block-components-title,
.wc-block-components-checkout-step__title {
  color: var(--wt-black);
  font-weight: 800;
}

.wc-block-components-product-name {
  text-decoration: none;
}

.wc-block-components-quantity-selector {
  border-color: var(--wt-olive);
  border-radius: 0;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .components-combobox-control__input,
.wc-block-components-address-form select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  min-height: 3.25rem;
  border: 0.1rem solid var(--wt-olive);
  border-radius: 0;
  color: var(--wt-ink);
  background: var(--wt-white);
}

.wc-block-components-text-input input:focus-visible,
.wc-block-components-combobox .components-combobox-control__input:focus-visible,
.wc-block-components-address-form select:focus-visible,
.woocommerce form .form-row input.input-text:focus-visible,
.woocommerce form .form-row textarea:focus-visible,
.woocommerce form .form-row select:focus-visible {
  border-color: var(--wt-olive);
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option {
  padding: 1rem;
  border: 0.0625rem solid var(--wt-olive);
  background: var(--wt-bone);
}

.wc-block-checkout__actions_row {
  gap: 1rem;
}

.concept-status {
  margin: 0;
  color: var(--wt-white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.text-link--static {
  border-bottom-color: transparent;
  cursor: default;
}

.acquisition-hero__body {
  max-width: 36rem;
  margin-bottom: 1.35rem;
  color: var(--wt-bone);
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.5;
}

.acquisition-hero {
  position: relative;
  display: block;
  min-height: min(42.25rem, calc(100svh - 5.5rem));
  overflow: hidden;
  background: var(--wt-black);
}

.acquisition-hero::after {
  display: none;
}

.acquisition-hero__layout {
  position: relative;
  display: block;
  min-height: inherit;
}

.acquisition-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(50%, 42rem);
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 3.5vw, 3.75rem) clamp(1.75rem, 3vw, 3.5rem);
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.98) 0%, rgba(18, 18, 18, 0.9) 72%, rgba(18, 18, 18, 0) 100%);
}

.acquisition-hero .home-hero__eyebrow {
  margin-bottom: 0.85rem;
  color: #e7a5b8;
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
}

.acquisition-hero h1 {
  max-width: 12ch;
  margin-bottom: 0.85rem;
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 4.35vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: 0.95;
  text-wrap: initial;
  text-shadow: none;
}

.acquisition-hero h1 span {
  display: block;
}

.acquisition-hero h1 span:nth-child(3) {
  margin-top: 0.16em;
}

.acquisition-hero__media {
  position: absolute;
  z-index: 1;
  inset: 0;
  min-width: 0;
  background: var(--wt-black);
}

.acquisition-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.acquisition-hero__scene-disclosure {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  max-width: min(32rem, calc(100% - 2rem));
  padding: 0;
  margin: 0;
  color: var(--wt-white);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: right;
  text-shadow: 0 0.12rem 0.6rem rgba(18, 18, 18, 0.9);
  text-transform: uppercase;
}

.acquisition-actions {
  display: flex;
  width: 100%;
  max-width: 34rem;
  gap: 0.7rem;
}

.acquisition-actions .button {
  min-width: 0;
  flex: 1 1 0;
  padding-inline: clamp(0.8rem, 1.25vw, 1.35rem);
  border-color: transparent;
  color: var(--wt-black);
  white-space: nowrap;
}

.acquisition-actions__grip {
  background: #e8a4b8;
}

.acquisition-actions__massage {
  background: #9da27d;
}

.acquisition-actions .button:hover {
  border-color: var(--wt-white);
  color: var(--wt-white);
  background: transparent;
}

.acquisition-hero__status {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding-top: 0.85rem;
  margin: 1rem 0 0;
  border-top: 0.0625rem solid color-mix(in srgb, var(--wt-white) 16%, transparent);
  color: var(--wt-bone);
  font-size: clamp(0.62rem, 0.82vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.acquisition-hero__status span {
  width: 0.52rem;
  height: 0.52rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e8a4b8;
}

.button--outline-light {
  color: var(--wt-white);
  background: transparent;
  border-color: var(--wt-white);
}

.button--outline-light:hover {
  color: var(--wt-black);
  background: var(--wt-white);
}

.acquisition-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.acquisition-products {
  padding-block: 0;
  background: var(--wt-bone);
}

.acquisition-products__rows {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.acquisition-product-row {
  position: relative;
  display: grid;
  height: clamp(24rem, 34vw, 34rem);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  grid-template: minmax(0, 1fr) / minmax(0, 1fr);
  background: var(--wt-black);
}

.acquisition-product-row__figure {
  z-index: 0;
  grid-area: 1 / 1;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
}

.acquisition-product-row__media {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: var(--wt-black);
}

.acquisition-product-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.acquisition-product-row--grip img {
  object-position: 50% 68%;
}

.acquisition-product-row--massage img {
  object-position: 50% 58%;
}

.acquisition-product-row:hover img {
  transform: scale(1.018);
}

.acquisition-product-row__body {
  position: relative;
  z-index: 1;
  display: flex;
  grid-area: 1 / 1;
  height: 100%;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(2rem, 3.2vw, 3.25rem);
  color: var(--wt-white);
  background: linear-gradient(0deg, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.72) 38%, rgba(18, 18, 18, 0.08) 78%, rgba(18, 18, 18, 0) 100%);
}

.acquisition-product-row__body h2 {
  max-width: 12ch;
  padding-bottom: 0.75rem;
  margin-bottom: 0.7rem;
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 2.95vw, 2.85rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.94;
  text-wrap: initial;
  text-transform: uppercase;
  color: var(--wt-white);
  text-shadow: 0 0.08em 0.35em rgba(18, 18, 18, 0.38);
}

.acquisition-product-row__body h2::after {
  display: block;
  width: 3.5rem;
  height: 0.28rem;
  margin-top: 0.65rem;
  content: "";
  background: var(--wt-taupe);
}

.acquisition-product-row--massage h2::after {
  background: var(--wt-olive);
}

.acquisition-product-row__body p {
  max-width: 22rem;
  margin-bottom: 1.1rem;
  color: var(--wt-bone);
  line-height: 1.45;
}

.acquisition-product-row__button {
  border-color: transparent;
  color: var(--wt-black);
}

.acquisition-product-row__button--grip {
  background: #e8a4b8;
}

.acquisition-product-row__button--massage {
  background: #9da27d;
}

.acquisition-product-row__button:hover {
  border-color: var(--wt-black);
  background: transparent;
}

.acquisition-process {
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  background: var(--wt-bone);
}

.acquisition-process__inner {
  width: min(calc(100% - clamp(2rem, 5.5vw, 5rem)), 92.5rem);
  margin-inline: auto;
}

.acquisition-process__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
}

.acquisition-process__intro {
  max-width: 52rem;
}

.acquisition-process__intro h2 {
  max-width: 18ch;
  margin-bottom: 0.75rem;
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 400;
  line-height: 0.95;
  word-spacing: 0.08em;
  text-transform: uppercase;
}

.acquisition-process__intro > p:last-child {
  max-width: 48rem;
  margin-bottom: 0;
}

.acquisition-process__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 0.5rem;
}

.acquisition-process__controls[hidden] {
  display: none;
}

.acquisition-process__controls button {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.8rem;
  border: 0.0625rem solid var(--wt-border);
  border-radius: 0;
  color: var(--wt-ink);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.acquisition-process__controls button:hover,
.acquisition-process__controls button:focus-visible {
  color: var(--wt-white);
  background: var(--wt-black);
}

.acquisition-process__viewport {
  position: relative;
}

.acquisition-process__track {
  display: grid;
  overflow-x: auto;
  overflow-y: hidden;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  background: var(--wt-black);
}

.acquisition-process__stage {
  position: relative;
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.acquisition-process__media {
  min-height: 12rem;
  overflow: hidden;
  aspect-ratio: 3.2 / 1;
  background: var(--wt-black);
}

.acquisition-process__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acquisition-process__stage--knitting img {
  object-position: 50% 52%;
}

.acquisition-process__stage--sewing img {
  object-position: 49% 60%;
}

.acquisition-process__stage--sorting img {
  object-position: 61% 62%;
}

.acquisition-process__stage figcaption {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  color: var(--wt-white);
  background: color-mix(in srgb, var(--wt-black) 76%, transparent);
}

.acquisition-process__number {
  color: var(--wt-taupe);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.acquisition-process__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.acquisition-process__progress {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.1875rem;
  overflow: hidden;
  background: var(--wt-border);
}

.acquisition-process__progress::after {
  display: block;
  width: var(--process-reel-progress, 33.333%);
  height: 100%;
  content: "";
  background: var(--wt-taupe);
  transition: width 240ms ease;
}

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

  .acquisition-process__media img,
  .acquisition-process__progress::after {
    transition: none;
  }
}

.acquisition-story {
  color: var(--wt-white);
  background: var(--wt-black);
}

.acquisition-story__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 8vw, 7rem);
}

/* Static product directions */
.product-direction {
  background: var(--wt-bone);
}

.product-direction__hero {
  padding: 0;
}

.product-direction__hero-grid {
  display: grid;
  min-height: min(46rem, calc(100svh - 5.5rem));
  grid-template-columns: minmax(1rem, clamp(2rem, 5.5vw, 5rem)) minmax(20rem, 34rem) 1fr;
  grid-template-rows: 1fr auto auto clamp(1.5rem, 3vw, 3rem);
  background: var(--wt-black);
}

@media (min-width: 48.0625rem) {
  .product-direction__hero-grid {
    height: min(46rem, calc(100svh - 5.5rem));
  }
}

.product-direction__media {
  min-width: 0;
  grid-area: 1 / 1 / -1 / -1;
  margin: 0;
  overflow: hidden;
}

.product-direction__media img {
  width: 100%;
  height: 100%;
  min-height: min(46rem, calc(100svh - 5.5rem));
  object-fit: cover;
}

.product-direction__hero-copy,
.product-direction__disclosure {
  z-index: 1;
  grid-column: 2;
  color: var(--wt-white);
  background: var(--wt-black);
}

.product-direction__hero-copy {
  grid-row: 2;
  max-width: none;
  padding: clamp(1.5rem, 2.6vw, 2.5rem) clamp(1.5rem, 3vw, 3rem) 1rem;
}

.product-direction__disclosure {
  grid-row: 3;
  padding: 0 clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 2.6vw, 2.5rem);
  margin: 0;
  color: color-mix(in srgb, var(--wt-white) 66%, transparent);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.product-direction__hero h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  color: var(--wt-white);
  text-transform: uppercase;
}

.product-direction__lead {
  max-width: 37rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.product-direction__status {
  display: inline-flex;
  padding: 0.55rem 0.75rem;
  margin: 0 0 1rem;
  color: var(--wt-black);
  background: var(--wt-taupe);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-direction--grip-socks .product-direction__media img {
  object-position: center 52%;
}

.product-direction--massage-balls .product-direction__media img {
  object-position: center 48%;
}

.product-direction__section {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  border-top: 0.0625rem solid var(--wt-border);
}

.product-direction__section--status {
  background: var(--wt-white);
}

.product-direction__section-inner {
  max-width: 68rem;
}

.product-direction__section h2 {
  max-width: 13ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.product-direction__section-inner > p:not(.eyebrow) {
  max-width: 43rem;
}

.product-direction__facts,
.product-direction__faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-direction__facts {
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}

.product-direction__facts li,
.product-direction__faq article {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 0.0625rem solid var(--wt-border);
  background: var(--wt-bone);
}

.product-direction__facts li {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-direction__faq article {
  border-top: 0.25rem solid var(--wt-black);
}

.product-direction__faq h3 {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.product-direction__faq p {
  margin-bottom: 0;
}

.product-direction__back {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.product-direction__back a {
  min-height: 2.75rem;
}
