@font-face {
  font-family: "Canesa";
  src: url("../fonts/Canesa.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
}

:root {
  --pearl: #fbf9f5;
  --ivory: #f3efe4;
  --white: #fff;
  --ink: #1b1c1a;
  --ink-soft: #4d4635;
  --gold: #d4af37;
  --gold-deep: #8c6416;
  --gold-dark: #604306;
  --silver: #68707b;
  --line: rgba(140, 100, 22, 0.2);
  --line-soft: rgba(77, 70, 53, 0.13);
  --surface-glass: rgba(251, 249, 245, 0.76);
  --shadow-soft: 0 18px 55px -34px rgba(74, 45, 10, 0.46);
  --shadow-frame: 0 26px 58px -42px rgba(72, 44, 8, 0.74);
  --font-display: "EB Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-accent: "Canesa", "EB Garamond", serif;
  --header-height: 62px;
  --container: 1280px;
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--pearl);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.has-overlay {
  overflow: hidden;
}

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

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

button,
a,
input,
select {
  -webkit-tap-highlight-color: rgba(212, 175, 55, 0.18);
  touch-action: manipulation;
}

button {
  border: 0;
}

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

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 4px;
}

::selection {
  background: rgba(212, 175, 55, 0.3);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  transform: translateY(-140%);
  border: 1px solid var(--gold);
  background: var(--pearl);
  padding: 0.7rem 1rem;
  color: var(--ink);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  line-height: 1.3;
  text-transform: uppercase;
}

.display-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.02;
  text-wrap: balance;
}

.section-intro {
  max-width: 62ch;
  margin: 1.15rem auto 0;
  color: var(--silver);
  font-size: 0.92rem;
  letter-spacing: 0.035em;
  text-wrap: pretty;
}

.gold-rule {
  width: 54px;
  height: 1px;
  margin: 1.25rem auto 0;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: calc(var(--header-height) + env(safe-area-inset-top));
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(251, 249, 245, 0.79);
  padding-top: env(safe-area-inset-top);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: background-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 245, 0.94);
  box-shadow: 0 10px 32px -28px rgba(27, 28, 26, 0.72);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  width: min(calc(100% - 48px), 1840px);
  height: var(--header-height);
  margin-inline: auto;
}

.site-brand {
  justify-self: center;
  min-width: 0;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-wrap: nowrap;
  view-transition-name: site-brand;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--gold-deep);
  transition: color 220ms ease, background-color 220ms ease, transform 360ms var(--ease-luxury);
}

.social-link:last-child {
  justify-self: end;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-dark);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.84rem 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 420ms ease, transform 420ms var(--ease-luxury);
}

.button::before {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: "";
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.78) 48%, transparent 72%);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 850ms var(--ease-luxury);
}

.button:hover::before {
  transform: translateX(130%) skewX(-18deg);
}

.button:hover {
  transform: translateY(-3px);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.31);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 -1px 3px rgba(125, 81, 7, 0.13), 0 16px 38px -24px rgba(72, 44, 8, 0.55);
  color: var(--gold-dark);
  backdrop-filter: blur(13px) saturate(1.25);
  -webkit-backdrop-filter: blur(13px) saturate(1.25);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 22px 44px -24px rgba(72, 44, 8, 0.62);
}

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

.button--ink:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
}

.button--gold {
  border-color: var(--gold-deep);
  background: var(--gold-deep);
  color: var(--white);
}

.button--gold:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
}

.button--outline {
  border-color: rgba(140, 100, 22, 0.5);
  background: transparent;
  color: var(--gold-dark);
}

.button--outline:hover {
  border-color: var(--gold-deep);
  background: rgba(212, 175, 55, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(140, 100, 22, 0.48);
  padding-bottom: 0.25rem;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 220ms ease, color 220ms ease, gap 360ms var(--ease-luxury);
}

.text-link:hover {
  gap: 0.9rem;
  border-color: var(--gold);
  color: var(--gold-deep);
}

.marble-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--pearl);
}

.marble-stage__media,
.marble-stage__media img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.marble-stage__media img {
  object-fit: cover;
  object-position: center center;
  transform: translate3d(var(--marble-x, 0), var(--marble-y, 0), 0) scale(1.025);
  will-change: transform;
}

.marble-stage::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--light-x, 56%) var(--light-y, 28%), rgba(255, 255, 255, 0.38), transparent 27%),
    linear-gradient(180deg, rgba(251, 249, 245, 0.05) 62%, rgba(251, 249, 245, 0.48) 88%, var(--pearl) 100%);
}

.marble-stage::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 20rem;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, var(--pearl));
}

