:root {
  --ink: #0e2824;
  --forest: #153d32;
  --forest-deep: #092925;
  --navy: #061a24;
  --abyss: #021312;
  --linen: #d9d1bf;
  --linen-soft: #ebe5d6;
  --gold: #b79a5b;
  --gold-light: #dac38f;
  --mist: #91aaa4;
  --line-light: rgba(235, 229, 214, .2);
  --line-dark: rgba(14, 40, 36, .22);
  --shadow: 0 24px 70px rgba(0, 10, 12, .25);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", "Noto Sans Mono CJK SC", monospace;
  --sans: "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --serif: "Noto Serif CJK SC", "Source Han Serif SC", SimSun, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--linen-soft);
  background: var(--abyss);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid #f1cc73;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(1, 12, 13, .88);
}

::selection {
  color: var(--abyss);
  background: var(--gold-light);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--abyss);
  background: var(--linen-soft);
  transform: translateY(-140%);
  transition: transform .2s ease;
}

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

.grid-shell {
  width: min(1380px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.eyebrow,
.section-no,
.card-no,
.product-depth,
.depth-gauge,
.hero-kicker,
.hero-index,
.filter-button,
.product-info p,
.principle span,
.dialog-topline,
.dialog-body > p,
.filter-status {
  font-family: var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 11px;
  line-height: 1.6;
}

.button {
  min-height: 52px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

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

.button-gold {
  color: var(--abyss);
  background: var(--gold-light);
}

.button-gold:hover {
  background: var(--linen-soft);
}

.button-linen {
  color: var(--abyss);
  background: var(--linen-soft);
}

.button-linen:hover {
  color: var(--linen-soft);
  border-color: var(--linen-soft);
  background: transparent;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(235, 229, 214, .14);
  transition: background-color .35s ease, backdrop-filter .35s ease, border-color .35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(235, 229, 214, .12);
  background: rgba(3, 23, 24, .84);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .09em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(218, 195, 143, .75);
  border-radius: 50%;
}

.brand-mark i {
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 6px 0 0 -4px var(--gold-light), -6px 0 0 -4px var(--gold-light);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.saved-button,
.menu-toggle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(235, 229, 214, .78);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

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

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

.saved-button,
.menu-toggle {
  min-height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.saved-button strong {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(235, 229, 214, .45);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 10px;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  width: 23px;
  height: 16px;
  position: relative;
}

.menu-icon i {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease;
}

.menu-icon i:first-child { top: 4px; }
.menu-icon i:last-child { top: 12px; width: 70%; }

.menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
  top: 8px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
  top: 8px;
  width: 100%;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  z-index: -1;
  top: 76px;
  left: 0;
  width: 100%;
  min-height: calc(100svh - 76px);
  padding: 56px 32px;
  background:
    radial-gradient(circle at 78% 22%, rgba(32, 89, 75, .42), transparent 32%),
    linear-gradient(180deg, #072a29 0%, #021312 100%);
}

.mobile-menu a {
  padding: 23px 0;
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 42px);
}

.mobile-menu a span {
  font-family: var(--mono);
  color: var(--gold-light);
  font-size: 10px;
}

.depth-gauge {
  position: fixed;
  z-index: 60;
  top: 50%;
  right: 22px;
  width: 44px;
  padding: 11px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(235, 229, 214, .68);
  border: 1px solid rgba(235, 229, 214, .16);
  background: rgba(3, 19, 18, .48);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.depth-label,
.depth-zone {
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: .14em;
}

.depth-gauge strong {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--linen-soft);
  font-size: 11px;
}

.depth-gauge small {
  margin-top: 3px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 400;
}

.depth-track {
  width: 1px;
  height: 62px;
  overflow: hidden;
  background: rgba(235, 229, 214, .19);
}

.depth-track i {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--gold-light);
  transform: scaleY(.08);
  transform-origin: top;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: max(760px, 100svh);
  overflow: hidden;
  color: var(--linen-soft);
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(2, 19, 18, .74));
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.8) contrast(1.03) brightness(.74);
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 16, 22, .76) 0%, rgba(2, 16, 22, .46) 35%, rgba(2, 16, 22, .12) 69%, rgba(2, 16, 22, .5) 100%),
    linear-gradient(180deg, rgba(2, 18, 24, .16), rgba(2, 18, 24, .1) 53%, rgba(3, 25, 24, .64));
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(0, -8px, 0); }
}

