@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap");

:root {
  --ink: #151515;
  --muted: #6d6862;
  --line: #eeeae4;
  --soft: #f7f4ef;
  --sand: #e8e0d6;
  --gold: #b58d3a;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --shell-max: 1600px;
  --page-rail: clamp(52px, 4.28vw, 76px);
  --header-right: clamp(52px, 5.87vw, 85px);
  --stage-w: clamp(1196px, 82.6vw, 1483px);
  --thumb-w: clamp(92px, 6.35vw, 114px);
  --thumb-h: clamp(96px, 6.63vw, 119px);
  --gallery-w: clamp(498px, 34.4vw, 618px);
  --gallery-h: clamp(532px, 36.74vw, 660px);
  --info-w: clamp(386px, 26.66vw, 479px);
  --hero-gap: clamp(34px, 2.35vw, 42px);
  --brand-note-w: 238px;
  --details-w: clamp(1310px, 90.5vw, 1624px);
  --recommend-w: clamp(1224px, 84.5vw, 1518px);
  --service-w: clamp(1150px, 79.4vw, 1426px);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-page {
  --collection-rail: clamp(30px, 3.35vw, 58px);
  --collection-gutter: clamp(38px, 3.55vw, 72px);
}

.collection-page .site-header,
.collection-page main {
  width: 100%;
  max-width: none;
}

.collection-page .site-header {
  height: 86px;
  grid-template-columns: minmax(245px, 1fr) auto minmax(190px, 1fr);
  padding: 0 var(--collection-rail);
  border-color: #e9e4dc;
}

.collection-page .brand__mark {
  width: 42px;
  height: 42px;
}

.collection-page .brand span {
  font-size: 36px;
}

.collection-page .main-nav {
  justify-content: center;
  gap: clamp(34px, 4.2vw, 78px);
  padding: 3px 0 0;
}

.collection-page .header-actions {
  gap: 32px;
}

.collection-editorial {
  display: grid;
  grid-template-columns: clamp(380px, 29.4vw, 610px) minmax(0, 1fr);
  gap: clamp(40px, 3.55vw, 72px);
  align-items: start;
}

.collection-feature-image {
  background: #eee5d8;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  height: 100svh;
}

.collection-feature-image--women {
  --collection-feature-mobile-position: 51% 10%;
}

.collection-feature-image--men {
  --collection-feature-mobile-position: 50% 10%;
}

.collection-feature-image--accessories {
  --collection-feature-mobile-position: center center;
}

.collection-feature-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eee5d8;
}

.collection-feature-media img,
.collection-feature-media video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--collection-feature-position, center center);
  transition: filter 420ms var(--ease-out), opacity 420ms var(--ease-out), transform 700ms var(--ease-soft);
}

.collection-feature-media video {
  inset: 0;
  position: absolute;
}

[data-video-preview] {
  opacity: 0;
}

[data-video-preview].is-ready {
  opacity: 1;
}

.collection-feature-image:hover .collection-feature-media img,
.collection-feature-image:hover .collection-feature-media video {
  filter: saturate(1.04);
  transform: scale(1.012);
}

.collection-intro {
  display: none;
}

.collection-results--editorial {
  min-width: 0;
  padding-right: var(--collection-rail);
  scroll-margin-top: 18px;
}

.collection-commerce {
  position: relative;
  z-index: 3;
  padding: clamp(46px, 5.2vw, 74px) 0 clamp(32px, 3.1vw, 46px);
}

.collection-commerce__intro {
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  gap: clamp(34px, 6.4vw, 96px);
  align-items: end;
  margin-bottom: 31px;
}

.collection-commerce__intro h1 {
  margin: 0 0 11px;
  color: #171514;
  font-family: var(--serif);
  font-size: clamp(64px, 5vw, 86px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.88;
}

.collection-commerce__intro p {
  margin: 0;
  color: #3f3934;
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 1.65;
}

.collection-commerce__intro p span {
  display: block;
}

.collection-commerce__count {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding-left: clamp(27px, 2.7vw, 44px);
  border-left: 1px solid #ded6cc;
  color: #211d19;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.collection-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 18px;
  margin-bottom: 28px;
}

.collection-chip {
  min-width: 112px;
  height: 36px;
  padding: 0 25px;
  border: 1px solid #ded5ca;
  border-radius: 999px;
  background: #fff;
  color: #211d19;
  font: 500 12px/1 var(--sans);
  cursor: pointer;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.collection-chip:hover,
.collection-chip:focus-visible {
  border-color: #1b1815;
}

.collection-chip.is-active {
  border-color: #171514;
  background: #171514;
  color: #fff;
}

.collection-control-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-top: 27px;
  border-top: 1px solid #ece6df;
}

.collection-refine {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.collection-filter {
  position: relative;
}

.collection-filter__toggle,
.collection-sort select {
  height: 38px;
  border: 1px solid #ded5ca;
  border-radius: 4px;
  background: #fff;
  color: #211d19;
  font: 500 13px/1 var(--serif);
}

.collection-filter__toggle {
  min-width: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px;
  cursor: pointer;
}

.collection-filter__toggle::after,
.collection-sort::after {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.collection-filter.is-open .collection-filter__toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.collection-filter__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 9;
  width: 136px;
  display: none;
  gap: 15px;
  padding: 16px 14px 15px;
  border: 1px solid #e8e2da;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(31, 25, 18, 0.1);
}

.collection-filter.is-open .collection-filter__menu {
  display: grid;
}

.collection-filter__menu label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3f3934;
  font-size: 12px;
  line-height: 1;
}

.collection-filter__menu input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--gold);
}

.collection-filter__clear {
  width: 100%;
  margin-top: 4px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid #ded6cc;
  background: transparent;
  color: #211d19;
  font: 500 12px/1 var(--serif);
  text-align: left;
  cursor: pointer;
}

.collection-sort {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #211d19;
  font-size: 13px;
  white-space: nowrap;
}

.collection-sort select {
  width: 140px;
  padding: 0 34px 0 15px;
  appearance: none;
  cursor: pointer;
}

.collection-sort::after {
  position: absolute;
  right: 15px;
  pointer-events: none;
}

.collection-product__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  color: #211d19;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.collection-product__quick-add {
  grid-column: 1;
  grid-row: 4;
  justify-self: start;
  width: max-content;
  margin-top: 13px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: #211d19;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms var(--ease-out), opacity 220ms var(--ease-out);
}

.collection-product__quick-add:hover,
.collection-product__quick-add:focus-visible {
  color: var(--gold);
}

.collection-product__quick-add.is-added {
  opacity: 0.66;
}

.collection-page .collection-grid--editorial,
.collection-page .collection-grid--continued {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 32px;
}

.collection-page .collection-grid--continued {
  margin-top: 24px;
}

.collection-page .collection-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 19px;
  column-gap: 9px;
  align-items: start;
}

.collection-page .collection-product__media {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 0;
  background: #eee5d8;
  transition: background 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.collection-page .collection-product__media img {
  object-fit: cover;
  object-position: center top;
  transition: filter 320ms var(--ease-out), transform 520ms var(--ease-soft);
}

.collection-page .collection-product__media img[alt="Mali Embellished Clutch"] {
  object-position: center center;
}

.collection-page .collection-product:hover .collection-product__media img,
.collection-page .collection-product:focus-within .collection-product__media img {
  filter: saturate(1.03);
  transform: scale(1.025);
}

.collection-page .collection-product .heart {
  position: static;
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin-top: 13px;
  width: 19px;
  height: 19px;
  filter: none;
}

.collection-page .collection-product .heart::before {
  width: 19px;
  height: 19px;
  display: block;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20.5S4 15.7 2.4 10.4C1.3 6.8 3.4 3.5 6.9 3.5c2.1 0 3.8 1.1 5.1 3 1.3-1.9 3-3 5.1-3 3.5 0 5.6 3.3 4.5 6.9C20 15.7 12 20.5 12 20.5Z' fill='none' stroke='%23625c55' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  clip-path: none;
  content: "";
  outline: 0;
}

.collection-page .collection-product .heart.is-active::before {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20.5S4 15.7 2.4 10.4C1.3 6.8 3.4 3.5 6.9 3.5c2.1 0 3.8 1.1 5.1 3 1.3-1.9 3-3 5.1-3 3.5 0 5.6 3.3 4.5 6.9C20 15.7 12 20.5 12 20.5Z' fill='%23151515' stroke='%23151515' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  content: "";
}

.collection-page .collection-product h3,
.collection-page .collection-product p {
  min-width: 0;
  padding-right: 0;
  text-overflow: ellipsis;
}

.collection-page .collection-product h3 {
  grid-column: 1;
  grid-row: 2;
  margin-top: 13px;
  color: #211d19;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.collection-page .collection-product p {
  grid-column: 1;
  grid-row: 3;
  margin-top: 7px;
  color: #5e5750;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.collection-story-banner {
  position: relative;
  min-height: clamp(168px, 10.2vw, 205px);
  margin: 24px 0 26px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 4vw, 70px);
  overflow: hidden;
  padding: clamp(28px, 2.7vw, 48px) clamp(30px, 3.5vw, 64px);
  background: #e7ded4;
  color: #181512;
}

