:root {
  --ink: #25231f;
  --soft-ink: #57524b;
  --muted: #817a70;
  --paper: #f8f7f3;
  --mist: #eceae4;
  --stone: #ded9cf;
  --line: rgba(37, 35, 31, .12);
  --champagne: #9d8767;
  --button: #403b35;
  --white: #fffefa;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --display: "Marcellus", "Iowan Old Style", "Georgia", serif;
  --label-tracking: .13em;
  --wide-tracking: .34em;
  --body-leading: 1.72;
  --radius: 6px;
  --control-target: 44px;
}

.responsive-picture {
  display: contents;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: var(--body-leading);
  font-kerning: normal;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: .018;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

button,
input {
  font: inherit;
}

:where(button, [role="button"], input, select, summary, a):focus-visible {
  outline: 2px solid #3f5551;
  outline-offset: 3px;
}

:where(.menu-toggle, .icon-link, .filter-button, .necklace-plp-filter-button, .catalog-filter-close, .new-in-film-toggle) {
  min-width: var(--control-target);
  min-height: var(--control-target);
}

:where(.necklace-plp-sort select, .new-in-control select) {
  min-height: var(--control-target);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, .94);
  color: var(--ink);
  backdrop-filter: blur(14px);
  transition: background .22s ease, border-color .22s ease, color .22s ease, backdrop-filter .22s ease;
}

.home-page .site-header {
  position: sticky;
  background: rgba(255, 254, 250, .94);
  border-bottom-color: var(--line);
  color: var(--ink);
  text-shadow: none;
  backdrop-filter: blur(14px);
}

.home-page .site-header.is-scrolled,
.home-page .site-header:focus-within {
  background: rgba(255, 254, 250, .94);
  border-bottom-color: var(--line);
  color: var(--ink);
  text-shadow: none;
  backdrop-filter: blur(14px);
}

.brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  color: currentColor;
  font-size: 1.22rem;
  line-height: 1;
  letter-spacing: var(--wide-tracking);
  text-indent: var(--wide-tracking);
  font-weight: 520;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  gap: 18px;
}

.nav-item {
  position: relative;
}

.nav-link,
.header-link,
.menu-toggle,
.mega-label,
.utility-label,
.product-card__type,
.filter-button,
.sort-control,
.footer,
  .eyebrow {
  font-size: .69rem;
  line-height: 1;
  letter-spacing: var(--label-tracking);
  font-weight: 650;
  text-transform: uppercase;
}

.nav-link,
.header-link {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  white-space: nowrap;
}

.nav-link[aria-current="page"] {
  color: var(--champagne);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: currentColor;
}

.icon-link {
  position: relative;
  width: var(--control-target);
  height: var(--control-target);
  display: inline-grid;
  place-items: center;
  color: currentColor;
}

.bag-count {
  position: absolute;
  right: 1px;
  bottom: 1px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: .61rem;
  line-height: 1;
}

.icon-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega {
  position: absolute;
  top: calc(100% + 1px);
  left: -28px;
  width: min(760px, calc(100vw - 84px));
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 42px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, .98);
  box-shadow: 0 26px 60px rgba(61, 53, 42, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-col {
  display: grid;
  align-content: start;
  gap: 16px;
}

.mega-label {
  margin: 0 0 6px;
  color: var(--champagne);
  font-weight: 700;
}

.mega-col a {
  color: var(--soft-ink);
  font-size: .95rem;
  line-height: 1.45;
}

.mega-feature {
  display: grid;
  gap: 14px;
}

.mega-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 68% center;
}

.mega-feature strong {
  font-family: var(--display);
  font-size: 1.48rem;
  font-weight: 400;
  line-height: 1.12;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(520px, .82fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #fffefa 0%, #f5f4ef 58%, #ebe8df 100%);
}

.hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 82px 58px 78px 92px;
}

.hero h1,
.page-title,
.section-heading h2,
.story-copy h2,
.about-hero h1,
  .plp-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.1rem, 4.7vw, 5rem);
  line-height: 1.02;
}

.hero-copy p {
  max-width: 500px;
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: 1.02rem;
  line-height: 1.78;
  text-wrap: pretty;
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  min-width: 198px;
  display: inline-grid;
  place-items: center;
  padding: 0 28px;
  border: 1px solid var(--button);
  background: var(--button);
  color: #fffefa;
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.button:hover,
.button:focus-visible {
  background: transparent;
  color: var(--ink);
  border-color: rgba(37, 35, 31, .42);
}

.text-link {
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.hero-media {
  margin: 0;
  min-height: 100%;
  border-left: 1px solid var(--line);
  background: var(--mist);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.section {
  padding: 86px 48px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(260px, 560px);
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 38px;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 3.1vw, 3.55rem);
  line-height: 1.06;
}

.section-heading p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.78;
  text-wrap: pretty;
}

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

.category-card {
  display: grid;
  gap: 16px;
}

.category-card figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease;
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: scale(1.035);
}

.category-card footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.category-card strong {
  font-family: var(--display);
  font-size: 1.48rem;
  font-weight: 400;
  line-height: 1.12;
}

.category-card span {
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: var(--label-tracking);
  font-weight: 650;
  text-transform: uppercase;
}

.brand-film {
  padding: 0 48px 94px;
}

.brand-film__shell {
  position: relative;
  min-height: 520px;
  aspect-ratio: 32 / 15;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
  color: var(--white);
}

.brand-film__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(27, 25, 22, .58), rgba(27, 25, 22, .1) 48%, rgba(27, 25, 22, .08)),
    linear-gradient(90deg, rgba(27, 25, 22, .4), transparent 48%);
}

.brand-film__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(.94) contrast(.98);
}