.hero-grid {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: inherit;
  padding-top: 112px;
  padding-bottom: 48px;
  grid-template-rows: auto 1fr auto;
}

.hero-kicker {
  grid-column: 1 / 13;
  display: flex;
  justify-content: space-between;
  color: rgba(235, 229, 214, .56);
  font-size: 9px;
}

.hero-copy {
  grid-column: 1 / 10;
  align-self: center;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 24px;
  transform: translateY(3vh);
}

.hero-copy > .eyebrow {
  grid-column: 1 / 10;
  margin-bottom: -4px;
  color: var(--gold-light);
}

.hero-copy h1 {
  grid-column: 1 / 7;
  margin-bottom: 0;
  color: var(--linen-soft);
  font-family: var(--serif);
  font-size: clamp(72px, 9.3vw, 150px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.07em;
  text-shadow: 0 8px 50px rgba(0, 8, 11, .28);
}

.hero-intro {
  grid-column: 7 / 10;
  align-self: end;
  padding-bottom: 7px;
}

.hero-intro > p {
  max-width: 370px;
  margin-bottom: 28px;
  color: rgba(235, 229, 214, .8);
  font-size: 14px;
  line-height: 1.9;
}

.hero-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-links .button {
  width: 160px;
}

.text-link {
  position: relative;
  padding: 12px 0;
  display: inline-flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .3s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.hero-index {
  grid-column: 1 / 7;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(235, 229, 214, .62);
  font-size: 9px;
}

.hero-index i {
  width: 23px;
  height: 1px;
  background: rgba(235, 229, 214, .25);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 84px;
  bottom: 47px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(235, 229, 214, .55);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.scroll-cue i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(218, 195, 143, .12);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0%, 25% { box-shadow: 0 0 0 0 rgba(218, 195, 143, .32); }
  75%, 100% { box-shadow: 0 0 0 10px rgba(218, 195, 143, 0); }
}

.intro-section {
  position: relative;
  min-height: 980px;
  padding: 150px 0 190px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 17%, rgba(255, 255, 255, .45), transparent 21%),
    linear-gradient(180deg, var(--linen-soft), var(--linen) 70%, #c9c1ad);
}

.intro-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image:
    repeating-linear-gradient(0deg, rgba(25, 56, 50, .08) 0, rgba(25, 56, 50, .08) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(25, 56, 50, .035) 0, rgba(25, 56, 50, .035) 1px, transparent 1px, transparent 7px);
  mix-blend-mode: multiply;
}

.ambient-particles {
  position: absolute;
  top: 12%;
  right: -70px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(21, 61, 50, .14);
  border-radius: 50%;
  box-shadow: -68px 55px 0 -67px rgba(21, 61, 50, .5), -140px 2px 0 -139px rgba(21, 61, 50, .5), -88px -47px 0 -87px rgba(21, 61, 50, .35);
}

.section-heading {
  position: relative;
  z-index: 2;
  align-items: start;
  margin-bottom: 88px;
}

.section-heading .section-no {
  grid-column: 1 / 3;
}

.section-heading > div {
  grid-column: 4 / 10;
}

.section-heading .heading-note {
  grid-column: 10 / 13;
  max-width: 280px;
  justify-self: end;
  padding-top: 38px;
}

.section-no {
  margin: 7px 0 0;
  font-size: 9px;
  letter-spacing: .14em;
}

.section-heading h2,
.story-title-wrap h2,
.closing-copy h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.section-heading h2 {
  max-width: 700px;
  font-size: clamp(44px, 5.5vw, 78px);
}

.heading-note {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.9;
}

.category-grid {
  position: relative;
  z-index: 2;
}

.category-card {
  position: relative;
  grid-column: span 3;
  min-height: 470px;
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--linen-soft);
  background: var(--forest);
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(.2, .7, .2, 1), background-color .3s ease;
}

