:root {
  --ink: #171915;
  --canvas: #f7f5f0;
  --surface: #ffffff;
  --stone: #e4e0d8;
  --stone-dark: #c8c3b9;
  --muted: #62675f;
  --forest: #315746;
  --forest-dark: #254238;
  --error: #9e2f2f;
  --focus: #1267d6;
  --page: min(1440px, calc(100% - 112px));
  --serif: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --sans: "Aptos", "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --header-height: 74px;
  --hero-fade-delay: 5s;
  --hero-logo-fade-duration: .7s;
  --header-brand-delay: calc(var(--hero-fade-delay) + var(--hero-logo-fade-duration));
  --hero-sequence-duration: 6.5s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: .005em;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

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

img,
svg {
  display: block;
}

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

[hidden] {
  display: none !important;
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--surface);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.announcement {
  position: relative;
  z-index: 60;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 56px;
  color: #f8f7f3;
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .045em;
  text-align: center;
}

.announcement p {
  margin: 0;
}

.icon-button {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
}

.announcement__close {
  position: absolute;
  top: 50%;
  right: 12px;
  min-width: 36px;
  min-height: 36px;
  transform: translateY(-50%);
  font-size: 19px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  margin-bottom: calc(-1 * var(--header-height));
  border: 0;
  background: transparent;
  pointer-events: none;
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
}

.header-brand {
  grid-column: 1;
  justify-self: start;
  width: 64px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.025);
  transform-origin: left center;
  filter: blur(2px);
  animation: header-brand-reveal var(--hero-logo-fade-duration) cubic-bezier(.75, 0, .75, .9) var(--header-brand-delay) both;
  pointer-events: auto;
}

.header-brand__logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(1px 0 0 rgba(255, 255, 255, .88))
    drop-shadow(-1px 0 0 rgba(255, 255, 255, .88))
    drop-shadow(0 1px 0 rgba(255, 255, 255, .88))
    drop-shadow(0 -1px 0 rgba(255, 255, 255, .88));
  transition: opacity 160ms ease;
}

.header-brand:hover .header-brand__logo {
  opacity: .82;
}

.wordmark {
  width: max-content;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 42px;
  flex: none;
  object-fit: contain;
  transition: opacity 160ms ease;
}

.wordmark:hover .brand-logo {
  opacity: .82;
}

.empty-state__logo {
  width: max-content;
  display: inline-flex;
  margin-bottom: 38px;
}

.primary-nav {
  grid-column: 2;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 2px;
  padding: 5px;
  overflow-x: auto;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, .52);
  box-shadow: 0 12px 34px rgba(23, 25, 21, .1), inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  pointer-events: auto;
  font-size: 13px;
  font-weight: 600;
}

.header-auth-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  pointer-events: auto;
}

.header-brand,
.header-auth-actions {
  --header-side-nudge: clamp(8px, calc(50vw - 744px), 520px);
  translate: 0 0;
  transition: translate 520ms cubic-bezier(.76, 0, .24, 1);
}

.site-header--shop-clear .header-brand {
  translate: calc(-1 * var(--header-side-nudge)) 0;
}

.site-header--shop-clear .header-auth-actions {
  translate: var(--header-side-nudge) 0;
}

.header-auth-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 16px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(23, 25, 21, .12);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, .46);
  box-shadow: 0 10px 26px rgba(23, 25, 21, .09);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  pointer-events: auto;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms ease;
}

.header-auth-button:hover {
  background-color: rgba(255, 255, 255, .62);
  transform: translateY(-1px);
}

.header-auth-button:active {
  transform: translateY(0);
}

.header-auth-button--identity {
  max-width: 200px;
  gap: 9px;
  padding: 4px 5px 4px 15px;
}

.header-account-name {
  min-width: 0;
  max-width: 132px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-account-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  box-shadow: 0 3px 10px rgba(23, 25, 21, .14);
}

.header-account-avatar__image,
.header-account-avatar__fallback {
  grid-area: 1 / 1;
}

.header-account-avatar__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.header-account-avatar__image[hidden],
.header-account-avatar__fallback[hidden] {
  display: none;
}

.header-account-avatar__fallback {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .04em;
  line-height: 1;
}

.primary-nav,
.header-auth-button {
  --header-sweep-delay: .55s;
  background-image: linear-gradient(
    105deg,
    transparent 42%,
    rgba(190, 11, 50, .24) 47%,
    rgba(255, 255, 255, .72) 50%,
    rgba(0, 39, 104, .26) 53%,
    transparent 58%
  );
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 300% 100%;
  animation: header-glass-sweep 8s cubic-bezier(.4, 0, .2, 1) var(--header-sweep-delay) infinite;
}

.header-auth-button:first-child {
  --header-sweep-delay: .82s;
}

.header-auth-button:nth-child(2) {
  --header-sweep-delay: 1.04s;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav a {
  min-height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding-inline: 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.primary-nav a,
.footer-column a,
.footer-column button {
  position: relative;
}

.primary-nav a::after,
.footer-column a::after,
.footer-column button::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.footer-column a:hover::after,
.footer-column button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav a::after {
  content: none;
}

.primary-nav a:hover {
  background-color: rgba(255, 255, 255, .5);
}

.primary-nav a:focus-visible {
  outline-offset: -3px;
  background-color: rgba(255, 255, 255, .66);
}

@keyframes header-glass-sweep {
  0% {
    background-position: 100% 0;
  }
  20%, 100% {
    background-position: 0 0;
  }
}

.hero {
  --hero-logo-delay: 1.15s;
  --hero-fill-delay: 3.55s;
  position: relative;
  min-height: min(calc(860px + var(--header-height)), calc(100svh - 38px + var(--header-height)));
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f3ea;
  isolation: isolate;
}

.hero__fashion-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.hero__fashion-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.025);
  animation: hero-fashion-reveal 1.3s cubic-bezier(.22, .61, .36, 1) var(--hero-fade-delay) forwards;
}

.hero__intro {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__brand-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(300px, 47vw, 680px);
  padding: 48px;
  transform: translate(-50%, -50%);
}

.hero__brand-mark {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  opacity: 0;
  transform: scale(.06);
  transform-origin: center;
  animation: hero-logo-emerge .85s cubic-bezier(.16, 1, .3, 1) var(--hero-logo-delay) both, hero-logo-fade var(--hero-logo-fade-duration) ease var(--hero-fade-delay) forwards;
}

.hero__brand-path {
  fill-opacity: 0;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  animation: hero-logo-outline 2.3s cubic-bezier(.45, 0, .2, 1) var(--hero-logo-delay) both, hero-logo-fill .75s ease var(--hero-fill-delay) forwards;
}

.hero__brand-path--blue {
  stroke: #002768;
  fill: #002768;
}

.hero__brand-path--red {
  stroke: #be0b32;
  fill: #be0b32;
}

