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

:root {
  --page-bg: #000;
  --page-bg-soft: #1c1c1c;
  --page-bg-lighter: #404040;
  --surface: #fff;
  --surface-muted: #f5f5f5;
  --surface-frosted: rgba(224, 224, 224, 0.6);
  --text: #fff;
  --text-muted: #c8c8c8;
  --text-dim: #949494;
  --text-dark: #000;
  --border: rgba(255, 255, 255, 0.16);
  --border-dark: #e5e5e5;
  --accent: #ffe691;
  --page-gutter: 1.5rem;
  --section-gap: 5rem;
  --header-height: 4.5rem;
  --header-banner-height: 2.5rem;
  --hero-logo-width: 38rem;
  --hero-logo-width-mobile: 13rem;
  --nav-panel-width: min(23.75rem, 33.3333vw);
  --menu-visible-panels: 1;
  --nav-transition: 220ms;
  --radius: 0.5rem;
  --radius-large: 0.9375rem;
  --shadow-soft: 0 0.0313rem 0.125rem rgba(0, 0, 0, 0.2), 0 0.125rem 0.25rem rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.brand-logo {
  display: block;
  width: 100%;
  line-height: 0;
}

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

.brand-logo__image--dark {
  display: none;
}

.brand-logo--dark .brand-logo__image--dark,
.brand-logo--light .brand-logo__image--light {
  display: block;
}

body.is-scrolled .brand-logo--adaptive .brand-logo__image--light,
body.drawer-open .brand-logo--adaptive .brand-logo__image--light {
  display: none;
}

body.is-scrolled .brand-logo--adaptive .brand-logo__image--dark,
body.drawer-open .brand-logo--adaptive .brand-logo__image--dark {
  display: block;
}

input {
  appearance: none;
}

.svg-defs {
  position: absolute;
}

.site-shell {
  background: var(--page-bg);
  min-height: 100vh;
}

.promo-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 95;
  height: var(--header-banner-height);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.12);
  background: #000;
  color: #fff;
  transition: transform var(--nav-transition) ease;
}

body.promo-hidden .promo-bar {
  transform: translateY(-100%);
}

.promo-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-inline: 4rem;
}

.promo-slides {
  position: relative;
  width: min(100%, 46rem);
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.promo-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding-inline: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.promo-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

body.promo-static .promo-slide:not(.is-active) {
  display: none;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  margin-inline-start: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.16rem;
  white-space: nowrap;
}

.promo-link:hover {
  opacity: 0.66;
}

.promo-close {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  transform: translateY(-50%);
}

.promo-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.floating-monogram {
  position: fixed;
  top: 3rem;
  right: 3rem;
  z-index: 90;
  width: 8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--nav-transition) ease, top var(--nav-transition) ease;
}

body.is-scrolled .floating-monogram,
body.drawer-open .floating-monogram {
  opacity: 1;
  pointer-events: auto;
}

.hero-wordmark {
  position: fixed;
  top: calc(50svh - 3.125rem);
  left: 50%;
  z-index: 92;
  width: var(--hero-logo-width);
  filter: drop-shadow(0 0 1.75rem rgba(0, 0, 0, 0.38));
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity var(--nav-transition) ease;
}

body.is-scrolled .hero-wordmark,
body.drawer-open .hero-wordmark {
  opacity: 0;
}

body[data-page="product"] .hero-wordmark,
body[data-page="product"] .floating-monogram {
  display: none;
}

.header-navigation {
  position: fixed;
  top: var(--header-banner-height);
  right: 0;
  left: 0;
  z-index: 91;
  height: var(--header-height);
  border-bottom: 0.0625rem solid transparent;
  background: transparent;
  color: var(--text);
  transition:
    top var(--nav-transition) ease,
    background-color var(--nav-transition) ease,
    color var(--nav-transition) ease,
    border-color var(--nav-transition) ease;
}

body.promo-hidden .header-navigation {
  top: 0;
}

body.is-scrolled .header-navigation,
body.drawer-open .header-navigation {
  background: var(--surface);
  color: var(--text-dark);
  border-color: var(--border-dark);
}

.header-navigation__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding-inline: var(--page-gutter);
}

.nav-toggle,
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.nav-toggle {
  justify-self: start;
  height: 1.625rem;
}

.burger-icon {
  position: relative;
  display: block;
  width: 1.375rem;
  height: 0.875rem;
  color: currentColor;
}

.burger-icon,
.burger-icon::before,
.burger-icon::after {
  border-radius: 999px;
}

.burger-icon::before,
.burger-icon::after,
.burger-icon {
  background: transparent;
}

.burger-icon::before,
.burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.0938rem;
  background: currentColor;
  transform-origin: left center;
}