.brand-film__copy {
  position: absolute;
  z-index: 2;
  left: 44px;
  bottom: 42px;
  max-width: 560px;
}

.brand-film__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.45rem, 4.6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.brand-film__copy p {
  max-width: 440px;
  margin: 20px 0 0;
  color: rgba(255, 254, 250, .86);
  font-size: 1rem;
  line-height: 1.78;
}

.film-controls {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.film-control {
  min-width: 112px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 254, 250, .42);
  background: rgba(27, 25, 22, .24);
  color: var(--white);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-hero {
  height: 100svh;
  min-height: 640px;
  background: #d9d5cc;
}

.home-hero__link {
  position: relative;
  height: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.home-hero__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 42%, rgba(37, 35, 31, .08), rgba(37, 35, 31, .34) 78%),
    linear-gradient(180deg, rgba(37, 35, 31, .2), rgba(37, 35, 31, .1) 34%, rgba(37, 35, 31, .38));
}

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

.home-hero__copy {
  position: absolute;
  z-index: 2;
  inset-inline: 24px;
  top: 61%;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.home-hero__copy h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(2.1rem, 4.05vw, 4.75rem);
  font-weight: 320;
  letter-spacing: .065em;
  line-height: .98;
  text-transform: lowercase;
}

.home-hero__copy span {
  padding: 0 2px 7px;
  border-bottom: 1.5px solid currentColor;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-shadow: 0 1px 12px rgba(25, 23, 20, .34);
  text-transform: uppercase;
  transition: opacity .2s ease, border-color .2s ease;
}

.home-hero__link:hover .home-hero__copy span {
  opacity: .88;
}

.home-hero__link:focus-visible {
  outline: none;
}

.home-hero__link:focus-visible .home-hero__copy span {
  outline: 1px solid currentColor;
  outline-offset: 6px;
}

.featured-section {
  padding: 82px clamp(24px, 2.5vw, 48px) 102px;
  background: var(--white);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.center-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.center-heading p {
  max-width: 590px;
  margin: 18px auto 0;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.78;
  text-wrap: pretty;
}

.collection-grid {
  width: min(1760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 1.5vw, 30px);
}

.collection-card {
  min-width: 0;
  display: grid;
  gap: 15px;
  color: var(--ink);
  text-align: center;
}

.collection-card__image {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f4f2ed;
}

.collection-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .46s ease, opacity .3s ease;
}

.collection-card:hover .product-img--still,
.collection-card:focus-visible .product-img--still {
  opacity: 0;
}

.collection-card:hover .product-img--worn,
.collection-card:focus-visible .product-img--worn {
  opacity: 1;
}

.collection-card:hover .product-img,
.collection-card:focus-visible .product-img {
  transform: scale(1.035);
}

.collection-card__meta {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-height: 54px;
}

.collection-card__meta span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: var(--label-tracking);
  font-weight: 650;
  text-transform: uppercase;
}

.collection-card__meta strong {
  max-width: 22ch;
  font-size: .95rem;
  font-weight: 520;
  line-height: 1.42;
}

.duo-stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0 48px 108px;
  background: var(--white);
}

.story-tile {
  position: relative;
  height: clamp(420px, 32.3vw, 620px);
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--mist);
}

.story-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 35, 31, .24);
}

.story-tile--cool img {
  filter: grayscale(.78) contrast(.98);
}

.story-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.story-tile:hover img,
.story-tile:focus-visible img {
  transform: scale(1.035);
}

.story-tile span {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.story-tile strong {
  font-size: clamp(1.25rem, 1.65vw, 1.72rem);
  line-height: 1.06;
  letter-spacing: .08em;
  font-weight: 650;
  text-transform: uppercase;
}

.story-tile em {
  padding-bottom: 9px;
  border-bottom: 1px solid currentColor;
  font-style: normal;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.brand-film--split {
  display: grid;
  grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 2.3vw, 46px);
  padding: 62px 0 118px 72px;
  background: var(--white);
  overflow: hidden;
}

.brand-film--split .brand-film__copy {
  position: static;
  max-width: 470px;
  color: var(--ink);
}

.brand-film--split .brand-film__copy h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 2vw, 2.45rem);
  line-height: 1.08;
}

.brand-film--split .brand-film__copy p {
  color: var(--soft-ink);
  max-width: 430px;
  margin-top: 24px;
  margin-bottom: 36px;
  font-size: .96rem;
  line-height: 1.8;
}

.brand-film--split .brand-film__shell {
  min-height: clamp(560px, 37.2vw, 720px);
  aspect-ratio: 16 / 9;
}

.summer-section {
  padding: 104px 0 116px;
  background: var(--white);
  text-align: center;
  scroll-margin-top: 104px;
}

#summer-title {
  scroll-margin-top: 118px;
}

.center-heading--large {
  margin-bottom: 46px;
}

.summer-track {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: clamp(28px, 3.1vw, 58px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: clamp(30px, 3.2vw, 64px);
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
  padding: 0 clamp(30px, 3.2vw, 64px) 48px;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

.summer-track::-webkit-scrollbar {
  display: none;
}

.summer-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.summer-card {
  min-width: 0;
  flex: 0 0 clamp(250px, 16.2vw, 312px);
  scroll-snap-align: start;
  display: grid;
  gap: 22px;
  align-content: start;
}

.summer-card__image {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  aspect-ratio: 5 / 6;
  display: grid;
  place-items: center;
  background: #ffffff;
}

.summer-card img {
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.summer-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.34;
}

.summer-card p {
  margin: 8px 0 0;
  color: var(--soft-ink);
  font-size: .9rem;
  line-height: 1.48;
}

.carousel-controls {
  width: min(460px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 22px;
  margin: 0 auto 58px;
}

.carousel-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.carousel-controls svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(37, 35, 31, .18);
}

.carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(.18);
  transform-origin: left center;
  background: var(--ink);
  transition: transform .18s ease;
}

.button--outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(37, 35, 31, .42);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--button);
  color: var(--white);
}

