:root {
  --ink: #151313;
  --muted: #6a5d61;
  --line: #eadce1;
  --paper: #fff9fa;
  --white: #ffffff;
  --rose: #c57f92;
  --wine: #57323d;
  --petal: #f8e7ed;
  --blush: #f2d2dc;
  --powder: #faf2f5;
  --green: #355444;
  --soft: #f7ecef;
  --shadow: 0 18px 45px rgba(21, 19, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

html.is-loading-page,
html.is-loader-fading,
html.is-loading-page body {
  overflow: hidden;
}

html.is-loader-fading body {
  overflow: hidden;
}

html.is-loading-page body > :not(.page-loader) {
  opacity: 0;
}

html.page-ready body > :not(.page-loader) {
  animation: pageContentFade 360ms ease both;
}

@keyframes pageContentFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body.size-guide-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--rose);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-80px);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

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

.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;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 44%, rgba(248, 231, 237, 0.88), rgba(255, 255, 255, 0.96) 42%, rgba(255, 249, 250, 0.98) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease, visibility 360ms ease;
}

html.is-loading-page .page-loader {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

html.page-ready .page-loader {
  display: grid;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.page-loader-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.page-loader-mark {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.page-loader-mark::before,
.page-loader-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.page-loader-mark::before {
  background: conic-gradient(from 0deg, transparent 0 18%, var(--rose) 42%, var(--wine) 58%, transparent 82% 100%);
  animation: pageLoaderSpin 920ms linear infinite;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
}

.page-loader-mark::after {
  inset: 12px;
  border: 1px solid rgba(197, 127, 146, 0.32);
  background: rgba(255, 255, 255, 0.62);
}

.page-loader-mark span {
  position: relative;
  z-index: 1;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1;
}

.page-loader p {
  margin: 0;
  color: var(--wine);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes pageLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-mark::before {
    animation-duration: 1800ms;
  }

  html.page-ready body > :not(.page-loader) {
    animation: none;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
  backdrop-filter: none;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-solid,
.site-header:hover,
.site-header:focus-within,
.site-header.nav-open {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.promo-strip {
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--blush);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-header.is-solid .promo-strip,
.site-header:hover .promo-strip,
.site-header:focus-within .promo-strip,
.site-header.nav-open .promo-strip {
  color: var(--ink);
  background: var(--blush);
}

.header-main {
  min-height: 60px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0 24px;
}

.brand {
  justify-self: start;
  width: 62px;
  min-width: 62px;
}

.brand img {
  width: 100%;
  filter: none;
  transition: filter 180ms ease;
}

.site-header.is-solid .brand img,
.site-header:hover .brand img,
.site-header:focus-within .brand img,
.site-header.nav-open .brand img {
  filter: none;
}

.site-nav {
  min-width: 0;
  max-width: min(680px, calc(100vw - 360px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-top {
  appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-top:hover,
.nav-item:focus-within .nav-top,
.nav-item:hover .nav-top {
  color: var(--ink);
}

.site-header.is-solid .nav-top:hover,
.site-header:hover .nav-top:hover,
.site-header:focus-within .nav-top:hover,
.site-header.is-solid .nav-item:focus-within .nav-top,
.site-header.is-solid .nav-item:hover .nav-top {
  color: var(--ink);
}

.mega-menu {
  --mega-cols: 4;
  --mega-width: 980px;
  position: fixed;
  top: 90px;
  left: 50%;
  right: auto;
  z-index: 12;
  width: min(var(--mega-width), calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(var(--mega-cols), minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 18px;
  padding: 22px 22px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  inset: -26px 0 auto;
  height: 26px;
}

.mega-menu--single-list {
  width: min(240px, calc(100vw - 48px));
  padding-right: 20px;
  padding-left: 20px;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-group {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.mega-title {
  color: var(--ink);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.mega-link {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.mega-menu a:hover {
  color: var(--ink);
}

.mega-direct-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  text-align: center;
}

.mega-direct-link {
  font-size: 0.82rem;
  min-width: 150px;
}

.mega-menu--single-list .mega-direct-links {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
}

.mega-menu--single-list .mega-direct-link {
  min-width: 0;
}

.mega-view-all {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mega-view-all-link {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-view-all-link:hover {
  color: var(--ink);
}

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

.country-picker {
  position: relative;
  z-index: 14;
}

.country-trigger {
  appearance: none;
  min-width: 58px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.country-trigger:hover,
.country-picker.is-open .country-trigger {
  color: var(--wine);
  background: rgba(248, 231, 237, 0.9);
  transform: translateY(-1px);
}

.country-trigger-flag {
  width: 16px;
  display: inline-grid;
  place-items: center;
  font-size: 0.88rem;
  line-height: 1;
}

.country-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(340px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 118px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 250, 251, 0.99);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.country-picker.is-open .country-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.country-search {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: 0.78rem;
  outline: 0;
}

.country-search:focus {
  border-color: var(--rose);
}

.country-options {
  display: grid;
  gap: 2px;
  max-height: 440px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
}

.country-option {
  appearance: none;
  min-height: 38px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 7px 8px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.country-option:hover,
.country-option.is-active {
  background: var(--petal);
}

.country-option-flag {
  font-size: 1rem;
  line-height: 1;
}

.country-option-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.78rem;
}

.country-option-currency {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.country-empty {
  margin: 10px 8px 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.icon-link {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.icon-link:hover {
  color: var(--wine);
  background: rgba(248, 231, 237, 0.9);
  transform: translateY(-1px);
}

.site-header.is-solid .icon-link:hover {
  color: var(--wine);
  background: var(--petal);
}

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

.cart-count {
  position: absolute;
  top: -3px;
  right: -2px;
  min-width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  padding: 0 4px;
  border: 1px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: #c6203f;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.cart-count[hidden] {
  display: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 56%, rgba(36, 22, 27, 0.34), rgba(36, 22, 27, 0.08) 34%, rgba(36, 22, 27, 0) 62%),
    linear-gradient(rgba(87, 50, 61, 0.06), rgba(87, 50, 61, 0.34));
}

.hero-backdrop,
.hero-picture,
.hero-subject {
  grid-area: 1 / 1;
}

.hero-picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-backdrop {
  position: relative;
  top: var(--image-offset-y, 0);
  left: var(--image-offset-x, 0);
  width: auto;
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-focus-x, center) var(--image-focus-y, center);
  filter: none;
  transform: none;
  opacity: 1;
}

.hero-rixo .hero-backdrop {
  --image-focus-x: center;
  --image-focus-y: 44%;
  --image-offset-y: 34px;
  transform: none;
}

.hero-subject {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 40px));
  padding: 82px 0 0;
  text-align: center;
  text-shadow: 0 2px 20px rgba(47, 28, 35, 0.56), 0 1px 2px rgba(47, 28, 35, 0.32);
}

.eyebrow {
  margin: 0 0 12px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.section-heading h2,
.seo-section h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-weight: 500;
}

.hero h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(3rem, 5.2vw, 5.3rem);
  line-height: 0.88;
  text-transform: uppercase;
  opacity: 0.94;
}

.hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 0.98rem;
  font-weight: 500;
}

.overlay-cta {
  display: inline-grid;
  place-items: center;
  min-width: 154px;
  min-height: 38px;
  margin-top: 20px;
  padding: 0 18px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.86);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: none;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.overlay-cta:hover {
  color: var(--wine);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.section,
.product-section,
.seo-section {
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
}

.intro-section .eyebrow,
.section-heading .eyebrow,
.seo-section .eyebrow {
  color: var(--rose);
}

.intro-section h2,
.seo-section h2 {
  max-width: 740px;
  font-size: 3.2rem;
  line-height: 1;
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.category-mosaic {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 0;
  background: var(--white);
}

.category-tile {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
  color: var(--white);
}

.category-tall {
  grid-row: span 1;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  transition: background 220ms ease;
}

.category-tile:hover::after {
  background: rgba(0, 0, 0, 0.34);
}

.category-tile:hover,
.wide-story a:hover,
.editorial-panel:hover {
  color: var(--white);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease;
}

.category-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}

.category-maxi img {
  object-position: center center;
}

.category-tile:hover img {
  filter: brightness(0.96) saturate(1.03);
}

.category-maxi:hover img {
  filter: brightness(0.96) saturate(1.03);
}

.category-tile span {
  position: absolute;
  z-index: 1;
}

.category-tile span {
  max-width: calc(100% - 24px);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.28rem, 2.25vw, 2.65rem);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0;
  line-height: 0.9;
}

.category-tile:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: -3px;
}

.wide-story {
  width: 100%;
  background: var(--paper);
}

.wide-story a {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
}

.wide-story-picture,
.wide-story img,
.editorial-panel picture,
.editorial-panel img {
  width: 100%;
  height: 100%;
}

.wide-story-picture,
.editorial-panel picture {
  display: block;
}

.wide-story img,
.editorial-panel img {
  object-fit: cover;
  transition: filter 220ms ease;
}

.wide-story a::after,
.editorial-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(38, 24, 28, 0.04), rgba(38, 24, 28, 0.58));
}

.wide-story a:hover .wide-story-picture,
.editorial-panel:hover img {
  filter: brightness(0.96) saturate(1.03);
}

.wide-story span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 32px;
  right: 32px;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  transform: translateY(-50%);
}

.wide-story small {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wide-story strong {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
}

.wide-story em {
  font-style: normal;
}

.editorial-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
}

.editorial-panel {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
}

.editorial-panel span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 24px;
  right: 24px;
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(-50%);
}

.editorial-panel small {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.28rem, 2.25vw, 2.65rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-section {
  padding: 0 0 78px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading h2 {
  font-size: 2.6rem;
  line-height: 1;
}

.section-heading a {
  color: var(--rose);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

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

.product-card a {
  display: grid;
  gap: 9px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  background: var(--soft);
}

.product-card span {
  min-height: 42px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

.product-card strong {
  font-size: 0.92rem;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  min-height: 540px;
  background: var(--ink);
}

.editorial-tile {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.editorial-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.56));
}

.editorial-tile img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  transition: filter 220ms ease;
}

.editorial-tile:hover img {
  filter: brightness(0.96) saturate(1.03);
}

.editorial-tile span {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.editorial-tile small {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-section {
  padding: 88px 0 98px;
}

.seo-section h2 {
  max-width: 820px;
}

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

.seo-links a {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: var(--paper);
  font-weight: 800;
}

.editorial-copy {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 62px;
  text-align: center;
}

.editorial-copy--intro {
  padding-top: 64px;
}

.editorial-copy--intro .editorial-copy-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1180px;
}

.editorial-copy--intro .editorial-copy-grid p {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.editorial-copy--intro .editorial-copy-grid p:first-child {
  max-width: 1040px;
  font-size: clamp(1.08rem, 1vw, 1.22rem);
  line-height: 1.55;
}

.editorial-copy--feature {
  max-width: none;
  padding: 62px 0;
}

.editorial-copy--collections {
  padding: 64px 0 74px;
}

.editorial-copy--collections .editorial-copy-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1180px;
}

.editorial-copy--collections .editorial-copy-grid p {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.editorial-copy h2 {
  max-width: 1120px;
  margin: 0 auto;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 3.55rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.editorial-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 74px);
  max-width: 1360px;
  margin: 28px auto 0;
}

.editorial-copy-grid--single {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 58px);
  max-width: 1360px;
}

.editorial-copy p,
.editorial-copy-grid p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.98rem, 0.78vw, 1.08rem);
  line-height: 1.62;
  text-align: left;
}

.editorial-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.editorial-copy a:hover {
  color: var(--ink);
}

.editorial-copy > p:last-child {
  max-width: 660px;
  margin: 24px auto 0;
}

.editorial-copy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
}

.editorial-copy-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(87, 50, 61, 0.18);
  color: var(--wine);
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.editorial-copy-actions a:hover {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto 72px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-strip-item {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 28px 24px;
  background: var(--paper);
  text-align: center;
}

.trust-strip-item strong {
  color: var(--wine);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.28rem, 1.75vw, 2rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip-item span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.about-page {
  padding-top: 90px;
  background: var(--white);
}

.about-hero {
  position: relative;
  min-height: calc(100svh - 90px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.about-hero-picture,
.about-hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero-picture img {
  object-fit: cover;
  object-position: center center;
  transform: translateY(18px) scale(1.055);
  transform-origin: center center;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 18, 21, 0.1), rgba(26, 18, 21, 0.45));
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 16px;
  text-shadow: 0 2px 20px rgba(47, 28, 35, 0.34);
}

.about-hero-copy p,
.about-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero h1,
.about-copy h2,
.about-feature h2,
.about-values h2,
.about-collections h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6.2vw, 7rem);
  line-height: 0.88;
}

.about-intro,
.about-feature {
  display: grid;
  align-items: center;
}

.about-intro {
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 44vw);
  gap: 0;
  align-items: stretch;
}

.about-intro .about-copy {
  width: min(760px, calc(100% - 64px));
  max-width: none;
  justify-self: center;
  align-self: center;
  padding: clamp(60px, 7vw, 112px) 0;
}

.about-feature {
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(420px, 44vw) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0 0 82px;
}

.about-feature-copy {
  width: min(720px, calc(100% - 64px));
  max-width: none;
  justify-self: center;
  align-self: center;
}

.about-kicker {
  margin-bottom: 16px;
  color: var(--rose);
}

.about-copy h2,
.about-feature h2,
.about-collections h2 {
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  line-height: 0.94;
}

.about-copy p:not(.about-kicker),
.about-feature-copy p:not(.about-kicker),
.about-values p {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-portrait {
  margin: 0;
  min-height: 100%;
}

.about-portrait img,
.about-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}

.about-portrait img {
  min-height: 100%;
  aspect-ratio: auto;
  object-position: center center;
}

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

.about-milestones div {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.about-milestones div:last-child {
  border-right: 0;
}

.about-milestones strong {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 0.92;
}

.about-milestones span {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-feature figure {
  height: min(660px, 72vw);
  margin: 0;
  overflow: hidden;
}

.about-feature figure img {
  object-position: 78% 44%;
}

.about-values {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto 84px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.about-values article {
  min-height: 250px;
  display: grid;
  align-content: center;
  padding: clamp(26px, 3vw, 46px);
  background: var(--white);
  text-align: center;
}

.about-values h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 0.95;
}

.about-seo-copy {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 84px;
  text-align: center;
}

.about-seo-copy h2 {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 0.94;
  text-transform: uppercase;
}

.about-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 72px);
  margin-top: 30px;
  text-align: left;
}

.about-seo-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.75;
}

.about-collections {
  padding: 0 0 86px;
  background: var(--powder);
}

.about-collections-heading {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 34px;
  text-align: center;
}

.about-collection-grid {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.about-collection-grid a {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  color: var(--white);
}

.about-collection-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(38, 24, 28, 0.02), rgba(38, 24, 28, 0.5));
}

.about-collection-grid picture,
.about-collection-grid img {
  width: 100%;
  height: 100%;
}

.about-collection-grid img {
  object-fit: cover;
  transition: filter 220ms ease;
}

.about-collection-grid a:hover {
  color: var(--white);
}

.about-collection-grid a:hover img {
  filter: brightness(0.96) saturate(1.03);
}

.about-collection-grid span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 20px;
  right: 20px;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.55rem, 2.8vw, 3.15rem);
  font-weight: 500;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.policy-page {
  padding-top: 90px;
  background: var(--white);
}

.policy-hero {
  position: relative;
  min-height: min(620px, calc(100svh - 90px));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.policy-hero--faq {
  min-height: calc(100svh - 90px);
}

.policy-hero--privacy {
  min-height: calc(100svh - 90px);
}

.policy-hero--terms {
  min-height: calc(100svh - 90px);
}

.policy-hero-picture,
.policy-hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.policy-hero-picture img {
  object-fit: cover;
  object-position: center 46%;
}

.policy-hero--faq .policy-hero-picture img {
  object-position: center center;
}

.policy-hero--privacy .policy-hero-picture img {
  object-position: center center;
}

.policy-hero--returns .policy-hero-picture img {
  object-position: center center;
}

.policy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 18, 21, 0.08), rgba(26, 18, 21, 0.42));
}

.policy-hero-copy {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 12px;
  text-shadow: 0 2px 20px rgba(47, 28, 35, 0.34);
}

.policy-hero--returns .policy-hero-copy {
  justify-self: start;
  justify-items: start;
  width: min(560px, calc(100% - 64px));
  margin-left: clamp(32px, 7vw, 108px);
  text-align: left;
}

.policy-hero-copy p,
.policy-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-hero h1,
.policy-intro h2,
.policy-sidebar h2,
.policy-card h2,
.policy-help h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.policy-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.88;
}

.policy-hero--returns h1 {
  max-width: 560px;
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.policy-intro {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 66px 0 56px;
  text-align: center;
}

.policy-intro h2 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  line-height: 0.94;
}

.policy-intro p:not(.policy-kicker) {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.75;
}

.policy-kicker {
  color: var(--rose);
}

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

.policy-highlights div {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.policy-highlights div:last-child {
  border-right: 0;
}

.policy-highlights strong {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 3.2rem);
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.policy-highlights span {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-content {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding: 76px 0 88px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 14px;
}

.policy-sidebar h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 0.95;
}

.policy-sidebar p:not(.policy-kicker) {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-sidebar a,
.policy-help a {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  justify-self: start;
  padding: 0 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.policy-sidebar a:hover,
.policy-help a:hover {
  color: var(--white);
  background: var(--ink);
}

.policy-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-list {
  display: grid;
  gap: clamp(26px, 3vw, 42px);
}

.faq-group {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-group > h2 {
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--line);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 2.7vw, 3.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(22px, 3vw, 36px);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-item summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--rose);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item > div {
  padding: 0 clamp(22px, 3vw, 36px) clamp(24px, 3vw, 34px);
}

.faq-item p,
.faq-item address {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.72;
}

.faq-item p + p,
.faq-item p + address {
  margin-top: 14px;
}

.faq-item a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.faq-item a:hover {
  color: var(--rose);
}

.policy-card {
  padding: clamp(26px, 3vw, 42px);
  background: var(--white);
}

.policy-card h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.55rem);
  line-height: 0.95;
}

.policy-card p,
.policy-card li {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.72;
}

.policy-card p {
  margin: 16px 0 0;
}

.policy-card address {
  margin-top: 16px;
  color: var(--ink);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.72;
}

.policy-card a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.policy-card a:hover {
  color: var(--rose);
}

.policy-card code {
  padding: 0.1em 0.35em;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.86em;
}

.privacy-cookie-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.privacy-cookie-grid > div {
  min-height: 210px;
  padding: clamp(22px, 2.5vw, 34px);
  background: var(--paper);
}

.privacy-cookie-grid strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.privacy-cookie-grid p {
  margin-top: 12px;
}

.policy-help {
  padding: 70px 24px 78px;
  background: var(--powder);
  text-align: center;
}

.policy-help h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.94;
}

.policy-help p:not(.policy-kicker) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.75;
}