.collection-story-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 28%;
}

.collection-story-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(235, 226, 215, 0.94) 0%, rgba(235, 226, 215, 0.78) 38%, rgba(235, 226, 215, 0.16) 64%, rgba(235, 226, 215, 0.7) 100%);
  content: "";
}

.collection-story-banner div,
.collection-story-banner a {
  position: relative;
  z-index: 1;
}

.collection-story-banner h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(25px, 1.85vw, 34px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.collection-story-banner p {
  max-width: 390px;
  margin: 0;
  color: #3f3933;
  font-size: 11px;
  letter-spacing: 0.035em;
  line-height: 1.65;
}

.collection-story-banner a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--gold);
  color: #211d19;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.collection-page .pagination {
  margin-top: 32px;
}

.collection-page .site-footer {
  margin-top: 58px;
}

@media (max-width: 1180px) {
  .collection-page .site-header {
    grid-template-columns: minmax(220px, 1fr) auto minmax(156px, 1fr);
  }

  .collection-page .main-nav {
    gap: 24px;
  }

  .collection-editorial {
    grid-template-columns: minmax(315px, 34vw) minmax(0, 1fr);
    gap: 34px;
  }

  .collection-results--editorial {
    padding-right: 32px;
  }

  .collection-commerce__intro {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 27px;
  }

  .collection-commerce__count {
    min-height: 0;
    padding-left: 0;
    border-left: 0;
  }

  .collection-control-bar {
    flex-direction: column;
  }

  .collection-sort {
    align-self: flex-end;
  }

  .collection-page .collection-grid--editorial,
  .collection-page .collection-grid--continued {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }
}