.product-rail,
.product-grid {
  display: grid;
  gap: 24px 14px;
}

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

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

.product-card {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.product-card__image {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--mist);
}

.product-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease, opacity .28s ease;
}

.product-img--worn {
  opacity: 0;
}

.product-card:hover .product-img--still,
.product-card:focus-within .product-img--still {
  opacity: 0;
}

.product-card:hover .product-img--worn,
.product-card:focus-within .product-img--worn {
  opacity: 1;
}

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

.product-card__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: start;
}

.product-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 520;
  line-height: 1.44;
}

.product-card__type {
  grid-column: 1 / -1;
  color: var(--muted);
}

.product-card__display-meta {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.35;
}

.quick-view {
  border: 0;
  padding: 0 0 8px;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--soft-ink);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.crop-1 { object-position: 12% 25%; }
.crop-2 { object-position: 37% 25%; }
.crop-3 { object-position: 62% 25%; }
.crop-4 { object-position: 87% 25%; }
.crop-5 { object-position: 12% 75%; }
.crop-6 { object-position: 37% 75%; }
.crop-7 { object-position: 62% 75%; }
.crop-8 { object-position: 87% 75%; }

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 590px;
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial figure {
  margin: 0;
}

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

.story-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 72px;
}

.story-copy h2 {
  max-width: 540px;
  font-size: clamp(2.6rem, 4vw, 3.75rem);
  line-height: 1.06;
}

.story-copy p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.82;
  text-wrap: pretty;
}

.plp-hero,
.about-hero {
  display: grid;
  grid-template-columns: minmax(380px, .85fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #fffefa, #efede7);
}

.plp-copy,
.about-copy {
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: 84px 56px 58px 72px;
}

.plp-hero h1,
.about-hero h1 {
  font-size: clamp(3rem, 4.6vw, 4.35rem);
  line-height: 1.04;
}

.plp-copy p,
.about-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--soft-ink);
  line-height: 1.82;
  text-wrap: pretty;
}

.plp-media,
.about-media {
  margin: 0;
  min-height: 430px;
  border-left: 1px solid var(--line);
}

.plp-media img,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.plp-toolbar {
  position: sticky;
  top: 64px;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 247, 243, .94);
  backdrop-filter: blur(12px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button,
.sort-control {
  min-height: 40px;
  border: 1px solid rgba(37, 35, 31, .16);
  background: transparent;
  color: var(--soft-ink);
  padding: 0 16px;
}

.filter-button {
  cursor: pointer;
}

.filter-button.is-active {
  border-color: var(--button);
  background: var(--button);
  color: #fffefa;
}

.plp-grid-section {
  padding-top: 48px;
}

.collection-note {
  margin: 54px 0 0;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(280px, 560px);
  gap: 48px;
  padding: 44px 0 0;
  border-top: 1px solid var(--line);
}

.collection-note h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 2.5vw, 2.65rem);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.collection-note p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.82;
}

.about-body {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 690px);
  gap: 80px;
  padding: 92px 72px;
}

.about-body h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.about-body p {
  margin: 0 0 22px;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.82;
  text-wrap: pretty;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 34px;
  background: #f6f4ef;
}

.principle h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.78rem;
  font-weight: 400;
  line-height: 1.12;
}

.principle p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.76;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(280px, 500px) minmax(320px, 620px);
  justify-content: space-between;
  gap: 56px;
  padding: 84px 72px;
  background: #fffefa;
}

.newsletter h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.newsletter p {
  margin: 18px 0 0;
  color: var(--soft-ink);
  line-height: 1.78;
}

.mail-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
}

.mail-form label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.mail-form input {
  height: 54px;
  border: 0;
  border-bottom: 1px solid rgba(37, 35, 31, .38);
  background: transparent;
  color: var(--ink);
  outline: none;
}

.mail-note {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  padding: 30px 42px;
  border-top: 1px solid var(--line);
  background: var(--mist);
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
  letter-spacing: var(--wide-tracking);
  text-indent: var(--wide-tracking);
  font-weight: 520;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-footer p {
  justify-self: end;
  max-width: 520px;
  margin: 0;
  line-height: 1.66;
  text-align: right;
}

.quick-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(37, 35, 31, .28);
}

.quick-modal.is-open {
  display: grid;
  place-items: end;
}

.quick-panel {
  width: min(520px, 100vw);
  min-height: 100vh;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px;
  background: #fffefa;
  box-shadow: -22px 0 70px rgba(37, 35, 31, .18);
}

.quick-close {
  justify-self: end;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.quick-panel figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--mist);
}

.quick-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.08;
}

.quick-panel p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.8;
}

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