@keyframes hero-logo-emerge {
  0% {
    opacity: 0;
    transform: scale(.06);
    filter: blur(8px);
  }
  72% {
    opacity: 1;
    transform: scale(.94);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes hero-logo-outline {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  12% { opacity: 1; }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes hero-logo-fill {
  0% { fill-opacity: 0; }
  100% { fill-opacity: 1; }
}

@keyframes hero-logo-fade {
  0%, 14% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.025);
    filter: blur(2px);
  }
}

@keyframes header-brand-reveal {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: scale(1.025);
    filter: blur(2px);
  }
  .01% {
    visibility: visible;
  }
  86%, 100% {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes hero-fashion-reveal {
  0%, 54% {
    opacity: 0;
    transform: scale(1.025);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, .72);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button--light {
  color: var(--ink);
  background: var(--surface);
}

.button--light:hover {
  color: var(--surface);
  border-color: var(--surface);
  background: transparent;
}

.button--dark {
  color: var(--surface);
  background: var(--ink);
}

.button--dark:hover:not(:disabled) {
  background: var(--forest);
}

.button--outline {
  border-color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  color: var(--surface);
  background: var(--ink);
}

.button--small {
  min-height: 42px;
  padding: 10px 18px;
}

.button--full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  color: #8d8e89;
  background: #dfddd7;
}

.text-link,
.text-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 3px;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
}

.text-link--light {
  color: var(--surface);
}

.trust-strip {
  border-bottom: 1px solid var(--stone);
  background: var(--surface);
}

.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.trust-strip li {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-left: 1px solid var(--stone);
  font-size: 12px;
}

.trust-strip li:last-child {
  border-right: 1px solid var(--stone);
}

.trust-strip li span {
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
}

.shop-section {
  padding-block: 112px 132px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 62px;
}

.section-heading h2,
.editorial h2,
.newsletter h2,
.policy-dialog h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.section-heading > p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
  border-top: 1px solid var(--stone-dark);
  border-bottom: 1px solid var(--stone);
}

.category-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-tab,
.toolbar-button {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  white-space: nowrap;
}

.category-tab:hover,
.category-tab.is-active {
  border-color: var(--stone-dark);
  background: var(--surface);
}

.catalog-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-control {
  min-width: 190px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 12px;
  border-bottom: 1px solid var(--stone-dark);
}

.search-control:focus-within {
  border-color: var(--ink);
}

.search-control svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.search-control input {
  width: 100%;
  padding: 7px 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.toolbar-button {
  border-radius: 2px;
}

.toolbar-button:hover,
.toolbar-button[aria-expanded="true"] {
  background: var(--surface);
}

.filter-count {
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-left: 4px;
  color: var(--surface);
  border-radius: 50%;
  background: var(--forest);
  font-size: 10px;
}

.sort-control select,
.select-box select {
  min-height: 42px;
  padding: 8px 34px 8px 12px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  font-size: 12px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr .75fr;
  gap: 52px;
  padding: 34px;
  border-bottom: 1px solid var(--stone);
  background: var(--surface);
}

.filter-panel fieldset {
  padding: 0;
  border: 0;
}

.filter-panel legend {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
}

.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.check-chip {
  position: relative;
}

.check-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.check-chip span {
  min-width: 44px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid var(--stone);
  font-size: 12px;
}

.check-chip input:checked + span {
  color: var(--surface);
  border-color: var(--ink);
  background: var(--ink);
}

.check-chip input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.check-grid--colour .check-chip span::before {
  width: 12px;
  height: 12px;
  margin-right: 7px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 50%;
  background: var(--swatch, #888);
  content: "";
}

.check-row {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  font-size: 12px;
}

.check-row input {
  width: 17px;
  height: 17px;
  accent-color: var(--forest);
}

.filter-panel__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--stone);
}

.catalog-meta {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-meta p {
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 16px;
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-card__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #eee9e0;
  text-align: left;
}

.product-card__image,
.cart-item__image {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/catalog-sprite.jpg");
  background-repeat: no-repeat;
  background-size: 300% 400%;
  transition: transform 420ms cubic-bezier(.2, .75, .25, 1);
}

[data-sprite="0"] { background-position: 0% 0%; }
[data-sprite="1"] { background-position: 50% 0%; }
[data-sprite="2"] { background-position: 100% 0%; }
[data-sprite="3"] { background-position: 0% 33.333%; }
[data-sprite="4"] { background-position: 50% 33.333%; }
[data-sprite="5"] { background-position: 100% 33.333%; }
[data-sprite="6"] { background-position: 0% 66.667%; }
[data-sprite="7"] { background-position: 50% 66.667%; }
[data-sprite="8"] { background-position: 100% 66.667%; }
[data-sprite="9"] { background-position: 0% 100%; }
[data-sprite="10"] { background-position: 50% 100%; }
[data-sprite="11"] { background-position: 100% 100%; }

.product-card__visual:hover .product-card__image,
.product-card__visual:focus-visible .product-card__image {
  transform: scale(1.035);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 8px;
  background: rgba(255, 255, 255, .92);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wishlist-button {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
}

.wishlist-button svg {
  width: 19px;
  fill: transparent;
  stroke: var(--ink);
  stroke-width: 1.6;
}

.wishlist-button[aria-pressed="true"] svg {
  fill: var(--ink);
}

.product-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 16px;
  padding-top: 13px;
}

.product-card__name {
  overflow: hidden;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card__price {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.product-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.product-card__view {
  grid-column: 2;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
}

.empty-state,
.noscript-note {
  padding: 70px 24px;
  border: 1px solid var(--stone);
  background: var(--surface);
  text-align: center;
}

.empty-state h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.empty-state p:not(.eyebrow) {
  color: var(--muted);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  background: #d9d3c8;
}

.editorial__image {
  min-height: 680px;
  background:
    linear-gradient(rgba(30, 35, 30, .06), rgba(30, 35, 30, .06)),
    url("../assets/images/catalog-sprite.jpg") 0% 66.667% / 300% 400% no-repeat;
}

.editorial__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 126px);
  background: #e9e5dc;
}

.editorial__copy h2 {
  margin-bottom: 32px;
}

.editorial__copy > p:not(.eyebrow) {
  max-width: 520px;
  color: #4e534c;
}

.editorial__copy .text-link {
  width: max-content;
  margin-top: 26px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 70px;
  padding-block: 110px;
}

.newsletter h2 {
  max-width: 560px;
}

.newsletter__form > label {
  display: block;
  margin-bottom: 11px;
  font-size: 12px;
  font-weight: 700;
}

.newsletter__field {
  display: flex;
  border-bottom: 1px solid var(--ink);
}

.newsletter__field input {
  min-width: 0;
  flex: 1;
  padding: 14px 2px;
  border: 0;
  outline: 0;
  background: transparent;
}

.newsletter__field button {
  min-width: 88px;
  background: transparent;
  font-weight: 650;
}

.form-note,
.form-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.form-status:not(:empty) {
  color: var(--forest);
}

.site-footer {
  color: #f3f2ed;
  background: var(--ink);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 54px;
  padding-block: 78px 90px;
}

.brand-logo--footer {
  height: 44px;
}

.footer-brand p {
  max-width: 250px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

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

.footer-column h2 {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  padding: 0;
  color: rgba(255, 255, 255, .82);
  background: transparent;
  font-size: 12px;
}

.site-footer__bottom {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .54);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom p:nth-child(2) {
  text-align: center;
}

.site-footer__status {
  text-align: right;
}

.site-footer__status span {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: #8cb29d;
}

dialog {
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(12, 14, 12, .58);
  backdrop-filter: blur(3px);
}

.policy-dialog,
.cart-drawer {
  padding: 0;
  border: 0;
  background: var(--canvas);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .22);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 245, 240, .92);
  font-size: 25px;
  font-weight: 300;
}