.category-card:nth-child(2) { background: #0c3030; }
.category-card:nth-child(3) { color: var(--ink); background: #c1b79f; }
.category-card:nth-child(4) { background: #224537; }

.category-card:hover {
  z-index: 3;
  background: #1d4c3d;
  transform: translateY(-9px);
}

.category-card:nth-child(3):hover {
  background: #d1c7b0;
}

.category-offset {
  transform: translateY(58px);
}

.category-offset:hover {
  transform: translateY(49px);
}

.card-no {
  font-size: 9px;
}

.category-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.category-copy {
  position: relative;
  z-index: 2;
  border-top: 1px solid currentColor;
}

.category-copy h3 {
  margin: 16px 0 8px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.category-copy p {
  margin: 0;
  opacity: .7;
  font-size: 12px;
}

.round-arrow {
  position: absolute;
  z-index: 3;
  right: 19px;
  bottom: 17px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .7;
  transition: transform .3s ease;
}

.category-card:hover .round-arrow {
  transform: rotate(45deg);
}

.ring {
  position: absolute;
  border: 9px solid var(--gold-light);
  border-radius: 49% 51% 46% 54%;
  box-shadow: inset 4px 5px 4px rgba(43, 31, 8, .35), 0 8px 24px rgba(0, 0, 0, .25);
}

.ring-one {
  width: 112px;
  height: 105px;
  transform: rotate(-25deg) skewX(3deg);
}

.ring-two {
  width: 87px;
  height: 81px;
  opacity: .32;
  transform: translate(34px, 27px) rotate(19deg);
}

.bottle {
  position: relative;
  width: 94px;
  height: 126px;
  border: 1px solid rgba(235, 229, 214, .75);
  background: linear-gradient(140deg, rgba(235, 229, 214, .2), rgba(235, 229, 214, .03));
  box-shadow: inset 12px 0 24px rgba(255, 255, 255, .08), 0 20px 36px rgba(0, 0, 0, .26);
  transform: rotate(8deg);
}

.bottle::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 26px;
  width: 41px;
  height: 36px;
  border: 1px solid rgba(235, 229, 214, .65);
  background: #1b2422;
}

.bottle i {
  position: absolute;
  top: 58%;
  right: 10px;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(180deg, rgba(183, 154, 91, .18), rgba(183, 154, 91, .45));
}

.scent-line {
  position: absolute;
  top: 47px;
  left: 50%;
  width: 62px;
  height: 84px;
  border-left: 1px solid rgba(235, 229, 214, .18);
  border-radius: 50%;
  transform: translateX(30px) rotate(-18deg);
}

.glass-orb {
  position: relative;
  width: 156px;
  height: 156px;
  overflow: hidden;
  border: 1px solid rgba(14, 40, 36, .55);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 25%, rgba(255, 255, 255, .55), transparent 11%), linear-gradient(145deg, rgba(255, 255, 255, .27), rgba(21, 61, 50, .08));
  box-shadow: inset -15px -12px 30px rgba(21, 61, 50, .18), 0 18px 36px rgba(14, 40, 36, .2);
}

.glass-orb i {
  position: absolute;
  right: 28px;
  bottom: 40px;
  width: 95px;
  height: 23px;
  border-radius: 50%;
  background: #254f3e;
  transform: rotate(-11deg);
}

.glass-orb b {
  position: absolute;
  bottom: 42px;
  left: 52px;
  width: 2px;
  height: 56px;
  background: #416b4a;
  box-shadow: 18px 2px 0 #315b43, 35px 9px 0 #527456;
  transform: rotate(-24deg);
}

.design-shape {
  width: 133px;
  height: 165px;
  position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0, rgba(255,255,255,.045) 1px, transparent 1px, transparent 4px),
    #0a2c25;
  box-shadow: 21px 16px 0 rgba(9, 27, 24, .65), 0 25px 45px rgba(0, 0, 0, .3);
  transform: perspective(330px) rotateY(-13deg) rotateZ(8deg);
}

.design-shape::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 37px;
  height: 100%;
  border-left: 1px solid rgba(218, 195, 143, .35);
}

.design-line {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(218, 195, 143, .17);
  border-radius: 50%;
}

.collection-section {
  position: relative;
  padding: 170px 0 180px;
  color: var(--linen-soft);
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 72, 61, .37), transparent 30%),
    radial-gradient(circle at 6% 48%, rgba(14, 52, 52, .35), transparent 21%),
    linear-gradient(180deg, #082c2c 0%, #051f20 40%, #031918 100%);
}

.collection-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100%;
  opacity: .28;
  background: linear-gradient(180deg, var(--gold-light), transparent 78%);
}

.section-heading-light .section-no,
.section-heading-light .heading-note {
  color: rgba(235, 229, 214, .58);
}

.section-heading-light .eyebrow {
  color: var(--gold-light);
}