@media (max-width: 1120px) {
  .site-header {
    padding: 0 26px;
  }

  .main-nav {
    gap: 22px;
  }

  .hero {
    grid-template-columns: minmax(460px, .9fr) minmax(0, 1fr);
  }

  .hero-copy {
    padding-left: 52px;
  }

  .hero h1 {
    font-size: 3.9rem;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    padding: 0 18px;
  }

  .menu-toggle {
    display: inline-grid;
    min-height: 44px;
    place-items: center;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    font-size: 1.36rem;
    letter-spacing: .36em;
    text-indent: .36em;
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    color: var(--ink);
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 254, 250, .98);
  }

  .main-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .nav-link {
    justify-content: start;
  }

  .mega {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    padding: 18px 0 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item:focus-within .mega,
  .nav-item:hover .mega {
    display: grid;
  }

  .hero,
  .plp-hero,
  .about-hero,
  .editorial,
  .section-heading,
  .collection-note,
  .about-body,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 470px;
    padding: 58px 26px 42px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-media {
    min-height: 430px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 64px 22px;
  }

  .brand-film {
    padding: 0 22px 64px;
  }

  .brand-film__shell {
    min-height: 510px;
    aspect-ratio: 3 / 4;
  }

  .brand-film__video {
    object-position: 64% center;
  }

  .brand-film__copy {
    left: 24px;
    right: 24px;
    bottom: 82px;
  }

  .brand-film__copy h2 {
    font-size: 2.75rem;
  }

  .film-controls {
    left: 24px;
    right: auto;
    bottom: 24px;
    justify-content: flex-start;
  }

  .category-grid,
  .principles {
    grid-template-columns: 1fr;
  }

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

  .story-copy,
  .about-body,
  .newsletter {
    padding: 58px 26px;
  }

  .story-copy h2,
  .section-heading h2,
  .plp-hero h1,
  .about-hero h1,
  .newsletter h2 {
    font-size: 2.85rem;
  }

  .plp-copy,
  .about-copy {
    min-height: 320px;
    padding: 64px 26px 44px;
  }

  .plp-media,
  .about-media {
    min-height: 360px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .plp-toolbar {
    top: 64px;
    display: grid;
    padding: 14px 18px;
  }

  .mail-form {
    grid-template-columns: 1fr;
  }

  .mail-form .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .footer-links {
    justify-content: start;
  }

  .site-footer p {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.72rem;
  }

  .hero-actions,
  .section-actions {
    width: 100%;
    display: grid;
    gap: 20px;
  }

  .button {
    width: 100%;
  }

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

  .hero-media,
  .plp-media,
  .about-media {
    min-height: 340px;
  }

  .brand-film__shell {
    min-height: 460px;
  }

  .brand-film__copy h2 {
    font-size: 2.35rem;
  }
}


@media (prefers-reduced-motion: reduce) {
  .brand-film__video,
  .category-card img,
  .product-card__image img,
  .collection-card__image img,
  .story-tile img,
  .carousel-progress span {
    transition: none;
  }
}

@media (max-width: 900px) {
  .home-hero,
  .home-hero__link,
  .home-hero__link img {
    height: 100svh;
    min-height: 620px;
  }

  .home-hero__link img {
    object-position: 88% center;
  }

  .home-hero__copy {
    top: 60%;
    gap: 18px;
  }

  .home-hero__copy h1 {
    max-width: 580px;
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    letter-spacing: .02em;
  }

  .featured-section {
    padding: 64px 22px 72px;
  }

  .featured-section .center-heading {
    margin-bottom: 32px;
    text-align: center;
  }

  .center-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .center-heading h2 {
    font-size: 2.65rem;
  }

  .center-heading p {
    margin-left: 0;
  }

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

  .collection-card__image {
    aspect-ratio: 1;
  }

  .collection-card__meta strong {
    max-width: 18ch;
    font-size: .92rem;
  }

  .duo-stories {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 22px 72px;
  }

  .story-tile {
    height: auto;
    min-height: 470px;
  }

  .brand-film--split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 22px 76px;
  }

  .brand-film--split .brand-film__copy {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    padding: 0;
  }

  .brand-film--split .brand-film__copy h2 {
    font-size: 2.7rem;
  }

  .brand-film--split .brand-film__shell {
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }

  .summer-section {
    padding: 72px 0 88px;
  }

  .summer-section .center-heading {
    padding: 0 22px;
    text-align: center;
  }

  .summer-section .center-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .summer-section .center-heading p {
    margin-left: auto;
    margin-right: auto;
  }

  .summer-track {
    gap: 34px;
    scroll-padding-inline: 22px;
    padding: 0 22px 38px;
  }

  .summer-card {
    flex-basis: min(320px, 82vw);
    gap: 18px;
  }

  .summer-card__image {
    aspect-ratio: 5 / 6;
  }
}

@media (max-width: 520px) {
  .home-hero__copy h1 {
    font-size: 2.35rem;
  }

  .story-tile {
    min-height: 390px;
  }

  .brand-film--split .brand-film__shell {
    min-height: 360px;
  }

  .carousel-controls {
    width: calc(100% - 44px);
    gap: 12px;
    margin-bottom: 42px;
  }
}

.product-card__media-link {
  display: block;
  color: inherit;
}

.product-card__price {
  margin: 0;
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.35;
}

.product-card__title-link:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.necklace-page {
  background: var(--white);
}

.necklace-page .site-header {
  background: rgba(255, 254, 250, .96);
}

.necklace-plp-bar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 30px;
  border-bottom: 1px solid rgba(37, 35, 31, .1);
  background: var(--white);
}

.necklace-plp-bar__group {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  font-size: .7rem;
  font-weight: 680;
  letter-spacing: var(--label-tracking);
  line-height: 1;
  text-transform: uppercase;
}

.necklace-plp-bar__group strong {
  font-weight: 760;
}

.necklace-plp-sort {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.necklace-plp-sort select {
  min-height: 44px;
  max-width: 190px;
  appearance: none;
  padding: 0 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.necklace-plp-sort::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.necklace-plp-sort select:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.necklace-plp-bar__group--right {
  gap: 34px;
}

.necklace-plp-filter-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}

.necklace-plp-filter-button:hover,
.necklace-plp-filter-button.has-active-filters {
  border-bottom-color: currentColor;
}

.necklace-plp-filter-button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

body.catalog-filter-open {
  overflow: hidden;
}

.catalog-filter-shell {
  position: fixed;
  inset: 64px 0 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}

.catalog-filter-shell.is-open {
  visibility: visible;
  pointer-events: auto;
}

.catalog-filter-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgba(24, 22, 19, .28);
  opacity: 0;
  cursor: default;
  transition: opacity .24s ease;
}