.policy-help a {
  justify-self: center;
  margin-top: 24px;
}

.sitemap-page {
  padding-top: 112px;
  background: #fff;
}

.sitemap-hero {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 82px 0 38px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.sitemap-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(3.2rem, 8vw, 8rem);
  line-height: 0.9;
}

.sitemap-hero p:not(.policy-kicker) {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--wine);
  font-size: 1rem;
  line-height: 1.7;
}

.sitemap-content {
  display: grid;
  gap: 44px;
  width: min(100% - 48px, 1180px);
  margin: 42px auto 92px;
}

.sitemap-panel {
  display: grid;
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.sitemap-panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.sitemap-panel-heading h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sitemap-panel-heading span,
.sitemap-status {
  color: var(--wine);
  font-size: 0.82rem;
}

.sitemap-status {
  margin: -8px 0 0;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.sitemap-list li {
  min-width: 0;
}

.sitemap-list a {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
  text-decoration: none;
}

.sitemap-list a:hover {
  color: var(--rose);
}

@media (max-width: 900px) {
  .sitemap-page {
    padding-top: 72px;
  }

  .sitemap-hero,
  .sitemap-content {
    width: min(100% - 32px, 680px);
  }

  .sitemap-hero {
    padding: 56px 0 30px;
  }

  .sitemap-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .sitemap-list,
  .sitemap-list--columns,
  .sitemap-list--products {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 54px;
  padding: 58px 34px 26px;
  border-top: 1px solid var(--line);
  color: var(--wine);
  background: var(--powder);
}

.footer-contact {
  max-width: 380px;
}

.footer-kicker {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-lead {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.footer-contact p:not(.footer-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-contact-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--rose);
  color: var(--wine);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact-actions a:hover {
  color: var(--white);
  background: var(--rose);
}

.footer-note {
  max-width: 440px;
  font-size: 0.82rem;
}

.footer-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 34px;
}

.footer-links,
.footer-follow,
.footer-payments {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links h2,
.footer-follow h2,
.footer-payments h2 {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-follow p,
.footer-payments span {
  color: var(--wine);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--rose);
}

.footer-follow p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(160, 82, 104, 0.18);
  background: rgba(255, 255, 255, 0.48);
  color: var(--wine);
}

.footer-socials a:hover {
  color: var(--white);
  background: var(--rose);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-icon {
  width: 38px;
  height: 24px;
  display: block;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.footer-bottom span {
  margin: 0 auto;
}

.search-drawer {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  align-content: start;
  gap: 10px;
  max-height: 100svh;
  padding: 18px 28px 22px;
  color: var(--wine);
  background: rgba(255, 250, 251, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(-110%);
  transition: transform 220ms ease;
}

.search-drawer.has-search-overflow {
  height: 100svh;
}

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

.search-drawer-form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
}

.search-drawer-input {
  min-width: 0;
  height: 42px;
  border: 0;
  border-bottom: 1px solid var(--wine);
  color: var(--wine);
  background: transparent;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.42rem);
  font-weight: 400;
  outline: 0;
}

.search-icon-button {
  width: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--wine);
  background: transparent;
  cursor: pointer;
}

.bag-drawer button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--wine);
  background: var(--petal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.search-icon-button:hover {
  background: var(--petal);
}

.search-icon-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-drawer-status {
  width: min(980px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.86rem;
}

.search-drawer-results {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  min-height: 0;
  max-height: none;
  margin: 0 auto;
  padding: 0 6px 26px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.search-result {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.search-result-media {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--soft);
}

.search-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, opacity 180ms ease;
}

.search-result:hover img {
  opacity: 0.92;
  transform: scale(1.01);
}

.search-result strong {
  color: var(--wine);
  font-size: 0.86rem;
  line-height: 1.2;
}

.search-result span {
  color: var(--muted);
  font-size: 0.78rem;
}

.search-scroll-hint {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--wine);
  background: rgba(255, 250, 251, 0.96);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(71, 43, 53, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  cursor: pointer;
}

.search-scroll-hint svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-drawer.is-open.has-search-overflow:not(.is-search-at-end) .search-scroll-hint {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: search-scroll-bounce 1300ms ease-in-out infinite;
}

@keyframes search-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

.bag-overlay {
  position: fixed;
  inset: 0;
  z-index: 28;
  display: grid;
  justify-items: end;
  background: rgba(21, 19, 19, 0);
  opacity: 0;
  pointer-events: none;
  transition: background 220ms ease, opacity 220ms ease;
}

.bag-overlay.is-open {
  background: rgba(21, 19, 19, 0.2);
  opacity: 1;
  pointer-events: auto;
}

.bag-drawer {
  width: min(430px, 100vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--ink);
  background: var(--white);
  box-shadow: -18px 0 42px rgba(21, 19, 19, 0.16);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

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

.bag-drawer header,
.bag-drawer footer {
  padding: 22px;
}

.bag-drawer header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.bag-drawer h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.bag-items {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  overflow: auto;
}

.bag-items.is-updating {
  cursor: wait;
}

.bag-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
}

.bag-item.is-updating {
  opacity: 0.55;
  pointer-events: none;
}

.bag-item img {
  width: 76px;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  background: var(--soft);
}

.bag-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.bag-item span,
.bag-items p {
  color: var(--ink);
  font-size: 0.84rem;
}

.bag-item-detail {
  min-width: 0;
}

.bag-item-price {
  display: block;
  margin-top: 4px;
}

.bag-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.bag-quantity {
  height: 34px;
  display: inline-grid;
  grid-template-columns: 32px 42px 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.bag-drawer .bag-quantity-button,
.bag-drawer .bag-remove {
  min-height: 0;
  border: 0;
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
}

.bag-drawer .bag-quantity-button {
  width: 32px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
}

.bag-drawer .bag-quantity-button:hover,
.bag-drawer .bag-remove:hover {
  color: var(--rose);
  background: var(--white);
}

.bag-quantity-input {
  width: 42px;
  min-width: 0;
  border: 0;
  border-inline: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.82rem;
  text-align: center;
  outline: 0;
  appearance: textfield;
}

.bag-quantity-input::-webkit-outer-spin-button,
.bag-quantity-input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.bag-drawer .bag-remove {
  min-height: 34px;
  padding: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bag-error {
  margin: 0;
  padding: 10px 12px;
  color: var(--wine);
  background: var(--petal);
  font-size: 0.78rem;
}

.bag-drawer footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.bag-drawer footer > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.checkout-button {
  min-height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--wine);
  border: 1px solid var(--wine);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.checkout-button:hover {
  color: var(--wine);
  background: transparent;
}

.bag-link {
  justify-self: center;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.shortlist-item a {
  color: var(--ink);
}

.shortlist-item {
  grid-template-columns: 76px minmax(0, 1fr) 34px;
  align-items: center;
}

.shortlist-item-image {
  align-self: stretch;
}

.shortlist-item-title {
  display: inline-block;
}

.shortlist-item-copy {
  min-width: 0;
  align-self: center;
  display: grid;
  align-content: center;
  gap: 4px;
}

.shortlist-item-copy strong {
  margin: 0;
  line-height: 1.25;
}

.shortlist-item-price {
  display: block;
  color: var(--muted);
}

.shortlist-remove {
  width: 34px;
  height: 34px;
  align-self: center;
  justify-self: end;
  display: inline-grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.shortlist-remove svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.shortlist-remove:hover {
  color: var(--rose);
}

.shortlist-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.collection-main {
  padding-top: 90px;
  background: var(--white);
}

.collection-loading {
  min-height: 520px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.collection-loading p {
  margin: 0;
}

.collection-main.is-loading .collection-grid,
.collection-main.is-loading .collection-story {
  display: none;
}

.collection-main.is-ready .collection-loading,
.collection-main.is-error .collection-loading {
  display: none;
}

.collection-main.is-ready .collection-grid {
  animation: collectionReveal 180ms ease both;
}

@keyframes collectionReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.collection-heading {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 16px;
  text-align: center;
}

.collection-heading h1 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2.35rem, 4.4vw, 5.1rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.collection-heading p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.collection-subnav {
  position: sticky;
  top: 90px;
  z-index: 8;
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  scrollbar-width: none;
}

.collection-subnav::-webkit-scrollbar {
  display: none;
}

.collection-subnav a {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-subnav a:hover,
.collection-subnav a.is-active {
  color: var(--ink);
  background: var(--powder);
}

.collection-toolbar {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto 16px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-toolbar:has(+ .collection-filters.is-open) {
  margin-bottom: 0;
}

.collection-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.collection-toolbar > [data-collection-filter-summary] {
  display: none;
}

.collection-filter-toggle,
.collection-sort-control {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-filter-toggle {
  position: relative;
  padding: 0 14px;
  cursor: pointer;
}

.collection-filter-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.collection-filter-badge {
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  color: var(--white);
  background: #c6203f;
  border-radius: 999px;
  font-size: 0.58rem;
  line-height: 1;
}

.collection-filter-badge[hidden] {
  display: none;
}

.collection-sort-control {
  width: max-content;
  min-width: 158px;
  justify-content: space-between;
  padding: 0 8px 0 13px;
}

.collection-sort-control select {
  appearance: none;
  min-height: 30px;
  min-width: 128px;
  padding: 0 24px 0 10px;
  color: var(--ink);
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) calc(100% - 11px) 50% / 5px 5px no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) calc(100% - 7px) 50% / 5px 5px no-repeat,
    transparent;
  border: 0;
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collection-toolbar a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

.collection-filters {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto 24px;
  display: none;
}

.collection-filters.is-open {
  display: block;
}

.collection-filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.7fr) minmax(190px, 0.78fr) minmax(260px, 1fr) auto;
  align-items: start;
  gap: 22px;
  padding: 22px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collection-filter-header {
  display: none;
}

.collection-filter-group {
  display: grid;
  gap: 12px;
}

.collection-filter-group h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.collection-size-options button {
  min-width: 42px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font: inherit;
  font-size: 0.68rem;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.collection-size-options button:hover,
.collection-size-options button.is-selected {
  border-color: var(--ink);
  background: var(--white);
}

.collection-size-options button:disabled {
  opacity: 0.36;
  cursor: not-allowed;
}

.collection-stock-options {
  display: grid;
  gap: 9px;
}

.collection-stock-options label {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.collection-stock-options input {
  width: 14px;
  height: 14px;
  accent-color: var(--ink);
}

.collection-price-readout {
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.collection-price-range {
  position: relative;
  min-height: 38px;
  display: grid;
  align-items: center;
}

.collection-price-range::before,
.collection-price-range-track {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.collection-price-range::before {
  background: var(--line);
}

.collection-price-range-track {
  background: var(--ink);
}

.collection-price-range input {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 38px;
  margin: 0;
  background: transparent;
  appearance: none;
  pointer-events: none;
  transform: translateY(-50%);
}

.collection-price-range input::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  pointer-events: auto;
}

.collection-price-range input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  pointer-events: auto;
}

.collection-price-range input::-webkit-slider-runnable-track {
  height: 2px;
  background: transparent;
}

.collection-price-range input::-moz-range-track {
  height: 2px;
  background: transparent;
}

.collection-filter-footer {
  display: grid;
  gap: 8px;
  min-width: 120px;
}

.collection-filter-result-count {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.collection-filter-footer button,
.collection-filter-header button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.collection-filter-footer button:last-child {
  color: var(--white);
  background: var(--ink);
}

.collection-grid {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 12px;
}

.collection-card {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.collection-card a {
  color: var(--ink);
}

.collection-card-media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--soft);
}

.collection-card-image-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.collection-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  transition: opacity 260ms ease, filter 220ms ease;
}

.collection-card-image--hover {
  opacity: 0;
}

.collection-card:hover .collection-card-image--primary {
  opacity: 0;
}

.collection-card:hover .collection-card-image--hover {
  opacity: 1;
}

.collection-card:hover img {
  filter: brightness(0.97) saturate(1.02);
}

.collection-card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.collection-card-wishlist:hover,
.collection-card-wishlist.is-saved {
  color: #c6203f;
  background: var(--white);
}

.collection-card-wishlist:active {
  transform: scale(0.94);
}

.collection-card-wishlist.is-saved svg {
  fill: currentColor;
}

.collection-card-wishlist svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.collection-quick {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: grid;
  gap: 9px;
  padding: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(21, 19, 19, 0.12);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.collection-quick p {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.collection-quick-sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.collection-quick-sizes span {
  color: var(--muted);
  font-size: 0.72rem;
}

.collection-quick-size {
  min-width: 34px;
  min-height: 30px;
  padding: 0 7px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.66rem;
  cursor: pointer;
}

.collection-quick-size:hover,
.collection-quick-size.is-selected {
  border-color: var(--ink);
}

.collection-quick-size:disabled {
  color: rgba(21, 19, 19, 0.34);
  background: #f7f3f4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.collection-quick-add,
.collection-quick-details {
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.collection-quick-add {
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.collection-quick-add:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.collection-quick-details {
  color: var(--ink);
  background: var(--white);
}

.collection-card:hover .collection-quick,
.collection-card:focus-within .collection-quick {
  opacity: 1;
  transform: translateY(0);
}

.collection-card-info {
  padding: 0 2px;
  text-align: center;
}

.collection-card-line {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.collection-card-title {
  color: var(--ink);
  font-weight: 400;
}

.collection-card-price {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
}

.collection-card-price s[hidden] {
  display: none;
}

.collection-card-swatches {
  display: flex;
  gap: 5px;
  margin-top: 3px;
}

.collection-card-swatches span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(21, 19, 19, 0.22);
  border-radius: 999px;
  background: var(--petal);
}

.collection-card-sizes {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collection-story {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 72px;
  text-align: center;
}

.collection-story h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.collection-story p {
  margin: 18px auto 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.75;
}

.add-notice {
  position: fixed;
  top: 94px;
  right: 22px;
  z-index: 46;
  width: min(360px, calc(100vw - 32px));
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.add-notice.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.add-notice-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.add-notice-close svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.add-notice-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.add-notice strong {
  display: block;
  max-width: calc(100% - 34px);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.48rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.add-notice span {
  color: var(--muted);
  font-size: 0.82rem;
}

.add-notice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}

.add-notice-actions button,
.add-notice-actions a {
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.add-notice-actions a {
  color: var(--white);
  background: var(--ink);
}

.product-main {
  padding-top: 112px;
  background: var(--white);
}

.product-breadcrumb {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: var(--line);
}

.product-shell {
  width: min(1520px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 36%) 136px minmax(520px, 1fr);
  gap: 16px;
  align-items: start;
}

.product-gallery {
  position: relative;
  display: contents;
}

.product-gallery-controls {
  display: none;
}

.product-gallery-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(21, 19, 19, 0.14);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.product-gallery-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.product-thumbs {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 114px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 8px;
}

.product-thumb-nav {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(21, 19, 19, 0.18);
  background: var(--white);
  opacity: 0.72;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.product-thumb-nav.is-active,
.product-thumb-nav:hover {
  border-color: var(--ink);
  opacity: 1;
}

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

.product-media {
  display: block;
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 114px;
  margin: 0;
  height: min(calc(100vh - 146px), 820px);
  min-height: 0;
  overflow: hidden;
  background: var(--soft);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 850ms ease;
}

.product-media--large,
.product-media.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.product-purchase {
  grid-column: 3;
  grid-row: 1;
  position: sticky;
  top: 112px;
  height: calc(100vh - 132px);
  overflow-y: auto;
  overscroll-behavior-y: auto;
  scrollbar-width: thin;
  display: grid;
  align-content: start;
  padding: 18px 8px 36px 0;
}

.product-purchase h1 {
  max-width: none;
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2.2rem, 3.6vw, 3.65rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.product-style {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-style[hidden] {
  display: none;
}

.product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 18px 0 0;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.product-price-current {
  color: var(--ink);
}

.product-price-compare {
  color: var(--muted);
  text-decoration-thickness: 1px;
}

.product-saving {
  color: #9f4165;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price:not(.is-sale) .product-price-compare,
.product-price:not(.is-sale) .product-saving {
  display: none;
}

.lv-preorder-countdown {
  display: grid;
  grid-template-columns: minmax(140px, 0.64fr) minmax(280px, 1fr);
  align-items: center;
  gap: 4px 18px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--rose);
  background: linear-gradient(90deg, #fff7f9 0%, #ffffff 100%);
  color: var(--ink);
  text-align: left;
}

.lv-preorder-countdown[hidden] {
  display: none;
}

.lv-preorder-countdown__headline,
.lv-preorder-countdown__subline {
  margin: 0;
}

.lv-preorder-countdown__headline {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lv-preorder-countdown__subline {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lv-preorder-countdown__timer {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 0;
}

.lv-preorder-countdown__timer span {
  display: grid;
  gap: 0;
  min-height: 48px;
  padding: 7px 5px 6px;
  border: 1px solid rgba(234, 220, 225, 0.8);
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.lv-preorder-countdown__timer strong {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1;
}

.lv-preorder-countdown__timer em {
  color: var(--muted);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info {
  margin-top: 24px;
}

.product-info-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.product-info-tab {
  min-height: 34px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.product-info-tab.is-active,
.product-info-tab:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.product-info-panels {
  padding-top: 18px;
}

.product-info-panel[hidden] {
  display: none;
}

.product-copy,
.product-details-list,
.product-care-list,
.product-size-guide-copy,
.product-afterpay {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.7;
}

.product-copy p {
  margin: 0;
}

.product-copy p + p {
  margin-top: 14px;
}

.product-details-list {
  margin: 0;
  padding-left: 18px;
}

.product-details-list li + li {
  margin-top: 7px;
}

.product-care-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.product-care-list div {
  display: grid;
  gap: 4px;
}

.product-care-list dt {
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-care-list dd {
  margin: 0;
  color: var(--muted);
}

.product-size-guide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-size-guide-unit {
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.product-size-guide-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.product-size-guide-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.product-size-guide-table th,
.product-size-guide-table td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 0.72rem;
}

.product-size-guide-table th:last-child,
.product-size-guide-table td:last-child {
  border-right: 0;
}

.product-size-guide-table thead th {
  color: var(--ink);
  background: var(--petal);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-size-guide-table tbody tr:last-child td {
  border-bottom: 0;
}

.product-size-guide-copy {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-size-guide-copy p {
  margin: 0;
}

.product-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.product-size-guide[hidden] {
  display: none;
}

.product-size-guide {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-size-guide--modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 28px;
  border: 0;
  background: rgba(21, 19, 19, 0.34);
}

.product-size-guide--modal .product-size-guide-head {
  padding-right: 54px;
}

.product-size-guide-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 56px));
  overflow: auto;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-size-guide-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.product-size-guide-close:hover {
  border-color: var(--ink);
}

.product-size-guide-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.product-size-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-size-heading a,
.product-size-heading button {
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

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

.size-option {
  min-height: 42px;
  padding: 0 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.size-option--wide {
  font-size: 0.64rem;
}

.size-option.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.size-option.is-unavailable {
  color: rgba(21, 19, 19, 0.34);
  background:
    linear-gradient(to top left, transparent calc(50% - 0.5px), rgba(21, 19, 19, 0.32), transparent calc(50% + 0.5px)),
    var(--white);
  cursor: not-allowed;
}

.product-size-status {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.product-add {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.product-add:hover {
  color: var(--ink);
  background: var(--white);
}

.product-add:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.product-afterpay {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
}

.product-afterpay p {
  margin: 0;
  color: var(--muted);
}

[data-delivery-note][hidden],
.product-shell[data-preorder-tag-code] [data-delivery-note] {
  display: none;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-tags a {
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-related {
  width: min(1520px, calc(100% - 48px));
  margin: 78px auto 0;
  padding: 44px 0 58px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.product-related h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.related-product {
  display: grid;
  gap: 9px;
  text-align: center;
}

.related-product img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--soft);
}

.related-product span {
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.related-product small {
  color: var(--muted);
  font-size: 0.76rem;
}

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

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

  .site-nav {
    gap: 10px;
    font-size: 0.68rem;
    max-width: min(600px, calc(100vw - 300px));
  }

  .brand {
    width: 62px;
    min-width: 62px;
  }

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

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

  .wide-story a {
    min-height: 560px;
  }

  .editorial-panel {
    min-height: 520px;
  }

  .editorial-copy-grid,
  .editorial-copy-grid--single {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
  }

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

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

  .product-shell {
    grid-template-columns: minmax(280px, 36%) 120px minmax(440px, 1fr);
    gap: 16px;
  }

  .product-thumb-nav {
    width: 100%;
  }

  .product-media {
    height: min(calc(100vh - 132px), 760px);
  }

  .product-sizes {
    gap: 5px;
  }

  .size-option {
    min-height: 40px;
    padding: 0 5px;
    font-size: 0.7rem;
  }

  .size-option--wide {
    font-size: 0.58rem;
  }

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

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

@media (max-width: 860px) {
  .site-header {
    color: var(--wine);
    background: var(--white);
    box-shadow: none;
  }

  .promo-strip {
    display: none;
  }

  .header-main {
    height: 54px;
    min-height: 0;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
  }

  .brand {
    position: static;
    transform: none;
    width: 68px;
    min-width: 68px;
  }

  .brand img {
    filter: none;
  }

  .nav-toggle {
    display: inline-grid;
    margin-left: auto;
    width: 36px;
    height: 36px;
    align-content: center;
    place-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 54px 0 0;
    display: none;
    max-width: none;
    height: auto;
    max-height: none;
    white-space: normal;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 24px calc(104px + env(safe-area-inset-bottom));
    color: var(--ink);
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 0;
    box-shadow: none;
    scrollbar-width: thin;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    gap: 0;
    justify-items: stretch;
  }

  .nav-item {
    width: 100%;
    justify-self: stretch;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .site-nav > a,
  .nav-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
    color: var(--ink);
    font-size: 0.82rem;
    letter-spacing: 0.09em;
  }

  .mega-menu {
    position: static;
    display: grid;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    max-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transform: none;
    transition: max-height 260ms ease, opacity 190ms ease, padding 220ms ease, margin 220ms ease;
  }

  .mega-menu::before {
    display: none;
  }

  .nav-item.is-open .mega-menu {
    width: 100%;
    max-width: 100%;
    max-height: 1800px;
    margin: 0 0 8px;
    padding: 16px 0 18px;
    opacity: 1;
    pointer-events: auto;
    display: grid;
    transform: none;
  }

  .mega-group {
    width: min(100%, 280px);
    justify-self: center;
    gap: 9px;
    justify-items: center;
    text-align: center;
  }

  .mega-title {
    font-size: 1.08rem;
    color: var(--ink);
  }

  .mega-link {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--ink);
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .mega-direct-links {
    display: grid;
    width: min(100%, 280px);
    justify-self: center;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    gap: 10px;
  }

  .mega-menu--single-list,
  .nav-item.is-open .mega-menu--single-list {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .mega-menu--single-list .mega-direct-links {
    width: min(100%, 280px);
    justify-self: center;
  }

  .mega-direct-link,
  .mega-view-all-link {
    display: block;
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu,
  .nav-item.is-open .mega-menu {
    transform: none;
  }

  .mega-view-all {
    width: min(100%, 280px);
    justify-self: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 14px;
  }

  .header-actions {
    display: none;
  }

  .site-header.nav-open .header-actions {
    position: fixed;
    right: auto;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 50%;
    z-index: 13;
    width: max-content;
    max-width: calc(100vw - 32px);
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: translateX(-50%);
  }

  .site-header.nav-open .header-actions .icon-link,
  .site-header.nav-open .header-actions .country-trigger {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
  }

  .site-header.nav-open .header-actions .country-trigger {
    border-radius: 999px;
  }

  .site-header.nav-open .header-actions .country-trigger span:not(.country-trigger-flag) {
    display: none;
  }

  .site-header.nav-open .header-actions .icon-link svg {
    width: 18px;
    height: 18px;
  }

  .site-header.nav-open .country-picker {
    position: static;
  }

  .site-header.nav-open .country-menu {
    position: fixed;
    top: auto;
    right: auto;
    bottom: calc(72px + env(safe-area-inset-bottom));
    left: 50%;
    width: min(340px, calc(100vw - 28px));
    max-height: min(420px, calc(100svh - 112px));
    transform: translate(-50%, 8px);
  }

  .site-header.nav-open .country-picker.is-open .country-menu {
    transform: translate(-50%, 0);
  }

  .search-drawer {
    height: 100svh;
    max-height: 100svh;
    padding: 16px 18px 20px;
  }

  .search-drawer-form {
    grid-template-columns: 1fr auto auto;
  }

  .search-drawer-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    min-height: 0;
    max-height: none;
    padding-right: 4px;
    padding-bottom: 34px;
  }

  .search-scroll-hint {
    right: 14px;
    bottom: 10px;
    width: 38px;
    height: 38px;
  }

  .hero {
    height: 100svh;
    min-height: 720px;
    place-items: center;
  }

  .hero-media {
    display: grid;
  }

  .hero-backdrop {
    width: auto;
    min-width: 100%;
    max-width: none;
    height: 100%;
    object-position: var(--image-focus-x, center) var(--image-focus-y, center);
  }

  .hero-rixo .hero-backdrop {
    transform: none;
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11.6vw, 3.45rem);
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .section,
  .product-section,
  .seo-section {
    width: min(100% - 36px, 1480px);
  }

  .intro-section h2,
  .seo-section h2 {
    font-size: 2.3rem;
  }

  .category-mosaic {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 0;
    overflow: hidden;
    background: var(--ink);
  }

  .category-tile {
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    margin: -1px 0 0 -1px;
  }

  .category-tile span,
  .editorial-panel small,
  .editorial-tile span {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.9;
  }

  .wide-story a {
    min-height: 560px;
  }

  .wide-story strong {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

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

  .editorial-copy {
    width: min(100% - 32px, 680px);
    padding: 46px 0 50px;
  }

  .editorial-copy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .editorial-copy p,
  .editorial-copy-grid p {
    text-align: center;
  }

  .editorial-copy-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .editorial-copy-actions a {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.68rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 680px);
    margin-bottom: 46px;
  }

  .trust-strip-item {
    min-height: 0;
    padding: 22px 18px;
  }

  .about-page {
    padding-top: 54px;
  }

  .about-hero {
    min-height: calc(100svh - 54px);
  }

  .about-hero-picture img {
    object-position: center center;
    transform: none;
  }

  .about-hero-copy {
    width: calc(100% - 32px);
    gap: 12px;
  }

  .about-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .about-intro {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .about-intro .about-copy {
    width: min(100% - 32px, 680px);
    padding: 52px 0;
  }

  .about-feature {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px 0;
  }

  .about-copy,
  .about-feature-copy {
    max-width: none;
    text-align: center;
  }

  .about-copy h2,
  .about-feature h2,
  .about-collections h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .about-copy p:not(.about-kicker),
  .about-feature-copy p:not(.about-kicker),
  .about-values p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .about-portrait {
    min-height: 0;
  }

  .about-portrait img {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .about-milestones {
    grid-template-columns: 1fr;
  }

  .about-milestones div {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-milestones div:last-child {
    border-bottom: 0;
  }

  .about-feature figure {
    height: auto;
    aspect-ratio: 3 / 4;
    order: 2;
  }

  .about-feature-copy {
    order: 1;
  }

  .about-values {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    margin-bottom: 52px;
  }

  .about-values article {
    min-height: 190px;
  }

  .about-seo-copy {
    width: min(100% - 32px, 680px);
    padding: 0 0 52px;
  }

  .about-seo-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .about-seo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .about-collections {
    padding: 0 0 62px;
  }

  .about-collections-heading,
  .about-collection-grid {
    width: min(100% - 32px, 680px);
  }

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

  .about-collection-grid a {
    aspect-ratio: 3 / 4.05;
  }

  .policy-page {
    padding-top: 54px;
  }

  .policy-hero {
    min-height: 520px;
  }

  .policy-hero--faq {
    min-height: calc(100svh - 54px);
  }

  .policy-hero--privacy {
    min-height: calc(100svh - 54px);
  }

  .policy-hero--terms {
    min-height: calc(100svh - 54px);
  }

  .policy-hero-copy {
    width: calc(100% - 32px);
  }

  .policy-hero--returns .policy-hero-copy {
    justify-self: center;
    justify-items: center;
    width: calc(100% - 32px);
    margin-left: 0;
    text-align: center;
  }

  .policy-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .policy-hero--returns h1 {
    max-width: 360px;
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .policy-intro {
    width: min(100% - 32px, 680px);
    padding: 48px 0;
  }

  .policy-intro h2,
  .policy-sidebar h2,
  .policy-help h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .policy-highlights {
    grid-template-columns: 1fr;
  }

  .policy-highlights div {
    min-height: 122px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-highlights div:last-child {
    border-bottom: 0;
  }

  .policy-content {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 0;
  }

  .policy-sidebar {
    position: static;
    justify-items: center;
    text-align: center;
  }

  .policy-sidebar a {
    justify-self: center;
  }

  .policy-card {
    padding: 26px 22px;
    text-align: center;
  }

  .privacy-cookie-grid {
    grid-template-columns: 1fr;
  }

  .privacy-cookie-grid > div {
    min-height: 0;
  }

  .policy-help {
    padding: 52px 20px 58px;
  }

  .collection-main {
    padding-top: 60px;
  }

  .collection-heading {
    width: min(100% - 32px, 680px);
    padding: 28px 0 14px;
  }

  .collection-subnav {
    top: 60px;
    justify-content: flex-start;
    padding: 0 8px;
  }

  .collection-toolbar {
    width: calc(100% - 24px);
    min-height: 40px;
    margin-bottom: 14px;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    font-size: 0.66rem;
  }

  .collection-toolbar-actions {
    width: auto;
    justify-content: center;
  }

  .collection-filter-toggle,
  .collection-sort-control {
    min-height: 40px;
    font-size: 0.64rem;
  }

  .collection-filter-toggle {
    min-width: 132px;
  }

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

  .collection-sort-control select {
    min-width: 0;
    width: 100%;
    font-size: 0.64rem;
  }

  .collection-filters {
    position: fixed;
    inset: 0;
    z-index: 18;
    width: 100%;
    margin: 0;
    display: grid;
    align-items: end;
    background: rgba(21, 19, 19, 0.26);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .collection-filters.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .collection-filter-panel {
    max-height: calc(100svh - 72px);
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px 18px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: var(--white);
    border: 0;
    box-shadow: 0 -18px 44px rgba(21, 19, 19, 0.18);
    transform: translateY(18px);
    transition: transform 180ms ease;
  }

  .collection-filters.is-open .collection-filter-panel {
    transform: translateY(0);
  }

  .collection-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .collection-filter-header h2 {
    margin: 0;
    font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
  }

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

  .collection-filter-result-count {
    grid-column: 1 / -1;
  }

  .collection-grid {
    width: calc(100% - 16px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 8px;
    margin-bottom: 52px;
  }

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

  .collection-quick {
    display: none;
  }

  .collection-story {
    width: min(100% - 32px, 680px);
    margin-bottom: 54px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 20px 24px;
    text-align: center;
  }

  .footer-contact {
    max-width: 560px;
    margin: 0 auto;
  }

  .footer-contact-actions,
  .footer-socials,
  .payment-logos {
    justify-content: center;
  }

  .footer-note,
  .footer-follow p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-panels {
    justify-items: center;
  }

  .footer-links,
  .footer-follow,
  .footer-payments {
    justify-items: center;
    text-align: center;
  }

  .footer-links a {
    text-align: center;
  }

  .product-main {
    padding-top: 60px;
  }

  .product-breadcrumb {
    width: min(100% - 32px, 680px);
    margin-top: 18px;
  }

  .product-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .product-gallery {
    width: min(100% - 32px, 520px);
    aspect-ratio: 4 / 5.35;
    display: grid;
    place-items: center;
    margin: 0 auto;
    overflow: hidden;
    scroll-snap-type: none;
  }

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

  .product-gallery-controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    pointer-events: none;
  }

  .product-gallery-arrow {
    position: absolute;
    top: 50%;
    pointer-events: auto;
    transform: translateY(-50%);
  }

  .product-gallery-arrow:hover {
    background: var(--white);
  }

  .product-gallery-arrow:active {
    transform: translateY(-50%) scale(0.96);
  }

  .product-gallery-arrow--prev {
    left: 10px;
  }

  .product-gallery-arrow--next {
    right: 10px;
  }

  .product-thumbs {
    display: none;
  }

  .product-media,
  .product-media--large {
    grid-area: 1 / 1;
    position: relative;
    top: auto;
    display: block;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    margin: 0;
    aspect-ratio: auto;
    scroll-snap-align: none;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 700ms ease;
  }

  .product-media--large,
  .product-media.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  .product-purchase {
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
    width: min(100% - 32px, 680px);
    margin: 0 auto;
    padding: 28px 0 42px;
  }

  .product-purchase h1 {
    max-width: none;
    text-align: center;
  }

  .product-style {
    text-align: center;
  }

  .product-price {
    justify-content: center;
  }

  .product-info-tabs {
    gap: 12px;
    justify-content: center;
  }

  .product-info-tab {
    font-size: 0.64rem;
    text-align: center;
  }

  .product-tags {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .product-tags a {
    text-align: center;
  }

  .add-notice {
    top: 76px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .lv-preorder-countdown {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .lv-preorder-countdown__timer {
    grid-column: auto;
    grid-row: auto;
  }

  .lv-preorder-countdown__timer span {
    min-height: 44px;
    padding: 7px 4px 5px;
  }

  .product-size-guide-head {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 46px;
  }

  .product-size-guide--modal {
    align-items: flex-start;
    padding: 16px;
  }

  .product-size-guide-panel {
    max-height: calc(100vh - 32px);
    padding: 62px 18px 20px;
  }

  .product-size-guide-close {
    top: 12px;
    right: 12px;
  }

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

  .product-related {
    width: min(100% - 32px, 680px);
    margin-top: 18px;
  }

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

  .category-tall {
    grid-row: span 1;
  }

  .section-heading h2 {
    font-size: 2.1rem;
  }

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

  .editorial-tile img {
    min-height: 420px;
  }

  .seo-section {
    padding: 62px 0 70px;
  }

  .seo-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    padding: 28px 20px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.28rem);
    line-height: 0.92;
  }

  .hero p:not(.eyebrow) {
    max-width: 310px;
  }

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

  .category-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(520px, 82svh);
  }

  .footer-panels {
    grid-template-columns: 1fr;
  }

  .product-card span {
    min-height: 56px;
    font-size: 0.88rem;
  }

  .related-products {
    grid-template-columns: 1fr;
  }

  .collection-heading h1 {
    font-size: 2.55rem;
  }

  .collection-grid {
    width: calc(100% - 12px);
    gap: 24px 6px;
  }

  .collection-card-title,
  .collection-card-price {
    font-size: 0.72rem;
  }

  .editorial-tile span {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }
}