.product-option {
  padding: 20px 0;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--stone);
}

.product-option legend {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 12px;
  font-weight: 700;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-choice {
  position: relative;
}

.option-choice input {
  position: absolute;
  opacity: 0;
}

.option-choice span {
  min-width: 46px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--stone-dark);
  background: var(--surface);
  font-size: 12px;
}

.option-choice input:checked + span {
  color: var(--surface);
  border-color: var(--ink);
  background: var(--ink);
}

.option-choice input:disabled + span {
  color: #aaa9a4;
  text-decoration: line-through;
  background: #ebe9e4;
}

.option-choice input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.option-dot {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 50%;
  background: var(--option-colour);
}

.detail-accordion {
  margin-top: 25px;
  border-top: 1px solid var(--stone);
}

.detail-accordion details {
  padding-block: 14px;
  border-bottom: 1px solid var(--stone);
}

.detail-accordion summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.detail-accordion p {
  margin: 10px 0 2px;
  color: var(--muted);
  font-size: 12px;
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(470px, 100%);
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
}

.drawer__header {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px 19px;
  border-bottom: 1px solid var(--stone);
}

.drawer__header .eyebrow {
  margin-bottom: 5px;
}

.drawer__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.dialog-close--inline {
  position: static;
  flex: 0 0 auto;
}

.delivery-progress {
  padding: 18px 30px;
  border-bottom: 1px solid var(--stone);
}

.delivery-progress p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
}

.progress-track {
  height: 3px;
  overflow: hidden;
  background: var(--stone);
}

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

progress.progress-track {
  width: 100%;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
}

progress.progress-track::-webkit-progress-bar {
  background: var(--stone);
}

progress.progress-track::-webkit-progress-value {
  background: var(--forest);
  transition: width 240ms ease;
}

progress.progress-track::-moz-progress-bar {
  background: var(--forest);
}

.cart-items {
  max-height: calc(100dvh - 370px);
  overflow-y: auto;
  padding-inline: 30px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--stone);
}

.cart-item__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee9e0;
}

.cart-item__name {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 650;
}

.cart-item__meta,
.cart-item__price {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 11px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--stone-dark);
}

.quantity-control button {
  width: 36px;
  height: 34px;
  background: transparent;
}

.quantity-control span {
  min-width: 24px;
  text-align: center;
  font-size: 11px;
}

.remove-item {
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
}

.cart-empty {
  padding: 80px 30px;
  text-align: center;
}

.cart-empty h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.cart-empty p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
}

.drawer__footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 30px 26px;
  border-top: 1px solid var(--stone);
  background: var(--canvas);
}

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

.drawer__footer > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 10px;
}

.drawer__footer .checkout-note {
  margin: 10px 0 0;
  color: var(--error);
}

.policy-dialog {
  width: min(620px, calc(100% - 36px));
  max-height: calc(100dvh - 36px);
  padding: 64px 62px 55px;
}

.policy-dialog h2 {
  margin-bottom: 26px;
  font-size: clamp(40px, 5vw, 60px);
}

.policy-dialog [data-policy-content] {
  color: var(--muted);
}

.policy-dialog [data-policy-content] h3 {
  margin: 25px 0 7px;
  color: var(--ink);
  font-size: 13px;
}

.policy-dialog [data-policy-content] p,
.policy-dialog [data-policy-content] li {
  font-size: 13px;
}

.account-dialog {
  width: min(520px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 24px;
  background: rgba(247, 245, 240, .96);
  box-shadow: 0 28px 100px rgba(18, 21, 18, .24);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
}

.account-dialog__panel {
  max-height: calc(100dvh - 32px);
  padding: 58px 52px 46px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.account-dialog__header {
  padding-right: 34px;
  margin-bottom: 26px;
}

.account-dialog__header .eyebrow {
  margin-bottom: 9px;
}

.account-dialog__header h2 {
  margin-bottom: 12px;
  font-size: clamp(38px, 6vw, 54px);
}

.account-dialog__header > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.account-form {
  display: grid;
  gap: 17px;
}

.account-form--compact {
  margin-block: 24px 18px;
}

.account-form h3 {
  margin: 0 0 2px;
  font-size: 15px;
}

.account-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-field {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .025em;
}

.account-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--stone-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  font-size: 16px;
  outline: 0;
}

.account-field input:hover {
  border-color: #a9a398;
}

.account-field input:focus-visible {
  border-color: var(--focus);
  outline: 3px solid color-mix(in srgb, var(--focus) 24%, transparent);
  outline-offset: 1px;
}

.account-field input[aria-invalid="true"] {
  border-color: var(--error);
}

.account-field-note {
  margin: -5px 0 2px;
  color: var(--muted);
  font-size: 10px;
}

.account-status,
.account-page-status {
  padding: 12px 14px;
  margin-bottom: 20px;
  border-left: 3px solid var(--forest);
  background: rgba(49, 87, 70, .08);
  color: var(--forest-dark);
  font-size: 12px;
}

.account-status[data-status-kind="error"],
.account-page-status[data-status-kind="error"] {
  border-left-color: var(--error);
  background: rgba(158, 47, 47, .08);
  color: var(--error);
}

.account-status[data-status-kind="success"],
.account-page-status[data-status-kind="success"] {
  border-left-color: var(--forest);
}

.account-secondary-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 2px;
}

.account-secondary-actions .text-button,
.account-message > .text-button {
  min-height: 44px;
  text-align: left;
}

.account-message > p {
  color: var(--muted);
  font-size: 13px;
}

.account-profile-heading {
  padding-bottom: 21px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--stone);
}

.account-profile-heading p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.account-profile-heading strong {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.account-divider {
  height: 1px;
  margin-block: 29px;
  background: var(--stone);
}

.account-logout {
  min-height: 44px;
  padding: 0;
  margin-top: 26px;
  color: var(--error);
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.account-form[aria-busy="true"] {
  opacity: .68;
}

.account-page {
  min-height: 100svh;
  background: #f7f3ea;
}

.account-page__main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.account-card {
  width: min(500px, 100%);
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 24px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 28px 90px rgba(23, 25, 21, .1);
}

.account-card__brand {
  width: 72px;
  display: block;
  margin-bottom: 50px;
}

.account-card__brand img {
  width: 100%;
  height: auto;
}

.account-card h1 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 58px);
  font-weight: 400;
  line-height: .98;
}

.account-card .account-page-status:empty {
  display: none;
}

.account-card__return {
  margin: 28px 0 0;
  text-align: center;
}

/* Dedicated customer account portal */
.account-portal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 39, 104, .055), transparent 28rem),
    radial-gradient(circle at 94% 10%, rgba(190, 11, 50, .045), transparent 30rem),
    #f5f2eb;
}