.catalog-filter-shell.is-open .catalog-filter-backdrop {
  opacity: 1;
}

.catalog-filter-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-left: 1px solid var(--line);
  background: var(--white);
  box-shadow: -20px 0 60px rgba(37, 35, 31, .1);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

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

.catalog-filter-header {
  min-height: 132px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 36px 28px;
  border-bottom: 1px solid var(--line);
}

.catalog-filter-header p {
  margin: 0 0 10px;
  color: var(--champagne);
  font-size: .66rem;
  font-weight: 680;
  letter-spacing: var(--label-tracking);
  line-height: 1;
  text-transform: uppercase;
}

.catalog-filter-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1;
}

.catalog-filter-close {
  width: 44px;
  height: 44px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  margin: -8px -10px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.catalog-filter-content {
  overflow-y: auto;
  padding: 34px 36px;
}

.catalog-filter-content fieldset {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.catalog-filter-content legend {
  width: 100%;
  margin-bottom: 16px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: var(--label-tracking);
  line-height: 1;
  text-transform: uppercase;
}

.catalog-filter-option {
  min-height: 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(37, 35, 31, .08);
  color: var(--ink);
  cursor: pointer;
}

.catalog-filter-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--ink);
  cursor: pointer;
}

.catalog-filter-option span {
  font-size: .9rem;
}

.catalog-filter-option small {
  color: var(--muted);
  font-size: .75rem;
}

.catalog-filter-option.is-disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: .46;
}