.hero {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: calc(var(--header-height) + 4rem) 24px 4rem;
  scroll-margin-top: var(--header-height);
}

.hero__content {
  position: relative;
  display: flex;
  width: min(760px, 100%);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__content::before {
  position: absolute;
  inset: 18% -18% -10%;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.48), transparent 68%);
  filter: blur(8px);
}

.hero__wordmark-wrap {
  position: relative;
  width: clamp(310px, 36vw, 590px);
  transform-style: preserve-3d;
  will-change: transform;
  view-transition-name: hero-mark;
}

.hero__wordmark-wrap::after {
  position: absolute;
  inset: 5% -6%;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.72) 49%, transparent 62%);
  mix-blend-mode: screen;
  transform: translateX(-150%) skewX(-18deg);
}

.hero__wordmark {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(98, 62, 5, 0.08));
}

.hero__tagline {
  margin: 1.4rem 0 0;
  color: var(--gold-dark);
  font-family: var(--font-accent);
  font-size: clamp(1.62rem, 2.4vw, 2.15rem);
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 0 16px rgba(255, 255, 255, 0.72);
  text-wrap: balance;
}

.hero__byline {
  margin: 0.6rem 0 0;
  color: #5f6670;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.045em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.96), 0 0 12px rgba(255, 255, 255, 0.74);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.35rem;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  display: grid;
  width: 32px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(140, 100, 22, 0.32);
  border-radius: 999px;
  color: var(--gold-deep);
  transform: translateX(-50%);
}

.hero__scroll-cue::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.categories {
  min-height: 100svh;
  padding: 7rem 0 10rem;
  scroll-margin-top: var(--header-height);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 4.2rem;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.gallery-card {
  display: block;
  color: var(--ink);
  text-align: center;
}

.gallery-card--lifted {
  margin-top: -2.3rem;
}

.gallery-frame {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(140, 100, 22, 0.2);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-frame);
  transform-style: preserve-3d;
  transition: transform 650ms var(--ease-luxury), box-shadow 650ms var(--ease-luxury);
  will-change: transform;
}

.gallery-frame::after {
  position: absolute;
  inset: -35%;
  z-index: 5;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--shine-x, 48%) var(--shine-y, 38%), rgba(255, 255, 255, 0.42), transparent 24%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 360ms ease;
}

.gallery-frame__photo {
  position: absolute;
  inset: 7.7% 7.2% 8.8%;
  z-index: 1;
  overflow: hidden;
  background: var(--ivory);
}

.gallery-frame__photo picture,
.gallery-frame__photo img {
  width: 100%;
  height: 100%;
}

.gallery-frame__photo img {
  object-fit: cover;
  transition: filter 700ms ease, transform 850ms var(--ease-luxury);
}

.product-card .gallery-frame__photo img,
#product-sheet-frame .gallery-frame__photo img {
  object-fit: contain;
}

.gallery-frame__ornament {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: fill;
  filter: saturate(0.94) contrast(1.03);
}

.gallery-card:hover .gallery-frame {
  box-shadow: 0 32px 70px -42px rgba(72, 44, 8, 0.88);
  transform: translateY(-10px);
}

.gallery-card:hover .gallery-frame::after,
.product-card:hover .gallery-frame::after {
  opacity: 1;
}

.gallery-card:hover .gallery-frame__photo img,
.product-card:hover .gallery-frame__photo img {
  filter: saturate(1.03) contrast(1.015);
}

.gallery-card:hover .gallery-frame__photo img {
  transform: scale(1.025);
}

.gallery-card__title {
  margin: 1.3rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.gallery-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.72rem;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-card__cta::after {
  width: 18px;
  height: 1px;
  background: var(--gold-deep);
  content: "";
  transform-origin: left;
  transition: transform 350ms var(--ease-luxury);
}

.gallery-card:hover .gallery-card__cta::after {
  transform: scaleX(1.55);
}

.editorial-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--pearl);
}

.editorial-section--ivory {
  background: var(--ivory);
}

.curator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.curator-visual {
  position: relative;
  max-width: 580px;
}

.curator-visual::before {
  position: absolute;
  top: -18px;
  right: -18px;
  bottom: 18px;
  left: 18px;
  z-index: 0;
  border: 1px solid rgba(140, 100, 22, 0.35);
  content: "";
}

.curator-visual__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1984 / 2152;
  object-fit: cover;
  object-position: center;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
}

.curator-copy {
  max-width: 590px;
}

.curator-copy__lead {
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.42;
  text-wrap: pretty;
}