@media (max-width: 920px) {
  .collection-page .site-header {
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 16px var(--collection-rail);
  }

  .collection-page .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 7px 0 2px;
  }

  .collection-editorial {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .collection-feature-image {
    aspect-ratio: auto;
    background: transparent;
    display: grid;
    gap: 18px;
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    padding: 0 var(--collection-rail) 4px;
  }

  .collection-feature-media {
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .collection-feature-media img,
  .collection-feature-media video {
    height: 100%;
    object-position: var(--collection-feature-mobile-position, center 16%);
  }

  .collection-feature-media video {
    height: 100%;
  }

  .collection-intro {
    order: -1;
    display: grid;
    gap: 14px;
    padding-top: 23px;
    color: #211d19;
  }

  .collection-intro__eyebrow {
    margin: 0;
    color: #74675d;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .collection-intro h1 {
    max-width: 620px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(44px, 9vw, 72px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.9;
  }

  .collection-intro p:not(.collection-intro__eyebrow) {
    max-width: 490px;
    margin: 0;
    color: #4f4740;
    font-size: 12px;
    letter-spacing: 0.03em;
    line-height: 1.65;
  }

  .collection-intro a {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 2px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gold);
    color: #211d19;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
  }

  .collection-results--editorial {
    padding: 0 var(--collection-rail);
  }

  .collection-commerce {
    padding: 3px 0 26px;
  }

  .collection-commerce__intro {
    display: none;
  }

  .collection-chip-row {
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 18px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .collection-chip-row::-webkit-scrollbar {
    display: none;
  }

  .collection-chip {
    min-width: max-content;
    height: 34px;
    padding: 0 20px;
    font-size: 11px;
  }

  .collection-control-bar {
    display: grid;
    gap: 15px;
    padding-top: 0;
    border-top: 0;
  }

  .collection-refine {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .collection-filter__toggle {
    width: 100%;
    min-width: 0;
  }

  .collection-filter.is-open {
    grid-column: 1 / -1;
  }

  .collection-filter__menu {
    position: static;
    width: auto;
    margin-top: 8px;
    box-shadow: none;
  }

  .collection-sort {
    width: 100%;
    justify-content: space-between;
  }

  .collection-sort select {
    flex: 1;
    max-width: 210px;
  }

  .collection-page .collection-grid--editorial,
  .collection-page .collection-grid--continued {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
}

@media (max-width: 560px) {
  .collection-page {
    --collection-rail: 18px;
  }

  .collection-page .brand span {
    font-size: 30px;
  }

  .collection-page .collection-grid--editorial,
  .collection-page .collection-grid--continued {
    gap: 24px 12px;
  }

  .collection-feature-image {
    gap: 16px;
  }

  .collection-feature-media {
    aspect-ratio: 2 / 3;
  }

  .collection-intro {
    gap: 13px;
    padding-top: 18px;
  }

  .collection-intro h1 {
    font-size: clamp(37px, 11.5vw, 52px);
  }

  .collection-intro p:not(.collection-intro__eyebrow) {
    font-size: 11px;
  }

  .collection-refine {
    grid-template-columns: 1fr;
  }

  .collection-filter.is-open {
    grid-column: auto;
  }

  .collection-product__badge {
    top: 8px;
    left: 8px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .collection-product__quick-add {
    margin-top: 10px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .collection-story-banner {
    min-height: 360px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 24px;
    padding: 28px 22px;
  }

  .collection-story-banner img {
    object-position: 60% center;
  }

  .collection-story-banner::after {
    background: linear-gradient(180deg, rgba(235, 226, 215, 0.12) 0%, rgba(235, 226, 215, 0.9) 58%, rgba(235, 226, 215, 0.98) 100%);
  }

  .collection-story-banner a {
    justify-self: start;
  }

}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
}

button,
a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 1px solid rgba(181, 141, 58, 0.78);
  outline-offset: 4px;
}

a > span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 240ms var(--ease-out);
}

a:hover > span[aria-hidden="true"],
a:focus-visible > span[aria-hidden="true"] {
  transform: translateX(4px);
}

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

.announcement {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--sand);
  color: #151515;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.announcement__mark {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #26231f;
  stroke-width: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: min(100%, var(--shell-max));
  height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 286px 690px 1fr;
  align-items: center;
  padding: 0 var(--header-right) 0 var(--page-rail);
  border-bottom: 1px solid #f2efea;
  background: #fff;
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
  will-change: transform;
}

.is-header-hidden .site-header {
  box-shadow: none;
  transform: translateY(-100%);
}

.is-header-visible .site-header {
  box-shadow: 0 10px 30px rgba(28, 23, 18, 0.06);
}

main {
  width: min(100%, var(--shell-max));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  text-decoration: none;
  color: #171717;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
}

.brand__mark {
  width: 45px;
  height: 45px;
  color: var(--gold);
}

.brand__logo {
  display: block;
  width: clamp(156px, 12vw, 214px);
  height: auto;
}

.brand span {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 37px;
  padding-left: 59px;
  padding-top: 4px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 220ms var(--ease-out);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 31px;
}

.icon-button {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.icon-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #0b0b0b;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.icon-button:hover,
.icon-button:focus-visible {
  opacity: 0.72;
  transform: translateY(-1px);
}

.icon-button:hover svg,
.icon-button:focus-visible svg {
  stroke: var(--gold);
}

.cart-button span {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  transition: transform 220ms var(--ease-out);
}

.cart-button:hover span,
.cart-button:focus-visible span {
  transform: scale(1.08);
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.product-stage {
  width: calc(100% - var(--page-rail) - var(--page-rail));
  max-width: var(--stage-w);
  margin: clamp(5px, 0.35vw, 6px) auto 0 var(--page-rail);
  display: grid;
  grid-template-columns:
    minmax(0, var(--thumb-w))
    minmax(0, var(--gallery-w))
    minmax(0, var(--info-w));
  column-gap: var(--hero-gap);
  align-items: start;
}

.product-info {
  margin-left: clamp(26px, 1.8vw, 32px);
  padding-top: clamp(17px, 1.17vw, 21px);
}

.thumbs {
  padding-top: clamp(10px, 0.7vw, 12px);
  display: grid;
  gap: clamp(10px, 0.7vw, 12px);
}

.thumb {
  width: 100%;
  height: var(--thumb-h);
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: border-color 220ms var(--ease-out), opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms var(--ease-out), transform 320ms var(--ease-out);
}

.thumb:hover,
.thumb:focus-visible {
  border-color: #cbb89c;
  transform: translateY(-1px);
}

.thumb:hover img,
.thumb:focus-visible img {
  opacity: 0.92;
  transform: scale(1.035);
}

.thumb.is-active {
  border-color: var(--gold);
}

.gallery-main {
  position: relative;
  width: 100%;
  height: var(--gallery-h);
  overflow: hidden;
  border-radius: 4px;
  background: #eee7db;
  isolation: isolate;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 320ms var(--ease-soft), transform 420ms var(--ease-soft), filter 320ms var(--ease-out);
  will-change: opacity, transform;
}

.gallery-main > img:not(.gallery-main__ghost) {
  position: relative;
  z-index: 1;
}

.gallery-main img.is-changing {
  opacity: 0;
  transform: scale(1.012);
}

.gallery-main img.has-swapped {
  animation: product-image-settle 420ms var(--ease-soft);
}

.gallery-main__ghost {
  position: absolute !important;
  inset: 0;
  z-index: 2;
  max-width: none;
  pointer-events: none;
}

.gallery-main__ghost.is-fading {
  opacity: 0;
  transform: scale(1.016);
}

@keyframes product-image-settle {
  0% {
    filter: saturate(0.94);
    transform: scale(1.008);
  }

  100% {
    filter: saturate(1);
    transform: scale(1);
  }
}

.gallery-main img.is-contain {
  object-fit: contain;
  background: #e8dfd2;
}

.zoom-button {
  position: absolute;
  top: 17px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(30, 23, 16, 0.12);
  cursor: pointer;
  transition: background 220ms var(--ease-out), box-shadow 220ms var(--ease-out), opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
  z-index: 4;
}

.zoom-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #141414;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.zoom-button:hover,
.zoom-button:focus-visible {
  background: #151515;
  box-shadow: 0 10px 26px rgba(30, 23, 16, 0.16);
  transform: translateY(-1px) scale(1.03);
}

.zoom-button:hover svg,
.zoom-button:focus-visible svg {
  stroke: #fff;
}

.breadcrumbs {
  color: #77716c;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.breadcrumbs span {
  margin: 0 8px;
  color: #b9b3ad;
}

.product-info h1 {
  margin: 12px 0 6px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.price {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.02em;
}

.summary {
  width: 100%;
  margin: 0;
  color: #6f6964;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0;
}

.divider {
  height: 1px;
  margin: 17px 0 18px;
  background: var(--line);
}

.option-block {
  margin-bottom: 13px;
}

.option-label,
.size-heading,
.quantity-block > span {
  display: block;
  margin-bottom: 10px;
  color: #4d4945;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.option-label strong {
  margin-left: 8px;
  color: #6c665f;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
}

.swatches {
  display: flex;
  align-items: center;
  gap: 14px;
}

.swatch {
  position: relative;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: transform 220ms var(--ease-out);
}

.swatch::after {
  position: absolute;
  inset: 1px;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.swatch::before {
  width: 29px;
  height: 29px;
  border-radius: inherit;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(22, 22, 22, 0.16);
  transition: box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.swatch[data-color-key="royal"]::before {
  background:
    linear-gradient(112deg, transparent 0 21%, rgba(12, 12, 12, 0.58) 21% 27%, transparent 27% 100%),
    linear-gradient(43deg, #7d0f19 0 28%, #cf8c17 28% 49%, #1c1a1a 49% 68%, #9a1d2d 68% 100%);
}

.swatch[data-color-key="indigo"]::before {
  background:
    linear-gradient(113deg, transparent 0 18%, rgba(212, 175, 65, 0.8) 18% 23%, transparent 23% 100%),
    linear-gradient(42deg, #07182f 0 34%, #142a52 34% 57%, #bd8d24 57% 70%, #09121f 70% 100%);
}

.swatch[data-color-key="emerald"]::before {
  background:
    linear-gradient(116deg, transparent 0 20%, rgba(204, 165, 52, 0.82) 20% 25%, transparent 25% 100%),
    linear-gradient(40deg, #05351f 0 36%, #0e5a35 36% 59%, #c09a2e 59% 72%, #062414 72% 100%);
}

.swatch img {
  display: none;
}

.swatch.is-active {
  box-shadow: none;
}

.swatch:hover,
.swatch:focus-visible {
  transform: translateY(-1px);
}

.swatch:hover::before,
.swatch:focus-visible::before {
  box-shadow: inset 0 0 0 1px rgba(22, 22, 22, 0.3);
  transform: scale(1.04);
}

.swatch:focus-visible {
  outline: 0;
}

.swatch.is-active::after,
.swatch:focus-visible::after {
  border-color: #161616;
  transform: scale(1.08);
}

.size-options {
  margin-top: 10px;
}

.size-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 11px;
}

.size-heading a {
  color: #6e6964;
  font-size: 10px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.sizes {
  display: grid;
  grid-template-columns: repeat(6, 57px);
  gap: 9px;
}

.sizes button {
  height: 29px;
  border: 1px solid #e6e1db;
  background: #fff;
  color: #4f4b46;
  font-size: 10px;
  cursor: pointer;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.sizes button:hover,
.sizes button:focus-visible,
.sizes button.is-active {
  border-color: #111;
}

.sizes button:hover,
.sizes button:focus-visible {
  background: #faf7f1;
  transform: translateY(-1px);
}

.quantity-block {
  margin-top: 14px;
  margin-bottom: 18px;
}

.quantity-control {
  width: 117px;
  height: 28px;
  display: grid;
  grid-template-columns: 35px 47px 35px;
  align-items: center;
  border: 1px solid #e7e1da;
}

.quantity-control button {
  height: 100%;
  border: 0;
  background: #fff;
  color: #5d5955;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out);
}

.quantity-control button:hover,
.quantity-control button:focus-visible {
  background: #f8f3eb;
  color: #111;
}

.quantity-control output {
  color: #111;
  font-size: 12px;
  text-align: center;
}

.purchase-row {
  display: grid;
  grid-template-columns: 1fr 43px;
  gap: 9px;
  height: 38px;
}

.add-button {
  border: 0;
  background: #0d0d0d;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.add-button:hover,
.add-button:focus-visible {
  background: #24211f;
  box-shadow: 0 12px 26px rgba(15, 12, 9, 0.16);
  transform: translateY(-1px);
}

.wish-button {
  display: grid;
  place-items: center;
  border: 1px solid #111;
  background: #fff;
  cursor: pointer;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.wish-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #111;
  stroke-width: 1.5;
  stroke-linejoin: round;
  transition: fill 220ms var(--ease-out), stroke 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.wish-button:hover,
.wish-button:focus-visible {
  background: #111;
  transform: translateY(-1px);
}

.wish-button:hover svg,
.wish-button:focus-visible svg {
  stroke: #fff;
  transform: scale(1.06);
}

.wish-button.is-active svg,
.heart.is-active::before {
  fill: #111;
  background: #111;
}

.wish-button.is-active:hover svg,
.wish-button.is-active:focus-visible svg {
  fill: #fff;
  stroke: #fff;
}

.trust-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.trust-row div {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 7px;
  align-items: start;
}

.trust-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #7c7772;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row span {
  color: #3f3a36;
  font-size: 9px;
  line-height: 1.24;
  white-space: nowrap;
}

.details-shell {
  width: calc(100% - var(--page-rail) - var(--page-rail) - var(--brand-note-w));
  max-width: calc(var(--details-w) - var(--brand-note-w));
  height: clamp(132px, 9.12vw, 164px);
  min-height: clamp(132px, 9.12vw, 164px);
  margin: clamp(18px, 1.24vw, 22px) auto 0 var(--page-rail);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 34px 1fr;
  border: 1px solid #f0ece6;
  background: #fff;
}

.tabs {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 34px;
  background: #f7f4f0;
  border-bottom: 1px solid #eee9e2;
}

.tabs button {
  height: 34px;
  border: 0;
  border-right: 1px solid #eee9e2;
  background: transparent;
  color: #67615c;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.tabs button.is-active {
  position: relative;
  background: #fff;
  color: #161616;
}

.tabs button.is-active::after {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: #111;
  content: "";
}

.tab-content {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 57% 43%;
  height: 96px;
  min-height: 0;
  padding: 18px 25px 10px 20px;
}

.tab-content p {
  margin: 0;
  padding-right: 25px;
  border-right: 1px solid #eee9e2;
  font-size: 11px;
  line-height: 1.42;
  letter-spacing: 0.01em;
}

.tab-content ul {
  margin: 0;
  padding-left: 48px;
  font-size: 11px;
  line-height: 1.5;
}

.recommendations {
  position: relative;
  width: calc(100% - var(--page-rail) - var(--page-rail));
  max-width: var(--recommend-w);
  margin: clamp(8px, 0.55vw, 10px) auto 0 var(--page-rail);
}

.recommendations h2 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.product-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 192px;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 2px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

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

.product-card {
  position: relative;
  width: 192px;
  height: 171px;
  overflow: hidden;
  border: 1px solid #eee9e3;
  border-radius: 4px;
  background: #fff;
  transition: border-color 260ms var(--ease-out), box-shadow 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.product-card > a {
  display: block;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  transition: filter 320ms var(--ease-out), transform 420ms var(--ease-soft);
}

.product-card:hover,
.product-card:focus-within {
  border-color: #ded4c7;
  box-shadow: 0 16px 34px rgba(32, 26, 19, 0.08);
  transform: translateY(-2px);
}

.product-card:hover img,
.product-card:focus-within img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.product-card h3,
.product-card p {
  margin: 0 9px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-card h3 {
  margin-top: 7px;
  color: #222;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-card p {
  margin-top: 2px;
  color: #4c4742;
  font-size: 9px;
}

.heart {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 220ms var(--ease-out);
}

.heart::before {
  display: block;
  width: 16px;
  height: 15px;
  background: #fff;
  content: "";
  clip-path: path("M8 14.5C5.5 12.7 1 9.8 1 5.4 1 2.8 2.7 1.2 4.8 1.2 6.2 1.2 7.2 2 8 3.2 8.8 2 9.8 1.2 11.2 1.2 13.3 1.2 15 2.8 15 5.4 15 9.8 10.5 12.7 8 14.5Z");
  outline: 1px solid #fff;
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.heart:hover,
.heart:focus-visible {
  transform: scale(1.12);
}

.heart.is-active::before {
  transform: scale(1.08);
}

.carousel-arrow {
  position: absolute;
  top: 83px;
  z-index: 4;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #e8e3dc;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: #151515;
  transform: translateY(-1px);
  border-color: #c8bba7;
}

.carousel-arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #181818;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 220ms var(--ease-out);
}

.carousel-arrow:hover svg,
.carousel-arrow:focus-visible svg {
  stroke: #fff;
}

.carousel-arrow--left {
  left: max(-51px, calc(4px - var(--page-rail)));
}

.carousel-arrow--right {
  right: max(-51px, calc(4px - var(--page-rail)));
}

.site-footer {
  width: min(100%, var(--shell-max));
  margin: 17px auto 0;
  border-top: 1px solid #f0ece6;
}

.service-strip {
  width: calc(100% - var(--page-rail) - var(--page-rail));
  max-width: var(--service-w);
  height: 49px;
  margin: 0 auto 0 var(--page-rail);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 40px;
}

.service-strip div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 11px;
}

.service-strip svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #6f6a64;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-strip p {
  margin: 0;
  color: #312d29;
  font-size: 10px;
  line-height: 1.23;
}

.service-strip strong,
.service-strip span {
  display: block;
}

.service-strip strong {
  font-size: 10px;
  font-weight: 600;
}

.service-strip span {
  color: #615b55;
  font-size: 9px;
}

.is-locked {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 46px);
  background: rgba(18, 15, 12, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms var(--ease-out), visibility 260ms var(--ease-out);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__stage {
  width: min(92vw, 1180px);
  height: min(86vh, 920px);
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
}

.lightbox.is-zoomed .lightbox__stage {
  cursor: grab;
}

.lightbox.is-dragging .lightbox__stage {
  cursor: grabbing;
}

.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  user-select: none;
  transform: translate3d(var(--zoom-x, 0), var(--zoom-y, 0), 0) scale(var(--zoom-scale, 1));
  transform-origin: center;
  transition: opacity 260ms var(--ease-out), transform 180ms var(--ease-out);
  will-change: transform;
}

.lightbox:not(.is-open) .lightbox__image {
  opacity: 0;
  transform: translate3d(var(--zoom-x, 0), calc(var(--zoom-y, 0) + 8px), 0) scale(0.985);
}

.lightbox__close,
.lightbox__control {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: #151515;
  cursor: pointer;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), color 220ms var(--ease-out), opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__control:hover,
.lightbox__control:focus-visible {
  background: #151515;
  border-color: #151515;
  color: #fff;
  transform: translateY(-1px);
}

.lightbox__close {
  position: absolute;
  top: clamp(16px, 2.2vw, 30px);
  right: clamp(16px, 2.2vw, 30px);
  width: 43px;
  height: 43px;
  border-radius: 999px;
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.lightbox__controls {
  position: absolute;
  right: clamp(16px, 2.2vw, 30px);
  bottom: clamp(16px, 2.2vw, 30px);
  display: flex;
  gap: 8px;
}

.lightbox__control {
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.lightbox__control:disabled {
  opacity: 0.42;
  pointer-events: none;
}

.collection-page main {
  padding-bottom: 0;
}

.collection-hero {
  position: relative;
  height: clamp(218px, 17.35vw, 278px);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #bfa484;
  isolation: isolate;
}

.collection-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
}

.collection-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(28, 20, 12, 0.06), rgba(28, 20, 12, 0.2) 45%, rgba(28, 20, 12, 0.08));
  content: "";
}

.collection-hero__copy {
  width: min(500px, calc(100% - 44px));
  margin-top: 8px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 18px rgba(28, 20, 12, 0.32);
}

.collection-hero__copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.58;
  letter-spacing: 0.025em;
}

.collection-hero__copy p:first-child {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
}

.collection-hero__copy p:first-child span {
  margin: 0 8px;
  opacity: 0.72;
}

.collection-hero__copy h1 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: clamp(42px, 3.35vw, 57px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.collection-shell {
  width: calc(100% - var(--page-rail) - var(--page-rail));
  max-width: var(--recommend-w);
  margin: 14px auto 0 var(--page-rail);
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  gap: 29px;
  align-items: start;
}

.filters-panel {
  border: 1px solid #eee9e3;
  border-radius: 4px;
  background: #fff;
}

.filters-panel__top {
  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid #eee9e3;
}

.filters-panel__top h2 {
  margin: 0;
  color: #3e3934;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.filters-panel__top button,
.filter-more {
  border: 0;
  background: transparent;
  color: #8a8178;
  font-size: 9px;
  text-decoration: underline;
  cursor: pointer;
}

.filter-group {
  border-bottom: 1px solid #eee9e3;
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-group__head {
  width: 100%;
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border: 0;
  background: #fff;
  color: #4d4742;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-group__head span:last-child {
  color: #8a8178;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.filter-group__body {
  display: grid;
  gap: 6px;
  padding: 0 13px 13px;
}

.filter-group.is-collapsed .filter-group__body {
  display: none;
}

.filter-group__body label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5c5650;
  font-size: 10px;
}

.filter-group__body input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--gold);
}

.filter-size-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.filter-size-grid button {
  height: 23px;
  border: 1px solid #eee7df;
  border-radius: 3px;
  background: #fff;
  color: #514b45;
  font-size: 10px;
  cursor: pointer;
}

.filter-size-grid button:hover,
.filter-size-grid button:focus-visible {
  border-color: #1a1714;
}

.filter-colors {
  grid-template-columns: repeat(4, 24px) 1fr;
  align-items: center;
  gap: 8px;
}

.filter-color {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.filter-color::after {
  position: absolute;
  inset: -3px;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
}

.filter-color.is-active::after,
.filter-color:focus-visible::after {
  border-color: #1b1815;
}

.filter-color--royal {
  background: url("assets/swatch-royal.png") center / cover;
}

.filter-color--indigo {
  background: url("assets/swatch-blue.png") center / cover;
}

.filter-color--emerald {
  background: url("assets/swatch-green.png") center / cover;
}

.filter-color--burgundy {
  background: radial-gradient(circle at 36% 38%, #d0a13e 0 11%, transparent 12%), linear-gradient(135deg, #411018, #8e1729 42%, #c69b35 43% 56%, #171818 57%);
}

.filter-more {
  justify-self: start;
  text-decoration: none;
}

.price-track {
  position: relative;
  height: 12px;
}

.price-track::before,
.price-track span {
  position: absolute;
  top: 5px;
  height: 3px;
  border-radius: 999px;
  content: "";
}

.price-track::before {
  left: 0;
  right: 0;
  background: #e6dfd6;
}

.price-track span {
  left: 19%;
  right: 18%;
  background: #a68136;
}

.price-track span::before,
.price-track span::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #a68136;
  content: "";
  transform: translateY(-50%);
}

.price-track span::before {
  left: 0;
}

.price-track span::after {
  right: 0;
}

.price-range {
  display: flex;
  justify-content: space-between;
  color: #5b554f;
  font-size: 10px;
}

.collection-results {
  min-width: 0;
}

.collection-toolbar {
  min-height: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.collection-toolbar p {
  margin: 0;
  color: #77716b;
  font-size: 12px;
}

.collection-toolbar label {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #77716b;
  font-size: 10px;
}

.collection-toolbar select {
  width: 143px;
  height: 28px;
  padding: 0 29px 0 14px;
  border: 1px solid #e8e2da;
  border-radius: 4px;
  background: #fff;
  color: #3f3934;
  font: inherit;
  cursor: pointer;
}

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

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

.collection-product__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  border: 1px solid #eee9e3;
  border-radius: 4px;
  background: #eee5d8;
  text-decoration: none;
  transition: border-color 260ms var(--ease-out), box-shadow 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.collection-product__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 12%;
  transition: filter 320ms var(--ease-out), transform 520ms var(--ease-soft);
}

.collection-product:first-child .collection-product__media img {
  object-position: center center;
}

.collection-product:nth-child(8) .collection-product__media img {
  object-position: center center;
}

.collection-product:hover .collection-product__media,
.collection-product:focus-within .collection-product__media {
  border-color: #dfd3c4;
  box-shadow: 0 16px 34px rgba(32, 26, 19, 0.08);
  transform: translateY(-2px);
}

.collection-product:hover .collection-product__media img,
.collection-product:focus-within .collection-product__media img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.collection-product .heart {
  top: 9px;
  right: 9px;
  filter: drop-shadow(0 1px 3px rgba(20, 15, 10, 0.24));
}

.collection-product h3,
.collection-product p {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.collection-product h3 {
  margin-top: 8px;
  color: #211e1a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.collection-product h3 a {
  text-decoration: none;
}

.collection-product p {
  margin-top: 2px;
  color: #5b554f;
  font-size: 9px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
}

.pagination a,
.pagination button,
.pagination span {
  min-width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid #ece6df;
  border-radius: 4px;
  background: #fff;
  color: #3d3833;
  font-size: 10px;
  text-decoration: none;
}

.pagination button {
  cursor: pointer;
}

.pagination span {
  border-color: transparent;
}

.pagination .is-active {
  border-color: var(--gold);
}

.collection-story {
  width: calc(100% - var(--page-rail) - var(--page-rail));
  max-width: var(--recommend-w);
  min-height: 77px;
  margin: 18px auto 0 var(--page-rail);
  display: grid;
  grid-template-columns: 365px minmax(0, 1fr) 250px;
  align-items: center;
  gap: 42px;
  padding: 11px 73px 11px 80px;
  border-radius: 4px;
  background:
    linear-gradient(rgba(250, 248, 244, 0.92), rgba(250, 248, 244, 0.92)),
    url("assets/bottom-pattern.png") center / auto 76px repeat-x;
}

.collection-story__mark {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 20px;
}

.collection-story__mark svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.collection-story p {
  margin: 0;
  color: #2f2a25;
  font-size: 12px;
  line-height: 1.34;
}

.collection-story__mark p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.05;
}

.collection-story > p {
  padding-left: 52px;
  border-left: 1px solid #d8d0c4;
}

.collection-story a {
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  color: #24201c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.collection-story a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  content: "";
}

@media (max-width: 1180px) {
  :root {
    --page-rail: 32px;
    --header-right: 32px;
  }

  .site-header {
    grid-template-columns: 260px 1fr 170px;
    padding: 0 var(--page-rail);
  }

  .main-nav {
    gap: 22px;
    padding-left: 0;
    justify-content: center;
  }

  .product-stage {
    grid-template-columns: 76px minmax(360px, 498px) minmax(310px, 386px);
    column-gap: 22px;
  }

  .thumb {
    width: 76px;
    height: 80px;
  }

  .gallery-main {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 498 / 532;
    isolation: isolate;
    contain: layout paint;
  }

  .product-info {
    margin-left: 0;
  }

  .details-shell {
    width: calc(100% - var(--page-rail) - var(--page-rail));
    max-width: none;
  }

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

  .collection-shell {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 22px;
  }

  .collection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
  }

  .collection-story {
    grid-template-columns: 310px minmax(0, 1fr) 210px;
    gap: 26px;
    padding: 12px 34px;
  }

  .collection-story > p {
    padding-left: 30px;
  }
}

@media (max-width: 920px) {
  :root {
    --page-rail: 22px;
    --header-right: 22px;
  }

  .announcement {
    height: auto;
    min-height: 34px;
    padding: 7px 16px;
    text-align: center;
  }

  .site-header {
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 16px var(--page-rail);
  }

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

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding: 7px 0 2px;
  }

  .header-actions {
    gap: 14px;
  }

  .product-stage {
    width: calc(100% - var(--page-rail) - var(--page-rail));
    max-width: 720px;
    grid-template-columns: 72px 1fr;
    column-gap: 16px;
    row-gap: 22px;
  }

  .thumb {
    width: 72px;
    height: 76px;
  }

  .product-info {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .details-shell {
    width: calc(100% - var(--page-rail) - var(--page-rail));
    max-width: 720px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .tabs {
    grid-template-columns: 1fr;
    height: auto;
  }

  .tabs button {
    border-bottom: 1px solid #eee9e2;
  }

  .tab-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tab-content p {
    padding-right: 0;
    border-right: 0;
  }

  .tab-content ul {
    padding-left: 18px;
  }

  .recommendations {
    width: calc(100% - var(--page-rail) - var(--page-rail));
    max-width: 720px;
    margin-top: 18px;
  }

  .carousel-arrow {
    display: none;
  }

  .service-strip {
    width: calc(100% - var(--page-rail) - var(--page-rail));
    max-width: 720px;
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 18px 0;
  }

  .collection-hero {
    height: 252px;
  }

  .collection-hero img {
    object-position: center center;
  }

  .collection-shell {
    width: calc(100% - var(--page-rail) - var(--page-rail));
    max-width: 720px;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

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

  .filters-panel__top {
    grid-column: 1 / -1;
  }

  .filter-group:nth-last-child(2) {
    border-bottom: 0;
  }

  .filter-group:nth-child(odd) {
    border-right: 1px solid #eee9e3;
  }

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

  .collection-story {
    width: calc(100% - var(--page-rail) - var(--page-rail));
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    padding: 22px;
  }

  .collection-story > p {
    padding-left: 0;
    border-left: 0;
  }

  .collection-story a {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .brand__mark {
    width: 37px;
    height: 37px;
  }

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

  .product-stage {
    display: block;
  }

  .gallery-main {
    margin-top: 12px;
  }

  .thumbs {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding-top: 12px;
  }

  .thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.04;
  }

  .product-info h1 {
    font-size: 36px;
  }

  .purchase-row {
    grid-template-columns: 1fr 46px;
  }

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

  .recommendations h2 {
    font-size: 17px;
    letter-spacing: 0.16em;
  }

  .product-row {
    grid-auto-columns: minmax(170px, 68vw);
  }

  .product-card {
    width: auto;
  }

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

  .collection-hero {
    height: 315px;
    place-items: end center;
    padding-bottom: 26px;
  }

  .collection-hero::after {
    background: linear-gradient(180deg, rgba(28, 20, 12, 0.04), rgba(28, 20, 12, 0.58));
  }

  .collection-hero img {
    object-position: center center;
  }

  .collection-hero__copy h1 {
    font-size: 39px;
  }

  .collection-hero__copy p:last-child {
    font-size: 11px;
  }

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

  .filter-group:nth-child(odd) {
    border-right: 0;
  }

  .filter-group:nth-last-child(2) {
    border-bottom: 1px solid #eee9e3;
  }

  .collection-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .collection-toolbar label,
  .collection-toolbar select {
    width: 100%;
  }

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

  .collection-product__media {
    aspect-ratio: 1 / 1.14;
  }

  .pagination {
    gap: 5px;
  }

  .pagination a,
  .pagination button,
  .pagination span {
    min-width: 28px;
    height: 28px;
  }

  .collection-story__mark {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .collection-story__mark svg {
    width: 40px;
    height: 40px;
  }

  .collection-story__mark p {
    font-size: 19px;
  }
}

.collection-page .collection-results--editorial .collection-product .collection-product__media img {
  object-fit: cover;
  object-position: center top;
}

.collection-page .collection-results--editorial .collection-product .collection-product__media img[alt="Mali Embellished Clutch"] {
  object-position: center center;
}

.product-editorial-page {
  background: #fff;
}

.product-editorial-page .announcement {
  display: none;
}

.product-editorial-page .site-header,
.product-editorial-page main,
.product-editorial-page .site-footer {
  width: 100%;
  max-width: none;
}

.product-editorial-page .site-header {
  height: 86px;
  grid-template-columns: minmax(250px, 1fr) auto minmax(175px, 1fr);
  padding: 0 clamp(34px, 4.6vw, 78px);
  border-color: #efebe4;
}

.product-editorial-page .brand__mark {
  width: 44px;
  height: 44px;
}

.product-editorial-page .brand span {
  font-size: 38px;
}

.product-editorial-page .main-nav {
  gap: clamp(30px, 3.7vw, 64px);
  justify-content: center;
  padding-left: 0;
}

.product-editorial-page .header-actions {
  gap: clamp(20px, 2.2vw, 34px);
}

.product-editorial-page .product-stage {
  width: 100%;
  max-width: 1480px;
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 56.2%) minmax(360px, 43.8%);
  column-gap: 0;
  align-items: stretch;
}

.product-editorial-page .thumbs {
  display: none;
}

.product-editorial-page .gallery-main {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 86px);
  border-radius: 0;
  background: #e9dfd1;
}

.product-editorial-page .gallery-main img {
  object-fit: cover;
  object-position: 42% center;
}

.product-editorial-page .gallery-main img.is-contain {
  object-fit: cover;
  background: #e9dfd1;
}

.product-editorial-page .zoom-button {
  top: 30px;
  right: 30px;
  box-shadow: none;
}

.product-editorial-page .product-info {
  width: min(450px, calc(100% - 72px));
  align-self: center;
  margin: 0 auto;
  padding: 0;
}

.product-editorial-page .breadcrumbs {
  color: #8a837b;
  font-size: 10px;
}

.product-editorial-page .product-info h1 {
  margin: clamp(34px, 3.1vw, 50px) 0 14px;
  color: #1e1a16;
  font-size: clamp(56px, 4.8vw, 78px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.93;
}

.product-editorial-page .price {
  margin-bottom: 23px;
  font-size: 22px;
}

.product-editorial-page .summary {
  max-width: 410px;
  color: #686058;
  font-size: 12px;
  line-height: 1.7;
}

.product-editorial-page .divider {
  margin: 36px 0 25px;
  background: #ebe6df;
}

.product-editorial-page .option-block {
  margin-bottom: 22px;
}

.product-editorial-page .option-label,
.product-editorial-page .size-heading,
.product-editorial-page .quantity-block > span {
  color: #4d4742;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.product-editorial-page .swatches {
  gap: 16px;
}

.product-editorial-page .swatch {
  width: 37px;
  height: 37px;
  flex-basis: 37px;
}

.product-editorial-page .sizes {
  grid-template-columns: repeat(6, minmax(48px, 1fr));
  gap: 11px;
}

.product-editorial-page .sizes button {
  height: 42px;
  font-size: 11px;
}

.product-editorial-page .quantity-control {
  width: 132px;
  height: 34px;
  grid-template-columns: 40px 52px 40px;
}

.product-editorial-page .purchase-row {
  height: 52px;
  grid-template-columns: 1fr 56px;
  gap: 13px;
}

.product-editorial-page .add-button {
  border: 0;
  background: #0d0d0d;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.product-editorial-page .add-button:hover,
.product-editorial-page .add-button:focus-visible {
  background: #24211f;
  box-shadow: 0 12px 26px rgba(15, 12, 9, 0.16);
  transform: translateY(-1px);
}

.product-editorial-page .wish-button {
  display: grid;
  place-items: center;
  border: 1px solid #111;
  background: #fff;
  cursor: pointer;
}

.product-editorial-page .trust-row {
  margin-top: 32px;
  gap: 17px;
}

.product-editorial-page .trust-row span {
  color: #4a443e;
  white-space: normal;
}

.editorial-kicker {
  position: relative;
  width: max-content;
  margin: 0 0 42px;
  color: #817363;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  line-height: 1.4;
  text-transform: uppercase;
}

.editorial-kicker::after {
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 62px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.editorial-section {
  width: min(100% - clamp(58px, 8vw, 150px), 1330px);
  min-height: clamp(480px, 42vw, 660px);
  margin: clamp(74px, 7vw, 124px) auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(54px, 7.6vw, 130px);
  align-items: center;
}

.editorial-copy {
  max-width: 420px;
}

.editorial-copy h2,
.movement-story__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.3vw, 74px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.editorial-copy p:not(.editorial-kicker),
.movement-story__copy p:not(.editorial-kicker) {
  max-width: 350px;
  margin: 34px 0 0;
  color: #5f574f;
  font-size: 12px;
  line-height: 1.72;
}

.editorial-media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #eee5d8;
}

.editorial-section--craft .editorial-media {
  aspect-ratio: 1.42 / 1;
}

.editorial-section--detail {
  margin-top: clamp(70px, 7vw, 118px);
}

.editorial-section--detail .editorial-media {
  aspect-ratio: 1.54 / 1;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.editorial-section--craft .editorial-media img {
  object-position: center center;
}

.editorial-section--detail .editorial-media img {
  object-position: center 62%;
}

.editorial-media:hover img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.movement-story {
  position: relative;
  min-height: clamp(450px, 40vw, 650px);
  margin-top: clamp(72px, 7vw, 120px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #d7c8b8;
  isolation: isolate;
}

.movement-story img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.movement-story::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(34, 22, 15, 0.02) 0%, rgba(34, 22, 15, 0.02) 48%, rgba(50, 34, 22, 0.46) 72%, rgba(50, 34, 22, 0.58) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(27, 19, 13, 0.08));
  content: "";
}

.movement-story__copy {
  width: min(360px, calc(100% - 44px));
  justify-self: end;
  margin-right: clamp(76px, 12vw, 210px);
  color: #fff;
}

.movement-story__copy .editorial-kicker,
.movement-story__copy p {
  color: #fff;
}

.movement-story__copy .editorial-kicker::after {
  background: rgba(255, 255, 255, 0.7);
}

.movement-story__copy p:not(.editorial-kicker) {
  color: rgba(255, 255, 255, 0.9);
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 34px;
  color: #8e6b28;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  width: 34px;
  margin-left: 12px;
  border-top: 1px solid currentColor;
  content: "";
  transform: translateY(0.68em);
}

.product-editorial-page .recommendations {
  width: min(100% - clamp(50px, 7vw, 128px), 1320px);
  max-width: none;
  margin: clamp(76px, 7vw, 126px) auto 0;
  padding-bottom: clamp(58px, 5.2vw, 90px);
}

.product-editorial-page .recommendations h2 {
  margin: 0 0 32px;
  color: #312b25;
  font-size: 16px;
  letter-spacing: 0.36em;
}

.product-editorial-page .product-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: clamp(22px, 2.3vw, 34px);
  overflow: visible;
}

.product-editorial-page .product-card {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-editorial-page .product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.13 / 1;
  object-fit: cover;
  object-position: center 18%;
  transition: filter 320ms var(--ease-out), transform 520ms var(--ease-soft);
}

.product-editorial-page .product-card:hover,
.product-editorial-page .product-card:focus-within {
  box-shadow: none;
}

.product-editorial-page .product-card:hover img,
.product-editorial-page .product-card:focus-within img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.product-editorial-page .product-card h3,
.product-editorial-page .product-card p {
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}

.product-editorial-page .product-card h3 {
  margin-top: 13px;
  color: #29241f;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

.product-editorial-page .product-card h3 a {
  text-decoration: none;
}

.product-editorial-page .product-card p {
  margin-top: 4px;
  color: #4e4740;
  font-size: 10px;
}

.product-editorial-page .product-card .heart,
.product-editorial-page .carousel-arrow {
  display: none;
}

.editorial-footer {
  margin-top: 0;
  border-top: 1px solid #eee9e3;
}

.editorial-footer__inner {
  width: min(100% - clamp(50px, 7vw, 128px), 1320px);
  min-height: 182px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(4, minmax(120px, 0.55fr));
  gap: clamp(30px, 5vw, 82px);
  align-items: start;
  padding: 36px 0 22px;
}

.editorial-footer__brand {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.editorial-footer__brand .brand__mark {
  width: 52px;
  height: 52px;
}

.editorial-footer__brand p {
  margin: 5px 0 0;
  color: #2f2924;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.04;
}

.editorial-footer nav {
  display: grid;
  gap: 5px;
}

.editorial-footer h2 {
  margin: 0 0 8px;
  color: #312c27;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.editorial-footer a {
  color: #5f574f;
  font-size: 9px;
  text-decoration: none;
}

.editorial-footer a:hover,
.editorial-footer a:focus-visible {
  color: #151515;
  text-decoration: underline;
}

.editorial-footer__copyright {
  width: min(100% - clamp(50px, 7vw, 128px), 1320px);
  margin: 0 auto 18px;
  color: #80766c;
  font-size: 9px;
}

@media (max-width: 1180px) {
  .product-editorial-page .site-header {
    grid-template-columns: minmax(220px, 1fr) auto minmax(150px, 1fr);
  }

  .product-editorial-page .main-nav {
    gap: 22px;
  }

  .product-editorial-page .product-stage {
    grid-template-columns: minmax(0, 54%) minmax(360px, 46%);
  }

  .editorial-footer__inner {
    grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(120px, 0.5fr));
  }
}

@media (max-width: 920px) {
  .product-editorial-page .site-header {
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 16px 22px;
  }

  .product-editorial-page .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 8px 0 2px;
  }

  .product-editorial-page .product-stage {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-editorial-page .gallery-main {
    height: calc(100svh - 156px);
    min-height: 520px;
    aspect-ratio: auto;
  }

  .product-editorial-page .product-info {
    width: calc(100% - 44px);
    max-width: 560px;
    padding: 42px 0 72px;
  }

  .editorial-section {
    width: calc(100% - 44px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 76px;
  }

  .movement-story {
    min-height: 620px;
    align-items: end;
  }

  .movement-story img {
    object-position: 28% center;
  }

  .movement-story::after {
    background: linear-gradient(180deg, rgba(29, 20, 14, 0.02) 0%, rgba(29, 20, 14, 0.12) 45%, rgba(29, 20, 14, 0.72) 100%);
  }

  .movement-story__copy {
    justify-self: start;
    margin: 0 22px 44px;
  }

  .product-editorial-page .recommendations {
    width: calc(100% - 44px);
    margin-top: 76px;
  }

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

  .editorial-footer__inner {
    width: calc(100% - 44px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-footer__brand {
    grid-column: 1 / -1;
  }

  .editorial-footer__copyright {
    width: calc(100% - 44px);
  }
}

@media (max-width: 560px) {
  .product-editorial-page .brand span {
    font-size: 30px;
  }

  .product-editorial-page .product-info h1 {
    font-size: 48px;
  }

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

  .product-editorial-page .trust-row {
    grid-template-columns: 1fr;
  }

  .editorial-copy h2,
  .movement-story__copy h2 {
    font-size: 42px;
  }

  .movement-story {
    min-height: 560px;
  }

  .product-editorial-page .product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 14px;
  }

  .editorial-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 30px;
  }

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

  .editorial-footer__brand .brand__mark {
    width: 42px;
    height: 42px;
  }

  .editorial-footer__brand p {
    font-size: 21px;
  }
}

@media (min-width: 921px) {
  html:has(.product-editorial-page) {
    scroll-padding-top: 86px;
    scroll-snap-type: y mandatory;
  }

  .product-editorial-page .product-stage,
  .product-editorial-page .editorial-section,
  .product-editorial-page .movement-story {
    scroll-snap-align: start;
  }

  .product-editorial-page .product-stage {
    min-height: calc(100svh - 86px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .gallery-main__ghost {
    display: none;
  }
}

.home-page {
  --home-rail: clamp(36px, 4vw, 64px);
  background: #fbfaf7;
  color: #111;
}

.home-page main,
.home-page .site-header,
.home-page .site-footer {
  width: 100%;
  max-width: none;
}

.home-header {
  height: 86px;
  grid-template-columns: minmax(245px, 1fr) auto minmax(190px, 1fr);
  padding: 0 var(--home-rail);
  border-color: #e8e2d9;
  background: rgba(255, 255, 253, 0.96);
}

.home-header .brand__logo {
  width: clamp(180px, 14vw, 244px);
}

.home-nav {
  min-width: 0;
  max-width: 100%;
  justify-content: center;
  gap: clamp(28px, 3.9vw, 62px);
  padding: 4px 0 0;
}

.home-nav a,
.home-header .header-actions {
  letter-spacing: 0.18em;
}

.home-header .header-actions {
  gap: 30px;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 86px);
  overflow: hidden;
  background: #0d0b08;
  color: #fff;
}

.home-hero__video,
.home-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transition: opacity 500ms var(--ease-out), transform 900ms var(--ease-soft);
}

.home-hero__video {
  z-index: 1;
}

.home-hero__video[hidden] {
  display: none;
}

.home-hero__poster {
  z-index: 0;
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.82) 0%, rgba(8, 7, 6, 0.62) 22%, rgba(8, 7, 6, 0.12) 54%, rgba(8, 7, 6, 0.04) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.1) 0%, rgba(8, 7, 6, 0.08) 62%, rgba(8, 7, 6, 0.22) 100%);
  pointer-events: none;
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  width: min(470px, calc(100% - 48px));
  padding: clamp(92px, 12vw, 170px) 0 72px var(--home-rail);
  animation: hero-copy-in 760ms var(--ease-soft) both;
}

@keyframes hero-copy-in {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero__copy p {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero__copy h1 {
  margin: 0 0 52px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(72px, 7.5vw, 128px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
}

.home-hero__copy a,
.gallery-edit__copy a,
.finishing-touch a,
.black-story-cta a,
.home-section-heading a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 0 12px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition: border-color 240ms var(--ease-out), color 240ms var(--ease-out), opacity 240ms var(--ease-out);
}

.home-hero__copy a {
  width: 220px;
  display: flex;
  margin-top: 24px;
  color: #fff;
  border-color: var(--gold);
}

.home-hero__copy a:hover,
.home-hero__copy a:focus-visible,
.gallery-edit__copy a:hover,
.gallery-edit__copy a:focus-visible,
.finishing-touch a:hover,
.finishing-touch a:focus-visible,
.black-story-cta a:hover,
.black-story-cta a:focus-visible {
  border-color: currentColor;
  opacity: 0.78;
}

.lookbook-strip,
.home-products,
.gallery-edit,
.finishing-touch,
.featured-pieces {
  padding-right: var(--home-rail);
  padding-left: var(--home-rail);
}

.lookbook-strip {
  padding-top: 0;
  padding-bottom: 50px;
  background: #fbfaf7;
}

.season-bar {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.season-bar nav {
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(38px, 5.6vw, 92px);
  overflow-x: auto;
  scrollbar-width: none;
}

.season-bar nav::-webkit-scrollbar {
  display: none;
}

.season-bar a,
.season-bar button,
.home-section-heading h2,
.home-section-heading a,
.black-story-cta a,
.home-footer h2,
.home-service-strip strong {
  color: #151515;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.season-bar a {
  position: relative;
  padding: 0 0 13px;
  text-decoration: none;
  white-space: nowrap;
}

.season-bar a[aria-current="page"]::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  content: "";
}

.season-bar button {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.season-bar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.lookbook-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.lookbook-rail article {
  min-width: 0;
}

.lookbook-rail img,
.home-product-grid img,
.featured-grid img {
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  background: #ede5dc;
  transition: filter 340ms var(--ease-out), transform 560ms var(--ease-soft);
}

.lookbook-rail img {
  aspect-ratio: 3 / 4.6;
}

.lookbook-rail h2 {
  margin: 18px 0 3px;
  font-family: var(--serif);
  font-size: clamp(31px, 2.6vw, 44px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.lookbook-rail p,
.home-product-grid h3,
.home-product-grid p,
.featured-grid h3,
.featured-grid p {
  margin: 0;
  color: #211d19;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.25;
}

.home-products,
.featured-pieces {
  padding-top: 0;
  padding-bottom: 72px;
}

.home-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.home-section-heading h2 {
  margin: 0;
  font-family: var(--sans);
  line-height: 1;
}

.home-section-heading a {
  gap: 16px;
  padding-bottom: 8px;
  border-color: transparent;
  text-decoration: none;
}

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

.home-product-grid img {
  aspect-ratio: 4 / 5.45;
}

.home-product-grid h3,
.featured-grid h3 {
  margin-top: 14px;
}

.home-product-grid p,
.featured-grid p {
  margin-top: 5px;
  color: #4f4840;
}

.gallery-edit {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1.12fr;
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #f4efe7;
}

.gallery-edit article {
  min-height: clamp(330px, 25vw, 465px);
  overflow: hidden;
  background: #fbfaf7;
}

.gallery-edit__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transition: filter 360ms var(--ease-out), transform 700ms var(--ease-soft);
}

.gallery-edit__image:hover img,
.gallery-edit__image:focus-within img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.gallery-edit__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 74px);
}

.gallery-edit__copy p,
.finishing-touch p {
  margin: 0 0 18px;
  color: #211d19;
  font-family: var(--serif);
  font-size: clamp(28px, 2.2vw, 40px);
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.gallery-edit__copy p::after,
.finishing-touch p::after {
  display: block;
  width: 34px;
  height: 1px;
  margin-top: 24px;
  background: var(--gold);
  content: "";
}

.gallery-edit__copy h2,
.finishing-touch h2 {
  max-width: 245px;
  margin: 0 0 48px;
  color: #4c453d;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.gallery-edit__copy a,
.finishing-touch a {
  width: 170px;
  color: #161616;
  border-color: #7f7364;
  font-size: 12px;
}

.finishing-touch {
  min-height: clamp(250px, 19vw, 355px);
  display: grid;
  grid-template-columns: minmax(245px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 58px);
  padding-top: 36px;
  padding-bottom: 36px;
  overflow: hidden;
  background: #fbf8f1;
}

.finishing-touch figure {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) minmax(160px, 0.62fr) minmax(160px, 0.62fr);
  align-items: end;
  gap: clamp(22px, 3.2vw, 58px);
  margin: 0;
}

.finishing-touch img {
  width: 100%;
  max-height: 285px;
  object-fit: contain;
  object-position: center bottom;
  transition: filter 320ms var(--ease-out), transform 420ms var(--ease-soft);
}

.finishing-touch img:hover {
  filter: saturate(1.05);
  transform: translateY(-3px);
}

.featured-pieces {
  padding-top: 34px;
  background: #fbfaf7;
}

.featured-pieces .home-section-heading {
  border-top: 1px solid #bfb8ad;
  padding-top: 26px;
}

.featured-pieces .home-section-heading h2 {
  letter-spacing: 0.38em;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.featured-grid img {
  aspect-ratio: 4 / 5;
}

.featured-grid article a {
  display: block;
  overflow: hidden;
}

.featured-grid article:hover img,
.featured-grid article:focus-within img {
  filter: saturate(1.04);
  transform: scale(1.03);
}

.black-story-cta {
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 20px;
  padding: 30px var(--home-rail);
  background: #090908;
  color: #fff;
  text-align: center;
}

.black-story-cta p {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(24px, 2.1vw, 38px);
  letter-spacing: 0.02em;
}

.black-story-cta a {
  color: #fff;
  border-color: transparent;
}

.home-footer {
  margin-top: 0;
  background: #fbfaf7;
  border-top: 1px solid #e5ded5;
}

.home-service-strip {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  padding: 0 var(--home-rail);
  border-bottom: 1px solid #e5ded5;
}

.home-service-strip div {
  min-height: 50px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  border-right: 1px solid #ded7cf;
}

.home-service-strip div:last-child {
  border-right: 0;
}

.home-service-strip svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #5d574f;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-service-strip p,
.home-service-strip span {
  margin: 0;
}

.home-service-strip span {
  display: block;
  margin-top: 7px;
  color: #5f574f;
  font-family: var(--serif);
  font-size: 14px;
}

.home-footer__inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.6fr) repeat(3, minmax(120px, 0.72fr)) minmax(250px, 1.4fr);
  gap: clamp(32px, 4vw, 70px);
  padding: 56px var(--home-rail) 54px;
}

.home-footer__brand .brand__logo {
  width: clamp(150px, 12vw, 210px);
}

.home-footer__brand p,
.home-newsletter p {
  margin: 22px 0 0;
  color: #5d554d;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
}

.home-footer nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.home-footer h2 {
  margin: 0 0 12px;
}

.home-footer a {
  color: #24201c;
  font-size: 13px;
  text-decoration: none;
}

.home-newsletter {
  position: relative;
}

.home-newsletter p {
  max-width: 260px;
  margin-top: 0;
  margin-bottom: 34px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
}

.home-newsletter label {
  display: block;
}

.home-newsletter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.home-newsletter input {
  width: 100%;
  height: 42px;
  padding: 0 44px 0 0;
  border: 0;
  border-bottom: 1px solid #26211d;
  background: transparent;
  color: #151515;
  font: inherit;
  outline: 0;
}

.home-newsletter button {
  position: absolute;
  right: 0;
  bottom: 7px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.home-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: clamp(28px, 5vw, 70px);
  padding: 0 var(--home-rail) 32px;
}

.home-footer__bottom p,
.home-footer__bottom a {
  margin: 0;
  color: #504a43;
  font-size: 12px;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .home-header {
    height: auto;
    grid-template-columns: 1fr auto;
    row-gap: 18px;
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .home-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 34px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

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

  .home-hero {
    min-height: calc(100svh - 134px);
  }

  .lookbook-rail,
  .home-product-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 24vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .lookbook-rail::-webkit-scrollbar,
  .home-product-grid::-webkit-scrollbar {
    display: none;
  }

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

  .home-service-strip,
  .home-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-strip div:nth-child(2) {
    border-right: 0;
  }

  .home-footer__brand,
  .home-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .home-page {
    --home-rail: 20px;
  }

  .home-header {
    grid-template-columns: 1fr auto;
  }

  .home-header .brand__logo {
    width: 164px;
  }

  .home-header .header-actions {
    gap: 12px;
  }

  .home-header .icon-button {
    width: 28px;
    height: 28px;
  }

  .home-header .icon-button svg {
    width: 21px;
    height: 21px;
  }

  .home-hero {
    min-height: 680px;
  }

  .home-hero__video,
  .home-hero__poster {
    object-position: 64% center;
  }

  .home-hero__shade {
    background: linear-gradient(180deg, rgba(8, 7, 6, 0.2) 0%, rgba(8, 7, 6, 0.16) 35%, rgba(8, 7, 6, 0.86) 100%);
  }

  .home-hero__copy {
    display: flex;
    min-height: 680px;
    flex-direction: column;
    justify-content: end;
    padding: 0 var(--home-rail) 46px;
  }

  .home-hero__copy h1 {
    font-size: clamp(62px, 17vw, 88px);
    margin-bottom: 28px;
  }

  .home-hero__copy p {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .season-bar {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }

  .lookbook-rail,
  .home-product-grid {
    grid-auto-columns: minmax(168px, 68vw);
  }

  .gallery-edit {
    grid-template-columns: 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .gallery-edit article {
    min-height: 310px;
  }

  .gallery-edit__copy {
    min-height: 250px;
  }

  .finishing-touch {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .finishing-touch figure {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

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

  .home-service-strip,
  .home-footer__inner,
  .home-footer__bottom {
    grid-template-columns: 1fr;
  }

  .home-service-strip {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .home-service-strip div {
    border-right: 0;
    border-bottom: 1px solid #ded7cf;
    padding: 18px 0;
  }

  .home-service-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 920px) {
  .site-header,
  .collection-page .site-header,
  .product-editorial-page .site-header,
  .home-header {
    height: 64px;
    min-height: 64px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 8px;
    row-gap: 0;
    padding: 0 16px;
  }

  .is-mobile-menu-open .site-header {
    box-shadow: 0 10px 30px rgba(28, 23, 18, 0.06);
    transform: none;
  }

  .site-header .brand,
  .collection-page .site-header .brand,
  .product-editorial-page .site-header .brand,
  .home-header .brand {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
  }

  .site-header .brand:hover,
  .site-header .brand:focus-visible {
    transform: none;
  }

  .site-header .brand__logo,
  .collection-page .site-header .brand__logo,
  .product-editorial-page .site-header .brand__logo,
  .home-header .brand__logo {
    width: clamp(148px, 43vw, 172px);
  }

  .site-header .main-nav,
  .collection-page .main-nav,
  .product-editorial-page .main-nav,
  .home-nav {
    display: none;
  }

  .site-header .header-actions,
  .collection-page .header-actions,
  .product-editorial-page .header-actions,
  .home-header .header-actions {
    grid-column: 3;
    gap: 4px;
    justify-content: end;
  }

  .site-header .header-actions .icon-button[aria-label="Account"] {
    display: none;
  }

  .site-header .icon-button,
  .home-header .icon-button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
  }

  .site-header .icon-button svg,
  .home-header .icon-button svg {
    width: 22px;
    height: 22px;
  }

  .mobile-menu-button {
    grid-column: 1;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    cursor: pointer;
  }

  .mobile-menu-button svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.55;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 240ms var(--ease-out), visibility 240ms var(--ease-out);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-menu__scrim {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(18, 15, 12, 0.46);
    backdrop-filter: blur(5px);
  }

  .mobile-menu__panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(88vw, 390px);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 18px 22px 28px;
    background: #fffdfa;
    color: #17130f;
    box-shadow: 24px 0 70px rgba(22, 17, 12, 0.2);
    transform: translateX(-100%);
    transition: transform 280ms var(--ease-out);
  }

  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
  }

  .mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e9e2d9;
  }

  .mobile-menu__brand {
    display: inline-flex;
    align-items: center;
  }

  .mobile-menu__brand img {
    width: 158px;
    height: auto;
    background: transparent;
  }

  .mobile-menu__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu__close svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.45;
  }

  .mobile-menu__primary {
    display: grid;
    padding: 24px 0 20px;
  }

  .mobile-menu__link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid #eee8e0;
    color: #17130f;
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-menu__link::after {
    margin-left: auto;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 18px;
    content: "→";
  }

  .mobile-menu__link[aria-current="page"] {
    color: #8f6e28;
  }

  .mobile-menu__feature {
    display: grid;
    gap: 12px;
    padding: 22px 0;
    border-bottom: 1px solid #e9e2d9;
  }

  .mobile-menu__feature p,
  .mobile-menu__note {
    margin: 0;
    color: #6d655d;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .mobile-menu__feature a {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gold);
    color: #17130f;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-menu__secondary {
    display: grid;
    gap: 16px;
    padding: 24px 0;
  }

  .mobile-menu__secondary a {
    color: #3f3933;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .mobile-menu__note {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #e9e2d9;
  }
}

@media (max-width: 380px) {
  .site-header,
  .collection-page .site-header,
  .product-editorial-page .site-header,
  .home-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .site-header .brand__logo,
  .collection-page .site-header .brand__logo,
  .product-editorial-page .site-header .brand__logo,
  .home-header .brand__logo {
    width: 142px;
  }

  .site-header .icon-button,
  .home-header .icon-button {
    width: 34px;
  }

  .mobile-menu__link {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu__panel {
    transition: none;
  }
}