.filter-bar {
  margin-bottom: 42px;
  padding: 15px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.filter-button {
  grid-column: span 2;
  min-height: 38px;
  padding: 0 12px;
  color: rgba(235, 229, 214, .55);
  border: 0;
  border-left: 1px solid var(--line-light);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.filter-button:first-child {
  border-left: 0;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--gold-light);
  background: rgba(218, 195, 143, .06);
}

.product-grid {
  align-items: start;
}

.product-card {
  grid-column: span 4;
  min-width: 0;
  margin-bottom: 50px;
  transition: opacity .25s ease, transform .35s ease;
}

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

.product-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #11362f;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    radial-gradient(circle at 23% 33%, rgba(255,255,255,.45) 0 1px, transparent 1.5px),
    radial-gradient(circle at 77% 65%, rgba(255,255,255,.35) 0 1px, transparent 1.5px),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 50%);
  background-size: 89px 83px, 113px 99px, 100% 100%;
}

.product-card:nth-child(2n) .product-visual { min-height: 390px; }
.product-card:nth-child(3) { margin-top: 84px; }
.product-card:nth-child(5) { margin-top: -26px; }
.product-card:nth-child(6) { margin-top: 46px; }

.product-depth {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 17px;
  color: rgba(235, 229, 214, .57);
  font-size: 8px;
}

.save-toggle {
  position: absolute;
  z-index: 4;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--linen-soft);
  border: 1px solid rgba(235, 229, 214, .42);
  border-radius: 50%;
  background: rgba(2, 19, 18, .14);
  font-size: 19px;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.save-toggle:hover {
  transform: rotate(45deg);
}

.save-toggle[aria-pressed="true"] {
  color: var(--abyss);
  background: var(--gold-light);
}

.save-toggle[aria-pressed="true"] span {
  display: inline-block;
  transform: rotate(45deg);
}