.curator-copy__body {
  max-width: 54ch;
  margin: 1.25rem 0 0;
  color: var(--silver);
  font-size: 0.93rem;
  line-height: 1.8;
}

.curator-signature {
  margin: 2rem 0 0;
  color: var(--gold-dark);
  font-family: var(--font-accent);
  font-size: 1.55rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

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

.product-card__image-button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.product-card .gallery-frame {
  box-shadow: 0 20px 46px -38px rgba(72, 44, 8, 0.78);
}

.product-card__meta {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  padding: 1rem 0.15rem 0;
}

.product-card__brand {
  min-height: 1rem;
  margin: 0 0 0.42rem;
  color: var(--gold-deep);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  text-wrap: balance;
}

.product-card__price {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

.product-card__action {
  align-self: flex-start;
  margin-top: auto;
  border: 0;
  border-bottom: 1px solid rgba(140, 100, 22, 0.48);
  background: transparent;
  padding: 0.68rem 0 0.25rem;
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 220ms ease, color 220ms ease;
}

.product-card__action:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.product-tag {
  position: absolute;
  top: 7.7%;
  left: 7.2%;
  z-index: 4;
  background: rgba(27, 28, 26, 0.84);
  padding: 0.38rem 0.62rem;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.featured-cta {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.experience-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(226, 213, 189, 0.22), transparent 42%),
    radial-gradient(circle at 72% 38%, rgba(255, 255, 255, 0.92), transparent 34%),
    #f8f4ec;
}

.experience-section::before,
.experience-section::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(140, 100, 22, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.experience-section::before {
  top: 4%;
  right: -12vw;
  width: min(55vw, 760px);
  aspect-ratio: 1;
}

.experience-section::after {
  bottom: -31%;
  left: -13vw;
  width: min(45vw, 620px);
  aspect-ratio: 1;
}

.experience-section__halo {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: -1;
  width: min(72vw, 980px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.08) 38%, transparent 69%);
  filter: blur(12px);
  pointer-events: none;
}

.experience-shell {
  position: relative;
}

.experience-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  max-width: 1120px;
  margin-inline: auto;
}

.experience-title {
  font-size: clamp(3.8rem, 7.2vw, 7rem);
  letter-spacing: -0.045em;
  line-height: 0.78;
}

.experience-title span,
.experience-title em {
  display: block;
}

.experience-title em {
  margin: 0.3em 0 0 clamp(2rem, 8vw, 8.5rem);
  color: var(--gold-dark);
  font-size: 0.72em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.experience-heading__intro {
  max-width: 34ch;
  margin: 0 0 0.35rem;
  color: var(--silver);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.experience-stage {
  position: relative;
  min-height: clamp(610px, 58vw, 720px);
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid rgba(140, 100, 22, 0.2);
  border-bottom: 1px solid rgba(140, 100, 22, 0.2);
}

.experience-stage::before {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(140, 100, 22, 0.18) 28%, rgba(140, 100, 22, 0.18) 72%, transparent);
  content: "";
  pointer-events: none;
}

.experience-stage__visual {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(55vw, 670px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.experience-stage__canvas,
.experience-stage__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.experience-stage__canvas {
  z-index: 2;
  opacity: 0;
  filter: drop-shadow(0 24px 30px rgba(100, 77, 38, 0.075));
  transition: opacity 900ms ease;
}

.experience-stage.is-webgl-ready .experience-stage__canvas {
  opacity: 1;
}

.experience-stage__fallback {
  z-index: 1;
  transition: opacity 650ms ease;
}

.experience-stage.is-webgl-ready .experience-stage__fallback {
  opacity: 0;
}

.experience-ring,
.experience-pearl {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
}

.experience-ring {
  width: 54%;
  height: 54%;
  border: 1px solid rgba(183, 142, 61, 0.62);
  box-shadow: 0 9px 24px rgba(96, 67, 6, 0.055);
}

.experience-ring--one {
  transform: translate(-50%, -50%) rotate(18deg) skewX(-18deg);
}

.experience-ring--two {
  transform: translate(-50%, -50%) rotate(76deg) skewX(22deg);
}

.experience-ring--three {
  transform: translate(-50%, -50%) rotate(136deg) skewX(-12deg);
}

.experience-pearl {
  width: 14%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 33% 28%, #fff 0 5%, transparent 19%),
    radial-gradient(circle at 66% 72%, rgba(216, 200, 233, 0.52), transparent 45%),
    linear-gradient(135deg, #fffdf8, #e9dfd1 45%, #fff 72%);
  box-shadow: inset -12px -10px 24px rgba(171, 132, 80, 0.12), 0 14px 30px rgba(88, 60, 16, 0.08);
}

.experience-stage__caption {
  position: absolute;
  bottom: 8.5%;
  left: 50%;
  z-index: 3;
  margin: 0;
  transform: translateX(-50%);
  color: var(--gold-dark);
  font-family: var(--font-display);
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.experience-stage__caption span,
.experience-stage__caption small {
  display: block;
}

.experience-stage__caption span {
  font-size: clamp(0.82rem, 1.3vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.2em;
}

.experience-stage__caption small {
  margin-top: 0.38rem;
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.23em;
}

.experience-steps {
  position: absolute;
  inset: 0;
  z-index: 4;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.experience-step {
  position: absolute;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  width: min(27vw, 305px);
  padding: 1.25rem 0;
  opacity: 0.68;
  pointer-events: auto;
  transition: opacity 420ms ease, transform 520ms var(--ease-luxury);
}

.experience-step::after {
  position: absolute;
  top: 2.58rem;
  width: clamp(36px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, rgba(140, 100, 22, 0.5), transparent);
  content: "";
}

.experience-step--one {
  top: 8%;
  left: 1.5%;
}

.experience-step--one::after,
.experience-step--three::after {
  left: calc(100% + 1rem);
}

.experience-step--two {
  top: 39%;
  right: 0;
}

.experience-step--two::after {
  right: calc(100% + 1rem);
  transform: rotate(180deg);
}

.experience-step--three {
  bottom: 5%;
  left: 8%;
}

.experience-step:hover,
.experience-step.is-active {
  opacity: 1;
  transform: translateY(-5px);
}

.experience-step__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(140, 100, 22, 0.34);
  border-radius: 50%;
  background: rgba(251, 249, 245, 0.58);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 0.92rem;
  backdrop-filter: blur(7px);
}

.experience-step h3 {
  margin: 0.08rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.1;
}

.experience-step p {
  margin: 0.62rem 0 0;
  color: var(--silver);
  font-size: 0.78rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.connect-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(140, 100, 22, 0.18);
  padding: clamp(3.5rem, 8vw, 7rem) 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.17), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(208, 197, 175, 0.26), transparent 34%),
    rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.connect-panel::before {
  position: absolute;
  inset: -70% 42% -70% -22%;
  z-index: -1;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  content: "";
}

.connect-panel__copy {
  max-width: 53ch;
  margin: 1.2rem auto 0;
  color: var(--silver);
  font-size: 0.9rem;
}

.connect-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--pearl);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 118px;
  padding-block: 1.5rem;
}

.site-footer__brand {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__note {
  color: var(--silver);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.site-footer__links {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__links a {
  transition: color 220ms ease;
}

.site-footer__links a:hover {
  color: var(--gold-deep);
}

/* Catalog */

.page-catalog {
  background: var(--pearl);
}

.catalog-mural {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: min(1500px, 100vw) auto;
  opacity: 0;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(circle 120px at var(--mural-x, -500px) var(--mural-y, -500px), #000 0%, rgba(0, 0, 0, 0.68) 42%, transparent 100%);
  mask-image: radial-gradient(circle 120px at var(--mural-x, -500px) var(--mural-y, -500px), #000 0%, rgba(0, 0, 0, 0.68) 42%, transparent 100%);
  transition: opacity 240ms ease;
}

.catalog-mural.is-active {
  opacity: 0.16;
}

.catalog-main {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding-top: var(--header-height);
}

.catalog-hero {
  padding: clamp(4.5rem, 8vw, 7.5rem) 24px 3.25rem;
  text-align: center;
}

.catalog-hero__signature {
  margin: 0 0 0.25rem;
  color: var(--gold-deep);
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.catalog-shell {
  position: relative;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 3.5rem);
  width: min(calc(100% - 48px), 1380px);
  margin-inline: auto;
  padding-bottom: 7rem;
}

.filters-panel {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  display: flex;
  max-height: calc(100svh - var(--header-height) - 52px);
  flex-direction: column;
  gap: 1.6rem;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(140, 100, 22, 0.28) transparent;
}

.filters-panel__header {
  display: none;
}

.filter-group {
  margin: 0;
  border: 0;
  padding: 0;
}

.filter-group legend,
.field-label {
  display: block;
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
}

.search-field {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  padding: 0.62rem 0.15rem;
  color: var(--ink);
  font-size: 0.84rem;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.search-field::placeholder {
  color: #74787e;
}

.search-field:focus-visible {
  border-color: var(--gold-deep);
  box-shadow: 0 1px 0 var(--gold-deep);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.chip {
  min-height: 36px;
  border: 1px solid rgba(140, 100, 22, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  padding: 0.45rem 0.8rem;
  color: var(--silver);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 280ms var(--ease-luxury);
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(140, 100, 22, 0.42);
  color: var(--gold-dark);
}

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

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  color: var(--silver);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
}

.range-field {
  display: grid;
  gap: 0.55rem;
}

input[type="range"] {
  width: 100%;
  height: 24px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 4px;
  background: rgba(140, 100, 22, 0.32);
}

input[type="range"]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -7px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 2px 7px rgba(72, 44, 8, 0.28);
}

input[type="range"]::-moz-range-track {
  height: 2px;
  border-radius: 4px;
  background: rgba(140, 100, 22, 0.32);
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 2px 7px rgba(72, 44, 8, 0.28);
}

.brand-list {
  display: grid;
  max-height: 225px;
  gap: 0.48rem;
  overflow: auto;
  overscroll-behavior: contain;
  padding-right: 0.3rem;
}

.brand-option {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 0.58rem;
  color: var(--ink-soft);
  font-size: 0.77rem;
  cursor: pointer;
}

.brand-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-deep);
}

.clear-filters {
  align-self: flex-start;
  min-height: 36px;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  padding: 0.25rem 0;
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 0.85rem;
}

.catalog-count {
  margin: 0;
  color: var(--silver);
  font-size: 0.74rem;
  letter-spacing: 0.065em;
  font-variant-numeric: tabular-nums;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-select {
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 0.45rem 1.8rem 0.45rem 0.2rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.filter-toggle {
  display: none;
  min-height: 40px;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.55rem 0.8rem;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-toggle__count {
  display: none;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--white);
  font-size: 0.6rem;
}

.filter-toggle__count.is-visible {
  display: grid;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem 1.35rem;
}

.catalog-grid .product-card__meta {
  min-height: 140px;
}

.catalog-grid .product-card__action {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--ink);
  padding: 0.72rem;
  text-align: center;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.catalog-grid .product-card__action:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  color: var(--white);
}

.catalog-grid .product-card--flagship {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  overflow: hidden;
  border: 1px solid rgba(140, 100, 22, 0.22);
  background:
    radial-gradient(circle at 84% 18%, rgba(212, 175, 55, 0.1), transparent 28%),
    #fff;
  padding: clamp(1.5rem, 3.6vw, 3.25rem);
  box-shadow: 0 30px 70px -56px rgba(72, 44, 8, 0.58);
}

.catalog-grid .product-card--flagship::after {
  position: absolute;
  right: -7%;
  bottom: -50%;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(140, 100, 22, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.product-card--flagship .product-card__image-button {
  width: min(100%, 420px);
  justify-self: center;
}

.product-card--flagship .product-card__meta {
  position: relative;
  z-index: 1;
  min-height: 0;
  max-width: 470px;
  padding: 0;
}

.product-card--flagship .product-card__brand {
  margin-bottom: 0.8rem;
}

.product-card--flagship .product-card__name {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.product-card--flagship .product-card__price {
  margin-top: 1.35rem;
  font-size: 0.96rem;
}

.catalog-grid .product-card--flagship .product-card__action {
  width: min(100%, 290px);
  margin-top: 2rem;
  border-color: var(--gold-dark);
  background: var(--ink);
  color: var(--white);
}

.catalog-empty {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid var(--line-soft);
  padding: 3rem 1.5rem;
  text-align: center;
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-empty h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
}

.catalog-empty p {
  max-width: 42ch;
  margin: 0.7rem auto 1.3rem;
  color: var(--silver);
  font-size: 0.84rem;
}

.filters-backdrop {
  position: fixed;
  inset: 0;
  z-index: 310;
  display: none;
  background: rgba(27, 28, 26, 0.34);
  opacity: 0;
  backdrop-filter: blur(3px);
  transition: opacity 260ms ease;
}

.product-sheet {
  position: fixed;
  inset: 0;
  z-index: 400;
  visibility: hidden;
  pointer-events: none;
}

.product-sheet.is-open {
  visibility: visible;
  pointer-events: auto;
}

.product-sheet__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 28, 26, 0.43);
  opacity: 0;
  cursor: default;
  backdrop-filter: blur(4px);
  transition: opacity 380ms ease;
}

.product-sheet.is-open .product-sheet__backdrop {
  opacity: 1;
}

.product-sheet__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(520px, 94vw);
  height: 100%;
  flex-direction: column;
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--pearl);
  box-shadow: -30px 0 70px -42px rgba(27, 28, 26, 0.8);
  transform: translateX(104%);
  transition: transform 620ms var(--ease-luxury);
}

.product-sheet.is-open .product-sheet__panel {
  transform: translateX(0);
}

.product-sheet__topbar {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  padding: 0 1.4rem;
}

.product-sheet__label {
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-soft);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, transform 300ms var(--ease-luxury);
}

.icon-button:hover {
  transform: rotate(4deg);
  border-color: var(--line);
  color: var(--gold-dark);
}

.product-sheet__body {
  padding: 1.5rem 1.6rem 2.2rem;
}

.product-sheet__visual {
  width: min(350px, 100%);
  margin-inline: auto;
}

.product-sheet__content {
  max-width: 410px;
  margin: 1.7rem auto 0;
}

.product-sheet__brand {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-sheet__title {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
  text-wrap: balance;
}

.product-sheet__price {
  margin: 1.1rem 0 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-variant-numeric: tabular-nums;
}

.product-sheet__note {
  margin: 1rem 0 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
  color: var(--silver);
  font-size: 0.8rem;
  line-height: 1.7;
}

.product-sheet__actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.product-sheet__actions .button {
  width: 100%;
}

/* Chelsea signature product */
.page-product {
  background: #fff;
}

.page-product .site-header,
.page-product .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.signature-product {
  min-height: 100svh;
  background: #fff;
  padding: calc(var(--header-height) + 2rem) clamp(24px, 3.3vw, 64px) clamp(5rem, 8vw, 8rem);
}

.signature-product__crumbs {
  display: flex;
  width: min(100%, 1780px);
  align-items: center;
  gap: 0.65rem;
  margin: 0 auto 1.5rem;
  color: var(--silver);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-product__crumbs a {
  color: var(--gold-dark);
}

.signature-product__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(420px, 1.14fr) minmax(285px, 0.72fr);
  align-items: start;
  gap: clamp(1.5rem, 3.4vw, 4.5rem);
  width: min(100%, 1780px);
  margin-inline: auto;
}

.product-motion {
  align-self: center;
  margin: 0;
  text-align: center;
}

.product-motion__media {
  position: relative;
  width: min(100%, 286px);
  margin-inline: auto;
  overflow: hidden;
  background: #fff;
}

.product-motion__video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #fff;
  object-fit: contain;
}

.product-motion figcaption,
.product-story__visual figcaption {
  margin-top: 0.75rem;
  color: var(--silver);
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.product-gallery__main {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(77, 70, 53, 0.09);
  background: #fff;
}

.product-gallery__main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: opacity 220ms ease, transform 760ms var(--ease-luxury);
}

.product-gallery__main:hover img {
  transform: scale(1.018);
}

.product-gallery__counter {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.35rem 0.5rem;
  color: var(--silver);
  font-size: 0.55rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.15em;
  backdrop-filter: blur(8px);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 76px);
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.product-gallery__thumb {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(77, 70, 53, 0.13);
  background: #fff;
  padding: 0;
  cursor: pointer;
  transition: border-color 220ms ease, transform 320ms var(--ease-luxury);
}

.product-gallery__thumb::after {
  position: absolute;
  right: 8px;
  bottom: 6px;
  left: 8px;
  height: 1px;
  background: var(--gold-deep);
  content: "";
  transform: scaleX(0);
  transition: transform 320ms var(--ease-luxury);
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-selected {
  border-color: rgba(140, 100, 22, 0.48);
  transform: translateY(-2px);
}

.product-gallery__thumb.is-selected::after {
  transform: scaleX(1);
}

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

.product-purchase {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.product-purchase__brand {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-purchase__title {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 3.8vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-wrap: balance;
}

.product-purchase__sku {
  margin: 0.75rem 0 0;
  color: var(--silver);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-purchase__price {
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-variant-numeric: tabular-nums;
}

.product-purchase__installments {
  margin: 0.3rem 0 0;
  color: var(--silver);
  font-size: 0.7rem;
}

.product-purchase__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 1rem 0;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-purchase__option strong {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
}

.product-purchase__option i {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #9d4935;
  box-shadow: 0 0 0 1px rgba(77, 70, 53, 0.35);
}

.product-purchase__cta {
  width: 100%;
  margin-top: 1.35rem;
}

.product-purchase__note {
  margin: 0.85rem 0 0;
  color: var(--silver);
  font-size: 0.7rem;
  line-height: 1.6;
}

.product-purchase__assurances {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.25rem;
}

.product-purchase__assurances div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.75rem;
}

.product-purchase__assurances dt {
  color: var(--gold-dark);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-purchase__assurances dd {
  margin: 0;
  color: var(--silver);
  font-size: 0.68rem;
}

.product-story {
  border-top: 1px solid var(--line-soft);
  background: #fff;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.product-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.product-story__copy {
  max-width: 620px;
}

.product-story__specs {
  display: grid;
  gap: 0.38rem;
  margin: 2rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.5;
  list-style: none;
}

.product-story__specs li::before {
  margin-right: 0.65rem;
  color: var(--gold-deep);
  content: "—";
}

.product-story__description {
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.product-story__source {
  margin: 1.3rem 0 0;
  color: var(--silver);
  font-size: 0.68rem;
  line-height: 1.65;
}

.product-story__visual {
  margin: 0;
  text-align: center;
}

.product-story__visual img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(77, 70, 53, 0.08);
  background: #fff;
  object-fit: contain;
}

.product-return {
  border-top: 1px solid var(--line-soft);
  background: #f8f4ec;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

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

.product-return__inner .section-title {
  max-width: 14ch;
  margin-inline: auto;
}

.product-return__inner .text-link {
  margin-top: 1.5rem;
}

@keyframes scrollCue {
  0%, 100% { transform: translateY(-6px); opacity: 0.45; }
  50% { transform: translateY(7px); opacity: 1; }
}

@keyframes wordmarkShine {
  0%, 28% { transform: translateX(-150%) skewX(-18deg); }
  55%, 100% { transform: translateX(150%) skewX(-18deg); }
}

@keyframes fallbackReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

[data-reveal].is-revealed {
  animation: fallbackReveal 820ms var(--ease-luxury) both;
}

.motion-ready .hero__scroll-cue::after {
  animation: scrollCue 2.4s ease-in-out infinite;
}

.motion-ready .hero__wordmark-wrap::after {
  animation: wordmarkShine 7.2s 1.5s ease-in-out infinite;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 520ms;
  animation-timing-function: var(--ease-luxury);
}

::view-transition-old(site-brand),
::view-transition-new(site-brand) {
  height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-frame:hover::after {
    opacity: 1;
  }
}

@media (max-width: 1179px) {
  .signature-product__grid {
    grid-template-columns: minmax(220px, 0.62fr) minmax(380px, 1.38fr);
    max-width: 900px;
    margin-inline: auto;
  }

  .product-purchase {
    position: relative;
    top: auto;
    grid-column: 1 / -1;
    width: min(100%, 640px);
    margin: 1rem auto 0;
    border-top: 1px solid var(--line-soft);
    padding-top: 3rem;
  }

  .catalog-shell {
    display: block;
    width: min(calc(100% - 40px), 940px);
  }

  .filter-toggle {
    display: inline-flex;
  }

  .filters-panel {
    position: fixed;
    inset: auto 0 0;
    z-index: 320;
    display: flex;
    width: 100%;
    max-height: min(86svh, 760px);
    gap: 1.5rem;
    overflow: auto;
    border-radius: 24px 24px 0 0;
    background: var(--pearl);
    padding: 0 24px calc(2rem + env(safe-area-inset-bottom));
    box-shadow: 0 -24px 70px -40px rgba(27, 28, 26, 0.82);
    transform: translateY(105%);
    visibility: hidden;
    transition: transform 520ms var(--ease-luxury), visibility 0s linear 520ms;
  }

  .filters-panel.is-open {
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .filters-panel__header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(251, 249, 245, 0.95);
    backdrop-filter: blur(12px);
  }

  .filters-panel__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
  }

  .filters-backdrop {
    display: block;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 260ms ease, visibility 0s linear 260ms;
  }

  .filters-backdrop.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transition-delay: 0s;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 1.5rem;
  }
}

@media (max-width: 1023px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
    margin-inline: auto;
  }

  .category-grid .gallery-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.65rem);
    justify-self: center;
  }

  .gallery-card--lifted {
    margin-top: 0;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin-inline: auto;
    gap: 2.5rem 1.4rem;
  }

  .curator-grid {
    gap: 3rem;
  }

  .experience-stage__visual {
    width: min(58vw, 560px);
  }

  .experience-step {
    width: min(27vw, 250px);
  }

  .experience-step--three {
    left: 3%;
  }

  .product-story__grid {
    gap: 4rem;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 56px;
  }

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

  .social-link {
    width: 42px;
    height: 42px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .site-brand {
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.13em;
    text-overflow: ellipsis;
  }

  .hero {
    padding-top: calc(var(--header-height) + 3rem);
  }

  .hero__wordmark-wrap {
    width: min(78vw, 390px);
  }

  .hero__tagline {
    margin-top: 1.1rem;
  }

  .hero__scroll-cue {
    display: none;
  }

  .categories {
    padding: 6rem 0 8rem;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .curator-grid {
    grid-template-columns: 1fr;
    gap: 3.3rem;
  }

  .curator-visual {
    width: min(86%, 480px);
    margin-inline: auto;
  }

  .curator-copy {
    text-align: center;
  }

  .curator-copy__body {
    margin-inline: auto;
  }

  .experience-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .experience-title {
    font-size: clamp(3.4rem, 15vw, 5.4rem);
    line-height: 0.84;
  }

  .experience-title em {
    margin-left: 0;
    white-space: normal;
  }

  .experience-heading__intro {
    margin: 0 auto;
  }

  .experience-stage {
    display: flex;
    min-height: 0;
    flex-direction: column;
    margin-top: 3.5rem;
    padding-top: 0.5rem;
  }

  .experience-stage::before {
    display: none;
  }

  .experience-stage__visual {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 480px);
    margin-inline: auto;
    transform: none;
  }

  .experience-stage__caption {
    bottom: 6%;
  }

  .experience-steps {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: -0.5rem;
  }

  .experience-step,
  .experience-step--one,
  .experience-step--two,
  .experience-step--three {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 1.55rem 0;
    opacity: 1;
  }

  .experience-step + .experience-step {
    border-top: 1px solid var(--line);
  }

  .experience-step::after {
    display: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 2.2rem;
    text-align: center;
  }

  .site-footer__links {
    justify-content: center;
  }

  .catalog-hero {
    padding-top: 4.25rem;
  }

  .catalog-toolbar {
    align-items: flex-start;
  }

  .toolbar-actions {
    flex-direction: row-reverse;
  }

  .sort-select {
    max-width: 160px;
  }

  .product-sheet__panel {
    top: auto;
    bottom: 0;
    width: 100%;
    height: min(88svh, 780px);
    border-radius: 24px 24px 0 0;
    transform: translateY(104%);
  }

  .product-sheet__visual {
    width: min(270px, 76vw);
  }

  .product-sheet.is-open .product-sheet__panel {
    transform: translateY(0);
  }

  .catalog-grid .product-card--flagship {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.25rem 1.25rem 2.3rem;
    text-align: center;
  }

  .product-card--flagship .product-card__image-button {
    width: min(100%, 340px);
  }

  .product-card--flagship .product-card__meta {
    align-items: center;
    margin-inline: auto;
  }

  .product-card--flagship .product-card__name {
    max-width: 11ch;
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .catalog-grid .product-card--flagship .product-card__action {
    align-self: center;
  }

  .signature-product {
    padding-inline: 20px;
  }

  .signature-product__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 3rem;
  }

  .product-motion__media {
    width: min(68vw, 250px);
  }

  .product-gallery {
    width: 100%;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(62px, 82px));
  }

  .product-purchase {
    grid-column: auto;
    margin-top: 0;
    text-align: left;
  }

  .product-story__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .product-story__copy {
    max-width: none;
  }
}

@media (max-width: 639px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero__actions,
  .connect-panel__actions {
    width: min(100%, 330px);
    flex-direction: column;
  }

  .hero__actions .button,
  .connect-panel__actions .button {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    gap: 3rem;
  }

  .category-grid .gallery-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    gap: 3rem;
  }

  .experience-section {
    padding-block: 6.5rem;
  }

  .experience-stage__visual {
    width: min(106%, 390px);
  }

  .experience-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .experience-step__mark {
    width: 38px;
    height: 38px;
  }

  .signature-product {
    padding-top: calc(var(--header-height) + 1.3rem);
    padding-inline: 16px;
  }

  .signature-product__crumbs {
    margin-bottom: 1rem;
  }

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

  .product-purchase__title {
    font-size: clamp(2.65rem, 13vw, 3.6rem);
  }

  .product-story__specs {
    font-size: 1rem;
  }

  .catalog-shell {
    width: calc(100% - 28px);
  }

  .catalog-toolbar {
    flex-direction: column;
  }

  .toolbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 370px;
    margin-inline: auto;
    gap: 3rem;
  }

  .catalog-grid .product-card__meta {
    min-height: 132px;
  }

  .filters-panel {
    padding-inline: 20px;
  }

  .product-sheet__body {
    padding-inline: 1.1rem;
  }
}

@media (max-width: 374px) {
  .site-brand {
    font-size: 0.83rem;
    letter-spacing: 0.1em;
  }

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

  .sort-select,
  .filter-toggle {
    width: 100%;
    max-width: none;
  }
}