.catalog-filter-actions {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  padding: 24px 36px 30px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.catalog-filter-actions button {
  min-height: 50px;
  padding: 0 18px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: var(--label-tracking);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-filter-clear {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.catalog-filter-apply {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.catalog-filter-close:focus-visible,
.catalog-filter-actions button:focus-visible,
.catalog-filter-option input:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 340px;
  display: grid;
  margin: 0;
  place-items: center;
  color: var(--soft-ink);
  text-align: center;
}

.necklace-plp-bar__chevron {
  width: 9px;
  height: 9px;
  margin-left: -18px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.necklace-page .plp-hero {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(37, 35, 31, .08);
  background: var(--white);
}

.necklace-page .plp-copy {
  min-height: 328px;
  padding: 112px 32px 58px;
  align-content: end;
  justify-items: center;
  text-align: center;
}

.necklace-page .eyebrow {
  margin: 0 0 18px;
  color: var(--champagne);
}

.necklace-page .plp-hero h1 {
  font-size: clamp(2.85rem, 4.2vw, 4.6rem);
}

.necklace-page .plp-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  font-size: .96rem;
}

.necklace-grid-section {
  padding: 36px 24px 112px;
  background: var(--white);
}

.product-grid--necklaces {
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(58px, 5vw, 92px) 24px;
}

.necklace-page .product-card {
  gap: 18px;
}

.necklace-page .product-card__image {
  aspect-ratio: 602 / 637;
  background: var(--white);
  border: 0;
}

.necklace-page .product-card__image img {
  background: var(--white);
}

.necklace-page .product-img--still {
  --necklace-image-scale: 1;
  --necklace-image-y: 0%;
  padding: 0;
  object-fit: contain;
  transform: translateY(var(--necklace-image-y)) scale(var(--necklace-image-scale));
  transform-origin: center center;
}

.necklace-page .product-card[data-asin="B0FWDXJZ5S"] .product-img--still {
  --necklace-image-scale: 1.1;
}

.necklace-page .product-card[data-asin="B0FWFBTYLC"] .product-img--still {
  --necklace-image-scale: 0.92;
  --necklace-image-y: -4.8%;
}

.necklace-page .product-card[data-asin="B0FWMHY4XZ"] .product-img--still {
  --necklace-image-y: -7.6%;
}

.necklace-page .product-img--worn {
  object-fit: cover;
}

.necklace-page .product-card__meta {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 8px;
  min-height: 112px;
  text-align: center;
}

.necklace-page .product-card h3 {
  max-width: 28ch;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.32;
}

.product-page {
  background: var(--white);
}

.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border-bottom: 1px solid rgba(37, 35, 31, .1);
  background: var(--white);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.pdp-breadcrumb a {
  color: var(--ink);
}

.pdp-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(390px, .55fr);
  align-items: start;
  gap: clamp(38px, 4.2vw, 78px);
  padding: 34px 30px 96px;
}

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

.pdp-gallery__item {
  margin: 0;
  min-height: 0;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}

.pdp-gallery__item.is-primary {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 13;
}

.pdp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.pdp-gallery__item:not(.is-primary) img {
  padding: clamp(10px, 1vw, 20px);
}

.pdp-panel {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 24px;
  padding: 18px 0 0;
}

.pdp-kicker,
.pdp-label {
  margin: 0;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 680;
  letter-spacing: var(--label-tracking);
  line-height: 1.1;
  text-transform: uppercase;
}

.pdp-panel h1,
.pdp-empty h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 3.2vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.pdp-price {
  margin: -8px 0 0;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.3;
}

.pdp-copy {
  max-width: 46ch;
  margin: -4px 0 0;
  color: var(--soft-ink);
  font-size: .95rem;
  line-height: 1.78;
  text-wrap: pretty;
}

.pdp-variant-block {
  display: grid;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(37, 35, 31, .14);
}

.pdp-selected-color {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.pdp-selected-color strong {
  font-size: .94rem;
  font-weight: 650;
  line-height: 1.35;
}

.pdp-selected-color span {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}

.pdp-color-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pdp-color-option {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(37, 35, 31, .16);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.pdp-color-option.is-selected {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.pdp-color-option__thumb {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}

.pdp-color-option__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-color-option > span:last-child {
  min-height: 18px;
  overflow: hidden;
  color: var(--soft-ink);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .06em;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.pdp-option-block {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(37, 35, 31, .14);
}

.payment-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(37, 35, 31, .1);
  cursor: pointer;
}

.payment-option input {
  width: 15px;
  height: 15px;
  margin: 4px 0 0;
  accent-color: var(--ink);
}

.payment-option span {
  display: grid;
  gap: 3px;
}

.payment-option strong {
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.35;
}

.payment-option small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}

.quantity-control {
  width: 138px;
  height: 42px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  border: 1px solid rgba(37, 35, 31, .24);
}

.quantity-control button {
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
}

.quantity-control output {
  text-align: center;
  font-size: .86rem;
  font-weight: 650;
}

.pdp-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pdp-action-row .button {
  width: 100%;
}

.pdp-status {
  min-height: 22px;
  margin: -6px 0 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.pdp-status.is-active {
  color: var(--ink);
}

.pdp-accordions {
  display: grid;
  border-top: 1px solid rgba(37, 35, 31, .14);
}

.pdp-accordions details {
  border-bottom: 1px solid rgba(37, 35, 31, .14);
}

.pdp-accordions summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--ink);
  font-size: .74rem;
  font-weight: 680;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.pdp-accordions summary::after {
  content: "+";
  font-size: 1rem;
  font-weight: 400;
}

.pdp-accordions details[open] summary::after {
  content: "-";
}

.pdp-accordions ul {
  margin: 0;
  padding: 0 0 22px 18px;
  color: var(--soft-ink);
  font-size: .9rem;
  line-height: 1.7;
}

.pdp-accordions p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--soft-ink);
  font-size: .9rem;
  line-height: 1.72;
}

.pdp-empty {
  min-height: 62vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 72px 24px;
  text-align: center;
}

.pdp-empty p:not(.pdp-kicker) {
  max-width: 520px;
  margin: 0;
  color: var(--soft-ink);
}

@media (max-width: 900px) {
  .necklace-plp-bar {
    min-height: 72px;
    gap: 12px;
    padding: 0 22px;
  }

  .necklace-plp-bar__group {
    gap: 10px;
    font-size: .66rem;
  }

  .necklace-plp-sort {
    gap: 7px;
  }

  .necklace-plp-sort > span {
    display: none;
  }

  .necklace-plp-sort select {
    width: 145px;
    max-width: 145px;
    letter-spacing: .08em;
  }

  .necklace-plp-bar__group--right {
    display: flex;
    flex: 0 0 auto;
    gap: 0;
  }

  .catalog-filter-drawer {
    top: auto;
    left: 0;
    width: 100%;
    max-height: calc(100svh - 84px);
    border-top: 1px solid var(--line);
    border-left: 0;
    box-shadow: 0 -20px 60px rgba(37, 35, 31, .12);
    transform: translateY(100%);
  }

  .catalog-filter-drawer.is-open {
    transform: translateY(0);
  }

  .catalog-filter-header {
    min-height: 108px;
    padding: 26px 24px 22px;
  }

  .catalog-filter-content {
    padding: 24px;
  }

  .catalog-filter-actions {
    padding: 18px 24px max(22px, env(safe-area-inset-bottom));
  }

  .necklace-page .plp-copy {
    min-height: 260px;
    padding: 92px 24px 46px;
  }

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

  .pdp-shell {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 22px 72px;
  }

  .pdp-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .pdp-gallery::-webkit-scrollbar {
    display: none;
  }

  .pdp-gallery__item,
  .pdp-gallery__item.is-primary {
    flex: 0 0 min(82vw, 360px);
    aspect-ratio: 1;
    scroll-snap-align: start;
  }

  .pdp-panel {
    position: static;
  }

  .pdp-breadcrumb {
    padding: 0 22px;
  }

  .pdp-panel h1,
  .pdp-empty h1 {
    font-size: 2.65rem;
  }
}

@media (max-width: 520px) {
  .necklace-grid-section {
    padding: 24px 12px 72px;
  }

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

  .necklace-page .product-card__image {
    aspect-ratio: 602 / 637;
  }

  .necklace-page .product-card {
    gap: 12px;
  }

  .necklace-page .product-card__meta {
    gap: 6px;
    min-height: 98px;
  }

  .necklace-page .product-card h3 {
    max-width: 22ch;
    font-size: .9rem;
    line-height: 1.38;
  }

  .necklace-page .product-card__display-meta,
  .necklace-page .product-card__price {
    font-size: .72rem;
  }

  .pdp-gallery__item,
  .pdp-gallery__item.is-primary {
    flex-basis: 86vw;
  }
}

/* NEW IN — accepted quiet-gallery concept */
.new-in-page {
  background: #f8f8f6;
}

.new-in-page main {
  background: #f8f8f6;
}

.new-in-hero {
  display: grid;
  grid-template-columns: 45% 55%;
  height: 570px;
  border-bottom: 1px solid var(--line);
  background: #f2f1ed;
}

.new-in-hero__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  min-width: 0;
  padding: 0 clamp(56px, 6.4vw, 92px);
}

.new-in-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.25rem, 5vw, 4.65rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.new-in-hero h2 {
  margin: 21px 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
}

.new-in-hero__copy > p {
  max-width: 410px;
  margin: 27px 0 0;
  color: var(--soft-ink);
  font-size: .93rem;
  line-height: 1.8;
}

.new-in-hero__copy > a {
  width: fit-content;
  margin-top: 31px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}

.new-in-hero__media {
  min-width: 0;
  overflow: hidden;
  background: #e8e5df;
}

.new-in-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.new-in-hero__media:hover img,
.new-in-hero__media:focus-visible img {
  transform: scale(1.018);
}

.new-in-toolbar {
  position: sticky;
  top: 64px;
  z-index: 20;
  height: 64px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 36px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, .96);
  backdrop-filter: blur(12px);
}