.account-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - 1560px) / 2));
  border-bottom: 1px solid rgba(23, 25, 21, .09);
  background: rgba(247, 245, 240, .88);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.account-site-header__brand {
  width: 58px;
  display: block;
}

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

.account-site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-site-header__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--stone-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 650;
}

.account-site-header__link:hover {
  background: var(--surface);
}

.account-portal {
  width: min(1560px, calc(100% - 48px));
  min-height: calc(100svh - 147px);
  margin-inline: auto;
}

.account-loading {
  min-height: calc(100svh - 147px);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-loading__mark {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, #002768, #be0b32);
  transform-origin: left center;
  animation: account-loading-progress 1.1s ease-in-out infinite alternate;
}

@keyframes account-loading-progress {
  from { transform: scaleX(.18); opacity: .45; }
  to { transform: scaleX(1); opacity: 1; }
}

.account-auth {
  min-height: calc(100svh - 147px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
  align-items: stretch;
  padding-block: 34px;
}

.account-auth__story {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(44px, 6vw, 88px);
  overflow: hidden;
  color: #f7f5f0;
  border-radius: 28px 0 0 28px;
  background:
    linear-gradient(140deg, rgba(190, 11, 50, .2), transparent 34%),
    linear-gradient(320deg, rgba(20, 63, 126, .42), transparent 46%),
    #151916;
}

.account-auth__story .eyebrow {
  color: rgba(255, 255, 255, .62);
}

.account-auth__story h1 {
  max-width: 750px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
}

.account-auth__story > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
}

.account-auth__assurance {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.account-auth__assurance div {
  display: grid;
  gap: 5px;
}

.account-auth__assurance dt {
  font-size: 12px;
  font-weight: 700;
}

.account-auth__assurance dd {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.account-auth__panel {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5.5vw, 88px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-left: 0;
  border-radius: 0 28px 28px 0;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 30px 90px rgba(23, 25, 21, .08);
}

.account-auth__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  margin-bottom: 45px;
  border: 1px solid var(--stone);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}

.account-auth__tabs button {
  min-height: 44px;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 650;
}

.account-auth__tabs button[aria-selected="true"] {
  color: var(--surface);
  background: var(--ink);
}

.account-section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.account-section-heading .eyebrow {
  margin-bottom: 11px;
}

.account-section-heading h1,
.account-section-heading h2,
.account-panel h2,
.account-empty h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

.account-section-heading h1 {
  margin-bottom: 15px;
  font-size: clamp(50px, 6vw, 82px);
  line-height: .95;
}

.account-section-heading h2 {
  margin-bottom: 15px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
}

.account-section-heading > p:last-child,
.account-section-heading > div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.account-auth__quiet-action {
  width: max-content;
  min-height: 42px;
  padding: 0;
  background: transparent;
  text-align: left;
}

.account-auth__message > h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
}

.account-auth__message > p:not(.eyebrow) {
  color: var(--muted);
}

.account-dashboard {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  padding-block: 54px 90px;
}

.account-sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 25px;
  border: 1px solid rgba(23, 25, 21, .09);
  border-radius: 20px;
  background: rgba(255, 255, 255, .52);
}

.account-sidebar__identity {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--stone);
}

.account-avatar {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  color: var(--surface);
  border-radius: 50%;
  background: linear-gradient(135deg, #002768, #be0b32);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .05em;
}

.account-avatar img,
.account-profile-photo__preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-avatar > span,
.account-profile-photo__preview > span {
  position: relative;
  z-index: 1;
}

.account-sidebar__identity p {
  margin: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-sidebar__identity div > span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-navigation {
  display: grid;
  gap: 3px;
  padding-block: 21px;
}

.account-navigation button {
  min-height: 43px;
  padding: 0 13px;
  border-radius: 9px;
  background: transparent;
  font-size: 12px;
  font-weight: 580;
  text-align: left;
}

.account-navigation button:hover,
.account-navigation button[aria-current="page"] {
  background: rgba(23, 25, 21, .065);
}

.account-navigation button[aria-current="page"] {
  font-weight: 730;
}

.account-sidebar__logout {
  min-height: 42px;
  padding: 0 13px;
  color: var(--error);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.account-dashboard__content {
  min-width: 0;
}

.account-status--dashboard {
  position: sticky;
  top: 92px;
  z-index: 20;
  margin-bottom: 28px;
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(23, 25, 21, .08);
}

.account-section-heading--wide,
.account-section-heading--action {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
}

.account-section-heading--wide > p {
  max-width: 390px;
  padding-bottom: 7px;
}

.account-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 42px;
}

.account-metric {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(23, 25, 21, .09);
  border-radius: 16px;
  background: rgba(255, 255, 255, .56);
}

.account-metric > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-metric strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.account-metric small {
  color: var(--muted);
  font-size: 10px;
}

.account-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.account-panel,
.account-address-card,
.account-empty {
  border: 1px solid rgba(23, 25, 21, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .58);
}

.account-panel {
  padding: clamp(28px, 3.5vw, 46px);
}

.account-panel--feature {
  color: var(--surface);
  background: #1b211d;
}

.account-panel--feature .eyebrow,
.account-panel--feature p {
  color: rgba(255, 255, 255, .62);
}

.account-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1;
}

.account-panel > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 13px;
}

.account-panel--feature > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .62);
}

.account-panel .text-link {
  min-height: 44px;
  padding: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.account-panel--form {
  max-width: 820px;
}

.account-profile-photo {
  max-width: 820px;
  display: grid;
  grid-template-columns: clamp(116px, 13vw, 148px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 4vw, 48px);
  margin-bottom: 16px;
}

.account-profile-photo__preview {
  position: relative;
  width: 100%;
  max-width: 148px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--surface);
  border: 1px solid rgba(23, 25, 21, .12);
  border-radius: 50%;
  background: linear-gradient(135deg, #002768, #be0b32);
  font-size: 28px;
  font-weight: 750;
  letter-spacing: .05em;
  box-shadow: 0 18px 42px rgba(23, 25, 21, .12);
}

.account-profile-photo__content {
  min-width: 0;
}

.account-profile-photo__content .account-panel__heading {
  margin-bottom: 20px;
}

.account-avatar-form {
  gap: 13px;
}

.account-avatar-field input[type="file"] {
  min-height: 56px;
  padding: 5px 6px;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
}

.account-avatar-field input[type="file"]::file-selector-button {
  min-height: 44px;
  padding: 9px 15px;
  margin-right: 12px;
  color: var(--surface);
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  font: 650 12px/1 var(--sans);
  cursor: pointer;
}

.account-avatar-field input[type="file"]:hover::file-selector-button {
  background: var(--forest);
}

.account-profile-photo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-avatar-status {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.account-avatar-status[data-status-kind="success"] {
  color: var(--forest);
}

.account-avatar-status[data-status-kind="error"] {
  color: var(--error);
}

.account-panel__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 23px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--stone);
}

.account-panel__heading h2 {
  margin: 0;
  font-size: 30px;
}

.account-panel__heading .eyebrow {
  margin-bottom: 7px;
}