.burger-icon::before {
  top: 0;
  box-shadow: 0 0.3906rem 0 0 currentColor;
}

.burger-icon::after {
  bottom: 0;
  width: 0.875rem;
}

.burger-label,
.header-action__label {
  font-size: 1rem;
  line-height: 1;
}

.logo-header {
  justify-self: center;
  width: 11.5rem;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-action {
  position: relative;
  height: 1.5rem;
}

.header-action svg {
  width: 1.5rem;
  height: 1.5rem;
}

.header-action--icon .header-action__label {
  display: none;
}

.cart-count {
  position: absolute;
  top: -0.1875rem;
  left: 0.875rem;
  display: grid;
  place-items: center;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.5625rem;
  font-weight: 700;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  visibility: hidden;
  pointer-events: none;
}

.drawer.is-open {
  display: block;
  visibility: visible;
  pointer-events: auto;
}

.drawer-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--nav-transition) ease;
}

.drawer.is-open .drawer-scrim {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background: var(--page-bg-soft);
  transition: transform var(--nav-transition) ease;
}

.drawer--menu .drawer-panel {
  left: 0;
  width: min(calc(var(--nav-panel-width) * var(--menu-visible-panels, 1)), 100vw);
  overflow: hidden;
  transform: translateX(-100%);
  transition:
    transform var(--nav-transition) ease,
    width 280ms ease;
}

.drawer--side .drawer-panel {
  right: 0;
  width: min(32rem, 100vw);
  transform: translateX(100%);
}

.drawer--side .drawer-panel--light {
  background: var(--surface);
  color: var(--text-dark);
}

.drawer--newsletter .drawer-scrim {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.42);
}

.drawer--newsletter .drawer-panel {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  display: block;
  width: min(72rem, calc(100vw - 2rem));
  max-height: min(46rem, calc(100svh - 2rem));
  padding: 0;
  overflow: auto;
  border-radius: 0.75rem;
  background: #fff;
  color: #111;
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -47%);
}

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

.drawer--newsletter.is-open .drawer-panel {
  transform: translate(-50%, -50%);
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.drawer-close--dark {
  color: var(--text-dark);
}

.drawer-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.menu-shell {
  display: grid;
  grid-template-rows: 1fr auto auto;
  height: 100%;
  min-height: 0;
}

.menu-stack {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.menu-panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--nav-panel-width);
  overflow-y: auto;
  padding: 5.625rem 3rem 3rem;
  border-right: 0.0625rem solid var(--border);
  background: #050505;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(-1 * var(--nav-panel-width)));
  transition:
    transform var(--nav-transition) ease,
    opacity var(--nav-transition) ease;
}

.menu-panel.is-open,
.menu-panel--root {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 56.3125em) {
  .menu-panel--root {
    transform: translateX(0) !important;
  }

  .menu-panel.is-open {
    transform: translateX(calc((var(--menu-depth) - 1) * var(--nav-panel-width)));
  }
}

.menu-back {
  display: none;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
}

.menu-back svg {
  width: 1rem;
  height: 1rem;
}

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

.menu-list--root > .menu-item > a,
.menu-list--root > .menu-item > button,
.menu-list > .menu-item > a,
.menu-list > .menu-item > button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.5rem 1.25rem 0.5rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  text-align: left;
  text-transform: uppercase;
}

.menu-list > .menu-item > button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.125rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.0625rem solid currentColor;
  border-right: 0.0625rem solid currentColor;
  transform: translateY(-60%) rotate(45deg);
}

.menu-list--sub li a {
  display: block;
  padding: 0.4375rem 0;
  color: var(--text);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  text-transform: none;
}

.menu-info,
.menu-footer {
  padding-inline: 3rem;
}

.menu-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 1.5rem;
  border-top: 0.0625rem solid var(--border);
}

.menu-info p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.5;
}

.menu-info a,
.menu-footer a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.menu-footer {
  background: var(--page-bg-lighter);
  padding-block: 1.5rem;
}

.menu-footer p {
  margin: 0;
  font-size: 0.875rem;
}

.menu-footer p + p {
  margin-top: 1.25rem;
}

.drawer-side__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
}

.drawer-side__header p {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem;
  padding: 1rem 0;
  border-bottom: 0.0625rem solid #d9d9d9;
}

.search-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  outline: none;
}

.search-box input::placeholder {
  color: #8a8a8a;
}

.drawer-side__content {
  padding: 0 1.5rem 1.5rem;
}

.suggest-group + .suggest-group {
  margin-top: 2rem;
}

.suggest-title {
  margin: 0 0 0.875rem;
  color: #8a8a8a;
  font-size: 0.875rem;
}

.suggest-group ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suggest-group a {
  position: relative;
  width: fit-content;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 0.0625rem no-repeat;
  transition: background-size 180ms ease;
}