.new-in-toolbar__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 44px;
}

.new-in-control {
  position: relative;
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.new-in-control > span,
.new-in-count,
.new-in-personalize {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.new-in-count {
  color: var(--muted);
}

.new-in-control select {
  width: 25px;
  min-height: 36px;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  font: inherit;
}

.new-in-control select:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.new-in-control select option {
  color: var(--ink);
}

.new-in-personalize {
  border: 0;
  padding: 8px 0;
  background: transparent;
  cursor: pointer;
}

.new-in-personalize[aria-pressed="true"] {
  box-shadow: inset 0 -1px var(--ink);
}

.new-in-catalog {
  padding: 58px 24px 124px;
  scroll-margin-top: 128px;
}

.new-in-layout {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  gap: 80px;
}

.new-in-large-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
  gap: 24px;
}

.new-in-large-row .product-card {
  width: 100%;
  max-width: none;
  height: auto;
  grid-template-rows: auto 90px;
  gap: 0;
}

.new-in-small-grid .product-card {
  width: 100%;
  height: auto;
  grid-template-rows: auto 84px;
  gap: 0;
}

.new-in-large-row .product-card__media-link,
.new-in-small-grid .product-card__media-link {
  width: 100%;
  height: 100%;
}

.new-in-large-row .product-card__media-link {
  aspect-ratio: 426 / 430;
}

.new-in-small-grid .product-card__media-link {
  aspect-ratio: 1;
}

.new-in-layout .product-card__image {
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
  overflow: hidden;
  background: var(--white);
}

.new-in-layout .product-card__image img {
  width: 100%;
  height: 100%;
}

.new-in-layout .product-img--still {
  object-fit: contain;
}

.new-in-layout .product-img--worn {
  object-fit: cover;
}

.new-in-layout .product-card__meta {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  justify-items: center;
  gap: 6px;
  padding-top: 17px;
  text-align: center;
}

.new-in-small-grid .product-card__meta {
  padding-top: 11px;
}

.new-in-layout .product-card h3 {
  max-width: 31ch;
  margin: 0;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.25;
}

.new-in-small-grid .product-card h3 {
  max-width: 27ch;
  font-size: .84rem;
}

.new-in-layout .product-card__price {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: .71rem;
  line-height: 1.2;
}

.new-in-small-grid .product-card__price {
  font-size: .66rem;
}

.new-in-feature {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: auto;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 688fr) minmax(0, 608fr);
  gap: 24px;
  align-items: stretch;
}

.new-in-feature::before {
  content: "";
  position: absolute;
  inset: -24px -12px;
  z-index: -1;
  background: rgba(236, 234, 228, .54);
}

.new-in-feature--model {
  grid-template-columns: minmax(0, 608fr) minmax(0, 688fr);
}

.new-in-small-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 16px;
}

.new-in-media-panel {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 608 / 752;
  margin: 0;
  align-self: center;
  overflow: hidden;
  background: #dedbd5;
}

.new-in-media-panel img,
.new-in-media-panel video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.new-in-media-panel--video video {
  object-position: center;
  background: #dedbd5;
  cursor: pointer;
}

.new-in-film-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 253, .95);
  border-radius: 50%;
  background: rgba(37, 35, 31, .14);
  cursor: pointer;
  transition: background .22s ease, transform .22s ease;
}

.new-in-film-toggle:hover {
  background: rgba(37, 35, 31, .26);
  transform: translate(-50%, -50%) scale(1.04);
}

.new-in-film-toggle:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: 4px;
}

.new-in-film-toggle img {
  width: 27px;
  height: 27px;
  filter: brightness(0) invert(1);
}