.account-panel__heading > span {
  color: var(--muted);
  font-size: 10px;
}

.account-field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 40px 12px 14px;
  border: 1px solid var(--stone-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  font-size: 16px;
  outline: 0;
}

.account-field input[readonly] {
  color: var(--muted);
  background: rgba(228, 224, 216, .42);
  cursor: not-allowed;
}

.account-field span small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.account-choice {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding: 17px;
  border: 1px solid var(--stone);
  border-radius: 12px;
  background: rgba(255, 255, 255, .52);
  cursor: pointer;
}

.account-choice input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.account-choice span {
  display: grid;
  gap: 4px;
}

.account-choice strong {
  font-size: 12px;
}

.account-choice small {
  color: var(--muted);
  font-size: 10px;
}

.account-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.account-address-card {
  padding: 25px;
}

.account-address-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.account-address-card h2 {
  margin: 0;
  font-size: 15px;
}

.account-address-card p {
  margin-block: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.account-address-card__actions {
  display: flex;
  gap: 20px;
}

.text-button--danger {
  color: var(--error);
}

.account-badge {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding-inline: 10px;
  color: var(--forest-dark);
  border-radius: 999px;
  background: rgba(49, 87, 70, .09);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.account-empty {
  min-height: 330px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 44px;
  text-align: center;
}

.account-empty__number {
  margin-bottom: 25px;
  color: var(--stone-dark);
  font-family: var(--serif);
  font-size: 74px;
}

.account-empty h2 {
  margin-bottom: 12px;
  font-size: 36px;
}

.account-empty p {
  max-width: 530px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 13px;
}

.account-card-grid--security {
  align-items: start;
  margin-bottom: 16px;
}

.account-session-list {
  display: grid;
}

.account-session {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 17px;
  border-bottom: 1px solid var(--stone);
}

.account-session:last-child {
  border-bottom: 0;
}

.account-session > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.account-session strong {
  font-size: 12px;
}

.account-session div span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 9px;
}

.account-panel--activity {
  max-width: none;
}

.account-activity-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-activity-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0 15px 22px;
  border-bottom: 1px solid var(--stone);
  position: relative;
}

.account-activity-list li::before {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
  content: "";
}

.account-activity-list li:last-child {
  border-bottom: 0;
}

.account-activity-list li div {
  display: grid;
  gap: 3px;
}

.account-activity-list strong {
  font-size: 11px;
}

.account-activity-list span {
  color: var(--muted);
  font-size: 9px;
}

.account-saved-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-saved-item {
  overflow: hidden;
  border: 1px solid rgba(23, 25, 21, .09);
  border-radius: 16px;
  background: rgba(255, 255, 255, .58);
}

.account-saved-item__visual {
  aspect-ratio: 4 / 5;
  background-color: #e9e5dc;
  background-image: url("../assets/images/catalog-sprite.jpg");
  background-repeat: no-repeat;
  background-size: 300% 400%;
}

.account-saved-item > div:last-child {
  padding: 20px;
}

.account-saved-item span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.account-saved-item h2 {
  margin: 6px 0 3px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.account-saved-item p {
  color: var(--muted);
  font-size: 11px;
}

.account-card-grid--privacy {
  align-items: start;
}

.account-panel--danger {
  border-color: rgba(158, 47, 47, .22);
  background: rgba(158, 47, 47, .035);
}

.account-danger-button {
  min-height: 48px;
  padding-inline: 20px;
  color: var(--surface);
  border-radius: 6px;
  background: var(--error);
  font-size: 11px;
  font-weight: 750;
}

.account-form button:disabled,
.account-site-header button:disabled,
.account-panel button:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.account-site-footer {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1560px) / 2));
  color: var(--muted);
  border-top: 1px solid rgba(23, 25, 21, .09);
  font-size: 10px;
  letter-spacing: .05em;
}

.account-site-footer p {
  margin: 0;
}

/* Team */
.team-page {
  min-height: 100svh;
  color: var(--ink);
  background: var(--surface);
}

.team-site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(24px, calc((100vw - 1560px) / 2));
  border-bottom: 1px solid rgba(23, 25, 21, .09);
  background: rgba(244, 241, 235, .94);
}

.team-site-header__brand {
  width: 64px;
  height: 42px;
  display: grid;
  place-items: center;
}

.team-site-header__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-site-header__navigation {
  display: flex;
  align-items: center;
  gap: 7px;
}

.team-site-header__navigation a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(23, 25, 21, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 700;
}

.team-main {
  width: min(1480px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(76px, 9vw, 138px) 0 clamp(86px, 10vw, 152px);
}

.team-introduction {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
  align-items: end;
  gap: 48px;
  padding-bottom: clamp(46px, 6vw, 76px);
  border-bottom: 1px solid rgba(23, 25, 21, .14);
}

.team-introduction .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.team-introduction h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 8.7vw, 138px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .86;
}

.team-introduction > p:last-child {
  max-width: 340px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 66px);
  padding-top: clamp(54px, 7vw, 96px);
}

.team-member {
  min-width: 0;
}

.team-member__portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  background: #e7e3da;
}

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

.team-member__portrait--kashif img {
  object-position: 61% 46%;
}

.team-member__portrait--farzana img {
  object-position: 50% 25%;
}

.team-member__identity {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(23, 25, 21, .18);
}

.team-member__identity p,
.team-member__identity h2 {
  margin: 0;
}

.team-member__identity p {
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.team-member__identity h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.team-site-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1480px) / 2));
  color: var(--muted);
  border-top: 1px solid rgba(23, 25, 21, .09);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.team-site-footer p {
  margin: 0;
}

/* Product pages */
.product-page {
  min-height: 100svh;
  background: #f4f1eb;
}

.product-announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 24px;
  color: rgba(255, 255, 255, .88);
  background: var(--ink);
  font-size: 11px;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.product-announcement p {
  margin: 0;
}

.product-site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  min-height: 76px;
  border-bottom: 1px solid rgba(23, 25, 21, .1);
  background: rgba(244, 241, 235, .9);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.product-site-header__inner {
  width: min(1560px, calc(100% - 48px));
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-inline: auto;
}

.product-site-header__brand {
  width: 58px;
  height: 40px;
  display: grid;
  place-items: center;
}

.product-site-header__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(1px 0 0 rgba(255, 255, 255, .84)) drop-shadow(-1px 0 0 rgba(255, 255, 255, .84));
}

.product-site-header__navigation {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
  box-shadow: 0 12px 34px rgba(23, 25, 21, .08), inset 0 1px 0 rgba(255, 255, 255, .82);
}

.product-site-header__navigation a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
}

.product-site-header__navigation a:hover {
  background: rgba(255, 255, 255, .7);
}

.product-site-header__actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
}

.product-site-header__actions .header-auth-button {
  min-height: 44px;
  background: rgba(255, 255, 255, .58);
}

.product-bag-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(23, 25, 21, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 10px 26px rgba(23, 25, 21, .07);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.product-bag-button span {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--ink);
  font-size: 10px;
}

.product-main {
  overflow: clip;
}