.suggest-group a:hover {
  background-size: 100% 0.0625rem;
}

.empty-cart {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
  padding: 2rem 1.5rem 1.5rem;
}

.empty-cart__title {
  margin: 0;
  font-size: 1rem;
}

.main-content {
  background: var(--page-bg);
}

.hero {
  position: relative;
  min-height: 100svh;
}

.hero--primary {
  min-height: 105svh;
}

.hero--secondary {
  margin-top: 2rem;
}

.hero-media {
  min-height: inherit;
}

.hero-media--crossfade {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-media__frame {
  position: absolute;
  inset: 0;
  background: var(--hero-image) center center / cover no-repeat;
}

.hero-media__frame--fade {
  opacity: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.75) 0,
      rgba(0, 0, 0, 0.25) var(--header-height),
      rgba(0, 0, 0, 0.12) calc(var(--header-height) * 1.35),
      rgba(0, 0, 0, 0.02) calc(var(--header-height) * 1.8),
      transparent calc(var(--header-height) * 2)
    );
}

.hero--secondary .hero-gradient {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.42) 0,
      rgba(0, 0, 0, 0.12) calc(var(--header-height) * 1.15),
      transparent calc(var(--header-height) * 1.9)
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.58) 18%,
      rgba(0, 0, 0, 0.26) 38%,
      rgba(0, 0, 0, 0.04) 62%,
      rgba(0, 0, 0, 0) 78%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.16) 26%,
      rgba(0, 0, 0, 0) 48%
    );
}

.hero-content {
  position: absolute;
  right: var(--page-gutter);
  bottom: 2.5rem;
  left: var(--page-gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero--primary .hero-content {
  bottom: 3.25rem;
}

.hero-title,
.section-title,
.newsletter-copy h2,
.reinsurance-card h2,
.editorial-card__title,
.culture-card__title {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-title {
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.1;
}

.cta-row,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.button-outline {
  --button-border: var(--text);
  --button-text: var(--text);
  --button-hover-bg: var(--surface);
  --button-hover-text: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.375rem;
  padding: 0.5rem 1.5rem;
  border: 0.0625rem solid var(--button-border);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--button-text);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.0313rem;
  line-height: 1.125rem;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button-outline:hover {
  background: var(--button-hover-bg);
  color: var(--button-hover-text);
  border-color: var(--button-hover-bg);
}

.button-outline--dark {
  --button-border: var(--text-dark);
  --button-text: var(--text-dark);
  --button-hover-bg: var(--text-dark);
  --button-hover-text: var(--text);
}

.scroll-down-sign {
  position: fixed;
  bottom: 3.75rem;
  left: 50%;
  z-index: 12;
  color: var(--text);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.1044rem;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity var(--nav-transition) ease;
}

.scroll-down-sign::before {
  content: "";
  position: absolute;
  top: -1.75rem;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-right: 0.0625rem solid currentColor;
  border-bottom: 0.0625rem solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  animation: jumpyicon 0.7s infinite;
}

body.is-scrolled .scroll-down-sign,
body.drawer-open .scroll-down-sign {
  opacity: 0;
  pointer-events: none;
}

.editorial-strip,
.editorial-grid,
.culture-section,
.newsletter-section,
.reinsurance-section,
.site-footer {
  padding-inline: var(--page-gutter);
}

.editorial-strip,
.editorial-grid,
.culture-section,
.newsletter-section,
.reinsurance-section {
  margin-top: var(--section-gap);
}

.editorial-strip__track {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.editorial-strip__track::-webkit-scrollbar,
.culture-track::-webkit-scrollbar {
  display: none;
}

.editorial-card {
  min-width: min(80vw, 22.125rem);
  scroll-snap-align: start;
}

.editorial-card__media {
  aspect-ratio: 4 / 5.41;
}

.editorial-card--square,
.culture-card {
  min-width: min(86vw, 28rem);
}

.editorial-card--square .editorial-card__media,
.culture-card__media {
  aspect-ratio: 1;
}

.editorial-card__content {
  padding-top: 0.9375rem;
}

.editorial-card__subtitle {
  margin: 0;
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.editorial-card__subtitle--blank {
  opacity: 0;
}

.editorial-card__title {
  margin-bottom: 0.9375rem;
  font-size: 1rem;
  line-height: 1.1;
}

.editorial-grid {
  display: grid;
  gap: 1.25rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 1rem;
}

.section-arrows {
  display: flex;
  gap: 0.3125rem;
}

.arrow-button {
  display: grid;
  place-items: center;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  border: 0;
  border-radius: 0.375rem;
  background: var(--surface-muted);
  color: var(--text-dark);
}

.arrow-button svg {
  width: 1rem;
  height: 1rem;
}

.culture-track {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.culture-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0.625rem;
  scroll-snap-align: start;
}

.culture-card__title {
  font-size: 0.875rem;
  line-height: 1.25;
}

.culture-card__cta {
  position: relative;
  width: fit-content;
  font-size: 0.875rem;
}

.culture-card__cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.1875rem;
  left: 0;
  height: 0.0625rem;
  background: currentColor;
}

.newsletter-section {
  display: grid;
  gap: 2rem;
}

.newsletter-copy {
  max-width: 44rem;
}

.newsletter-copy h2 {
  font-size: 1.25rem;
  line-height: 1.1;
}

.newsletter-copy p,
.newsletter-legal p,
.reinsurance-card p,
.footer-universe p,
.footer-links a,
.footer-locales p {
  margin: 0;
  font-size: 0.875rem;
}

.newsletter-copy p {
  margin-top: 0.9375rem;
}

.newsletter-form {
  display: grid;
  gap: 1.5rem;
}

.newsletter-fieldset {
  display: grid;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.newsletter-fieldset legend,
.newsletter-input span {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.newsletter-fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1.5rem;
}

.newsletter-fieldset input[type="radio"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
  border: 0.0625rem solid var(--text);
  border-radius: 50%;
}

.newsletter-fieldset input[type="radio"]:checked {
  background: radial-gradient(circle, var(--text) 0 40%, transparent 45%);
}

.newsletter-row {
  display: grid;
  gap: 1rem;
}

.newsletter-input {
  display: grid;
}

.newsletter-input input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--text);
}

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

.newsletter-legal {
  display: grid;
  gap: 0.75rem;
  color: var(--text-muted);
}

.reinsurance-section {
  display: grid;
  gap: 1.0625rem;
}

.reinsurance-card {
  padding: 4.375rem 1.5625rem;
  background: var(--page-bg-soft);
  text-align: center;
}

.reinsurance-card h2 {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  letter-spacing: 0.0625rem;
}

.reinsurance-card p {
  margin-bottom: 1.875rem;
}

.site-footer {
  margin-top: 5rem;
  padding-bottom: 1.75rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 0;
  padding: 1.5rem 0 1.5625rem 0.25rem;
  list-style: none;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.footer-body {
  position: relative;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  margin-top: 1.5625rem;
  padding: 0;
  text-align: center;
}

.footer-logo {
  width: 12rem;
}

.footer-bottom {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 0;
}

.footer-universe span {
  display: block;
  margin-bottom: 1rem;
  font-family: "Sora", "Manrope", sans-serif;
}

.footer-universe p + p {
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer-links a,
.footer-locales a {
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 0.0625rem no-repeat;
  transition: background-size 180ms ease;
}

.footer-links a:hover,
.footer-locales a:hover {
  background-size: 100% 0.0625rem;
}

.footer-locales {
  display: grid;
  gap: 0.5rem;
}

.media-slot {
  --media-image: none;
  position: relative;
  overflow: hidden;
  background:
    var(--media-image) center top / cover no-repeat,
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.35), transparent 30%),
    radial-gradient(circle at 75% 60%, rgba(0, 0, 0, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.26));
}

.media-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 35%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12));
  mix-blend-mode: screen;
}