.new-in-media-panel--model img {
  object-position: center;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.new-in-media-panel--model:hover img,
.new-in-media-panel--model:focus-visible img {
  transform: scale(1.018);
}

@media (min-width: 1001px) {
  .new-in-feature {
    height: min(812px, calc(100svh - 160px));
    grid-template-columns: minmax(0, 1fr) clamp(480px, 38.4vw, 736px);
    gap: 16px;
  }

  .new-in-feature--video {
    padding-right: clamp(6px, calc(214.43px - 21.43svh), 48px);
  }

  .new-in-feature--model {
    grid-template-columns: clamp(480px, 38.4vw, 736px) minmax(0, 1fr);
    padding-left: clamp(6px, calc(214.43px - 21.43svh), 48px);
  }

  .new-in-small-grid {
    height: 100%;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .new-in-small-grid--five {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .new-in-small-grid--five .product-card {
    grid-column: span 2;
  }

  .new-in-small-grid--five .product-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .new-in-small-grid .product-card {
    min-height: 0;
    height: 100%;
    grid-template-rows: minmax(0, 1fr) 54px;
  }

  .new-in-small-grid .product-card__meta {
    gap: 3px;
    padding-top: 7px;
  }

  .new-in-small-grid .product-card__media-link {
    min-height: 0;
    width: min(100%, calc((min(812px, calc(100svh - 160px)) - 120px) / 2));
    height: auto;
    aspect-ratio: 1;
    align-self: center;
    justify-self: center;
  }

  .new-in-media-panel {
    height: calc(100% - 40px);
    aspect-ratio: auto;
    margin-top: 20px;
  }
}

.new-in-empty {
  margin: 72px auto;
  color: var(--muted);
  text-align: center;
}

.new-in-footer.site-footer {
  grid-template-columns: 1.2fr .7fr .7fr .9fr 1.2fr;
  gap: 38px;
  padding: 38px 40px 24px;
  background: var(--white);
  color: var(--soft-ink);
}

.new-in-footer__brand,
.new-in-footer__group,
.new-in-footer__newsletter {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 4px;
}

.new-in-footer__brand p,
.new-in-footer__newsletter p {
  justify-self: start;
  max-width: 220px;
  margin: 8px 0 10px;
  font-size: .62rem;
  line-height: 1.65;
  text-align: left;
}

.new-in-footer__brand small {
  color: var(--muted);
  font-size: .55rem;
  line-height: 1.65;
}

.new-in-footer__group strong,
.new-in-footer__newsletter strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: .56rem;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}

.new-in-footer__group a {
  font-size: .58rem;
  line-height: 1.35;
}

.new-in-footer__newsletter label {
  width: 100%;
}

.new-in-footer__newsletter input {
  width: 100%;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: .62rem;
}

.new-in-footer__newsletter input:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.new-in-footer__legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .5rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.new-in-footer__legal nav {
  display: flex;
  gap: 28px;
}

@media (min-width: 721px) and (max-width: 1000px) {
  .new-in-hero {
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
    height: 500px;
  }

  .new-in-hero__copy {
    padding-inline: 52px;
  }

  .new-in-toolbar {
    padding-inline: 28px;
  }

  .new-in-catalog {
    padding-inline: 28px;
  }

  .new-in-large-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 52px 18px;
  }

  .new-in-large-row .product-card {
    max-width: none;
  }

  .new-in-feature,
  .new-in-feature--model {
    grid-template-columns: 1fr;
    height: auto;
    gap: 34px;
  }

  .new-in-feature--video .new-in-small-grid {
    order: 1;
  }

  .new-in-feature--video .new-in-media-panel {
    order: 2;
  }

  .new-in-media-panel {
    width: min(100%, 608px);
    margin: 0 auto;
  }

  .new-in-small-grid {
    width: 100%;
  }

  .new-in-feature::before {
    inset: -24px -28px;
  }

  .new-in-footer.site-footer {
    grid-template-columns: 1.2fr repeat(3, .8fr) 1.2fr;
    padding-inline: 38px;
  }
}

@media (max-width: 720px) {
  .new-in-hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .new-in-hero__copy {
    min-height: 360px;
    padding: 64px 24px 56px;
  }

  .new-in-hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.5rem);
  }

  .new-in-hero__copy > p {
    max-width: 36ch;
  }

  .new-in-hero__media {
    height: min(112vw, 560px);
    border-top: 1px solid var(--line);
  }

  .new-in-toolbar {
    top: 64px;
    height: auto;
    min-height: 76px;
    gap: 18px;
    padding-inline: 20px;
  }

  .new-in-toolbar__actions {
    gap: 20px;
  }

  .new-in-catalog {
    padding: 44px 18px 92px;
  }

  .new-in-layout {
    gap: 64px;
  }

  .new-in-large-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 12px;
  }

  .new-in-large-row .product-card {
    max-width: none;
    grid-template-rows: auto 80px;
  }

  .new-in-large-row .product-card__meta {
    padding-top: 12px;
  }

  .new-in-layout .product-card h3 {
    font-size: .86rem;
  }

  .new-in-feature,
  .new-in-feature--model {
    grid-template-columns: 1fr;
    height: auto;
    gap: 28px;
  }

  .new-in-feature--video .new-in-small-grid {
    order: 1;
  }

  .new-in-feature--video .new-in-media-panel {
    order: 2;
  }

  .new-in-small-grid {
    width: 100%;
  }

  .new-in-small-grid .product-card {
    grid-template-rows: auto 76px;
  }

  .new-in-media-panel {
    width: min(100%, 608px);
    margin: 0 auto;
  }

  .new-in-feature::before {
    inset: -20px -18px;
  }

  .new-in-footer.site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 34px 22px 20px;
  }

  .new-in-footer__brand,
  .new-in-footer__newsletter,
  .new-in-footer__legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .new-in-toolbar {
    position: static;
    grid-template-columns: auto 1fr;
    gap: 8px 18px;
    padding-block: 14px;
  }

  .new-in-count {
    justify-self: end;
  }

  .new-in-toolbar__actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
  }

  .new-in-large-row {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .new-in-large-row .product-card {
    grid-template-rows: auto 88px;
  }

  .new-in-small-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .new-in-small-grid .product-card {
    grid-template-rows: auto 78px;
  }

  .new-in-small-grid .product-card h3 {
    font-size: .72rem;
  }

  .new-in-small-grid .product-card__price {
    font-size: .61rem;
  }

  .new-in-footer.site-footer {
    grid-template-columns: 1fr;
  }

  .new-in-footer__group,
  .new-in-footer__brand,
  .new-in-footer__newsletter,
  .new-in-footer__legal {
    grid-column: 1;
  }

  .new-in-footer__legal {
    display: grid;
  }

  .new-in-footer__legal nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .new-in-hero__media img,
  .new-in-media-panel--model img,
  .new-in-film-toggle {
    transition: none;
  }
}

@media (max-width: 350px) {
  .necklace-plp-bar {
    gap: 8px;
    padding-inline: 14px;
  }

  .necklace-plp-bar__group {
    gap: 6px;
  }

  .necklace-plp-sort select {
    width: 124px;
    max-width: 124px;
  }
}