.product-breadcrumb {
  padding-block: 24px;
}

.product-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  list-style: none;
}

.product-breadcrumb li:not(:last-child)::after {
  margin-left: 7px;
  content: "/";
}

.product-breadcrumb a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.product-breadcrumb a:hover {
  text-decoration-color: currentColor;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(390px, .8fr);
  align-items: start;
  gap: clamp(46px, 6vw, 96px);
  padding-bottom: clamp(90px, 10vw, 154px);
}

.product-media {
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.product-media__frame {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e9e4da;
}

.product-gallery__sheet,
.product-gallery__thumb-crop img {
  position: absolute;
  width: 200%;
  height: 200%;
  max-width: none;
  object-fit: fill;
}

.product-gallery__sheet[data-gallery-position="0"],
.product-gallery__thumb-crop[data-gallery-position="0"] img {
  top: 0;
  left: 0;
}

.product-gallery__sheet[data-gallery-position="1"],
.product-gallery__thumb-crop[data-gallery-position="1"] img {
  top: 0;
  left: -100%;
}

.product-gallery__sheet[data-gallery-position="2"],
.product-gallery__thumb-crop[data-gallery-position="2"] img {
  top: -100%;
  left: 0;
}

.product-gallery__sheet[data-gallery-position="3"],
.product-gallery__thumb-crop[data-gallery-position="3"] img {
  top: -100%;
  left: -100%;
}

.product-gallery__navigation {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 3;
  display: flex;
  gap: 7px;
}

.product-gallery__navigation button {
  width: 46px;
  min-height: 46px;
  padding: 0;
  color: var(--ink);
  border: 1px solid rgba(23, 25, 21, .18);
  border-radius: 999px;
  background: rgba(250, 248, 243, .82);
  box-shadow: 0 10px 24px rgba(23, 25, 21, .1);
  backdrop-filter: blur(15px);
  cursor: pointer;
}

.product-gallery__navigation button:hover {
  background: rgba(255, 255, 255, .96);
}

.product-gallery__thumbs {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: 1fr;
  gap: 10px;
}

.product-gallery__thumb {
  min-width: 0;
  min-height: 44px;
  padding: 5px;
  color: var(--muted);
  border: 1px solid rgba(23, 25, 21, .14);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.product-gallery__thumb-crop {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e9e4da;
}

.product-gallery__thumb > span:last-child {
  display: block;
  padding: 8px 4px 3px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-gallery__thumb[aria-pressed="true"] {
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.product-gallery__thumb:focus-visible,
.product-gallery__navigation button:focus-visible {
  outline: 3px solid #0d3a73;
  outline-offset: 3px;
}

.product-media__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-media__caption {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid rgba(23, 25, 21, .13);
  font-size: 11px;
}

.product-media__caption p {
  max-width: 420px;
  margin: 0;
}

.product-media__caption p:first-child {
  color: var(--ink);
}

.product-media__caption strong,
.product-media__caption span {
  display: block;
}

.product-media__caption strong {
  margin-bottom: 4px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-media__caption span {
  color: var(--muted);
}

.product-summary__sticky {
  position: sticky;
  top: 104px;
}

.product-summary .eyebrow {
  margin-bottom: 22px;
}

.product-summary h1 {
  margin: 0 0 25px;
  font-size: clamp(48px, 5vw, 78px);
  line-height: .92;
}

.product-summary__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--stone-dark);
}

.product-summary__price,
.product-status {
  margin: 0;
}

.product-summary__price {
  font-size: 18px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
}

.product-status--coming-soon span {
  background: var(--stone-dark);
}

.product-summary__description {
  margin: 24px 0 10px;
  color: #454942;
  font-size: 15px;
  line-height: 1.75;
}

.product-purchase {
  margin-top: 12px;
}

.product-purchase .product-option {
  padding-block: 22px;
}

.product-purchase .product-option legend {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-purchase .option-choice span {
  min-height: 46px;
  border-color: #c7c0b5;
  background: rgba(255, 255, 255, .64);
}

.option-list--sizes {
  display: grid;
  grid-template-columns: repeat(6, minmax(48px, 1fr));
}

.option-choice--size span {
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 0;
}

.option-choice--size strong {
  font-size: 12px;
}

.option-choice--size small {
  font-size: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-colour--black { --option-colour: #171717; }
.product-colour--ecru { --option-colour: #ded8ca; }
.product-colour--stone { --option-colour: #9d998e; }
.product-colour--navy { --option-colour: #252d3b; }
.product-colour--olive { --option-colour: #656553; }
.product-colour--white { --option-colour: #f2f1ec; }
.product-colour--oxblood { --option-colour: #5c272a; }
.product-colour--grey { --option-colour: #9a9a96; }
.product-colour--indigo { --option-colour: #263543; }
.product-colour--charcoal { --option-colour: #3e3f3d; }
.product-colour--oat { --option-colour: #c5bdac; }
.product-colour--sky { --option-colour: #aebbc4; }

.product-size-link {
  display: inline-block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-purchase__quantity {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-quantity {
  display: inline-grid;
  grid-template-columns: 42px 34px 42px;
  align-items: center;
  border: 1px solid var(--stone-dark);
  background: rgba(255, 255, 255, .64);
}

.product-quantity button {
  min-height: 40px;
  background: transparent;
  font-size: 18px;
}

.product-quantity output {
  text-align: center;
  font-size: 12px;
}

.product-selection-status {
  min-height: 25px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.product-selection-status[data-status-kind="error"] {
  color: var(--error);
  font-weight: 650;
}

.product-purchase__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.product-purchase__actions .button {
  min-height: 54px;
}

.product-save {
  min-width: 132px;
  gap: 8px;
}

.product-save > span:first-child {
  font-size: 20px;
  line-height: 1;
}

.product-save[aria-pressed="true"] {
  color: var(--surface);
  border-color: var(--ink);
  background: var(--ink);
}

.product-preview-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  margin-top: 14px;
  border-left: 3px solid var(--forest);
  background: rgba(49, 87, 70, .07);
}

.product-preview-notice strong {
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-preview-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.product-reference {
  margin: 24px 0 0;
  border-top: 1px solid var(--stone);
}

.product-reference div {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--stone);
  font-size: 11px;
}

.product-reference dt {
  color: var(--muted);
}

.product-reference dd {
  margin: 0;
  font-weight: 650;
}

.product-information {
  padding-block: clamp(84px, 10vw, 150px);
  border-top: 1px solid rgba(23, 25, 21, .13);
}

.product-information__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: end;
  gap: 48px;
  padding-bottom: clamp(48px, 6vw, 78px);
}

.product-information__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.product-information__heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7vw, 102px);
  line-height: .9;
}

.product-information__heading > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--stone-dark);
  border-left: 1px solid var(--stone-dark);
}

.product-spec-card {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--stone-dark);
  border-bottom: 1px solid var(--stone-dark);
}

.product-spec-card__number {
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.product-spec-card h3 {
  margin-bottom: 20px;
  font-size: 23px;
}

.product-spec-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-size-guide {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(480px, 1.3fr);
  gap: clamp(46px, 8vw, 126px);
  padding-block: clamp(84px, 10vw, 148px);
  border-bottom: 1px solid var(--stone-dark);
}

.product-size-guide__copy h2 {
  margin-bottom: 26px;
  font-size: clamp(40px, 5vw, 72px);
}

.product-size-guide__copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.product-size-table-wrap {
  overflow-x: auto;
}

.product-size-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, .42);
  font-size: 12px;
}

.product-size-table caption {
  padding-bottom: 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-size-table th,
.product-size-table td {
  padding: 16px 18px;
  border: 1px solid var(--stone-dark);
  text-align: left;
}

.product-size-table thead th {
  background: rgba(23, 25, 21, .05);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-size-table tbody th {
  font-weight: 700;
}

.product-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding-top: clamp(84px, 10vw, 142px);
  background: var(--stone-dark);
}

.product-service-grid article {
  min-height: 380px;
  padding: clamp(36px, 5vw, 72px);
  background: #ece8df;
}

.product-service-grid article:last-child {
  background: #dfd9ce;
}

.product-service-grid h2 {
  max-width: 560px;
  margin-bottom: 25px;
  font-size: clamp(38px, 4.5vw, 66px);
}

.product-service-grid article > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  line-height: 1.75;
}

.product-service-grid .text-link {
  margin-top: 16px;
}

.product-recommendations {
  padding-block: clamp(86px, 10vw, 150px);
}

.product-recommendations > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 42px;
}

.product-recommendations h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
}

.product-grid--related {
  gap: 44px 16px;
}

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

.product-fatal {
  min-height: calc(100svh - 110px);
  display: grid;
  place-content: center;
  justify-items: start;
}

.product-fatal h1 {
  max-width: 860px;
  margin-bottom: 30px;
  font-size: clamp(48px, 8vw, 100px);
}

/* Modern uppercase typography */
#main-content :is(h1, h2, h3),
.product-main :is(h1, h2, h3),
.account-portal :is(h1, h2, h3),
.account-card :is(h1, h2, h3),
.team-main :is(h1, h2, h3),
.empty-state--page :is(h1, h2, h3),
.policy-dialog :is(h1, h2, h3),
.cart-drawer :is(h1, h2, h3),
.account-dialog :is(h1, h2, h3),
.site-footer h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
}

button,
.button,
.text-link,
.header-auth-button,
nav a,
.footer-column a,
.team-site-footer a,
.account-site-footer a {
  font-family: var(--sans);
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.eyebrow,
.filter-panel legend,
.newsletter__form > label,
.account-field > span:first-child,
.account-choice strong {
  font-family: var(--sans);
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 12px;
}

.product-card__name,
.cart-item__name,
.account-saved-item h2 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.footer-column h2,
.team-member__identity p {
  font-size: 12px;
}

.footer-column a,
.footer-column button,
.account-navigation button {
  font-size: 13px;
}

.site-footer__bottom,
.team-site-footer,
.account-site-footer,
.account-field-note,
.account-panel__heading > span,
.account-metric > span,
.account-metric small,
.account-choice small,
.account-badge,
.account-session div span,
.account-activity-list span,
.account-saved-item span {
  font-size: 11px;
}

.account-field,
.account-session strong,
.account-activity-list strong,
.account-saved-item p {
  font-size: 12px;
}

.account-status,
.account-page-status {
  font-size: 13px;
  line-height: 1.55;
}

.team-introduction h1 {
  font-size: clamp(56px, 7.2vw, 112px);
  font-weight: 600;
  letter-spacing: .025em;
  line-height: .9;
}

.team-member__identity h2 {
  font-size: clamp(32px, 2.7vw, 48px);
  font-weight: 600;
  letter-spacing: .035em;
}

.team-introduction > p:last-child {
  line-height: 1.7;
}

.empty-state--page {
  min-height: 100svh;
  display: grid;
  place-content: center;
}

.empty-state--page h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 82px);
}

@media (max-width: 1100px) {
  .product-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: 42px;
  }

  .product-site-header__navigation {
    display: none;
  }

  .product-site-header__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .product-site-header__actions {
    grid-column: 2;
  }

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

  .product-size-guide {
    grid-template-columns: minmax(240px, .7fr) minmax(420px, 1.3fr);
    gap: 54px;
  }

  .account-auth {
    grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  }

  .account-auth__story {
    padding: 46px;
  }

  .account-auth__story h1 {
    font-size: 67px;
  }

  .account-dashboard {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
  }

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

  .account-card-grid--security,
  .account-card-grid--privacy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .product-announcement {
    min-height: 38px;
    justify-items: start;
    padding-inline: 16px;
    text-align: left;
  }

  .product-site-header,
  .product-site-header__inner {
    min-height: 68px;
  }

  .product-site-header__inner {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .product-site-header__brand {
    width: 44px;
    height: 34px;
  }

  .product-site-header__actions {
    gap: 5px;
  }

  .product-site-header__actions .header-auth-button,
  .product-bag-button {
    min-height: 42px;
    padding-inline: 11px;
    font-size: 10px;
  }

  .product-site-header__actions .header-auth-button--identity {
    max-width: 120px;
    padding: 4px 4px 4px 9px;
  }

  .product-breadcrumb {
    padding-block: 18px;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-bottom: 90px;
  }

  .product-media {
    display: block;
  }

  .product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 84px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-top: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .product-gallery__thumb {
    scroll-snap-align: start;
  }

  .product-summary__sticky {
    position: static;
  }

  .product-summary h1 {
    font-size: clamp(44px, 12vw, 68px);
  }

  .product-summary__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-information__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-information__heading .eyebrow {
    margin-bottom: 0;
  }

  .product-size-guide {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .product-service-grid article {
    min-height: 0;
  }

  .product-recommendations > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .account-site-header__brand {
    width: 44px;
  }

  .account-portal {
    width: min(100% - 24px, 680px);
  }

  .account-auth {
    display: block;
    padding-block: 16px 32px;
  }

  .account-auth__story {
    min-height: 370px;
    padding: 35px 25px;
    border-radius: 20px 20px 0 0;
  }

  .account-auth__story h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .account-auth__story > p:not(.eyebrow) {
    margin-bottom: 28px;
  }

  .account-auth__assurance {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .account-auth__panel {
    min-height: 0;
    padding: 38px 22px 42px;
    border-left: 1px solid rgba(255, 255, 255, .8);
    border-radius: 0 0 20px 20px;
  }

  .account-dashboard {
    display: block;
    padding-block: 24px 54px;
  }

  .account-sidebar {
    position: static;
    padding: 17px;
    margin-bottom: 35px;
  }

  .account-navigation {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    display: grid;
    padding: 14px 0 4px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .account-navigation::-webkit-scrollbar {
    display: none;
  }

  .account-navigation button {
    padding-inline: 14px;
  }

  .account-sidebar__logout {
    display: none;
  }

  .account-status--dashboard {
    top: 78px;
  }

  .account-section-heading h1 {
    font-size: clamp(46px, 15vw, 67px);
  }

  .account-section-heading--wide,
  .account-section-heading--action {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .account-section-heading--wide > p {
    max-width: none;
    padding-bottom: 0;
  }

  .account-card-grid,
  .account-address-grid,
  .account-saved-grid {
    grid-template-columns: 1fr;
  }

  .account-panel {
    padding: 27px 21px;
  }

  .account-profile-photo {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .account-profile-photo__preview {
    width: 112px;
  }

  .account-metric {
    min-height: 138px;
    padding: 18px;
  }

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

  .account-panel__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-empty {
    min-height: 290px;
    padding: 34px 21px;
  }

  .account-site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
  }

  .team-site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .team-site-header__brand {
    width: 48px;
    height: 36px;
  }

  .team-site-header__navigation a {
    padding-inline: 14px;
  }

  .team-main {
    width: min(100% - 24px, 680px);
    padding-block: 58px 82px;
  }

  .team-introduction {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 44px;
  }

  .team-introduction .eyebrow {
    margin-bottom: 0;
  }

  .team-introduction h1 {
    font-size: clamp(58px, 19vw, 92px);
  }

  .team-introduction > p:last-child {
    margin-bottom: 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 48px;
  }

  .team-member__identity {
    padding-top: 18px;
  }

  .team-site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 18px;
  }
}

@media (max-width: 480px) {
  .product-site-header__actions .header-auth-button--identity {
    max-width: 132px;
  }

  .product-media__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .option-list--sizes {
    grid-template-columns: repeat(3, minmax(48px, 1fr));
  }

  .option-choice--size span {
    min-width: 46px;
  }

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

  .product-save {
    width: 100%;
  }

  .product-preview-notice {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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

  .product-spec-card {
    min-height: 230px;
  }

  .product-spec-card__number {
    margin-bottom: 40px;
  }

  .account-profile-photo__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .account-profile-photo__actions .button {
    width: 100%;
  }

  .account-metric-grid {
    grid-template-columns: 1fr;
  }

  .account-metric {
    min-height: 118px;
  }

  .account-site-header__link {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .team-site-header__navigation a {
    min-width: 44px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .team-member__identity {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery__sheet,
  .product-gallery__thumb,
  .product-gallery__navigation button {
    transition: none !important;
  }

  .account-loading__mark {
    animation: none;
  }
}

@media (forced-colors: active) {
  .account-auth__story,
  .account-auth__panel,
  .account-sidebar,
  .account-panel,
  .account-address-card,
  .account-empty,
  .account-metric,
  .account-avatar,
  .account-profile-photo__preview {
    border: 1px solid CanvasText;
  }

  .product-gallery__thumb[aria-pressed="true"],
  .product-gallery__navigation button {
    border: 2px solid ButtonText;
  }
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: min(380px, calc(100% - 40px));
  padding: 14px 18px;
  color: var(--surface);
  background: var(--ink);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .22);
  font-size: 12px;
}

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 64px, 1440px);
  }

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

  .filter-panel {
    gap: 30px;
  }

  .editorial__copy {
    padding-inline: 64px;
  }
}

@media (min-width: 1921px) {
  .hero {
    min-height: 100svh;
  }
}

@media (max-width: 840px) {
  :root {
    --page: calc(100% - 40px);
    --header-height: 66px;
  }

  .site-header__inner {
    width: calc(100% - 24px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 6px;
  }

  .header-brand {
    grid-column: 1;
    width: 40px;
  }

  .brand-logo {
    height: 34px;
  }

  .brand-logo--footer {
    height: 42px;
  }

  .primary-nav {
    grid-column: 2;
    width: 100%;
    padding: 4px;
  }

  .primary-nav a {
    min-height: 42px;
    padding-inline: 8px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
  }

  .header-auth-actions {
    grid-column: 3;
    gap: 6px;
  }

  .header-auth-button {
    min-height: 52px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .header-auth-button--identity {
    max-width: 116px;
    gap: 6px;
    padding: 4px 4px 4px 9px;
  }

  .header-account-name {
    max-width: 68px;
  }

  .header-account-avatar {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .hero {
    min-height: calc(100svh - 38px + var(--header-height));
  }

  .hero__brand-stage {
    width: min(84vw, 460px);
    padding: 28px;
  }

  .trust-strip ul {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip li,
  .trust-strip li:last-child {
    border-right: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
  }

  .shop-section {
    padding-block: 80px 92px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 42px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .category-tabs {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .catalog-actions {
    display: grid;
    grid-template-columns: 1fr auto auto;
  }

  .search-control {
    min-width: 0;
  }

  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }

  .filter-panel fieldset:last-of-type {
    grid-column: 1 / -1;
  }

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

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

  .editorial__image {
    min-height: 65vw;
  }

  .editorial__copy {
    padding: 72px 32px;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 82px;
  }

  .site-footer__main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 32px);
  }

  .announcement {
    justify-items: start;
    padding: 8px 52px 8px 16px;
    text-align: left;
  }

  .trust-strip ul {
    width: 100%;
  }

  .trust-strip li {
    min-height: 68px;
    padding: 14px 16px;
    font-size: 11px;
  }

  .section-heading h2,
  .editorial h2,
  .newsletter h2 {
    font-size: 44px;
  }

  .catalog-actions {
    grid-template-columns: 1fr 1fr;
  }

  .search-control {
    grid-column: 1 / -1;
  }

  .sort-control select,
  .toolbar-button {
    width: 100%;
  }

  .filter-panel {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .filter-panel fieldset:last-of-type {
    grid-column: auto;
  }

  .filter-panel__footer {
    justify-content: space-between;
  }

  .product-card__body {
    display: block;
  }

  .product-card__name,
  .product-card__price,
  .product-card__meta {
    margin-bottom: 3px;
  }

  .product-card__view {
    display: none;
  }

  .editorial__image {
    min-height: 80vw;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 44px 24px;
  }

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

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 24px;
  }

  .site-footer__bottom p,
  .site-footer__bottom p:nth-child(2),
  .site-footer__status {
    text-align: left;
  }

  .policy-dialog {
    padding: 62px 25px 40px;
  }

  .account-dialog {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
  }

  .account-dialog__panel {
    max-height: 100dvh;
    padding: 56px 22px max(36px, env(safe-area-inset-bottom));
  }

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

  .account-secondary-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .account-card {
    padding: 40px 24px;
    border-radius: 18px;
  }

  .cart-items {
    padding-inline: 20px;
  }

  .drawer__header,
  .delivery-progress,
  .drawer__footer {
    padding-inline: 20px;
  }
}

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

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

  .hero__fashion-background {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__intro {
    animation: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .header-brand {
    animation: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .header-brand,
  .header-auth-actions {
    transition: none !important;
  }

  .primary-nav,
  .header-auth-button {
    animation: none !important;
    background-image: none !important;
  }
}

@media (forced-colors: active) {
  .header-brand__logo {
    filter: none;
  }

  .primary-nav,
  .header-auth-button {
    animation: none;
    background-image: none;
  }

  .header-account-avatar {
    color: CanvasText;
    border-color: CanvasText;
    background: Canvas;
  }

  .account-dialog,
  .account-card,
  .account-field input {
    border: 1px solid CanvasText;
  }
}
