:root {
  color-scheme: light;
  --ink: #171310;
  --ink-soft: #3f3934;
  --paper: #fbf9f6;
  --ivory: #f4efe8;
  --sand: #e5d9cb;
  --champagne: #cbbba8;
  --rosewood: #9a5f64;
  --olive: #78755f;
  --line: rgba(23, 19, 16, 0.14);
  --white-line: rgba(255, 255, 255, 0.35);
  --success: #4d6d53;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 80px rgba(28, 20, 15, 0.18);
  --header-height: 82px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.has-open-layer {
  overflow: hidden;
}

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

button,
a {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

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

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

svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.fill-icon {
  fill: currentColor;
  stroke: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--rosewood);
  outline-offset: 3px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--ink);
  color: white;
}

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

.announcement {
  position: relative;
  z-index: 52;
  display: flex;
  min-height: 33px;
  align-items: center;
  justify-content: center;
  padding: 7px 3vw;
  background: var(--ink);
  color: white;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement__meta {
  position: absolute;
  right: 3vw;
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement__meta button {
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(28, 20, 15, 0.07);
}

.site-header__menu {
  display: none !important;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding: 31px 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.wordmark {
  display: grid;
  justify-items: center;
  line-height: 1;
}

.wordmark span {
  font-family: var(--serif);
  font-size: 1.82rem;
  letter-spacing: 0.1em;
}

.wordmark small {
  margin-top: 5px;
  font-size: 0.49rem;
  letter-spacing: 0.44em;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  transition: background 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  background: rgba(23, 19, 16, 0.06);
}

.icon-button:active {
  transform: scale(0.94);
}

.count-badge {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--rosewood);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(800px, calc(100svh - 33px));
  overflow: hidden;
  background: #8f735f;
  color: white;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  transform: scale(1.025);
  transform-origin: 65% center;
  animation: campaign-breathe 12s ease-in-out infinite alternate;
}

.hero__media.is-paused {
  animation-play-state: paused;
}

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

.hero__shade {
  background:
    linear-gradient(90deg, rgba(28, 17, 11, 0.72) 0%, rgba(28, 17, 11, 0.22) 48%, rgba(28, 17, 11, 0.05) 70%),
    linear-gradient(0deg, rgba(15, 10, 7, 0.28), transparent 45%);
}

@keyframes campaign-breathe {
  to {
    transform: scale(1.08) translate3d(-0.7%, -0.5%, 0);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(620px, 48vw);
  padding: clamp(120px, 17vh, 175px) 0 100px clamp(28px, 7vw, 120px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rosewood);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7.4vw, 7.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero__intro {
  margin: 29px 0 33px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 180ms ease;
}

.button svg {
  width: 18px;
}

.button:active {
  transform: scale(0.985);
}

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

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

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

.button--dark:hover {
  background: var(--rosewood);
}

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

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

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

.hero__controls {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 3vw, 52px);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.round-control {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  background: rgba(13, 9, 7, 0.25);
  color: white;
  backdrop-filter: blur(8px);
}

.round-control:hover {
  background: white;
  color: var(--ink);
}

.hero__counter {
  margin-left: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.hero-story {
  position: absolute;
  z-index: 3;
  top: clamp(105px, 14vh, 140px);
  right: clamp(26px, 4.5vw, 76px);
  width: 150px;
  margin: 0;
}

.hero-story__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-ring {
  position: absolute;
  inset: 0;
  display: grid;
  width: 48px;
  height: 48px;
  margin: auto;
  place-items: center;
  border: 1px solid white;
  border-radius: 50%;
  background: rgba(18, 12, 8, 0.25);
  backdrop-filter: blur(5px);
}

.story-ring svg {
  width: 17px;
  margin-left: 2px;
}

.hero-story p {
  margin: 10px 0 1px;
  font-family: var(--serif);
  font-size: 0.95rem;
}

.hero-story > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: clamp(28px, 7vw, 120px);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll i {
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
}

.hero__scroll i::after {
  display: block;
  width: 26px;
  height: 1px;
  background: white;
  content: "";
  animation: scroll-line 2.1s var(--ease) infinite;
}

@keyframes scroll-line {
  from {
    transform: translateX(-30px);
  }
  to {
    transform: translateX(60px);
  }
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-strip article {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
}

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

.service-strip svg {
  width: 25px;
  height: 25px;
}

.service-strip div {
  display: grid;
  gap: 2px;
}

.service-strip strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-strip span {
  color: #746c65;
  font-family: var(--serif);
  font-size: 0.87rem;
}

.commerce {
  display: grid;
  max-width: 1920px;
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
  gap: clamp(28px, 3.6vw, 64px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(68px, 8vw, 126px) clamp(22px, 4vw, 72px);
}

.collections {
  min-width: 0;
}

.collection + .collection {
  margin-top: clamp(70px, 8vw, 120px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 27px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

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

.section-heading h2,
.club h2,
.editorial-quote blockquote,
.layer-header h2,
.cart-empty h3,
.login-success h3,
.order-success h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 3.4vw, 4.1rem);
  line-height: 1;
}

.section-heading > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading > a svg {
  width: 17px;
  transition: transform 180ms ease;
}

.section-heading > a:hover svg {
  transform: translateX(4px);
}

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

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

.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.product-card__select {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  aspect-ratio: 4 / 5;
  background: var(--ivory);
  text-align: left;
}

.product-card__select::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(19, 14, 11, 0.2), transparent);
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
}

.product-card__select img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.product-card:hover .product-card__select img {
  transform: scale(1.035);
}

.product-card:hover .product-card__select::after {
  opacity: 1;
}

.product-card__tag,
.product-card__video {
  position: absolute;
  z-index: 2;
  top: 10px;
  display: grid;
  min-height: 28px;
  place-items: center;
  background: rgba(251, 249, 246, 0.9);
  backdrop-filter: blur(7px);
}

.product-card__tag {
  left: 10px;
  padding: 0 9px;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__video {
  right: 10px;
  width: 28px;
  border-radius: 50%;
}

.product-card__video svg {
  width: 11px;
}

.product-card__wishlist {
  position: absolute;
  z-index: 3;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(251, 249, 246, 0.92);
  color: var(--ink);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
}

.product-card:hover .product-card__wishlist,
.product-card__wishlist:focus-visible,
.product-card__wishlist.is-active {
  opacity: 1;
  transform: none;
}

.product-card__wishlist.is-active {
  background: var(--rosewood);
  color: white;
}

.product-card__wishlist.is-active svg {
  fill: currentColor;
}

.product-card__body {
  padding: 13px 2px 0;
}

.product-card__body h3 {
  min-height: 39px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.1vw, 1.08rem);
  font-weight: 400;
  line-height: 1.25;
}

.product-card__body h3 a {
  display: inline-block;
}

.product-card__body h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.product-card__meta strong {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.mini-swatches {
  display: flex;
  gap: 4px;
}

.mini-swatches i {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(23, 19, 16, 0.18);
  border-radius: 50%;
}

.product-card.is-selected .product-card__media {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.product-detail {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  height: max-content;
  grid-template-rows: max-content max-content;
  align-self: start;
  align-content: start;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 55px rgba(36, 26, 19, 0.08);
}

.product-detail__gallery {
  display: grid;
  height: max-content;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 8px;
  align-self: start;
  align-content: start;
  align-items: start;
  padding: 12px 12px 0;
}

.thumbnail-list {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 7px;
}

.thumbnail {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
  background: var(--ivory);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: opacity 180ms ease;
}

.thumbnail:hover img,
.thumbnail.is-active img {
  opacity: 1;
}

.thumbnail.is-active {
  border-color: var(--ink);
}

.main-product-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  aspect-ratio: 4 / 5;
  align-self: start;
  background: var(--ivory);
}

.main-product-image > img {
  width: 100%;
  height: 100%;
  max-height: min(55vh, 600px);
  object-fit: cover;
  transition: opacity 180ms ease, transform 360ms var(--ease);
}

.main-product-image:hover > img {
  transform: scale(1.018);
}

.zoom-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  background: rgba(251, 249, 246, 0.92);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.zoom-label svg {
  width: 16px;
}

.product-detail__info {
  padding: clamp(21px, 2.2vw, 34px);
}

.detail-topline {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
}

.detail-topline p {
  margin: 0;
  color: #786e67;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-topline .icon-button {
  border: 1px solid var(--line);
}

.product-detail__info h2 {
  margin: 8px 0 9px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.detail-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.detail-price-row p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.detail-price-row > span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.detail-price-row small {
  color: #827870;
  letter-spacing: 0;
}

.detail-description {
  margin: 18px 0 22px;
  color: #6d645d;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
}

.option-group {
  min-width: 0;
  margin: 0;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.option-group legend {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 7px;
  padding: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.option-group legend strong {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.option-group legend button {
  min-height: 30px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
}

.swatch-list,
.size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}

.swatch {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 5px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(23, 19, 16, 0.22);
}

.swatch.is-active {
  box-shadow: 0 0 0 2px var(--ink);
}

.swatch.is-active::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  content: "✓";
  font-size: 0.67rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.size-option {
  min-width: 48px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: white;
  font-size: 0.71rem;
  transition: background 160ms ease, color 160ms ease;
}

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

.size-option:disabled {
  color: #9e9690;
  cursor: not-allowed;
  text-decoration: line-through;
}

.stock-note {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 9px 12px;
  background: #f7eee7;
  font-size: 0.72rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rosewood);
  box-shadow: 0 0 0 0 rgba(154, 95, 100, 0.5);
  animation: stock-pulse 1.8s infinite;
}

@keyframes stock-pulse {
  70% {
    box-shadow: 0 0 0 7px rgba(154, 95, 100, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(154, 95, 100, 0);
  }
}

.product-detail .button + .button {
  margin-top: 9px;
}

.product-detail .button {
  justify-content: space-between;
}

.detail-page-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 8px 2px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-page-link svg {
  width: 17px;
  transition: transform 180ms ease;
}

.detail-page-link:hover svg {
  transform: translateX(4px);
}

.detail-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.social-link {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 700;
}

.social-link svg {
  width: 17px;
}

.social-link--whatsapp:hover {
  border-color: #1f9d5c;
  color: #167b47;
}

.detail-accordions {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.detail-accordions details {
  border-bottom: 1px solid var(--line);
}

.detail-accordions summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.detail-accordions summary::-webkit-details-marker {
  display: none;
}

.detail-accordions summary svg {
  width: 17px;
  transition: transform 180ms ease;
}

.detail-accordions details[open] summary svg {
  transform: rotate(180deg);
}

.detail-accordions p {
  margin: -2px 0 18px;
  color: #746b64;
  font-family: var(--serif);
  font-size: 0.9rem;
}

.club {
  display: grid;
  min-height: 410px;
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: clamp(70px, 8vw, 120px);
  background: var(--ink);
  color: white;
}

.club__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 62px);
}

.club h2 {
  max-width: 400px;
  font-size: clamp(2.5rem, 4.4vw, 5rem);
  line-height: 0.94;
}

.club__copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 20px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  line-height: 1.65;
}

.club__form {
  display: grid;
  grid-template-columns: 1fr 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.club__form input {
  min-width: 0;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  outline: none;
}

.club__form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.club__form button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: white;
}

.club__image {
  min-height: 410px;
  overflow: hidden;
}

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

.editorial-quote {
  padding: clamp(80px, 11vw, 165px) 20px;
  background: var(--ivory);
  text-align: center;
}

.editorial-quote .eyebrow {
  margin-bottom: 20px;
}

.editorial-quote blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.3rem, 5vw, 6.4rem);
  line-height: 0.95;
}

.site-footer {
  display: grid;
  justify-items: center;
  padding: 74px 24px 38px;
  background: #181310;
  color: white;
  text-align: center;
}

.wordmark--footer span {
  font-size: 2.6rem;
}

.site-footer > p {
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
}

.site-footer > div {
  display: flex;
  gap: 28px;
}

.site-footer > div a {
  min-height: 44px;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer > small {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.63rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mobile-nav {
  display: none;
}

.layer-backdrop {
  position: fixed;
  z-index: 200;
  inset: 0;
  background: rgba(18, 12, 9, 0.56);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity 220ms ease;
}

.layer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  z-index: 220;
  top: 0;
  right: 0;
  display: flex;
  width: min(480px, 100vw);
  height: 100%;
  flex-direction: column;
  overflow: auto;
  padding: clamp(22px, 3vw, 36px);
  background: var(--paper);
  box-shadow: var(--shadow);
  outline: none;
  transform: translateX(103%);
  visibility: hidden;
  transition: transform 300ms var(--ease), visibility 300ms;
}

.drawer.is-open {
  transform: none;
  visibility: visible;
}

.layer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.layer-header .eyebrow {
  margin-bottom: 5px;
}

.layer-header h2 {
  font-size: 2.3rem;
  line-height: 1;
}

.layer-header .icon-button {
  border: 1px solid var(--line);
}

.cart-empty,
.login-success,
.order-success {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 18px;
  text-align: center;
}

.cart-empty > span,
.login-success > span,
.order-success > span {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
}

.cart-empty > span svg,
.login-success > span svg,
.order-success > span svg {
  width: 27px;
  height: 27px;
}

.cart-empty h3,
.login-success h3,
.order-success h3 {
  font-size: 2rem;
}

.cart-empty p,
.login-success p,
.order-success p {
  max-width: 330px;
  color: #766d66;
  font-family: var(--serif);
}

.cart-empty .button {
  margin-top: 14px;
}

.cart-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.cart-lines {
  flex: 1;
  padding: 8px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 94px 1fr 38px;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line > img {
  width: 94px;
  height: 118px;
  object-fit: cover;
}

.cart-line h3 {
  margin: 2px 0 5px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.cart-line p {
  margin: 0;
  color: #7e746c;
  font-size: 0.7rem;
}

.cart-line strong {
  display: block;
  margin-top: 11px;
  font-size: 0.76rem;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 34px 32px 34px;
  margin-top: 12px;
  border: 1px solid var(--line);
}

.quantity-control button,
.quantity-control output {
  display: grid;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  background: white;
  font-size: 0.72rem;
}

.cart-line__remove {
  width: 38px;
  height: 38px;
}

.cart-progress {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.cart-progress > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.68rem;
}

.cart-progress > span {
  display: block;
  height: 3px;
  margin-top: 10px;
  background: var(--sand);
}

.cart-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--rosewood);
  transition: width 260ms ease;
}

.cart-summary p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
}

.cart-summary small {
  display: block;
  margin: 5px 0 18px;
  color: #7c736c;
}

.cart-summary > a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
}

.cart-summary > a svg {
  width: 17px;
}

.layer-intro {
  margin: 25px 0 20px;
  color: #6f665f;
  font-family: var(--serif);
}

.provider-list {
  display: grid;
  gap: 8px;
}

.provider-list button {
  display: grid;
  min-height: 51px;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: white;
  font-size: 0.76rem;
  font-weight: 600;
}

.provider-list button::after {
  content: "→";
}

.provider-list strong {
  font-size: 1.15rem;
}

.provider-list svg {
  width: 18px;
}

.separator {
  position: relative;
  margin: 24px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.separator span {
  position: relative;
  top: -12px;
  padding: 0 12px;
  background: var(--paper);
  color: #8b817a;
  font-family: var(--serif);
  font-size: 0.82rem;
}

[data-otp-form],
[data-verify-form] {
  display: grid;
  gap: 10px;
}

[data-otp-form] label,
[data-verify-form] label,
.field label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-field {
  display: grid;
  grid-template-columns: 68px 1fr;
  border: 1px solid var(--line);
  background: white;
}

.phone-field span {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #746b64;
}

.phone-field input,
.otp-input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 0;
  background: white;
  font-size: 1rem;
}

.otp-input {
  border: 1px solid var(--line);
  text-align: center;
  letter-spacing: 0.45em;
}

[data-verify-form] small {
  color: #756c64;
  text-align: center;
}

.simulation-note {
  margin: 20px 0 0;
  color: #8b817a;
  font-size: 0.68rem;
  text-align: center;
}

.modal {
  position: fixed;
  z-index: 230;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100vw - 32px));
  max-height: min(890px, calc(100svh - 32px));
  overflow: auto;
  padding: clamp(24px, 3.5vw, 42px);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  outline: none;
  transform: translate(-50%, -47%) scale(0.97);
  visibility: hidden;
  transition: opacity 220ms ease, transform 280ms var(--ease), visibility 280ms;
}

.modal.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 27px 0 30px;
  padding: 0;
  list-style: none;
}

.checkout-progress li {
  position: relative;
  display: grid;
  gap: 7px;
  justify-items: center;
  color: #9a918a;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-progress li::after {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--line);
  content: "";
}

.checkout-progress li:last-child::after {
  display: none;
}

.checkout-progress span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.checkout-progress li.is-active {
  color: var(--ink);
}

.checkout-progress li.is-active span {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.checkout-panel form,
.field {
  display: grid;
  gap: 7px;
}

.checkout-panel form {
  gap: 15px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
}

.field textarea {
  resize: vertical;
}

.field [aria-invalid="true"] {
  border-color: #9e3636;
}

.field-error {
  min-height: 17px;
  color: #9e3636;
  font-size: 0.69rem;
}

.choice-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-list legend {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.choice-list label {
  display: grid;
  min-height: 76px;
  grid-template-columns: 22px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.choice-list label:has(input:checked) {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.choice-list input {
  accent-color: var(--ink);
}

.choice-list span {
  display: grid;
}

.choice-list small {
  color: #7b726b;
  font-family: var(--serif);
}

.choice-list b {
  font-size: 0.7rem;
}

.checkout-actions {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 9px;
  margin-top: 22px;
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.zoom-viewer {
  position: fixed;
  z-index: 260;
  inset: 0;
  overflow: hidden;
  background: #161310;
  opacity: 0;
  outline: none;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms;
}

.zoom-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.zoom-viewer__tools {
  position: absolute;
  z-index: 2;
  top: max(18px, env(safe-area-inset-top));
  right: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: white;
}

.zoom-viewer__tools .icon-button {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.zoom-viewer__tools output {
  min-width: 40px;
  text-align: center;
}

.zoom-viewer__canvas {
  display: grid;
  width: 100%;
  height: 100%;
  overflow: auto;
  place-items: center;
}

.zoom-viewer__canvas img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  transform: scale(1);
  transition: transform 220ms var(--ease);
}

.toast {
  position: fixed;
  z-index: 400;
  bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
  left: 50%;
  max-width: calc(100vw - 32px);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1320px) {
  .commerce {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
    padding-right: 28px;
    padding-left: 28px;
  }

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

  .product-card__body h3 {
    min-height: auto;
  }

  .hero-story {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header__menu {
    display: inline-grid !important;
  }

  .site-header__actions .header-search,
  .site-header__actions .header-wishlist {
    display: none;
  }

  .commerce {
    grid-template-columns: 1fr;
    padding: 72px 22px;
  }

  .product-detail {
    position: relative;
    top: auto;
    margin-top: 70px;
  }

  .product-detail__gallery {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .main-product-image > img {
    max-height: none;
  }

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

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

  .service-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .announcement {
    min-height: 29px;
    padding: 6px 12px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .announcement__meta {
    display: none;
  }

  .site-header {
    padding: 0 9px;
  }

  .site-header__actions {
    gap: 0;
  }

  .site-header__actions > .icon-button:not(.bag-button) {
    display: none;
  }

  .wordmark span {
    font-size: 1.5rem;
  }

  .wordmark small {
    font-size: 0.42rem;
  }

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

  .hero__media {
    transform-origin: 67% center;
  }

  .hero__media img {
    object-position: 68% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(23, 14, 9, 0.84) 0%, rgba(23, 14, 9, 0.35) 50%, rgba(23, 14, 9, 0.06) 78%),
      linear-gradient(90deg, rgba(23, 14, 9, 0.28), transparent 65%);
  }

  .hero__content {
    position: absolute;
    right: 0;
    bottom: 94px;
    left: 0;
    width: auto;
    padding: 24px 20px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.4rem);
    line-height: 0.86;
  }

  .hero__intro {
    margin: 19px 0 24px;
    font-size: 0.98rem;
  }

  .hero__content .button {
    min-height: 48px;
  }

  .hero__controls {
    right: 16px;
    bottom: 18px;
  }

  .round-control {
    width: 44px;
    height: 44px;
  }

  .hero__counter {
    display: none;
  }

  .hero__scroll {
    bottom: 27px;
    left: 19px;
  }

  .service-strip article {
    min-height: 84px;
    justify-content: flex-start;
    gap: 10px;
    padding: 13px;
  }

  .service-strip svg {
    width: 21px;
    height: 21px;
  }

  .service-strip strong {
    font-size: 0.58rem;
  }

  .service-strip span {
    display: none;
  }

  .commerce {
    padding: 60px 12px 72px;
  }

  .section-heading {
    margin-right: 4px;
    margin-left: 4px;
  }

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

  .section-heading > a {
    gap: 6px;
    font-size: 0.6rem;
  }

  .product-grid {
    gap: 26px 8px;
  }

  .product-card__tag {
    top: 7px;
    left: 7px;
    min-height: 24px;
    font-size: 0.5rem;
  }

  .product-card__video {
    top: 7px;
    right: 7px;
    width: 25px;
    min-height: 25px;
  }

  .product-card__wishlist {
    right: 6px;
    bottom: 6px;
    width: 36px;
    height: 36px;
    opacity: 1;
    transform: none;
  }

  .product-card__body {
    padding: 10px 1px 0;
  }

  .product-card__body h3 {
    font-size: 0.92rem;
  }

  .mini-swatches {
    display: none;
  }

  .product-detail {
    margin-top: 62px;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .product-detail__gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    padding: 8px 0 0;
  }

  .thumbnail-list {
    flex-direction: row;
    gap: 7px;
    overflow-x: auto;
    padding: 0 12px 8px;
    scrollbar-width: none;
  }

  .thumbnail-list::-webkit-scrollbar {
    display: none;
  }

  .thumbnail {
    width: 74px;
    flex: 0 0 74px;
  }

  .main-product-image > img {
    aspect-ratio: 4 / 5;
  }

  .product-detail__info {
    padding: 24px 16px 29px;
  }

  .product-detail__info h2 {
    font-size: 2.6rem;
  }

  .detail-social {
    grid-template-columns: 1fr;
  }

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

  .club__copy {
    padding: 46px 25px;
  }

  .club h2 {
    font-size: 3.2rem;
  }

  .club__image {
    min-height: 360px;
  }

  .editorial-quote {
    padding: 90px 22px;
  }

  .editorial-quote blockquote {
    font-size: 3.2rem;
  }

  .site-footer {
    padding-bottom: 74px;
  }

  .site-footer > div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 7px 4px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(251, 249, 246, 0.96);
    box-shadow: 0 -10px 30px rgba(28, 20, 15, 0.07);
    backdrop-filter: blur(18px);
  }

  .mobile-nav a,
  .mobile-nav button {
    display: grid;
    min-height: 50px;
    gap: 3px;
    align-content: center;
    justify-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #81776f;
    font-size: 0.58rem;
  }

  .mobile-nav .is-active {
    color: var(--ink);
  }

  .mobile-nav svg {
    width: 20px;
    height: 20px;
  }

  .mobile-nav__icon {
    position: relative;
  }

  .mobile-nav__icon i {
    position: absolute;
    top: -7px;
    right: -10px;
    display: grid;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    place-items: center;
    border-radius: 999px;
    background: var(--rosewood);
    color: white;
    font-size: 0.52rem;
    font-style: normal;
  }

  .drawer {
    width: 100%;
    padding: 22px 16px calc(88px + env(safe-area-inset-bottom));
  }

  .modal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    padding: max(20px, env(safe-area-inset-top)) 16px calc(88px + env(safe-area-inset-bottom));
    transform: translateY(8%) scale(0.99);
  }

  .modal.is-open {
    transform: none;
  }

  .layer-header h2 {
    font-size: 2rem;
  }

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

  .checkout-actions .button--outline {
    order: 2;
  }

  .toast {
    bottom: calc(82px + env(safe-area-inset-bottom));
  }
}

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

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