.media-slot::after {
  content: attr(data-slot);
  position: absolute;
  right: 0.875rem;
  bottom: 0.875rem;
  z-index: 1;
  padding: 0.3125rem 0.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-slot--clean::after {
  display: none;
}

.media-slot--clean::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 38%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
}

.tone-blush { background-color: #2a1414; }
.tone-ivory { background-color: #d0c7bc; }
.tone-camel { background-color: #8f7355; }
.tone-gold { background-color: #8a6b22; }
.tone-sand { background-color: #b19f83; }
.tone-charcoal { background-color: #252526; }
.tone-leather { background-color: #2b1e12; }
.tone-rose { background-color: #705356; }
.tone-stone { background-color: #69615b; }
.tone-cream { background-color: #bbb5aa; }
.tone-amber { background-color: #84622b; }

[hidden] {
  display: none !important;
}

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

.drawer-helper {
  margin: 0;
  color: #6e6e6e;
  font-size: 0.875rem;
  line-height: 1.5;
}

.drawer-side__content--search {
  display: grid;
  gap: 1.5rem;
}

.newsletter-modal {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  min-height: min(46rem, calc(100svh - 2rem));
}

.newsletter-modal__media {
  min-height: 100%;
  background: #ece5d9;
}

.newsletter-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-modal__content {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 2.25rem 2.25rem 2rem;
}

.newsletter-modal__title {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.newsletter-modal__intro {
  margin: 0;
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.newsletter-form--modal {
  gap: 1.25rem;
}

.newsletter-form--modal .newsletter-input input {
  min-height: 3rem;
  padding: 0.875rem 0.125rem 0.625rem;
  border: 0;
  border-bottom: 0.0625rem solid #1a1a1a;
  border-radius: 0;
  background: transparent;
  color: #111;
}

.newsletter-form--modal .newsletter-input input::placeholder {
  color: #8b8b8b;
}

.newsletter-form--modal .newsletter-fieldset {
  gap: 0.75rem;
}

.newsletter-form--modal .newsletter-fieldset label,
.newsletter-form--modal .newsletter-input span {
  color: #111;
}

.newsletter-form--modal .newsletter-fieldset input[type="radio"] {
  border-color: #111;
}

.newsletter-form--modal .newsletter-fieldset input[type="radio"]:checked {
  background: radial-gradient(circle, #111 0 40%, transparent 45%);
}

.newsletter-form--modal .button-solid-dark {
  width: 100%;
}

.newsletter-status {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.875rem;
}

.newsletter-status.is-success {
  color: #1b6d38;
}

.newsletter-status.is-error {
  color: #8b2a2a;
}

.newsletter-legal--modal {
  color: #6a6a6a;
}

.newsletter-legal--modal a {
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

.search-suggestions {
  display: grid;
  gap: 2rem;
}

.search-results {
  display: grid;
  gap: 1rem;
}

.search-result-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.875rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #e9e9e9;
}

.search-result-card:last-child {
  border-bottom: 0;
}

.search-result-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f2f2f2;
}

.search-result-card__media img,
.product-card__media img,
.product-sheet__media img,
.cart-line__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-card__content,
.product-card__body {
  display: grid;
  gap: 0.5rem;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.search-result-card__title,
.product-card__title,
.cart-line__title,
.product-sheet__title {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.search-result-card__title-link,
.product-card__title-link {
  transition: opacity 180ms ease;
}

.search-result-card__title-link:hover,
.product-card__title-link:hover {
  opacity: 0.7;
}

.search-result-card__meta,
.product-card__meta,
.cart-line__meta,
.product-sheet__meta {
  color: #6e6e6e;
  font-size: 0.875rem;
  line-height: 1.45;
}

.search-result-card__actions,
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: inherit;
  font-size: 0.875rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2rem;
  transition: text-decoration-color 180ms ease;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.launch-test-lock .is-temp-disabled {
  opacity: 0.34;
  cursor: not-allowed;
  pointer-events: none;
}

.launch-test-lock button.is-temp-disabled,
.launch-test-lock .button-outline.is-temp-disabled,
.launch-test-lock .text-link.is-temp-disabled,
.launch-test-lock .culture-card__cta.is-temp-disabled,
.launch-test-lock .header-action.is-temp-disabled,
.launch-test-lock .nav-toggle.is-temp-disabled {
  opacity: 0.34;
}

.button-outline[disabled],
.button-outline.is-loading {
  opacity: 0.5;
  cursor: progress;
}

.button-solid-dark {
  --button-border: var(--text-dark);
  --button-text: var(--text);
  --button-hover-bg: #2a2a2a;
  --button-hover-text: var(--text);
  width: 100%;
  background: var(--text-dark);
}

.cart-drawer {
  display: grid;
  gap: 1.5rem;
  padding: 0 1.5rem 1.5rem;
}

.cart-lines {
  display: grid;
  gap: 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.875rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #e9e9e9;
}

.cart-line__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f3f3f3;
}

.cart-line__content {
  display: grid;
  gap: 0.5rem;
}

.cart-line__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 999px;
}

.qty-button {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.qty-value {
  min-width: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: #6e6e6e;
  font-size: 0.8125rem;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.cart-summary {
  display: grid;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 0.0625rem solid #d9d9d9;
}

.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
}

.catalog-section {
  padding-inline: var(--page-gutter);
  margin-top: var(--section-gap);
}

.section-head--catalog {
  align-items: end;
}

.section-kicker {
  margin: 0 0 0.5rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-intro,
.catalog-state {
  max-width: 48rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.catalog-intro {
  margin-top: 1.25rem;
}

.catalog-state {
  margin-top: 0.875rem;
}

.product-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.product-card {
  display: grid;
  gap: 1rem;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5.41;
  overflow: hidden;
  border-radius: var(--radius);
  background: #181818;
}

.product-card__media-link,
.product-card__media-link > .media-slot {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.875rem;
  padding: 0.25rem 0.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drawer-panel--light .product-card__badge {
  border-color: #d9d9d9;
  color: #6e6e6e;
}

.product-card__price,
.product-sheet__price {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.price-block {
  display: grid;
  gap: 0.3125rem;
  margin-top: 0.625rem;
}

.price-block__line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.price-block__current {
  font-size: 0.9875rem;
  font-weight: 700;
  line-height: 1.2;
}

.price-block__compare {
  color: var(--text-dim);
  font-size: 0.8125rem;
  line-height: 1.2;
  text-decoration: line-through;
  text-decoration-thickness: 0.0625rem;
  text-decoration-color: currentColor;
}

.price-block__tag {
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-block--page {
  margin-top: 0;
}

.price-block--page .price-block__current {
  font-size: 1.125rem;
}

.price-block--page .price-block__compare {
  font-size: 0.9375rem;
}

.price-block--sheet {
  margin-top: 0.25rem;
}

.price-block--search,
.price-block--card {
  margin-top: 0.625rem;
}

.product-card__description,
.product-sheet__description {
  margin: 0.625rem 0 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.product-card__actions {
  margin-top: 1rem;
}

.product-card--home .product-card__description {
  margin-top: 0.875rem;
}

.product-card--home .product-card__actions {
  margin-top: 1.125rem;
}

.drawer-panel--light .product-card__description,
.drawer-panel--light .product-sheet__description {
  color: #6e6e6e;
}

.drawer-panel--light .price-block__current {
  color: var(--text-dark);
}

.drawer-panel--light .price-block__compare {
  color: #7a7a7a;
}

.drawer-panel--light .price-block__tag {
  color: #7b5a1a;
}

.product-sheet {
  display: grid;
  gap: 1.25rem;
  padding: 0 1.5rem 1.5rem;
}

.product-sheet__media {
  aspect-ratio: 4 / 5.2;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f3f3f3;
}

.product-sheet__body {
  display: grid;
  gap: 0.875rem;
}

.product-sheet__label {
  margin: 0 0 0.625rem;
  color: #6e6e6e;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.variant-list {
  display: grid;
  gap: 0.625rem;
}

.variant-option {
  display: grid;
  gap: 0.125rem;
  padding: 0.875rem 1rem;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.variant-option:hover {
  border-color: #bfbfbf;
}

.variant-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.variant-option.is-selected {
  border-color: #000;
  background: #f4f4f4;
}

.variant-option.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.variant-option__title {
  color: #000;
  font-size: 0.9375rem;
}

.variant-option__subtitle {
  color: #6e6e6e;
  font-size: 0.8125rem;
}

.product-sheet__qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-qty-input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.375rem;
  background: #fff;
  color: #000;
}

.product-sheet__footer {
  display: grid;
  gap: 0.75rem;
}

.product-sheet__status {
  color: #6e6e6e;
  font-size: 0.875rem;
}

.catalog-state.is-error,
.drawer-helper.is-error,
.product-sheet__status.is-error {
  color: #8f2222;
}

.catalog-state.is-success,
.drawer-helper.is-success,
.product-sheet__status.is-success {
  color: #1f6a3c;
}

.page-main {
  min-height: 100vh;
}

.page-hero {
  position: relative;
  min-height: 82svh;
}

.page-hero__media {
  min-height: inherit;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0.24) 28%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 46%);
  pointer-events: none;
}

.page-hero__content {
  position: absolute;
  right: var(--page-gutter);
  bottom: 3rem;
  left: var(--page-gutter);
  z-index: 2;
  max-width: 46rem;
  display: grid;
  gap: 0.875rem;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.page-breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.page-title {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
}

.page-title--product {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.page-intro,
.page-section__intro,
.product-page__lead,
.product-page__description,
.account-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.insights-shell {
  display: grid;
  gap: 1.5rem;
}

.insights-shell__head {
  display: grid;
  gap: 1rem;
}

.insights-range {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.insights-range__button {
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 0.875rem;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.insights-range__button.is-active,
.insights-range__button:hover {
  border-color: #efe7da;
  background: #efe7da;
  color: #111;
}

.insights-generated-at {
  margin: -0.25rem 0 0;
  color: var(--text-dim);
  font-size: 0.8125rem;
}

.insights-summary-grid,
.insights-layout {
  display: grid;
  gap: 1rem;
}

.insights-stat,
.insights-panel {
  border: 0.0625rem solid #ddd5c8;
  border-radius: 0.75rem;
  background: #f5f1ea;
  color: #111;
}

.insights-stat {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
}

.insights-stat__label {
  margin: 0;
  color: #6d665d;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insights-stat__value {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1;
}

.insights-panel {
  padding: 1.25rem;
}

.insights-panel__head {
  display: grid;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.insights-panel__head h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.insights-panel__head p,
.insights-empty {
  margin: 0;
  color: #6d665d;
  font-size: 0.875rem;
  line-height: 1.55;
}

.insights-table-wrap {
  overflow-x: auto;
}

.insights-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 34rem;
}

.insights-table th,
.insights-table td {
  padding: 0.875rem 0;
  border-bottom: 0.0625rem solid #ddd5c8;
  text-align: left;
  vertical-align: top;
}

.insights-table th {
  color: #6d665d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insights-table td {
  font-size: 0.875rem;
}

.insights-table tbody tr:last-child td {
  border-bottom: 0;
}

.insights-page-cell {
  display: grid;
  gap: 0.25rem;
}

.insights-page-cell strong {
  font-weight: 600;
}

.insights-page-cell span {
  color: #6d665d;
  font-size: 0.8125rem;
  word-break: break-word;
}

.insights-trend-list {
  display: grid;
  gap: 0.75rem;
}

.insights-trend-row {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.875rem;
}

.insights-trend-row__date,
.insights-trend-row__value {
  font-size: 0.8125rem;
}

.insights-trend-row__date {
  color: #6d665d;
}

.insights-trend-row__bar {
  position: relative;
  height: 0.625rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e2dbcf;
}

.insights-trend-row__bar span {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #111, #575046);
}

.page-chipbar,
.page-section,
.page-split,
.story-layout,
.account-grid {
  padding-inline: var(--page-gutter);
}

.page-chipbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding-top: 1.5rem;
}

.page-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.8125rem;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.page-chip:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.page-section,
.story-layout,
.account-grid {
  padding-top: var(--section-gap);
}

.page-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.page-product-grid,
.page-feature-grid,
.story-columns,
.account-grid {
  display: grid;
  gap: 1.25rem;
}

.page-split {
  display: grid;
  gap: 1.5rem;
  padding-top: var(--section-gap);
  align-items: start;
}

.page-split__media,
.product-page__hero-image,
.product-page__thumbs .media-slot {
  overflow: hidden;
  border-radius: var(--radius);
}

.page-split__media {
  aspect-ratio: 4 / 5.2;
}

.page-split__copy {
  display: grid;
  gap: 1rem;
}

.page-feature-card,
.page-copy-block,
.account-card,
.faq-item {
  border: 0.0625rem solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.page-feature-card,
.page-copy-block,
.account-card {
  padding: 1.375rem;
}

.page-feature-card__eyebrow {
  margin: 0 0 0.625rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-feature-card__title,
.page-copy-block h2,
.account-card h2 {
  margin: 0 0 0.75rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.page-feature-card__text,
.page-copy-block p,
.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.125rem;
  cursor: pointer;
  list-style: none;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1.125rem 1.125rem;
}

.account-card {
  display: grid;
  gap: 1rem;
}

.account-card--wide {
  grid-column: 1 / -1;
}

.account-form {
  display: grid;
  gap: 1rem;
}

.account-form input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--text);
}

.product-page {
  display: grid;
  gap: 1.5rem;
  padding: calc(var(--header-banner-height) + var(--header-height) + 2rem) var(--page-gutter) 0;
}

.product-page__gallery,
.product-page__summary,
.product-page__details {
  display: grid;
  gap: 1rem;
}

.product-page__hero-image {
  aspect-ratio: 4 / 5.25;
  background: #111;
}

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

.product-page__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-page__thumbs .media-slot,
.product-page__thumb-button {
  aspect-ratio: 1;
}

.product-page__thumb-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #111;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.product-page__thumb-button:hover {
  opacity: 0.92;
}

.product-page__thumb-button.is-active {
  border-color: rgba(255, 255, 255, 0.58);
  transform: translateY(-0.125rem);
}

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

.product-page__price {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.4;
}

.product-page__price .price-block__tag {
  margin-top: 0.125rem;
}

.product-page__actions {
  display: grid;
  gap: 1rem;
}

.product-page__qty {
  max-width: 12rem;
}

.product-form--page {
  display: grid;
  gap: 1rem;
}

.product-grid:empty,
.cart-lines:empty,
.search-results:empty {
  display: none;
}

@keyframes jumpyicon {
  0% { transform: translateX(-50%) translateY(0) rotate(45deg); }
  50% { transform: translateX(-50%) translateY(-0.375rem) rotate(45deg); }
  100% { transform: translateX(-50%) translateY(0) rotate(45deg); }
}

@media (min-width: 48em) {
  .hero-media__frame--fade {
    animation: heroDesktopFade 14s ease-in-out infinite;
  }

  .footer-body {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }

  .footer-locales {
    justify-self: end;
    text-align: right;
  }

  .footer-breadcrumb {
    justify-self: start;
  }

  .newsletter-row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

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

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

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

  .product-page {
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
    align-items: start;
  }

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

@media (min-width: 56.3125em) {
  .hero-title,
  .section-title,
  .reinsurance-card h2,
  .editorial-card__title,
  .culture-card__title {
    font-size: 1.125rem;
  }

  .hero-content {
    bottom: 3rem;
  }

  .hero--primary .hero-content {
    bottom: 3.75rem;
  }

  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .reinsurance-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .reinsurance-card {
    padding: 5.625rem 1.25rem;
  }

  .newsletter-section {
    gap: 2.5rem;
  }
}

@media (min-width: 77.5em) {
  .editorial-strip__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    overflow: visible;
  }

  .editorial-card,
  .editorial-card--square,
  .culture-card {
    min-width: 0;
  }

  .culture-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    overflow: visible;
  }

  .page-split {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

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

  .page-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .insights-summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 56.3025em) {
  :root {
    --page-gutter: 0.625rem;
    --section-gap: 2.875rem;
    --header-height: 3.5rem;
  }

  .promo-bar__inner {
    padding-inline: 2.875rem;
  }

  .promo-slide {
    padding-inline: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
  }

  .promo-link {
    margin-inline-start: 0.28rem;
  }

  .hero-wordmark {
    top: 7.5rem;
    width: var(--hero-logo-width-mobile);
    transform: translateX(-50%);
  }

  .floating-monogram {
    top: calc(var(--header-banner-height) + 1.25rem);
    right: 1.25rem;
    width: 6.75rem;
  }

  body.promo-hidden .floating-monogram {
    top: 1.25rem;
  }

  .header-navigation {
    top: auto;
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    height: auto;
    background: none !important;
    border: 0;
    color: var(--text-dark);
  }

  .header-navigation__content {
    position: relative;
    min-height: 4rem;
    padding-inline: 1rem;
  }

  .header-navigation__content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: var(--surface-frosted);
    box-shadow: inset 0 0 0 0 var(--border-dark), var(--shadow-soft);
    backdrop-filter: blur(1.25rem);
  }

  .header-navigation__content > * {
    position: relative;
    z-index: 1;
  }

  .logo-header {
    display: none;
  }

  .nav-toggle,
  .header-action {
    height: 2rem;
  }

  .nav-toggle svg,
  .header-action svg {
    width: 2rem;
    height: 2rem;
  }

  .burger-icon {
    width: 1.5rem;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .header-action__label {
    display: none;
  }

  .scroll-down-sign {
    right: 1.25rem;
    bottom: 4.5rem;
    left: auto;
    transform: none;
  }

  .scroll-down-sign::before {
    left: 50%;
  }

  .drawer--menu .drawer-panel,
  .drawer--side .drawer-panel {
    width: 100vw;
  }

  .drawer--newsletter .drawer-panel {
    width: calc(100vw - 1rem);
    max-height: calc(100svh - 1rem);
    border-radius: 0.5rem;
  }

  .menu-shell {
    grid-template-rows: 1fr auto;
  }

  .menu-panel {
    width: 100%;
    padding: 1.5rem 1.75rem calc(var(--header-height) + 2rem);
    border-right: 0;
    transform: translateX(100%);
  }

  .menu-panel--root {
    transform: translateX(100%);
  }

  .menu-panel.is-current {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-panel.is-left {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
  }

  .menu-back {
    display: inline-flex;
  }

  .menu-info {
    display: none;
  }

  .menu-footer {
    padding: 1.75rem 1.75rem calc(var(--header-height) + 2rem);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media__frame--fade {
    display: none;
  }

  .newsletter-modal {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .newsletter-modal__media {
    min-height: 14rem;
  }

  .newsletter-modal__content {
    padding: 1.5rem 1.25rem 1.5rem;
  }

  .newsletter-modal__title {
    font-size: 1.25rem;
  }
}

@media (min-width: 48em) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-summary {
    position: sticky;
    bottom: 0;
    padding-bottom: 0.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), #fff 22%);
  }
}

@media (min-width: 77.5em) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 47.99em) {
  .catalog-intro,
  .catalog-state {
    font-size: 0.875rem;
  }

  .insights-shell__head {
    gap: 1.25rem;
  }

  .insights-range {
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .insights-range::-webkit-scrollbar {
    display: none;
  }

  .insights-range__button {
    white-space: nowrap;
  }

  .search-result-card,
  .cart-line {
    grid-template-columns: 4.5rem 1fr;
  }

  .product-sheet {
    padding-bottom: 6rem;
  }

  .product-sheet__qty {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    min-height: 72svh;
  }

  .page-hero__content {
    bottom: 2rem;
  }

  .page-chipbar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .page-chipbar::-webkit-scrollbar {
    display: none;
  }

  .page-chip {
    white-space: nowrap;
  }

  .page-section__head {
    align-items: start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media__frame--fade {
    animation: none;
  }
}

@keyframes heroDesktopFade {
  0%,
  18% {
    opacity: 0;
  }

  28%,
  62% {
    opacity: 1;
  }

  72%,
  100% {
    opacity: 0;
  }
}