.visual-ring {
  background: radial-gradient(circle at 50% 48%, #315a49 0%, #173a31 48%, #0e2925 100%);
}

.object-ring {
  width: 180px;
  height: 166px;
  position: relative;
  border: 24px solid #af945b;
  border-radius: 47% 53% 42% 58%;
  background: transparent;
  box-shadow: inset 7px 8px 8px rgba(31, 21, 6, .45), inset -6px -5px 6px rgba(255, 231, 171, .25), 0 25px 50px rgba(0, 0, 0, .32);
  transform: rotate(-19deg) skewX(4deg);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.object-ring::before {
  content: "";
  position: absolute;
  top: -27px;
  right: 2px;
  left: 2px;
  height: 31px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d1b674, #80652f);
  transform: rotate(3deg);
}

.product-card:hover .object-ring {
  transform: rotate(-10deg) skewX(4deg) translateY(-8px);
}

.visual-perfume {
  background: linear-gradient(150deg, #b8ae96 0%, #9e9681 48%, #65746b 100%);
}

.visual-perfume .product-depth { color: rgba(14, 40, 36, .7); }

.visual-perfume .save-toggle {
  color: var(--ink);
  border-color: rgba(14, 40, 36, .4);
}

.object-bottle {
  width: 138px;
  height: 188px;
  position: relative;
  border: 2px solid rgba(14, 40, 36, .66);
  background: linear-gradient(140deg, rgba(255,255,255,.35), rgba(12, 50, 48, .2));
  box-shadow: inset 15px 4px 20px rgba(255,255,255,.25), inset -15px -8px 30px rgba(8, 35, 33, .2), 0 27px 35px rgba(9, 38, 34, .24);
  transform: rotate(7deg);
  transition: transform .5s ease;
}

.object-bottle::before {
  content: "";
  position: absolute;
  top: -49px;
  left: 40px;
  width: 55px;
  height: 47px;
  background: linear-gradient(90deg, #2e3a34, #10231f 70%);
  border: 1px solid rgba(14, 40, 36, .9);
}

.object-bottle i {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  height: 75px;
  background: linear-gradient(180deg, rgba(29, 84, 70, .2), rgba(21, 61, 50, .58));
}

.object-bottle b {
  position: absolute;
  top: 80px;
  left: 38px;
  width: 59px;
  height: 32px;
  border-top: 1px solid rgba(14, 40, 36, .5);
  border-bottom: 1px solid rgba(14, 40, 36, .5);
}

.product-card:hover .object-bottle {
  transform: rotate(2deg) translateY(-7px);
}

.visual-orb {
  background: radial-gradient(circle at 48% 44%, #426e68, #173d3c 50%, #082c2c 100%);
}

.object-orb {
  width: 220px;
  height: 220px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(235, 229, 214, .42);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 22%, rgba(255,255,255,.55), transparent 10%), linear-gradient(145deg, rgba(255,255,255,.2), rgba(3,35,31,.18));
  box-shadow: inset -18px -20px 38px rgba(0, 10, 13, .36), 0 27px 55px rgba(0,0,0,.3);
  transition: transform .55s ease;
}

.object-orb i {
  position: absolute;
  right: 38px;
  bottom: 51px;
  width: 140px;
  height: 30px;
  border-radius: 50%;
  background: #1f5136;
  transform: rotate(-9deg);
  filter: blur(1px);
}

.object-orb b {
  position: absolute;
  bottom: 55px;
  left: 75px;
  width: 3px;
  height: 87px;
  background: #3d7a4f;
  box-shadow: 26px 7px 0 #2f6942, 52px 12px 0 #416f48, 72px -2px 0 #315c3f;
  transform: rotate(-25deg);
}

.product-card:hover .object-orb {
  transform: translateY(-7px) rotate(3deg);
}

.visual-textile {
  background: linear-gradient(150deg, #c7bda7, #b1aa99 55%, #8d9b8e);
}

.visual-textile .product-depth { color: rgba(14, 40, 36, .68); }

.visual-textile .save-toggle {
  color: var(--ink);
  border-color: rgba(14, 40, 36, .4);
}

.object-textile {
  width: 175px;
  height: 225px;
  position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px, transparent 1px, transparent 4px),
    #143f32;
  box-shadow: 26px 22px 0 #0b2b25, 0 33px 47px rgba(10, 36, 31, .25);
  transform: perspective(500px) rotateY(-12deg) rotateZ(-6deg);
  transition: transform .55s ease;
}

.object-textile::before {
  content: "";
  position: absolute;
  top: 0;
  right: 35px;
  width: 1px;
  height: 100%;
  background: rgba(218, 195, 143, .32);
}

.object-textile i {
  position: absolute;
  top: 28px;
  right: 20px;
  bottom: 28px;
  left: 20px;
  border: 1px solid rgba(218, 195, 143, .2);
}

.product-card:hover .object-textile {
  transform: perspective(500px) rotateY(-6deg) rotateZ(-2deg) translateY(-7px);
}

.visual-earring {
  background: radial-gradient(circle at 45% 42%, #234b41, #0f302c 53%, #08231f);
}

.object-earring {
  position: absolute;
  width: 3px;
  height: 155px;
  background: linear-gradient(180deg, #e0c889, #94763e);
  transform-origin: top;
}

.object-earring::before {
  content: "";
  position: absolute;
  top: -17px;
  left: -6px;
  width: 13px;
  height: 13px;
  border: 2px solid #c2a666;
  border-radius: 50%;
}

.object-earring i {
  position: absolute;
  bottom: -24px;
  left: -22px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4cb8b, #8d6e36);
  box-shadow: 0 18px 26px rgba(0,0,0,.28);
}

.object-earring-a { transform: translate(-37px, -10px) rotate(7deg); }
.object-earring-b { transform: translate(48px, 22px) rotate(-9deg); }

.product-card:hover .object-earring-a { animation: sway-a 1.8s ease-in-out infinite alternate; }
.product-card:hover .object-earring-b { animation: sway-b 1.9s ease-in-out infinite alternate; }

@keyframes sway-a { to { transform: translate(-37px, -10px) rotate(12deg); } }
@keyframes sway-b { to { transform: translate(48px, 22px) rotate(-14deg); } }

.visual-incense {
  background: linear-gradient(135deg, #173b34 0%, #0b2b2a 52%, #242f29 100%);
}

.object-incense {
  width: 225px;
  height: 80px;
  position: relative;
  background: linear-gradient(180deg, #c8b995, #81775f);
  box-shadow: 0 28px 43px rgba(0,0,0,.35);
  transform: rotate(-8deg);
  transition: transform .5s ease;
}

.object-incense::before {
  content: "";
  position: absolute;
  right: 17px;
  bottom: 19px;
  left: 17px;
  height: 1px;
  background: rgba(14,40,36,.35);
  box-shadow: 0 -12px 0 rgba(14,40,36,.2), 0 -24px 0 rgba(14,40,36,.15);
}

.object-incense i,
.object-incense b {
  position: absolute;
  top: -94px;
  left: 71px;
  width: 2px;
  height: 120px;
  background: #4c351c;
  transform: rotate(19deg);
  transform-origin: bottom;
}

.object-incense b {
  left: 145px;
  transform: rotate(12deg);
}

.product-card:hover .object-incense {
  transform: rotate(-4deg) translateY(-6px);
}

.product-info {
  min-height: 88px;
  padding: 16px 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
}

.product-info p {
  margin-bottom: 7px;
  color: rgba(235,229,214,.52);
  font-size: 8px;
}

.product-info h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.product-info strong {
  padding-top: 20px;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
}

.product-link {
  width: 100%;
  min-height: 44px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(235,229,214,.58);
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 10px;
  cursor: pointer;
  transition: color .2s ease;
}

.product-link:hover {
  color: var(--gold-light);
}

.filter-status {
  display: block;
  color: rgba(235,229,214,.46);
  font-size: 9px;
}

.story-section {
  position: relative;
  min-height: 970px;
  padding: 180px 0 140px;
  overflow: hidden;
  color: var(--linen-soft);
  background:
    linear-gradient(90deg, rgba(3,25,26,.35) 1px, transparent 1px) 0 0 / calc((100vw - 40px) / 12) 100%,
    radial-gradient(circle at 75% 40%, #0c322c 0, #061f1f 30%, #021312 67%);
}

.story-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 11%;
  width: 1px;
  height: 470px;
  background: linear-gradient(180deg, transparent, rgba(218,195,143,.5), transparent);
}

.story-orbit {
  position: absolute;
  top: 18%;
  right: -8vw;
  width: min(58vw, 810px);
  height: min(58vw, 810px);
  border: 1px solid rgba(235,229,214,.12);
  border-radius: 50%;
}

.story-orbit::before,
.story-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(235,229,214,.08);
  border-radius: 50%;
}

.story-orbit::before { inset: 13%; }
.story-orbit::after { inset: 31%; }

.story-orbit i,
.story-orbit b {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 25px rgba(218,195,143,.6);
}

.story-orbit i { top: 12%; left: 20%; width: 5px; height: 5px; }
.story-orbit b { right: 16%; bottom: 24%; width: 3px; height: 3px; }

.story-grid {
  position: relative;
  z-index: 2;
  align-items: start;
}

.story-grid > .section-no {
  grid-column: 1 / 3;
}

.story-title-wrap {
  grid-column: 4 / 11;
}

.story-title-wrap .eyebrow,
.closing-copy .eyebrow {
  color: var(--gold-light);
}

.story-title-wrap h2 {
  max-width: 850px;
  font-size: clamp(52px, 7vw, 102px);
}

.story-copy {
  grid-column: 8 / 12;
  margin-top: 110px;
  color: rgba(235,229,214,.68);
}

.story-copy p {
  font-size: 14px;
  line-height: 2;
}

.story-copy p + p {
  margin-top: 28px;
}

.principles {
  position: relative;
  z-index: 2;
  margin-top: 140px;
}

.principle {
  grid-column: span 4;
  min-height: 180px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
}

.principle + .principle {
  border-left: 1px solid var(--line-light);
  padding-left: 24px;
}

.principle span {
  color: var(--gold-light);
  font-size: 9px;
}

.principle h3 {
  margin: 38px 0 10px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.principle p {
  max-width: 290px;
  margin: 0;
  color: rgba(235,229,214,.58);
  font-size: 12px;
  line-height: 1.8;
}

.closing-section {
  position: relative;
  min-height: 720px;
  padding: 150px 0 120px;
  overflow: hidden;
  color: var(--linen-soft);
  border-top: 1px solid rgba(235,229,214,.1);
  background: #010c0d;
}

.closing-glow {
  position: absolute;
  bottom: -300px;
  left: 50%;
  width: 770px;
  height: 540px;
  border-radius: 50%;
  background: rgba(31,91,74,.38);
  filter: blur(100px);
  transform: translateX(-50%);
}

.closing-grid {
  position: relative;
  z-index: 2;
  align-items: start;
}

.closing-grid > .section-no {
  grid-column: 1 / 3;
}

.closing-copy {
  grid-column: 4 / 10;
}

.closing-copy h2 {
  font-size: clamp(56px, 7.5vw, 108px);
}

.closing-action {
  grid-column: 10 / 13;
  align-self: end;
  padding-bottom: 10px;
}

.closing-action p {
  margin-bottom: 26px;
  color: rgba(235,229,214,.54);
  font-size: 12px;
  line-height: 1.8;
}

.closing-action .button {
  width: 100%;
}

.product-dialog {
  width: min(640px, calc(100% - 32px));
  padding: 0;
  color: var(--ink);
  border: 0;
  background: var(--linen-soft);
  box-shadow: 0 40px 110px rgba(0,0,0,.5);
}

.product-dialog::backdrop {
  background: rgba(0,12,13,.78);
  backdrop-filter: blur(9px);
}

.dialog-topline {
  min-height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  font-size: 9px;
}

.dialog-topline button {
  padding: 8px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.dialog-body {
  padding: 60px 58px 48px;
}

.dialog-body > p:first-child {
  margin-bottom: 20px;
  color: #48685e;
  font-size: 9px;
}

.dialog-body h2 {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.dialog-description {
  max-width: 460px;
  margin-bottom: 50px;
  color: #35534b;
  font-size: 14px;
  line-height: 1.9;
}

.dialog-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line-dark);
}

.dialog-bottom > strong {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 400;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 32px;
  bottom: 32px;
  max-width: calc(100% - 64px);
  padding: 13px 18px;
  color: var(--abyss);
  background: var(--gold-light);
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
  font-family: var(--mono);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.65,.2,1), transform .8s cubic-bezier(.2,.65,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .category-offset.reveal {
  transform: translateY(84px);
}

.js .category-offset.reveal.is-visible {
  transform: translateY(58px);
}

.js .category-offset.reveal.is-visible:hover {
  transform: translateY(49px);
}

@media (max-width: 1120px) {
  .grid-shell {
    width: min(100% - 48px, 1080px);
    gap: 18px;
  }

  .hero-copy {
    grid-column: 1 / 11;
  }

  .hero-intro {
    grid-column: 7 / 10;
  }

  .category-grid {
    row-gap: 62px;
  }

  .category-card {
    grid-column: span 6;
    min-height: 440px;
  }

  .category-offset {
    transform: none;
  }

  .category-offset:hover {
    transform: translateY(-9px);
  }

  .js .category-offset.reveal,
  .js .category-offset.reveal.is-visible {
    transform: translateY(26px);
  }

  .js .category-offset.reveal.is-visible {
    transform: translateY(0);
  }

  .js .category-offset.reveal.is-visible:hover {
    transform: translateY(-9px);
  }

  .product-visual {
    min-height: 390px;
  }

  .product-card:nth-child(2n) .product-visual {
    min-height: 350px;
  }

  .story-title-wrap {
    grid-column: 4 / 12;
  }

  .closing-copy {
    grid-column: 3 / 10;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }

  .grid-shell {
    width: calc(100% - 36px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .site-header {
    height: 68px;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .brand-name {
    font-size: 11px;
  }

  .saved-button > span,
  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions {
    gap: 17px;
  }

  .mobile-menu {
    top: 68px;
    min-height: calc(100svh - 68px);
    padding: 36px 18px;
  }

  .depth-gauge {
    top: auto;
    right: 13px;
    bottom: 13px;
    width: auto;
    height: 36px;
    padding: 0 10px;
    flex-direction: row;
    gap: 7px;
    border-color: rgba(235,229,214,.12);
    transform: none;
  }

  .depth-label,
  .depth-zone,
  .depth-track {
    display: none;
  }

  .depth-gauge strong {
    flex-direction: row;
    gap: 4px;
  }

  .depth-gauge small {
    margin: 0;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .hero-media img {
    object-position: 52% center;
    filter: saturate(.78) contrast(1.06) brightness(.66);
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(2,17,23,.42), rgba(2,17,23,.12) 35%, rgba(2,17,23,.56) 69%, rgba(3,22,22,.9)),
      linear-gradient(90deg, rgba(2,17,23,.38), transparent 78%);
  }

  .hero-grid {
    padding-top: 96px;
    padding-bottom: 31px;
    grid-template-rows: auto 1fr auto;
  }

  .hero-kicker {
    grid-column: 1 / 5;
  }

  .hero-kicker span:last-child {
    display: none;
  }

  .hero-copy {
    grid-column: 1 / 5;
    align-self: end;
    display: block;
    transform: translateY(-3vh);
  }

  .hero-copy > .eyebrow {
    max-width: 230px;
    margin-bottom: 14px;
  }

  .hero-copy h1 {
    margin-bottom: 25px;
    font-size: clamp(64px, 21vw, 94px);
    line-height: .92;
  }

  .hero-intro > p {
    max-width: 315px;
    margin-bottom: 19px;
    font-size: 13px;
    line-height: 1.75;
  }

  .hero-links {
    align-items: stretch;
    gap: 17px;
  }

  .hero-links .button {
    min-height: 48px;
    width: 146px;
  }

  .text-link {
    align-self: center;
    font-size: 10px;
  }

  .hero-index {
    grid-column: 1 / 5;
    gap: 6px;
    font-size: 8px;
  }

  .hero-index i {
    flex: 1;
    width: auto;
  }

  .scroll-cue {
    display: none;
  }

  .intro-section {
    min-height: auto;
    padding: 96px 0 120px;
  }

  .section-heading {
    margin-bottom: 58px;
  }

  .section-heading .section-no,
  .section-heading > div,
  .section-heading .heading-note {
    grid-column: 1 / 5;
  }

  .section-heading .section-no {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .section-heading .heading-note {
    max-width: 300px;
    justify-self: start;
    padding-top: 6px;
  }

  .category-grid {
    row-gap: 14px;
  }

  .category-card {
    grid-column: 1 / 5;
    min-height: 425px;
  }

  .category-art {
    min-height: 250px;
  }

  .collection-section {
    padding: 110px 0 120px;
  }

  .filter-bar {
    display: flex;
    width: calc(100% - 18px);
    margin-left: 18px;
    padding-right: 18px;
    overflow-x: auto;
    gap: 0;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar { display: none; }

  .filter-button {
    flex: 0 0 auto;
    min-width: 82px;
  }

  .product-card,
  .product-card:nth-child(3),
  .product-card:nth-child(5),
  .product-card:nth-child(6) {
    grid-column: 1 / 5;
    margin-top: 0;
    margin-bottom: 34px;
  }

  .product-visual,
  .product-card:nth-child(2n) .product-visual {
    min-height: min(110vw, 470px);
  }

  .filter-status {
    width: calc(100% - 36px);
  }

  .story-section {
    min-height: auto;
    padding: 120px 0 100px;
  }

  .story-orbit {
    top: 22%;
    right: -55%;
    width: 125vw;
    height: 125vw;
  }

  .story-grid > .section-no,
  .story-title-wrap,
  .story-copy {
    grid-column: 1 / 5;
  }

  .story-grid > .section-no {
    margin-bottom: 32px;
  }

  .story-title-wrap h2 {
    font-size: clamp(47px, 14vw, 68px);
  }

  .story-copy {
    margin-top: 58px;
  }

  .principles {
    margin-top: 90px;
  }

  .principle {
    grid-column: 1 / 5;
    min-height: 0;
    padding: 22px 0 28px;
  }

  .principle + .principle {
    padding-left: 0;
    border-left: 0;
  }

  .principle h3 {
    margin: 25px 0 9px;
  }

  .closing-section {
    min-height: 680px;
    padding: 110px 0 92px;
  }

  .closing-grid > .section-no,
  .closing-copy,
  .closing-action {
    grid-column: 1 / 5;
  }

  .closing-grid > .section-no {
    margin-bottom: 70px;
  }

  .closing-copy h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .closing-action {
    max-width: 330px;
    margin-top: 60px;
  }

  .dialog-body {
    padding: 42px 25px 30px;
  }

  .dialog-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .dialog-bottom .button {
    width: 100%;
  }

  .toast {
    right: 18px;
    bottom: 62px;
    max-width: calc(100% - 36px);
  }
}

@media (max-width: 390px) {
  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .hero-links {
    display: block;
  }

  .hero-links .text-link {
    margin-top: 10px;
  }

  .hero-index {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal,
  .js .category-offset.reveal {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .hero-media,
  .hero-wash,
  .closing-glow,
  .story-orbit {
    display: none;
  }

  .category-card,
  .product-visual {
    border: 1px solid CanvasText;
  }
}
