:root {
  --gold: #d3b16d;
  --paper: #efe1c3;
  --ink: #070806;
  --seal-red: #9f1f25;
  --seal-red-bright: #c43a40;
  --warm-bg: #e8dcc2;
  --warm-bg-2: #d8c39a;
  --mx: 0px;
  --my: 0px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #050605;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", serif;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-shell {
  min-height: 100svh;
  background: #050605;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 3vw, 46px) clamp(26px, 4vw, 76px);
}

.hero-bg {
  position: absolute;
  inset: -2.5%;
  z-index: -5;
  background: url("./img/shouye_home_hero_bg.webp") center / cover no-repeat;
  transform: translate3d(calc(var(--mx) * -0.008), calc(var(--my) * -0.006), 0) scale(1.025);
  filter: contrast(1.02) saturate(1.02) brightness(.96);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.24) 0%, rgba(0,0,0,.08) 34%, rgba(0,0,0,.12) 100%),
    linear-gradient(90deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.22) 28%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.08) 100%);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .025;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

.header {
  position: fixed;
  z-index: 9999;
  top: clamp(24px, 3vw, 46px);
  left: clamp(26px, 4vw, 76px);
  right: clamp(26px, 4vw, 76px);

  display: grid;
  grid-template-columns: minmax(230px, 300px) 1fr minmax(130px, 160px);
  align-items: center;
  gap: 24px;

  height: 56px;
  padding: 4px 18px;
  border-radius: 14px;

  background: rgba(8, 13, 13, .58);
  border: 1px solid rgba(211, 177, 109, .10);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, .10),
    inset 0 1px 0 rgba(255, 255, 255, .03);

  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition:
    top .28s ease,
    height .28s ease,
    padding .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    border-radius .28s ease;
}

.header.is-scrolled {
  top: 12px;
  height: 48px;
  padding: 3px 16px;
  border-radius: 12px;
  background: rgba(7, 10, 9, .86);
  border-color: rgba(211, 177, 109, .18);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .035);
}

.header::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(159,31,37,.30) 24%,
    rgba(211,177,109,.24) 50%,
    rgba(159,31,37,.30) 76%,
    transparent 100%
  );
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(300px, 18vw);
  min-width: 230px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.brand img {
  display: block;
  width: 100%;
  max-height: 41px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 8px rgba(0, 0, 0, .38))
    drop-shadow(0 0 8px rgba(211, 177, 109, .08));
  transition: max-height .28s ease;
}

.header.is-scrolled .brand img {
  max-height: 34px;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(26px, 2.8vw, 50px);

  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(14px, .88vw, 17px);
  font-weight: 800;

  color: rgba(239, 225, 195, .92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .32);
  white-space: nowrap;
  transition: font-size .28s ease, gap .28s ease;
}

.header.is-scrolled .nav {
  gap: clamp(22px, 2.5vw, 44px);
  font-size: clamp(13px, .82vw, 16px);
}

.nav a {
  position: relative;
  padding: 5px 0 8px;
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}

.header.is-scrolled .nav a {
  padding: 4px 0 7px;
}

.nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--seal-red-bright);
  box-shadow: 0 0 8px rgba(179, 38, 44, .34);
  transform: translateX(-50%) scale(.45);
  opacity: 0;
  transition: all .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--seal-red) 0%, var(--gold) 100%);
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav a:hover {
  color: #f3d8c9;
  transform: translateY(-1px);
}

.nav a:hover::before,
.nav a.active::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active {
  color: #f4dfd2;
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  transition: gap .28s ease;
}

.header.is-scrolled .header-icons {
  gap: 16px;
}

.header-icons button {
  position: relative;
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: color .25s ease, transform .25s ease, width .28s ease, height .28s ease;
}

.header.is-scrolled .header-icons button {
  width: 25px;
  height: 25px;
}

.header-icons button:hover {
  color: #e7b3a8;
  transform: translateY(-1px);
}

.header-icons svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .28));
}

.hero-copy {
  position: absolute;
  z-index: 30;
  left: clamp(72px, 7.4vw, 138px);
  top: 23.5%;
  max-width: 700px;
  color: var(--paper);
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(211,177,109,.94);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(56px, 5.05vw, 88px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.038em;
  color: rgba(250, 238, 211, .96);
  text-shadow: 0 10px 28px rgba(0,0,0,.34);
}

.intro {
  max-width: 440px;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.66;
  color: rgba(245, 230, 198, .84);
  text-shadow: 0 4px 18px rgba(0,0,0,.34);
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: rgba(211,177,109,.90);
  color: #171108;
  border: 1px solid rgba(255,255,255,.18);
}

.btn.secondary {
  background: rgba(8, 13, 13, .32);
  color: rgba(246, 231, 198, .94);
  border: 1px solid rgba(211,177,109,.25);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  max-width: 620px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(211,177,109,.20);
  background: rgba(7, 10, 9, .30);
  color: rgba(250,238,211,.90);
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.product-tag:hover {
  transform: translateY(-1px);
  background: rgba(7, 10, 9, .42);
  border-color: rgba(211,177,109,.34);
}

.product-tag span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(159,31,37,.40);
  border-radius: 50%;
  color: #e2b16b;
  font-size: 18px;
  background: rgba(159,31,37,.08);
}

.product-tag strong {
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-copy.hero-copy--reading {
  top: 21.5%;
  max-width: 580px;
  padding: clamp(22px, 2.2vw, 30px) clamp(22px, 2.2vw, 30px) clamp(20px, 2vw, 28px);
  border-radius: 28px;
  border: 1px solid rgba(223, 190, 123, .14);
  background: linear-gradient(180deg, rgba(9, 12, 12, .96) 0%, rgba(10, 13, 13, .93) 100%);
  box-shadow: 0 24px 56px rgba(0,0,0,.24);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-copy.hero-copy--reading .eyebrow {
  margin-bottom: 14px;
  color: rgba(223, 190, 123, .98);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
}

.hero-copy.hero-copy--reading h1 {
  max-width: 500px;
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: .96;
  font-weight: 600;
  letter-spacing: -.045em;
  color: rgba(253, 244, 224, .99);
  text-shadow: 0 12px 36px rgba(0,0,0,.40);
}

.hero-copy.hero-copy--reading .intro {
  max-width: 500px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.62;
  color: rgba(248, 236, 208, .96);
  text-shadow: 0 8px 24px rgba(0,0,0,.34);
}

.hero-copy.hero-copy--reading .hero-actions {
  gap: 12px;
  margin-top: 22px;
}

.hero-copy.hero-copy--reading .btn {
  min-height: 46px;
  padding: 0 22px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.hero-copy.hero-copy--reading .btn.primary {
  background: linear-gradient(180deg, #dec084 0%, #cfa860 100%);
  color: #171108;
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 12px 28px rgba(132, 94, 32, .28);
}

.hero-copy.hero-copy--reading .btn.secondary {
  background: rgba(255,255,255,.08);
  color: rgba(248, 236, 208, .96);
  border: 1px solid rgba(223, 190, 123, .28);
}

.hero-copy.hero-copy--reading .product-tags {
  gap: 8px;
  margin-top: 16px;
  max-width: 520px;
}

.hero-copy.hero-copy--reading .product-tag {
  min-height: 40px;
  padding: 0 12px 0 8px;
  background: rgba(255,255,255,.06);
  border-color: rgba(223, 190, 123, .18);
  color: rgba(253, 244, 224, .96);
  box-shadow: 0 12px 20px rgba(0,0,0,.12);
}

.hero-copy.hero-copy--reading .product-tag:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(223, 190, 123, .36);
}

.hero-copy.hero-copy--reading .product-tag span {
  width: 28px;
  height: 28px;
  border-color: rgba(198, 155, 89, .48);
  background: rgba(198, 155, 89, .12);
  color: #eccf97;
  font-size: 16px;
  font-weight: 700;
}

.hero-copy.hero-copy--reading .product-tag strong {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.master-stage {
  position: absolute;
  z-index: 16;
  left: 69%;
  bottom: -92svh;
  height: 178svh;
  width: auto;
  transform: translate3d(calc(-50% + var(--mx) * .032), calc(var(--my) * .014), 0);
  transform-origin: center bottom;
  pointer-events: none;
  will-change: transform;
  isolation: isolate;
}

.dao-master {
  position: relative;
  z-index: 2;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter:
    contrast(.96)
    saturate(.92)
    brightness(.96)
    drop-shadow(0 30px 48px rgba(0,0,0,.46))
    drop-shadow(0 8px 22px rgba(0,0,0,.24));
  transform-origin: center bottom;
  animation: masterBreath 8.5s ease-in-out infinite;
}

@keyframes masterBreath {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.003);
  }
}

.master-nameplate {
  position: absolute;
  z-index: 42;
  right: clamp(56px, 6vw, 120px);
  top: 39%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 10px 18px 11px;
  border-left: 2px solid rgba(159, 31, 37, .72);
  background:
    linear-gradient(90deg, rgba(7,10,9,.44), rgba(7,10,9,.12), transparent);
  color: rgba(250,238,211,.94);
  text-shadow: 0 4px 16px rgba(0,0,0,.46);
  pointer-events: none;
}

.master-nameplate span {
  font-size: clamp(20px, 1.55vw, 30px);
  line-height: 1;
  letter-spacing: .10em;
  font-weight: 600;
}

.master-nameplate em {
  font-style: normal;
  color: rgba(211,177,109,.88);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 44;
  left: 50%;
  bottom: clamp(20px, 3.4vh, 38px);
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 180px;
  padding: 8px 14px 2px;
  color: rgba(250,238,211,.86);
  text-align: center;
  text-shadow: 0 4px 18px rgba(0,0,0,.44);
  font-family: Arial, "Helvetica Neue", sans-serif;
  pointer-events: auto;
}

.scroll-cue span {
  color: rgba(211,177,109,.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .26em;
}

.scroll-cue strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 34px;
  margin-top: 5px;
  background: linear-gradient(180deg, rgba(211,177,109,.92), rgba(159,31,37,.30), transparent);
  animation: scrollLine 1.7s ease-in-out infinite;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(211,177,109,.92);
  border-bottom: 1px solid rgba(211,177,109,.92);
  transform: translateX(-50%) rotate(45deg);
}

@keyframes scrollLine {
  0%, 100% {
    opacity: .46;
    transform: translateY(-4px);
  }

  50% {
    opacity: 1;
    transform: translateY(5px);
  }
}

.incense-smoke {
  position: absolute;
  z-index: 18;
  left: 7%;
  bottom: 8%;
  width: 34vw;
  height: 46vh;
  pointer-events: none;
  overflow: hidden;
  opacity: .38;
  filter: blur(1px);
}

.incense-smoke span {
  position: absolute;
  bottom: -20%;
  width: 36%;
  height: 88%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(235,236,224,.25) 0%, rgba(235,236,224,.09) 34%, transparent 70%);
  filter: blur(22px);
  transform-origin: center bottom;
  animation: smokeRise 12s ease-in-out infinite;
}

.incense-smoke span:nth-child(1) {
  left: 2%;
  animation-delay: 0s;
}

.incense-smoke span:nth-child(2) {
  left: 20%;
  width: 42%;
  animation-delay: -4s;
}

.incense-smoke span:nth-child(3) {
  left: 38%;
  width: 34%;
  animation-delay: -7s;
}

@keyframes smokeRise {
  0% {
    transform: translateY(28%) translateX(0) scale(.82) rotate(-3deg);
    opacity: 0;
  }

  22% {
    opacity: .40;
  }

  72% {
    opacity: .22;
  }

  100% {
    transform: translateY(-34%) translateX(34px) scale(1.18) rotate(4deg);
    opacity: 0;
  }
}

.ember-layer {
  position: absolute;
  inset: 0;
  z-index: 22;
  pointer-events: none;
  overflow: hidden;
}

.ember-layer i {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;

  width: var(--size, 2px);
  height: var(--size, 2px);
  left: var(--left, 50%);
  top: var(--top, 80%);

  background: rgba(229, 180, 91, var(--alpha, .55));
  box-shadow:
    0 0 8px rgba(229, 180, 91, .42),
    0 0 18px rgba(229, 180, 91, .14);

  opacity: 0;
  animation: dustRise var(--duration, 10s) linear infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes dustRise {
  0% {
    transform: translate3d(0, 24px, 0) scale(.45);
    opacity: 0;
  }

  18% {
    opacity: .42;
  }

  76% {
    opacity: .10;
  }

  100% {
    transform: translate3d(var(--drift, 24px), -130px, 0) scale(1);
    opacity: 0;
  }
}

.objects-showcase {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: clamp(34px, 3.6vw, 54px) clamp(26px, 4vw, 72px) clamp(92px, 7vw, 124px);
  background:
    radial-gradient(circle at 12% 8%, rgba(159,31,37,.032), transparent 26%),
    radial-gradient(circle at 82% 15%, rgba(211,177,109,.065), transparent 32%),
    linear-gradient(180deg, #fffefd 0%, #fbfaf7 52%, #f7f2e9 100%);
  color: #171109;
  isolation: isolate;
}

.objects-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .05;
  background-image:
    linear-gradient(90deg, rgba(126, 91, 45, .16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(126, 91, 45, .12) 1px, transparent 1px);
  background-size: 52px 52px;
}

.objects-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,6,5,.05) 0%, transparent 13%, transparent 84%, rgba(5,6,5,.04) 100%),
    radial-gradient(circle at 50% 58%, transparent 0%, rgba(126,91,45,.045) 100%);
}
.guardian-symbol-gallery {
  width: min(1440px, 100%);
  margin: 0 auto clamp(30px, 3.6vw, 50px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: clamp(10px, 1.8vw, 28px);
  row-gap: 0;
  padding: 0 clamp(12px, 2vw, 28px);
  align-items: center;
}

.guardian-symbol-card {
  position: relative;
  min-height: clamp(120px, 10vw, 185px);
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.guardian-symbol-card::before,
.guardian-symbol-card::after {
  display: none;
}

.guardian-symbol-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92%, 220px);
  max-height: clamp(120px, 10vw, 190px);
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(23, 17, 9, .10));
}

@media (max-width: 900px) {
  .guardian-symbol-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(720px, 100%);
    column-gap: clamp(22px, 4vw, 46px);
    row-gap: 28px;
    margin-bottom: 42px;
  }

  .guardian-symbol-card:nth-child(5),
  .guardian-symbol-card:nth-child(6) {
    grid-column: auto;
  }

  .guardian-symbol-card {
    min-height: 180px;
  }
}

@media (max-width: 520px) {
  .guardian-symbol-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 18px;
  }

  .guardian-symbol-card {
    min-height: 180px;
  }

  .guardian-symbol-card img {
    max-width: min(82%, 230px);
    max-height: 210px;
  }
}

.showcase-shell {
  position: relative;
  z-index: 3;
  max-width: 1500px;
  margin: 0 auto;
}

.showcase-head {
  max-width: 1280px;
  margin: 0 auto clamp(26px, 3vw, 34px);
  text-align: center;
}

.showcase-head h2 {
  margin: 0;
  color: #171109;
  font-size: clamp(40px, 4.7vw, 72px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.052em;
  white-space: nowrap;
}

.showcase-head > p {
  max-width: 920px;
  margin: 14px auto 0;
  color: rgba(23,17,9,.58);
  font-size: 17px;
  line-height: 1.7;
}
.showcase-bagua {
  position: absolute;
  z-index: 0;
  right: clamp(-160px, -7vw, -80px);
  top: 36px;
  width: clamp(340px, 31vw, 560px);
  height: clamp(340px, 31vw, 560px);
  border-radius: 50%;
  opacity: .10;
  pointer-events: none;
  transform: rotate(-8deg);
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(159,31,37,.16) 0deg 4deg,
      transparent 4deg 14deg,
      rgba(211,177,109,.14) 14deg 19deg,
      transparent 19deg 45deg
    );
  mask-image: radial-gradient(circle, transparent 0 19%, #000 20% 21%, transparent 22% 31%, #000 32% 33%, transparent 34% 44%, #000 45% 46%, transparent 47% 100%);
  -webkit-mask-image: radial-gradient(circle, transparent 0 19%, #000 20% 21%, transparent 22% 31%, #000 32% 33%, transparent 34% 44%, #000 45% 46%, transparent 47% 100%);
}

.showcase-bagua::before,
.showcase-bagua::after,
.showcase-bagua span,
.showcase-bagua i {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.showcase-bagua::before {
  inset: 31%;
  background:
    radial-gradient(circle at 50% 25%, rgba(159,31,37,.42) 0 7%, transparent 8%),
    radial-gradient(circle at 50% 75%, rgba(211,177,109,.38) 0 7%, transparent 8%),
    linear-gradient(90deg, rgba(159,31,37,.34) 50%, rgba(211,177,109,.28) 50%);
}

.showcase-bagua::after {
  inset: 20%;
  border: 1px solid rgba(126,91,45,.16);
}

.showcase-bagua span {
  inset: 11%;
  border: 1px solid rgba(126,91,45,.12);
}

.showcase-bagua i {
  inset: 42%;
  background: rgba(159,31,37,.16);
}
.koi-line {
  position: absolute;
  z-index: 0;
  width: 310px;
  height: 180px;
  pointer-events: none;
  opacity: .13;
}

.koi-line::before {
  content: "";
  position: absolute;
  inset: 24px 38px;
  border: 2px solid rgba(159,31,37,.30);
  border-radius: 64% 36% 56% 44% / 50% 58% 42% 50%;
}

.koi-line::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 62px;
  right: 34px;
  top: 58px;
  border-top: 2px solid rgba(159,31,37,.28);
  border-right: 2px solid rgba(159,31,37,.28);
  transform: rotate(45deg);
  border-radius: 16px;
}

.koi-line span {
  position: absolute;
  left: 126px;
  top: 82px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(159,31,37,.30);
}

.koi-line-left {
  left: -114px;
  bottom: 110px;
  transform: rotate(16deg);
}

.koi-line-right {
  right: -130px;
  top: 330px;
  transform: rotate(-28deg) scaleX(-1);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 28px);
  align-items: start;
}

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

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

.product-visual {
  position: relative;
  display: block;
  height: clamp(360px, 31vw, 520px);
  overflow: hidden;
  border-radius: clamp(24px, 2.2vw, 34px);
  background:
    radial-gradient(circle at 50% 45%, rgba(211,177,109,.10), transparent 35%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 52%, #f4f0e9 100%);
  border: 1px solid rgba(126,91,45,.08);
  box-shadow:
    0 20px 50px rgba(90,58,23,.055),
    inset 0 1px 0 rgba(255,255,255,.96);
  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease,
    background .45s ease;
}

.product-card:hover .product-visual {
  transform: translateY(-7px);
  border-color: rgba(159,31,37,.18);
  background:
    radial-gradient(circle at 50% 45%, rgba(211,177,109,.14), transparent 35%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 52%, #f2ece2 100%);
  box-shadow:
    0 30px 70px rgba(90,58,23,.095),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(126,91,45,.055);
  pointer-events: none;
}

.product-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 52%;
  height: 10%;
  border-radius: 50%;
  background: rgba(23,17,9,.075);
  filter: blur(15px);
  transform: translateX(-50%) skewX(-18deg);
  pointer-events: none;
}

.product-info {
  padding-top: 20px;
}

.product-info h3 {
  margin: 0;
  color: #171109;
  font-size: clamp(22px, 1.85vw, 32px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -.035em;
}

.product-info p {
  margin: 8px 0 0;
  color: rgba(23,17,9,.55);
  font-size: 15px;
  line-height: 1.55;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: #8f1d22;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.shop-link::after {
  content: "→";
  color: #171109;
  transition: transform .25s ease;
}

.product-card:hover .shop-link::after {
  transform: translateX(4px);
}
.bagua-mark {
  position: absolute;
  right: 28px;
  top: 26px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  opacity: .10;
  background:
    repeating-conic-gradient(from 0deg, rgba(159,31,37,.70) 0 7deg, transparent 7deg 18deg);
  mask-image: radial-gradient(circle, transparent 0 42%, #000 43% 45%, transparent 46% 59%, #000 60% 62%, transparent 63% 100%);
  -webkit-mask-image: radial-gradient(circle, transparent 0 42%, #000 43% 45%, transparent 46% 59%, #000 60% 62%, transparent 63% 100%);
}

.bracelet-object {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -48%) rotateX(58deg) rotateZ(-16deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 24px 26px rgba(90,58,23,.16));
}

.bracelet-object i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  margin: -17px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.62), transparent 18%),
    radial-gradient(circle at 68% 72%, rgba(0,0,0,.30), transparent 34%),
    linear-gradient(135deg, #191511, #725a38 48%, #11100d);
  border: 1px solid rgba(211,177,109,.28);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.22),
    0 8px 16px rgba(45,28,10,.18);
}

.bracelet-object i:nth-child(1) { transform: rotate(0deg) translate(116px) rotate(0deg); }
.bracelet-object i:nth-child(2) { transform: rotate(25.7deg) translate(116px) rotate(-25.7deg); }
.bracelet-object i:nth-child(3) { transform: rotate(51.4deg) translate(116px) rotate(-51.4deg); }
.bracelet-object i:nth-child(4) { transform: rotate(77.1deg) translate(116px) rotate(-77.1deg); }
.bracelet-object i:nth-child(5) { transform: rotate(102.8deg) translate(116px) rotate(-102.8deg); }
.bracelet-object i:nth-child(6) { transform: rotate(128.5deg) translate(116px) rotate(-128.5deg); }
.bracelet-object i:nth-child(7) { transform: rotate(154.2deg) translate(116px) rotate(-154.2deg); }
.bracelet-object i:nth-child(8) { transform: rotate(179.9deg) translate(116px) rotate(-179.9deg); }
.bracelet-object i:nth-child(9) { transform: rotate(205.6deg) translate(116px) rotate(-205.6deg); }
.bracelet-object i:nth-child(10) { transform: rotate(231.3deg) translate(116px) rotate(-231.3deg); }
.bracelet-object i:nth-child(11) { transform: rotate(257deg) translate(116px) rotate(-257deg); }
.bracelet-object i:nth-child(12) { transform: rotate(282.7deg) translate(116px) rotate(-282.7deg); }
.bracelet-object i:nth-child(13) { transform: rotate(308.4deg) translate(116px) rotate(-308.4deg); }
.bracelet-object i:nth-child(14) { transform: rotate(334.1deg) translate(116px) rotate(-334.1deg); }

.bracelet-object span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #9f1f25;
  font-size: 40px;
  background:
    radial-gradient(circle, rgba(255,250,239,.98), rgba(211,177,109,.40));
  border: 1px solid rgba(159,31,37,.16);
  box-shadow:
    0 13px 28px rgba(90,58,23,.13),
    inset 0 1px 0 rgba(255,255,255,.74);
  transform: translate(-50%, -50%) rotateZ(16deg) rotateX(-58deg);
}
.necklace-object {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.chain {
  position: absolute;
  top: -24px;
  width: 2px;
  height: 64%;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(211,177,109,.92) 0 4px,
      rgba(127,91,45,.60) 4px 7px
    );
  filter: drop-shadow(0 6px 8px rgba(90,58,23,.12));
}

.chain-left {
  left: 42%;
  transform: rotate(-16deg);
  transform-origin: top center;
}

.chain-right {
  right: 42%;
  transform: rotate(16deg);
  transform-origin: top center;
}

.pendant {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.25), transparent 24%),
    linear-gradient(145deg, #11110e, #27241d 58%, #060605);
  border: 5px solid #d3b16d;
  box-shadow:
    0 18px 32px rgba(90,58,23,.16),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.pendant::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(211,177,109,.32);
}

.pendant span {
  color: #d3b16d;
  font-size: 32px;
}

.soft-koi {
  position: absolute;
  left: 13%;
  bottom: 17%;
  width: 158px;
  height: 92px;
  opacity: .10;
  border: 1.5px solid rgba(159,31,37,.45);
  border-radius: 66% 34% 55% 45% / 50% 58% 42% 50%;
  transform: rotate(-18deg);
}
.talisman-object {
  position: absolute;
  left: 50%;
  top: 49%;
  width: 150px;
  height: 250px;
  border-radius: 8px;
  transform: translate(-50%, -50%) rotate(-7deg);
  background:
    linear-gradient(180deg, #ead28f 0%, #c99c45 100%);
  border: 1px solid rgba(159,31,37,.22);
  box-shadow:
    0 26px 40px rgba(90,58,23,.16),
    inset 0 0 0 9px rgba(126,31,25,.10);
}

.talisman-object::before,
.talisman-object::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 2px;
  background: rgba(126,31,25,.68);
}

.talisman-object::before {
  top: 42px;
}

.talisman-object::after {
  bottom: 42px;
}

.talisman-object span,
.talisman-object b,
.talisman-object em {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(126,31,25,.88);
  font-style: normal;
  font-weight: 700;
}

.talisman-object span {
  top: 64px;
  font-size: 44px;
}

.talisman-object b {
  top: 116px;
  font-size: 36px;
}

.talisman-object em {
  bottom: 62px;
  font-size: 32px;
}
.phone-object {
  position: absolute;
  left: 50%;
  top: 49%;
  width: 160px;
  height: 292px;
  border-radius: 35px;
  transform: translate(-50%, -50%) rotate(7deg);
  background:
    radial-gradient(circle at 50% 26%, rgba(211,177,109,.18), transparent 28%),
    linear-gradient(145deg, #0d1110, #35322c 46%, #070807);
  border: 1px solid rgba(211,177,109,.34);
  box-shadow:
    0 28px 48px rgba(90,58,23,.20),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.phone-object span {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 13px;
  border: 1px solid rgba(211,177,109,.42);
  background: #090b0a;
}

.phone-object b {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #d3b16d;
  font-size: 38px;
  border: 1px solid rgba(211,177,109,.36);
  background: rgba(126,31,25,.12);
}

.phone-object em {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 46px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(211,177,109,.36);
}
@media (max-width: 1200px) {
  .header {
    grid-template-columns: minmax(210px, 260px) 1fr minmax(115px, 150px);
    gap: 18px;
    height: 54px;
    padding: 4px 16px;
  }

  .header.is-scrolled {
    height: 47px;
  }

  .brand {
    min-width: 210px;
  }

  .brand img {
    max-height: 38px;
  }

  .header.is-scrolled .brand img {
    max-height: 32px;
  }

  .nav {
    gap: 22px;
    font-size: 13px;
  }

  .header-icons {
    gap: 15px;
  }

  .hero-copy {
    left: clamp(52px, 6.4vw, 104px);
    top: 23%;
    max-width: 620px;
  }

  .hero-copy h1 {
    max-width: 620px;
    font-size: clamp(50px, 5.1vw, 78px);
  }

  .master-stage {
    left: 68%;
    height: 154svh;
    bottom: -72svh;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: 780px;
  }

  .header {
    display: flex;
    justify-content: space-between;
    top: 22px;
    height: 54px;
    padding: 4px 14px;
  }

  .header.is-scrolled {
    top: 10px;
    height: 48px;
  }

  .nav {
    display: none;
  }

  .brand {
    width: 205px;
    min-width: 0;
  }

  .brand img {
    max-height: 36px;
  }

  .header.is-scrolled .brand img {
    max-height: 32px;
  }

  .hero-copy {
    top: 16%;
    left: 24px;
    max-width: calc(100% - 48px);
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 46px;
  }

  .intro {
    font-size: 15px;
    max-width: 310px;
  }

  .product-tags {
    max-width: 330px;
  }

  .product-tag {
    min-height: 38px;
  }

  .master-stage {
    left: 66%;
    height: 102svh;
    bottom: -24svh;
    opacity: .86;
  }

  .master-nameplate {
    right: 24px;
    top: 54%;
    padding: 8px 12px 9px;
  }

  .master-nameplate span {
    font-size: 20px;
  }

  .master-nameplate em {
    font-size: 9px;
    letter-spacing: .13em;
  }

  .scroll-cue {
    bottom: 16px;
  }

  .incense-smoke {
    left: 0;
    bottom: 12%;
    width: 70vw;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 740px;
    padding: 22px 18px;
  }

  .header {
    height: 50px;
    border-radius: 14px;
    padding: 0 12px;
  }

  .brand {
    width: 170px;
  }

  .brand img {
    max-height: 32px;
  }

  .header.is-scrolled .brand img {
    max-height: 29px;
  }

  .header-icons {
    gap: 10px;
  }

  .header-icons button {
    width: 25px;
    height: 25px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .btn {
    min-height: 40px;
    padding: 0 18px;
  }

  .product-tags {
    gap: 8px;
  }

  .product-tag {
    padding-right: 12px;
  }

  .product-tag strong {
    font-size: 11px;
  }

  .master-nameplate {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .master-stage {
    height: 90svh;
    bottom: -17svh;
  }
}

.product-card {
  opacity: 1;
  transform: translateY(0);
}

.product-card.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
}

.product-card.reveal-in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .75s ease,
    transform .75s ease;
}


@media (max-width: 1180px) {

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

@media (max-width: 900px) {
  .objects-showcase {
    padding-top: 76px;
  }

  .showcase-head {
    margin: 0 auto 40px;
    text-align: center;
  }

  .showcase-head h2 {
    font-size: 45px;
  }

  .showcase-head > p {
    font-size: 16px;
  }

  .showcase-bagua {
    width: 360px;
    height: 360px;
    right: -150px;
    top: 80px;
  }

  .koi-line {
    display: none;
  }

  .showcase-head h2 {
    white-space: normal;
  }

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

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

@media (max-width: 640px) {
  .objects-showcase {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-visual {
    height: 430px;
  }

  .showcase-head h2 {
    font-size: 38px;
  }

  .bracelet-object {
    width: 220px;
    height: 220px;
  }

  .bracelet-object i {
    width: 29px;
    height: 29px;
    margin: -14.5px;
  }

  .bracelet-object i:nth-child(1) { transform: rotate(0deg) translate(96px) rotate(0deg); }
  .bracelet-object i:nth-child(2) { transform: rotate(25.7deg) translate(96px) rotate(-25.7deg); }
  .bracelet-object i:nth-child(3) { transform: rotate(51.4deg) translate(96px) rotate(-51.4deg); }
  .bracelet-object i:nth-child(4) { transform: rotate(77.1deg) translate(96px) rotate(-77.1deg); }
  .bracelet-object i:nth-child(5) { transform: rotate(102.8deg) translate(96px) rotate(-102.8deg); }
  .bracelet-object i:nth-child(6) { transform: rotate(128.5deg) translate(96px) rotate(-128.5deg); }
  .bracelet-object i:nth-child(7) { transform: rotate(154.2deg) translate(96px) rotate(-154.2deg); }
  .bracelet-object i:nth-child(8) { transform: rotate(179.9deg) translate(96px) rotate(-179.9deg); }
  .bracelet-object i:nth-child(9) { transform: rotate(205.6deg) translate(96px) rotate(-205.6deg); }
  .bracelet-object i:nth-child(10) { transform: rotate(231.3deg) translate(96px) rotate(-231.3deg); }
  .bracelet-object i:nth-child(11) { transform: rotate(257deg) translate(96px) rotate(-257deg); }
  .bracelet-object i:nth-child(12) { transform: rotate(282.7deg) translate(96px) rotate(-282.7deg); }
  .bracelet-object i:nth-child(13) { transform: rotate(308.4deg) translate(96px) rotate(-308.4deg); }
  .bracelet-object i:nth-child(14) { transform: rotate(334.1deg) translate(96px) rotate(-334.1deg); }

  .talisman-object {
    width: 126px;
    height: 214px;
  }

  .phone-object {
    width: 130px;
    height: 240px;
  }
}.wood{background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(238,246,231,.74))}.fire{background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(252,235,224,.74))}.earth{background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(246,237,215,.78))}.metal{background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(238,238,234,.78))}.water{background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(231,240,244,.76))}
.journal-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.journal-grid article{min-height:340px;padding:30px;display:flex;flex-direction:column;justify-content:flex-end;border:1px solid rgba(126,91,45,.12);background:radial-gradient(circle at 80% 12%,rgba(159,31,37,.04),transparent 30%),linear-gradient(180deg,rgba(255,255,255,.95),rgba(247,242,233,.78));box-shadow:0 20px 50px rgba(90,58,23,.055)}.journal-grid span{color:rgba(159,31,37,.72);font-family:Arial,sans-serif;font-size:11px;font-weight:900;letter-spacing:.18em;text-transform:uppercase}.journal-grid h3{margin:16px 0 0;color:#171109;font-size:32px;line-height:1.03;font-weight:500;letter-spacing:-.03em}.journal-grid p{margin:16px 0 0;color:rgba(23,17,9,.58);line-height:1.65}
@media(max-width:1180px){.journal-grid{grid-template-columns:1fr}}
.product-info {
  padding-top: 16px;
}

.product-info p {
  margin-top: 12px;
}
.reading-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 24px;
  margin-bottom: 40px;
}

.reading-cta__banner {
  position: relative;
  width: 100vw;
  height: 190px;
  min-height: 190px;
  max-height: 190px;
  overflow: hidden;
  background: #120d08;
}

.reading-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.reading-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 42% 50%, rgba(198, 140, 55, .12) 0%, rgba(198, 140, 55, 0) 30%),
    linear-gradient(90deg, rgba(8, 6, 4, .76) 0%, rgba(8, 6, 4, .54) 34%, rgba(8, 6, 4, .24) 60%, rgba(8, 6, 4, .38) 100%);
}

.reading-cta__content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1320px, calc(100vw - 80px));
  margin: 0 auto;
  padding-left: 110px;
  padding-right: 72px;
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: center;
  column-gap: 56px;
}

.reading-cta__text {
  min-width: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.reading-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 12px;
  color: rgba(226, 184, 96, .98);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.reading-cta__eyebrow span {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 184, 96, .60));
}

.reading-cta__eyebrow span:last-child {
  transform: scaleX(-1);
}

.reading-cta__content h3 {
  margin: 0;
  color: #fff7ed;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(56px, 4.1vw, 68px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
  white-space: nowrap;
}

.reading-cta__sub {
  margin: 12px 0 0;
  color: rgba(240, 221, 182, .98);
  font-size: clamp(22px, 1.45vw, 28px);
  line-height: 1.18;
  letter-spacing: .01em;
  white-space: nowrap;
}

.reading-cta__button {
  justify-self: end;
  align-self: center;
  flex: 0 0 auto;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, #bd4031 0%, #92271f 100%);
  border: 1px solid rgba(232, 177, 96, .48);
  color: #fff4ea;
  text-decoration: none;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(126, 28, 20, .22), inset 0 1px 0 rgba(255,255,255,.16);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  white-space: nowrap;
}

.reading-cta__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 26px rgba(126, 28, 20, .28), inset 0 1px 0 rgba(255,255,255,.18);
}

.reading-cta__button span {
  font-size: 1.05em;
  line-height: 1;
}

@media (max-width: 1280px) {
  .reading-cta__content {
    width: min(1120px, calc(100vw - 56px));
    padding-left: 80px;
    padding-right: 48px;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 34px;
  }

  .reading-cta__content h3 {
    font-size: clamp(46px, 4vw, 58px);
  }

  .reading-cta__sub {
    font-size: clamp(19px, 1.6vw, 24px);
  }

  .reading-cta__sub {
    font-size: 18px;
  }

  .reading-cta__button {
    min-height: 50px;
    padding: 0 28px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .reading-cta__content {
    width: calc(100vw - 32px);
    padding-left: 28px;
    padding-right: 28px;
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .reading-cta__text {
    max-width: 100%;
  }

  .reading-cta__content h3 {
    font-size: 42px;
    white-space: normal;
  }

  .reading-cta__sub {
    font-size: 16px;
    white-space: normal;
  }
}

@media (max-width: 820px) {
  .reading-cta__banner {
    height: 190px;
  }

  .reading-cta__content {
    width: 100%;
    padding: 0 18px;
    justify-content: center;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }

  .reading-cta__text {
    text-align: center;
    flex-basis: auto;
  }

  .reading-cta__eyebrow {
    justify-content: center;
    font-size: 10px;
    gap: 10px;
    margin-bottom: 6px;
  }

  .reading-cta__eyebrow span {
    width: 24px;
  }

  .reading-cta__content h3 {
    font-size: 30px;
    white-space: normal;
  }

  .reading-cta__sub {
    font-size: 13px;
    white-space: normal;
  }

  .reading-cta__button {
    margin-left: 0;
    min-height: 36px;
    padding: 0 18px;
    font-size: 10px;
  }
}

.signature-showcase {
  margin-top: clamp(68px, 7vw, 110px);
  padding-top: clamp(26px, 2.5vw, 34px);
  border-top: 1px solid rgba(126,91,45,.09);
}

.signature-head {
  max-width: 820px;
  margin: 0 auto clamp(28px, 3.5vw, 42px);
  text-align: center;
}

.signature-kicker {
  margin: 0 0 12px;
  color: rgba(126,91,45,.72);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.signature-head h3 {
  margin: 0;
  color: #171109;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.045em;
}

.signature-tabs {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 32px);
  flex-wrap: wrap;
  margin-bottom: clamp(34px, 3.8vw, 48px);
}

.signature-tab {
  position: relative;
  padding: 0 0 12px;
  border: 0;
  background: transparent;
  color: rgba(23,17,9,.56);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease;
}

.signature-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(159,31,37,.9);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.signature-tab:hover,
.signature-tab.is-active {
  color: #171109;
}

.signature-tab.is-active::after {
  transform: scaleX(1);
}

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

.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 30px);
}

.signature-item-card {
  min-width: 0;
}

.signature-media {
  position: relative;
  height: clamp(320px, 28vw, 430px);
  overflow: hidden;
  border-top: 2px solid rgba(95,62,39,.9);
  background: linear-gradient(180deg, #fcfbf8 0%, #f5f3ee 100%);
  transition: transform .35s ease, box-shadow .35s ease;
}

.signature-item-card.feature-card .signature-media {
  min-height: clamp(350px, 31vw, 460px);
}

.signature-media.visual-dark {
  background: radial-gradient(circle at 55% 58%, rgba(211,177,109,.18), transparent 32%), linear-gradient(180deg, #090908 0%, #15120e 100%);
}

.signature-item-card:hover .signature-media {
  transform: translateY(-7px);
  box-shadow: 0 26px 56px rgba(90,58,23,.12);
}

.signature-item-meta {
  padding-top: 18px;
}

.signature-item-meta h4 {
  margin: 0;
  color: #2a2017;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.03em;
}

.signature-item-meta p {
  margin: 12px 0 0;
  color: rgba(23,17,9,.58);
  font-size: 16px;
  line-height: 1.68;
}

.signature-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}

.signature-price strong {
  color: #6e4633;
  font-size: 18px;
  font-weight: 500;
}

.signature-price span {
  color: rgba(126,91,45,.72);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 1320px) {
  .signature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .signature-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .signature-grid { grid-template-columns: 1fr; }
  .signature-media,
  .signature-item-card.feature-card .signature-media {
    height: 320px;
    min-height: 320px;
  }
  .signature-item-meta h4 { font-size: 30px; }
}
.brand-story-block {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 8vw, 140px) clamp(26px, 4vw, 72px);
  background:
    radial-gradient(circle at 76% 28%, rgba(211,177,109,.13), transparent 30%),
    linear-gradient(135deg, #0d0f0d 0%, #14120e 55%, #21150f 100%);
  color: rgba(250,238,211,.92);
}

.story-shell {
  position: relative;
  z-index: 2;
  width: min(1500px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 120px);
  align-items: end;
}

.story-copy {
  max-width: 920px;
}

.story-kicker {
  margin: 0 0 16px;
  color: rgba(211,177,109,.82);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.story-copy h2 {
  margin: 0;
  max-width: 820px;
  color: rgba(250,238,211,.96);
  font-size: clamp(44px, 5.3vw, 86px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.055em;
}

.story-copy p {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(239,225,195,.68);
  font-size: 18px;
  line-height: 1.82;
}

@media (max-width: 920px) {
  .story-shell {
    grid-template-columns: 1fr;
  }
}
.brand-story-block {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 5vw, 78px) clamp(26px, 4vw, 72px);
  background:
    radial-gradient(circle at 84% 16%, rgba(159,31,37,.035), transparent 28%),
    linear-gradient(180deg, #f8f4ed 0%, #fffefd 100%);
  color: #171109;
}

.story-shell {
  position: relative;
  z-index: 2;
  width: min(1500px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

.story-photo {
  min-height: clamp(300px, 27vw, 430px);
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10,12,10,.08), rgba(10,12,10,.28)),
    url("./img/shouye_home_hero_bg.webp") center / cover no-repeat;
  box-shadow: 0 28px 70px rgba(90,58,23,.12);
}

.story-photo::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: inherit;
  box-sizing: border-box;
}

.story-copy {
  max-width: 720px;
}

.story-kicker {
  margin: 0 0 16px;
  color: rgba(159,31,37,.74);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.story-copy h2 {
  margin: 0;
  max-width: 720px;
  color: #171109;
  font-size: clamp(38px, 4.3vw, 68px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.052em;
}

.story-copy p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(23,17,9,.62);
  font-size: 18px;
  line-height: 1.78;
}

@media (max-width: 920px) {
  .story-shell {
    grid-template-columns: 1fr;
  }

  .story-photo {
    min-height: 300px;
  }
}


@media (max-width: 1080px) {
  .hero-copy.hero-copy--reading {
    top: 19.5%;
    max-width: 600px;
    padding: 26px 24px 24px;
  }

  .hero-copy.hero-copy--reading h1 {
    font-size: clamp(44px, 6vw, 72px);
  }

  .hero-copy.hero-copy--reading .intro {
    font-size: 17px;
  }
}

@media (max-width: 820px) {
  .hero-copy.hero-copy--reading {
    left: 24px;
    right: 24px;
    top: 110px;
    max-width: none;
    padding: 22px 18px 18px;
    border-radius: 22px;
  }

  .hero-copy.hero-copy--reading h1 {
    max-width: 100%;
    font-size: clamp(34px, 8.6vw, 58px);
    line-height: 1.02;
  }

  .hero-copy.hero-copy--reading .intro {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-copy.hero-copy--reading .hero-actions {
    flex-wrap: wrap;
  }

  .hero-copy.hero-copy--reading .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-copy.hero-copy--reading .eyebrow {
    font-size: 10px;
    letter-spacing: .16em;
  }

  .hero-copy.hero-copy--reading .product-tags {
    gap: 8px;
  }

  .hero-copy.hero-copy--reading .product-tag {
    width: calc(50% - 4px);
    justify-content: flex-start;
  }

  .hero-copy.hero-copy--reading .product-tag strong {
    letter-spacing: .06em;
  }
}
.hero-copy.hero-copy--reading h1 {
  max-width: 640px;
}

.hero-copy.hero-copy--reading .intro {
  max-width: 590px;
}

.hero-copy.hero-copy--reading .product-tag span {
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.hero-copy.hero-copy--reading .product-tag strong {
  letter-spacing: .12em;
}

@media (max-width: 820px) {
  .hero-copy.hero-copy--reading h1 {
    max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .hero-copy.hero-copy--reading {
    max-width: 560px;
  }

  .master-nameplate {
    transform: translateX(32px);
  }
}

@media (max-width: 1180px) {
  .hero-copy.hero-copy--reading {
    max-width: 520px;
  }

  .hero-copy.hero-copy--reading h1 {
    font-size: clamp(38px, 5vw, 58px);
  }
}
.hero-copy.hero-copy--reading .btn.secondary {
  background: rgba(255,255,255,.04);
}

.hero-copy.hero-copy--reading .product-tag {
  background: rgba(255,255,255,.045);
}
.hero-copy.hero-copy--reading {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.hero-copy.hero-copy--reading .btn.secondary {
  background: rgba(14, 18, 22, .28) !important;
}

.hero-copy.hero-copy--reading .product-tag {
  background: rgba(14, 18, 22, .22) !important;
  box-shadow: none !important;
}

@media (max-width: 1080px) {
  .hero-copy.hero-copy--reading { padding: 0 !important; }
}

@media (max-width: 820px) {
  .hero-copy.hero-copy--reading {
    padding: 0 !important;
    border-radius: 0 !important;
  }
}
.hero-copy.hero-copy--reading {
  top: 26% !important;
  left: clamp(72px, 7vw, 118px) !important;
  width: min(43vw, 700px) !important;
  max-width: 700px !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 24px !important;

  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.reading-copy-top,
.reading-copy-bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.reading-copy-top {
  gap: 16px;
}

.reading-copy-bottom {
  gap: 20px;
  margin-top: 14px;
}

.hero-copy.hero-copy--reading .eyebrow {
  margin: 0 !important;
  color: rgba(223, 190, 123, .98) !important;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: .23em !important;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.hero-copy.hero-copy--reading h1 {
  margin: 0 !important;
  max-width: 100% !important;
  color: rgba(253, 244, 224, .995) !important;
  font-size: clamp(66px, 5.6vw, 88px) !important;
  line-height: .92 !important;
  font-weight: 600 !important;
  letter-spacing: -.05em !important;
  text-shadow: 0 12px 30px rgba(0,0,0,.42) !important;
}

.hero-copy.hero-copy--reading .intro {
  margin: 0 !important;
  max-width: 94% !important;
  color: rgba(248, 236, 208, .96) !important;
  font-size: 18px !important;
  line-height: 1.48 !important;
  text-shadow: 0 6px 18px rgba(0,0,0,.34) !important;
}

.hero-copy.hero-copy--reading .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
  margin: 0 !important;
}

.hero-copy.hero-copy--reading .btn {
  min-height: 54px !important;
  padding: 0 28px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .14em !important;
}

.hero-copy.hero-copy--reading .btn.primary {
  background: linear-gradient(180deg, #dec084 0%, #cfa860 100%) !important;
  color: #171108 !important;
  border-color: rgba(255,255,255,.16) !important;
  box-shadow: 0 12px 28px rgba(132, 94, 32, .28) !important;
}

.hero-copy.hero-copy--reading .btn.secondary {
  background: rgba(10, 13, 13, .42) !important;
  color: rgba(248, 236, 208, .96) !important;
  border: 1px solid rgba(223, 190, 123, .28) !important;
}

.hero-copy.hero-copy--reading .product-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.hero-copy.hero-copy--reading .product-tag {
  min-height: 46px !important;
  padding: 0 16px 0 10px !important;
  background: rgba(10, 13, 13, .48) !important;
  border: 1px solid rgba(223, 190, 123, .18) !important;
  color: rgba(253, 244, 224, .96) !important;
  box-shadow: 0 10px 18px rgba(0,0,0,.12) !important;
}

.hero-copy.hero-copy--reading .product-tag:hover {
  background: rgba(10, 13, 13, .58) !important;
  border-color: rgba(223, 190, 123, .34) !important;
}

.hero-copy.hero-copy--reading .product-tag span {
  width: 32px !important;
  height: 32px !important;
  border-color: rgba(198, 155, 89, .45) !important;
  background: rgba(198, 155, 89, .10) !important;
  color: #eccf97 !important;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 17px !important;
  font-weight: 900 !important;
}

.hero-copy.hero-copy--reading .product-tag strong {
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .14em !important;
}

@media (max-width: 1280px) {
  .hero-copy.hero-copy--reading {
    width: min(46vw, 660px) !important;
  }

  .hero-copy.hero-copy--reading h1 {
    font-size: clamp(58px, 5.4vw, 78px) !important;
  }
}

@media (max-width: 980px) {
  .hero-copy.hero-copy--reading {
    width: min(52vw, 600px) !important;
  }

  .hero-copy.hero-copy--reading h1 {
    font-size: clamp(52px, 6vw, 70px) !important;
  }
}

@media (max-width: 820px) {
  .hero-copy.hero-copy--reading {
    left: 24px !important;
    right: 24px !important;
    top: 112px !important;
    width: auto !important;
    max-width: none !important;
    gap: 24px !important;
  }

  .reading-copy-top {
    gap: 10px;
  }

  .reading-copy-bottom {
    gap: 12px;
    margin-top: 2px;
  }

  .hero-copy.hero-copy--reading h1 {
    font-size: clamp(46px, 10vw, 66px) !important;
    line-height: .97 !important;
  }

  .hero-copy.hero-copy--reading .intro {
    font-size: 16px !important;
    line-height: 1.62 !important;
    max-width: 100% !important;
  }

  .hero-copy.hero-copy--reading .btn {
    width: 100% !important;
  }
}

@media (max-width: 560px) {
  .hero-copy.hero-copy--reading .eyebrow {
    font-size: 10px !important;
    letter-spacing: .15em !important;
  }

  .hero-copy.hero-copy--reading .product-tag {
    width: calc(50% - 5px) !important;
    justify-content: flex-start !important;
  }

  .hero-copy.hero-copy--reading .product-tag strong {
    letter-spacing: .06em !important;
  }
}
.objects-showcase .category-grid {
  gap: clamp(18px, 1.35vw, 24px);
}

.objects-showcase .category-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.objects-showcase .product-visual {
  height: clamp(310px, 27vw, 468px);
  border-radius: clamp(18px, 1.7vw, 28px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(211,177,109,.10), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 56%, #f5f0e8 100%);
  border: 1px solid rgba(126,91,45,.10);
  box-shadow:
    0 18px 44px rgba(90,58,23,.06),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.objects-showcase .product-visual::before {
  inset: 16px;
  border-radius: clamp(14px, 1.3vw, 22px);
  border-color: rgba(126,91,45,.07);
}

.objects-showcase .product-visual::after {
  bottom: 13%;
  height: 8%;
  opacity: .8;
}

.objects-showcase .product-hover-photo {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: block;
  opacity: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(18,14,10,.04) 0%, rgba(18,14,10,.30) 100%),
    var(--hover-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
  transition: opacity .42s ease, transform .65s ease;
}

.objects-showcase .product-hover-swap:hover .product-hover-photo,
.objects-showcase .product-hover-swap:focus-visible .product-hover-photo {
  opacity: 1;
  transform: scale(1);
}

.objects-showcase .product-hover-swap:hover .bracelet-object,
.objects-showcase .product-hover-swap:hover .necklace-object,
.objects-showcase .product-hover-swap:hover .talisman-object,
.objects-showcase .product-hover-swap:hover .phone-object,
.objects-showcase .product-hover-swap:hover .bagua-mark,
.objects-showcase .product-hover-swap:hover .soft-koi,
.objects-showcase .product-hover-swap:focus-visible .bracelet-object,
.objects-showcase .product-hover-swap:focus-visible .necklace-object,
.objects-showcase .product-hover-swap:focus-visible .talisman-object,
.objects-showcase .product-hover-swap:focus-visible .phone-object,
.objects-showcase .product-hover-swap:focus-visible .bagua-mark,
.objects-showcase .product-hover-swap:focus-visible .soft-koi {
  opacity: 0;
  transition: opacity .28s ease;
}

.objects-showcase .product-info {
  position: relative;
  margin-top: clamp(22px, 2.2vw, 36px);
  padding: 0 clamp(26px, 2vw, 38px) clamp(30px, 2.4vw, 44px) 0;
  min-height: clamp(148px, 10vw, 188px);
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  overflow: visible;
}

.objects-showcase .category-card:not(:last-child) .product-info {
  border-right: 1px solid rgba(126, 91, 45, .16);
  padding-right: clamp(28px, 2.4vw, 46px);
}

.objects-showcase .product-info::before {
  display: none;
}

.objects-showcase .product-info::after {
  position: absolute;
  right: clamp(24px, 1.9vw, 38px);
  top: clamp(22px, 1.8vw, 30px);
  font-size: clamp(12px, .78vw, 14px);
  line-height: 1;
  letter-spacing: .26em;
  color: rgba(160,108,30,.62);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
}

.objects-showcase .category-card:nth-child(1) .product-info::after { content: "01"; }
.objects-showcase .category-card:nth-child(2) .product-info::after { content: "02"; }
.objects-showcase .category-card:nth-child(3) .product-info::after { content: "03"; }
.objects-showcase .category-card:nth-child(4) .product-info::after { content: "04"; }

.objects-showcase .product-info h3 {
  position: relative;
  max-width: calc(100% - 54px);
  margin: 0;
  padding-left: 18px;
  padding-right: 0;
  color: #171109;
  font-size: clamp(21px, 1.55vw, 30px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.objects-showcase .product-info h3::before {
  content: "道";
  position: absolute;
  left: 0;
  top: .48em;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(176, 76, 70, .42);
  border-radius: 50%;
  color: rgba(166, 66, 58, .78);
  background: rgba(255, 248, 246, .72);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 8px;
  line-height: 13px;
  text-align: center;
  letter-spacing: 0;
  transform: translateY(-50%);
}

.objects-showcase .product-info h3::after {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  margin-top: clamp(12px, 1vw, 16px);
  background: rgba(194,142,44,.45);
}

.objects-showcase .product-info p {
  max-width: min(92%, 340px);
  margin: clamp(24px, 2.1vw, 34px) 0 0;
  color: rgba(23,17,9,.58);
  font-size: clamp(14px, .92vw, 16px);
  line-height: 1.58;
}

.objects-showcase .shop-link {
  display: none !important;
}

.objects-showcase .shop-link::after {
  display: none !important;
}

@media (max-width: 980px) {
  .objects-showcase .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .objects-showcase .product-visual {
    height: clamp(300px, 55vw, 430px);
  }
}

@media (max-width: 620px) {
  .objects-showcase .category-grid {
    grid-template-columns: 1fr;
  }

  .objects-showcase .product-info {
    margin-top: 18px;
    padding: 20px 0 30px;
    min-height: auto;
    text-align: left;
    border-right: 0 !important;
  }

  .objects-showcase .product-info::before {
    left: 0;
    transform: none;
  }

  .objects-showcase .product-info::after {
    right: 0;
    transform: none;
    top: 22px;
  }

  .objects-showcase .product-info h3,
  .objects-showcase .product-info p {
    max-width: calc(100% - 60px);
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
  }
}
.objects-showcase .showcase-head--ornate {
  position: relative;
  max-width: 1180px;
  margin: clamp(38px, 4.3vw, 68px) auto clamp(28px, 3vw, 42px);
  padding: 0 clamp(16px, 3vw, 42px);
  text-align: center;
}

.objects-showcase .showcase-title-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: clamp(10px, 1.2vw, 16px);
  color: rgba(179, 124, 42, .78);
}

.objects-showcase .showcase-title-mark span {
  width: clamp(88px, 9vw, 150px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(179, 124, 42, .58));
}

.objects-showcase .showcase-title-mark span:last-child {
  background: linear-gradient(90deg, rgba(179, 124, 42, .58), transparent);
}

.objects-showcase .showcase-title-mark i {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(179, 124, 42, .42);
  border-radius: 50%;
  background: rgba(255, 252, 246, .62);
  box-shadow: 0 6px 18px rgba(116, 73, 24, .06);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.objects-showcase .showcase-title-mark i::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(179, 124, 42, .24);
  border-radius: 50%;
}

.objects-showcase .showcase-head--ornate h2 {
  margin: 0 auto;
  max-width: none;
  font-size: clamp(46px, 5.5vw, 86px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 500;
  white-space: nowrap;
}

.objects-showcase .showcase-head--ornate > p {
  max-width: none;
  margin: clamp(16px, 1.5vw, 22px) auto 0;
  color: rgba(23, 17, 9, .58);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.65;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .objects-showcase .showcase-head--ornate {
    margin-top: 34px;
  }

  .objects-showcase .showcase-title-mark {
    gap: 12px;
  }

  .objects-showcase .showcase-title-mark span {
    width: clamp(54px, 15vw, 96px);
  }
}

@media (max-width: 560px) {
  .objects-showcase .showcase-head--ornate {
    padding-inline: 12px;
    margin-bottom: 24px;
  }

  .objects-showcase .showcase-head--ornate h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(28px, 9vw, 52px);
  }

  .objects-showcase .showcase-head--ornate > p {
    font-size: clamp(11px, 3.2vw, 14px);
    line-height: 1.55;
    white-space: nowrap;
  }
}

.objects-showcase .category-card > .shop-link,
.objects-showcase .product-info .shop-link {
  display: none !important;
}


.objects-showcase .category-card:nth-child(4) .product-info h3 {
  font-size: clamp(17px, 1.3vw, 23px);
  letter-spacing: -.035em;
}

@media (max-width: 620px) {
  .objects-showcase .product-info {
    padding: 0 0 30px;
  }

  .objects-showcase .product-info::before {
    display: none;
  }

  .objects-showcase .product-info h3 {
    white-space: normal;
    max-width: calc(100% - 60px);
    margin-left: 0;
    padding-left: 14px;
  }

  .objects-showcase .category-card:nth-child(4) .product-info h3 {
    font-size: clamp(21px, 6vw, 28px);
  }
}

@media (max-width: 620px) {
  .objects-showcase .product-info h3::before {
    left: 0;
    width: 12px;
    height: 12px;
    font-size: 7px;
    line-height: 12px;
  }
}

.reading-cta__eyebrow {
  margin: 0 0 6px;
  color: rgba(159,31,37,.74);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.reading-cta__button {
  text-decoration: none;
}

.reading-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #171109;
  color: #fff8f1;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.reading-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(23,17,9,.12);
  background: #23180e;
}
.reading-cta {
  margin-top: clamp(34px, 4vw, 54px);
  margin-bottom: clamp(34px, 4.5vw, 60px);
}

.reading-cta__banner {
  position: relative;
  min-height: clamp(138px, 16vw, 230px);
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 8, 5, .88) 0%, rgba(17, 11, 6, .60) 44%, rgba(12, 8, 5, .18) 72%, rgba(12, 8, 5, .45) 100%),
    none center / cover no-repeat;
  box-shadow: 0 18px 42px rgba(23, 17, 9, .12);
}

.reading-cta__banner::before {
  content: "道";
  position: absolute;
  left: clamp(42px, 6.3vw, 118px);
  top: 50%;
  width: clamp(42px, 4.8vw, 74px);
  height: clamp(42px, 4.8vw, 74px);
  border-radius: 50%;
  border: 1px solid rgba(218, 177, 92, .46);
  color: rgba(230, 190, 104, .88);
  display: grid;
  place-items: center;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1;
  transform: translateY(-50%);
  background: rgba(15, 10, 6, .22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

.reading-cta__banner::after {
  content: "";
  position: absolute;
  left: clamp(34px, 4vw, 70px);
  right: clamp(34px, 4vw, 70px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 168, 84, .56), transparent);
}

.reading-cta__content {
  position: relative;
  z-index: 1;
  max-width: min(740px, 58%);
  padding: clamp(26px, 3.2vw, 54px) clamp(30px, 4vw, 76px) clamp(24px, 3vw, 46px) clamp(132px, 14vw, 240px);
}

.reading-cta__eyebrow {
  margin: 0 0 clamp(8px, 1vw, 14px);
  color: rgba(226, 184, 96, .92);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(10px, .86vw, 13px);
  font-weight: 900;
  letter-spacing: .30em;
  text-transform: uppercase;
}

.reading-cta__content h3 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(30px, 4.1vw, 64px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.045em;
  text-shadow: 0 2px 18px rgba(0,0,0,.34);
}

.reading-cta__sub {
  margin: clamp(10px, 1.2vw, 16px) 0 0;
  color: rgba(236, 205, 144, .92);
  font-size: clamp(14px, 1.22vw, 20px);
  line-height: 1.38;
}

.reading-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: clamp(42px, 3.7vw, 58px);
  margin-top: clamp(16px, 2vw, 28px);
  padding: 0 clamp(22px, 2.6vw, 38px);
  border-radius: 10px;
  background: linear-gradient(180deg, #b83a2d 0%, #8f241b 100%);
  color: #fff4ea;
  text-decoration: none;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(10px, .86vw, 13px);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(126, 28, 20, .24), inset 0 1px 0 rgba(255,255,255,.16);
  transition: transform .22s ease, box-shadow .22s ease;
}

.reading-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(126, 28, 20, .32), inset 0 1px 0 rgba(255,255,255,.18);
}

.reading-cta__button span {
  font-size: 1.28em;
  line-height: 1;
}

@media (max-width: 900px) {
  .reading-cta__banner {
    min-height: 330px;
    background-position: 62% center;
  }

  .reading-cta__banner::before {
    left: 30px;
    top: 42px;
    transform: none;
  }

  .reading-cta__content {
    max-width: 100%;
    padding: 96px 28px 32px;
  }
}

@media (max-width: 640px) {
  .reading-cta {
    margin-top: 28px;
    margin-bottom: 38px;
  }

  .reading-cta__banner {
    min-height: 360px;
    border-radius: 9px;
    background-position: 68% center;
  }

  .reading-cta__content h3 {
    font-size: clamp(30px, 10vw, 42px);
  }
}
.reading-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 22px;
  margin-bottom: 40px;
}

.reading-cta__banner {
  position: relative;
  width: 100vw;
  height: 190px;
  min-height: 190px;
  max-height: 190px;
  border-radius: 0;
  overflow: hidden;
  background: #120d08;
  box-shadow: 0 8px 20px rgba(23, 17, 9, .08);
}

.reading-cta__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.reading-cta__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 7, 5, .48) 0%, rgba(12, 8, 5, .24) 34%, rgba(12, 8, 5, .08) 58%, rgba(12, 8, 5, .16) 100%);
}

.reading-cta__banner::before {
  content: "道";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(218, 177, 92, .56);
  color: rgba(230, 190, 104, .94);
  display: grid;
  place-items: center;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
  background: rgba(15, 10, 6, .14);
  z-index: 2;
}

.reading-cta__content {
  position: relative;
  z-index: 3;
  max-width: 390px;
  padding: 18px 24px 18px 90px;
}

.reading-cta__eyebrow {
  margin: 0 0 6px;
  color: rgba(226, 184, 96, .94);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.reading-cta__content h3 {
  margin: 0;
  color: #fff7ed;
  font-size: 34px;
  line-height: .96;
  font-weight: 500;
  letter-spacing: -.04em;
  text-shadow: 0 2px 12px rgba(0,0,0,.20);
}

.reading-cta__sub {
  margin: 8px 0 0;
  color: rgba(236, 205, 144, .92);
  font-size: 14px;
  line-height: 1.3;
}

.reading-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  margin-top: 12px;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #b83a2d 0%, #8f241b 100%);
  color: #fff4ea;
  text-decoration: none;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(126, 28, 20, .18), inset 0 1px 0 rgba(255,255,255,.15);
}

.reading-cta__button span {
  font-size: 1.15em;
  line-height: 1;
}

@media (max-width: 900px) {
  .reading-cta {
    margin-top: 20px;
    margin-bottom: 34px;
  }

  .reading-cta__banner {
    height: 176px;
    min-height: 176px;
    max-height: 176px;
  }

  .reading-cta__bg {
    object-position: 62% center;
  }

  .reading-cta__content {
    max-width: 360px;
    padding: 16px 20px 16px 76px;
  }

  .reading-cta__banner::before {
    left: 20px;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .reading-cta__content h3 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .reading-cta {
    margin-top: 18px;
    margin-bottom: 30px;
  }

  .reading-cta__banner {
    height: 152px;
    min-height: 152px;
    max-height: 152px;
  }

  .reading-cta__bg {
    object-position: 66% center;
  }

  .reading-cta__content {
    max-width: 280px;
    padding: 14px 14px 14px 56px;
  }

  .reading-cta__content h3 {
    font-size: 24px;
  }

  .reading-cta__sub {
    display: none;
  }

  .reading-cta__button {
    min-height: 30px;
    margin-top: 8px;
    padding: 0 12px;
    font-size: 9px;
    letter-spacing: .10em;
  }

  .reading-cta__banner::before {
    left: 12px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
.reading-cta__banner {
  position: relative;
}

.reading-cta__content {
  position: absolute !important;
  left: 220px;
  right: 220px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.reading-cta__text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 760px;
}

.reading-cta__eyebrow {
  margin: 0 0 10px !important;
  font-size: 12px !important;
  letter-spacing: .24em !important;
}

.reading-cta__content h3 {
  margin: 0 !important;
  font-size: 40px !important;
  line-height: 1.05 !important;
  letter-spacing: -.03em !important;
  white-space: nowrap;
}

.reading-cta__sub {
  margin: 10px 0 0 !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  max-width: 720px;
}

.reading-cta__button {
  flex: 0 0 auto;
  align-self: center;
  margin: 0 0 0 18px !important;
  min-height: 42px !important;
  padding: 0 28px !important;
  font-size: 12px !important;
  letter-spacing: .15em !important;
  border-radius: 12px !important;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  .reading-cta__content {
    left: 180px;
    right: 160px;
    gap: 28px;
  }

  .reading-cta__content h3 {
    font-size: 35px !important;
  }

  .reading-cta__sub {
    font-size: 15px !important;
  }
}

@media (max-width: 980px) {
  .reading-cta__content {
    left: 86px;
    right: 40px;
    gap: 18px;
  }

  .reading-cta__text {
    max-width: 520px;
  }

  .reading-cta__content h3 {
    font-size: 28px !important;
    white-space: normal;
  }

  .reading-cta__sub {
    font-size: 13px !important;
  }

  .reading-cta__button {
    min-height: 38px !important;
    padding: 0 20px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 760px) {
  .reading-cta__content {
    left: 56px;
    right: 16px;
    display: block !important;
    transform: translateY(-50%);
  }

  .reading-cta__text {
    max-width: 320px;
  }

  .reading-cta__content h3 {
    font-size: 22px !important;
    line-height: 1.08 !important;
  }

  .reading-cta__sub {
    margin-top: 6px !important;
    font-size: 12px !important;
  }

  .reading-cta__button {
    display: inline-flex;
    margin: 10px 0 0 0 !important;
    min-height: 32px !important;
    padding: 0 14px !important;
    font-size: 9px !important;
  }
}
@media (min-width: 981px) {
  .reading-cta__content {
    right: auto !important;
    width: auto !important;
    justify-content: flex-start !important;
    gap: clamp(64px, 4.8vw, 96px) !important;
  }

  .reading-cta__text {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 720px !important;
  }

  .reading-cta__button {
    margin-left: 0 !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .reading-cta__content {
    gap: 48px !important;
  }

  .reading-cta__text {
    max-width: 600px !important;
  }
}
.brand-story-block {
  padding: clamp(34px, 3.4vw, 48px) clamp(20px, 4vw, 72px);
}

.story-shell {
  width: min(1420px, 100%);
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.story-photo {
  min-height: clamp(220px, 22vw, 320px);
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(90,58,23,.10);
}

.story-copy {
  max-width: 650px;
}

.story-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .24em;
}

.story-copy h2 {
  max-width: 680px;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.04;
}

.story-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.72;
}

@media (max-width: 920px) {
  .brand-story-block {
    padding: 34px 20px 40px;
  }

  .story-shell {
    gap: 24px;
  }

  .story-photo {
    min-height: 250px;
  }

  .story-copy h2 {
    font-size: clamp(32px, 7vw, 48px);
  }

  .story-copy p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 560px) {
  .brand-story-block {
    padding: 28px 16px 34px;
  }

  .story-photo {
    min-height: 220px;
    border-radius: 20px;
  }

  .story-kicker {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: .20em;
  }

  .story-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.06;
  }

  .story-copy p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.68;
  }
}
.brand-story-block {
  padding: clamp(22px, 2.6vw, 34px) clamp(18px, 3.2vw, 52px);
}

.story-shell {
  width: min(1500px, 100%);
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  gap: clamp(18px, 2.8vw, 42px);
  align-items: stretch;
}

.story-photo {
  width: 100%;
  min-height: clamp(190px, 18vw, 260px);
  height: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(90,58,23,.08);
  background-position: center center;
}

.story-photo::after {
  border-color: rgba(255,255,255,.28);
}

.story-copy {
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(0px, 1.2vw, 18px);
}

.story-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .22em;
}

.story-copy h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.02;
}

.story-copy p {
  max-width: 700px;
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.62;
}

@media (max-width: 920px) {
  .brand-story-block {
    padding: 24px 18px 30px;
  }

  .story-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .story-photo {
    min-height: 230px;
    height: 230px;
    border-radius: 16px;
  }

  .story-copy {
    padding-right: 0;
  }

  .story-copy h2 {
    font-size: clamp(30px, 6.4vw, 44px);
  }

  .story-copy p {
    max-width: none;
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 560px) {
  .brand-story-block {
    padding: 20px 14px 26px;
  }

  .story-photo {
    min-height: 210px;
    height: 210px;
    border-radius: 14px;
  }

  .story-kicker {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: .18em;
  }

  .story-copy h2 {
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1.05;
  }

  .story-copy p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.62;
  }
}
.brand-story-block {
  padding: clamp(14px, 2vw, 24px) clamp(0px, 0vw, 0px);
}

.story-shell {
  width: min(1600px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: #fffefd;
}

.story-photo {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 20vw, 300px);
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(10,12,10,.04), rgba(10,12,10,.12)),
    url("./img/shouye_home_hero_bg.webp") center / cover no-repeat;
}

.story-photo::after {
  display: none;
}

.story-copy {
  max-width: none;
  padding: clamp(18px, 2.3vw, 34px) clamp(18px, 2.6vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-kicker {
  margin: 0 0 10px;
}

.story-copy h2 {
  max-width: 780px;
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1.02;
}

.story-copy p {
  max-width: 720px;
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.64;
}

@media (max-width: 920px) {
  .brand-story-block {
    padding: 14px 0 24px;
  }

  .story-shell {
    grid-template-columns: 1fr;
  }

  .story-photo {
    min-height: 240px;
    height: 240px;
  }

  .story-copy {
    padding: 18px 18px 6px;
  }
}

@media (max-width: 560px) {
  .story-photo {
    min-height: 210px;
    height: 210px;
  }

  .story-copy {
    padding: 16px 14px 4px;
  }

  .story-copy h2 {
    font-size: clamp(28px, 8.4vw, 38px);
  }

  .story-copy p {
    font-size: 14px;
    line-height: 1.62;
  }
}
.brand-story-block {
  padding: 0 !important;
}

.story-shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: 50% 50% !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.story-shell > * {
  margin: 0 !important;
}

.story-photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(240px, 22vw, 320px) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background:
    linear-gradient(180deg, rgba(10,12,10,.04), rgba(10,12,10,.12)),
    url("./img/shouye_home_hero_bg.webp") center center / cover no-repeat !important;
}

.story-photo::after {
  display: none !important;
}

.story-copy {
  max-width: none !important;
  min-height: clamp(240px, 22vw, 320px) !important;
  padding: clamp(24px, 2.6vw, 42px) clamp(28px, 3vw, 48px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: #fffefd !important;
}

.story-kicker {
  margin: 0 0 10px !important;
}

.story-copy h2 {
  max-width: 760px !important;
  margin: 0 !important;
  font-size: clamp(34px, 3.5vw, 56px) !important;
  line-height: 1.03 !important;
}

.story-copy p {
  max-width: 700px !important;
  margin: 16px 0 0 !important;
  font-size: 16px !important;
  line-height: 1.64 !important;
}

@media (max-width: 920px) {
  .story-shell {
    grid-template-columns: 1fr !important;
  }

  .story-photo,
  .story-copy {
    min-height: auto !important;
  }

  .story-photo {
    height: 240px !important;
  }

  .story-copy {
    padding: 20px 18px 24px !important;
  }

  .story-copy h2 {
    font-size: clamp(30px, 6.6vw, 44px) !important;
  }

  .story-copy p {
    font-size: 15px !important;
  }
}

@media (max-width: 560px) {
  .story-photo {
    height: 210px !important;
  }

  .story-copy {
    padding: 18px 14px 22px !important;
  }

  .story-copy h2 {
    font-size: clamp(28px, 8.8vw, 38px) !important;
  }

  .story-copy p {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }
}
.objects-showcase {
  padding-bottom: clamp(36px, 3.8vw, 56px) !important;
}

.reading-cta {
  margin-top: clamp(18px, 2.4vw, 30px) !important;
  margin-bottom: clamp(16px, 2vw, 24px) !important;
}

.signature-showcase {
  margin-top: clamp(24px, 3vw, 42px) !important;
  padding-top: clamp(14px, 1.6vw, 20px) !important;
}

.signature-head {
  margin-bottom: clamp(20px, 2.5vw, 30px) !important;
}

.signature-tabs {
  margin-bottom: clamp(22px, 2.6vw, 30px) !important;
}

@media (max-width: 920px) {
  .objects-showcase {
    padding-bottom: 34px !important;
  }

  .reading-cta {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }

  .signature-showcase {
    margin-top: 20px !important;
    padding-top: 12px !important;
  }
}
.journal-preview {
  position: relative;
  padding: clamp(58px, 6vw, 92px) clamp(22px, 4vw, 72px);
  background:
    radial-gradient(circle at 12% 14%, rgba(159,31,37,.035), transparent 28%),
    linear-gradient(180deg, #fffefd 0%, #f8f4ed 100%);
  color: #171109;
}

.journal-shell {
  width: min(1500px, 100%);
  margin: 0 auto;
}

.journal-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: end;
  margin-bottom: clamp(28px, 3.4vw, 48px);
}

.journal-head h2 {
  margin: 0;
  max-width: 780px;
  color: #171109;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.05em;
}

.journal-head > p {
  margin: 0 0 8px;
  color: rgba(23,17,9,.58);
  font-size: 17px;
  line-height: 1.7;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.journal-card a {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 2.6vw, 38px);
  border: 1px solid rgba(126,91,45,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,245,239,.76));
  color: inherit;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.journal-card a:hover {
  transform: translateY(-6px);
  border-color: rgba(159,31,37,.20);
  box-shadow: 0 26px 70px rgba(90,58,23,.10);
}

.journal-number {
  margin-bottom: auto;
  color: rgba(126,91,45,.56);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.journal-category {
  margin: 0 0 14px;
  color: rgba(159,31,37,.70);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 0;
  max-width: 440px;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -.04em;
}

.journal-excerpt {
  margin: 18px 0 0;
  max-width: 420px;
  color: rgba(23,17,9,.58);
  font-size: 16px;
  line-height: 1.62;
}

.journal-card em {
  margin-top: 26px;
  color: rgba(126,91,45,.86);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.bottom-cta p:not(.bottom-cta__kicker) {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(239,225,195,.72);
  font-size: 18px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .journal-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-card a {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .journal-preview {
    padding-left: 18px;
    padding-right: 18px;
  }

  .journal-head h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .journal-card a {
    min-height: 280px;
    padding: 24px;
  }
}
.journal-preview {
  padding: clamp(54px, 5.4vw, 84px) clamp(20px, 3vw, 48px) clamp(44px, 4.2vw, 64px);
  background: linear-gradient(180deg, #fffefd 0%, #faf8f2 100%);
}

.journal-shell {
  max-width: 1600px;
  margin: 0 auto;
}

.journal-head {
  max-width: 900px;
  margin: 0 auto clamp(26px, 3vw, 36px);
  text-align: center;
}

.journal-head > p {
  display: none !important;
}

.journal-head h2 {
  margin: 0;
  color: #171109;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.04em;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 26px);
}

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

.journal-card a {
  position: relative;
  min-height: clamp(380px, 33vw, 500px);
  padding: clamp(22px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: none !important;
  box-shadow: none !important;
  background-size: cover !important;
  background-position: center center !important;
  text-decoration: none;
  isolation: isolate;
}

.journal-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12,10,8,.12) 0%, rgba(12,10,8,.18) 26%, rgba(12,10,8,.68) 100%);
}

.journal-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
}

.journal-card--image-1 a {
  background:
    linear-gradient(180deg, rgba(12,10,8,.10), rgba(12,10,8,.10)),
    url("./img/shouye_symbol_yinyang_koi.png") center/cover no-repeat;
}

.journal-card--image-2 a {
  background:
    linear-gradient(180deg, rgba(12,10,8,.10), rgba(12,10,8,.10)),
    url("./img/shouye_home_hero_bg.webp") center/cover no-repeat;
}

.journal-card--image-3 a {
  background:
    linear-gradient(180deg, rgba(12,10,8,.10), rgba(12,10,8,.10)),
    url("./img/shouye_symbol_bagua_taiji.png") center/cover no-repeat;
}

.journal-number,
.journal-category,
.journal-card h3,
.journal-excerpt,
.journal-card em {
  position: relative;
  z-index: 1;
}

.journal-number,
.journal-category,
.journal-card em {
  color: rgba(246, 232, 201, .94) !important;
}

.journal-number {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.journal-category {
  margin: 0 0 12px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 0;
  color: #fff7ea !important;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.04em;
}

.journal-excerpt {
  margin: 14px 0 0;
  color: rgba(245, 236, 214, .84) !important;
  font-size: 16px;
  line-height: 1.65;
}

.journal-card em {
  margin-top: 20px;
  display: inline-block;
  font-style: normal;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-card a {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .journal-preview {
    padding: 40px 16px 42px;
  }

  .journal-head {
    margin-bottom: 20px;
  }

  .journal-head h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .journal-card a {
    min-height: 310px;
    padding: 18px;
  }

  .journal-card h3 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .journal-excerpt {
    font-size: 15px;
  }
}
.journal-head {
  max-width: 1600px !important;
  margin: 0 auto clamp(24px, 2.6vw, 32px) !important;
}

.journal-head h2 {
  white-space: nowrap;
  font-size: clamp(28px, 3.2vw, 48px) !important;
  line-height: 1.08 !important;
}

.journal-all {
  margin-top: clamp(18px, 2.2vw, 28px);
  text-align: center;
}

.journal-all a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #171109;
  text-decoration: none;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(23,17,9,.22);
  transition: opacity .25s ease, transform .25s ease, border-color .25s ease;
}

.journal-all a:hover {
  opacity: .72;
  transform: translateY(-1px);
  border-color: rgba(23,17,9,.42);
}

@media (max-width: 1180px) {
  .journal-head h2 {
    white-space: normal;
    font-size: clamp(28px, 5vw, 42px) !important;
  }
}

@media (max-width: 640px) {
  .journal-all {
    margin-top: 16px;
  }

  .journal-all a {
    font-size: 11px;
    letter-spacing: .16em;
  }
}
.journal-head {
  text-align: center !important;
  max-width: 1200px !important;
  margin: 0 auto clamp(24px, 2.6vw, 32px) !important;
}

.journal-head h2 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.journal-all {
  width: 100%;
  text-align: center !important;
  margin-top: clamp(20px, 2.4vw, 30px) !important;
}
.journal-head {
  width: 100% !important;
  max-width: none !important;
  text-align: center !important;
}

.journal-head h2 {
  width: 100%;
  max-width: 1400px;
  display: block;
  margin: 0 auto !important;
  text-align: center !important;
}

.site-footer {
  background: #14110d;
  color: rgba(250, 238, 211, .92);
  padding: clamp(48px, 5vw, 72px) clamp(20px, 3vw, 48px) 24px;
  border-top: 1px solid rgba(211,177,109,.14);
}

.footer-shell {
  max-width: 1600px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 2fr);
  gap: clamp(28px, 4vw, 80px);
  padding-bottom: clamp(28px, 3vw, 36px);
  border-bottom: 1px solid rgba(211,177,109,.12);
}

.footer-brand h3 {
  margin: 0;
  color: #f6ebcf;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.03em;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
  color: rgba(239,225,195,.66);
  font-size: 16px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
}

.footer-column h4 {
  margin: 0 0 14px;
  color: rgba(211,177,109,.92);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-meta a {
  display: block;
  color: rgba(250,238,211,.86);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.9;
  transition: color .2s ease, opacity .2s ease;
}

.footer-column a:hover,
.footer-meta a:hover {
  color: #f6ebcf;
  opacity: .75;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(239,225,195,.54);
  font-size: 14px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-meta a {
  display: inline-block;
  color: rgba(239,225,195,.62);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-footer {
    padding: 40px 16px 20px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
.footer-brand__logo {
  display: inline-block;
  text-decoration: none;
}

.footer-brand__logo img {
  display: block;
  width: clamp(180px, 18vw, 260px);
  height: auto;
}

.footer-brand h3 {
  display: none;
}
.reading-cta {
  background: linear-gradient(180deg, #fbf8f0 0%, #f8f3e9 100%) !important;
  padding: clamp(18px, 2vw, 28px) clamp(20px, 3vw, 42px) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.reading-cta__banner {
  border-radius: 22px !important;
  border: 1px solid rgba(126,91,45,.10);
  background: linear-gradient(90deg, rgba(255,249,239,.98) 0%, rgba(248,239,224,.96) 56%, rgba(236,220,196,.82) 100%) !important;
  box-shadow: 0 18px 44px rgba(90,58,23,.08) !important;
}

.reading-cta__bg {
  opacity: .32;
  filter: saturate(.85) brightness(.96);
}

.reading-cta__banner::before,
.reading-cta__banner::after {
  opacity: .28 !important;
}

.reading-cta__content {
  color: #171109 !important;
}

.reading-cta__eyebrow {
  color: rgba(126,91,45,.90) !important;
}

.reading-cta__content h3 {
  color: #171109 !important;
  text-shadow: none !important;
}

.reading-cta__sub {
  color: rgba(63,45,30,.78) !important;
}

.signature-showcase,
.brand-story-block,
.journal-preview {
  background: linear-gradient(180deg, #fbf8f0 0%, #f7f2e8 100%) !important;
}

.signature-showcase {
  margin-top: 0 !important;
  padding: clamp(28px, 3vw, 42px) clamp(20px, 3vw, 48px) clamp(46px, 4vw, 60px) !important;
  border-top: 1px solid rgba(126,91,45,.08) !important;
}

.showcase-shell--signature {
  max-width: 1600px;
  margin: 0 auto;
}

.signature-media {
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(247,241,231,.9)) !important;
}

.signature-item-card.feature-card .signature-media.visual-dark {
  background: radial-gradient(circle at 55% 58%, rgba(211,177,109,.16), transparent 34%), linear-gradient(180deg, #110d0a 0%, #1a1410 100%) !important;
}

.brand-story-block {
  padding-top: 0 !important;
}

.story-copy {
  background: transparent !important;
}

.journal-preview {
  padding-top: clamp(36px, 3.6vw, 54px) !important;
}

.journal-card a {
  box-shadow: 0 10px 28px rgba(90,58,23,.05) !important;
}
.reading-cta {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: 22px !important;
  margin-bottom: 40px !important;
  padding: 0 !important;
  background: transparent !important;
}

.reading-cta__banner {
  position: relative !important;
  width: 100vw !important;
  height: 190px !important;
  min-height: 190px !important;
  max-height: 190px !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  background: #120d08 !important;
  box-shadow: 0 8px 20px rgba(23, 17, 9, .08) !important;
}

.reading-cta__bg {
  opacity: 1 !important;
  filter: none !important;
}

.reading-cta__banner::after {
  background: linear-gradient(90deg, rgba(10, 7, 5, .48) 0%, rgba(12, 8, 5, .24) 34%, rgba(12, 8, 5, .08) 58%, rgba(12, 8, 5, .16) 100%) !important;
  opacity: 1 !important;
}

.reading-cta__banner::before {
  opacity: 1 !important;
}

.reading-cta__content {
  color: inherit !important;
}

.reading-cta__eyebrow {
  color: rgba(226, 184, 96, .94) !important;
}

.reading-cta__content h3 {
  color: #fff7e8 !important;
  text-shadow: none !important;
}

.reading-cta__sub {
  color: rgba(250, 238, 211, .88) !important;
}

.brand-story-block {
  background: linear-gradient(180deg, #f9f5ec 0%, #f5efe4 100%) !important;
}

.story-copy {
  background: linear-gradient(180deg, #f1eadf 0%, #ebe2d4 100%) !important;
}
.journal-head {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin: 0 auto clamp(24px, 2.6vw, 32px) !important;
}

.journal-head h2 {
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 auto !important;
  text-align: center !important;
  white-space: nowrap !important;
}

@media (max-width: 1180px) {
  .journal-head h2 {
    white-space: normal !important;
  }
}
.signature-head {
  max-width: 1400px !important;
}

.signature-head h3 {
  white-space: nowrap !important;
  font-size: clamp(36px, 4vw, 58px) !important;
  line-height: 1.04 !important;
}

@media (max-width: 920px) {
  .signature-head h3 {
    white-space: normal !important;
    font-size: clamp(32px, 7vw, 46px) !important;
  }
}
.signature-showcase {
  background: transparent !important;
  border-top: none !important;
}

.showcase-shell--signature,
.signature-panels,
.signature-panel,
.signature-grid {
  background: transparent !important;
}
.journal-preview {
  background: transparent !important;
}
.journal-card--image-1 a {
  background:
    linear-gradient(180deg, rgba(12,10,8,.10), rgba(12,10,8,.10)),
    url("./img/shouye_symbol_yinyang_koi.png") center/cover no-repeat !important;
}

.journal-card--image-2 a {
  background:
    linear-gradient(180deg, rgba(12,10,8,.10), rgba(12,10,8,.10)),
    url("./img/shouye_home_hero_bg.webp") center/cover no-repeat !important;
}

.journal-card--image-3 a {
  background:
    linear-gradient(180deg, rgba(12,10,8,.10), rgba(12,10,8,.10)),
    url("./img/shouye_symbol_bagua_taiji.png") center/cover no-repeat !important;
}
.journal-grid article,
.journal-card {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  min-height: auto !important;
  display: block !important;
}

.journal-card a {
  width: 100% !important;
  box-sizing: border-box !important;
}
.journal-preview {
  background: linear-gradient(180deg, #f9f5ec 0%, #f5efe4 100%) !important;
  color: #171109 !important;
}

.journal-shell,
.journal-grid,
.journal-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.journal-head h2 {
  color: #171109 !important;
  opacity: 1 !important;
}

.journal-all a {
  color: #171109 !important;
  border-bottom-color: rgba(23,17,9,.28) !important;
  opacity: 1 !important;
}

.journal-card a {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.journal-card a::before {
  background: linear-gradient(180deg, rgba(12,10,8,.14) 0%, rgba(12,10,8,.22) 32%, rgba(12,10,8,.72) 100%) !important;
}

.journal-card--image-1 a {
  background:
    linear-gradient(180deg, rgba(12,10,8,.06), rgba(12,10,8,.06)),
    url("./img/shouye_symbol_yinyang_koi.png") center/cover no-repeat !important;
}

.journal-card--image-2 a {
  background:
    linear-gradient(180deg, rgba(12,10,8,.06), rgba(12,10,8,.06)),
    url("./img/shouye_home_hero_bg.webp") center/cover no-repeat !important;
}

.journal-card--image-3 a {
  background:
    linear-gradient(180deg, rgba(12,10,8,.06), rgba(12,10,8,.06)),
    url("./img/shouye_symbol_bagua_taiji.png") center/cover no-repeat !important;
}
.header {
  grid-template-columns: minmax(190px, 250px) 1fr minmax(110px, 140px) !important;
  gap: 16px !important;
}

.brand {
  width: min(250px, 16vw) !important;
  min-width: 190px !important;
}

.nav {
  gap: clamp(16px, 1.7vw, 30px) !important;
  font-size: clamp(12px, .76vw, 15px) !important;
  letter-spacing: .10em !important;
}
@media (max-width: 1280px) {
  .header {
    grid-template-columns: minmax(170px, 220px) 1fr minmax(100px, 120px) !important;
    gap: 12px !important;
  }

  .brand {
    min-width: 170px !important;
  }

  .nav {
    gap: 15px !important;
    font-size: 12px !important;
    letter-spacing: .08em !important;
  }
}

.shop-hero > p:not(.shop-kicker) {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(23,17,9,.62);
  font-size: 18px;
  line-height: 1.72;
}

.shop-product-card:not(.dark-card) h3 {
  color: #171109;
}

.shop-intention p:not(.shop-kicker) {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(23,17,9,.60);
  font-size: 17px;
  line-height: 1.7;
}
.header,
.header.is-scrolled {
  background: rgba(20, 17, 13, .96) !important;
  border: 1px solid rgba(211,177,109,.18) !important;
  box-shadow:
    0 14px 32px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
}

.nav {
  color: rgba(250,238,211,.90) !important;
}

.nav a {
  color: rgba(250,238,211,.88) !important;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: #f6ebcf !important;
}

.header-icons button {
  color: rgba(211,177,109,.88) !important;
}

.shop-filter-head > p:not(.shop-kicker) {
  margin: 0 0 4px;
  color: rgba(23,17,9,.58);
  font-size: 16px;
  line-height: 1.65;
}
body:has(.shop-page) {
  background: #fffefd !important;
}

.shop-simple-hero p:not(.shop-simple-kicker) {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(23,17,9,.58);
  font-size: 17px;
  line-height: 1.7;
}
html,
body {
  background: #fffefd;
}

.shop-simple-hero p:not(.shop-simple-kicker) {
  max-width: 760px;
}

.shop-v3-hero__copy p:not(.shop-v3-kicker) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(23, 17, 9, .62);
  font-size: clamp(16px, 1.28vw, 20px);
  line-height: 1.76;
}

.shop-v3-section-head p:not(.shop-v3-kicker) {
  margin: 16px auto 0;
  max-width: 720px;
  color: rgba(23, 17, 9, .58);
  font-size: 17px;
  line-height: 1.7;
}

.shop-v3-section-head--split p:not(.shop-v3-kicker) {
  margin: 0;
  color: rgba(23, 17, 9, .58);
}
html {
  scroll-behavior: smooth;
}

.deities-hero__copy > p:not(.deities-kicker) {
  max-width: 690px;
  margin: 34px 0 0;
  color: rgba(255,244,220,.78);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.65;
}

@media (max-width: 560px) {

  .deities-hero__copy > p:not(.deities-kicker) {
    font-size: 16px;
  }
}

:root {
  --shop-cream-final: #f7f4ef;
}

html,
body {
  background: var(--shop-cream-final) !important;
  background-color: var(--shop-cream-final) !important;
}
.header {
  position: fixed !important;
  z-index: 9999 !important;
  top: clamp(24px, 3vw, 46px) !important;
  left: clamp(26px, 4vw, 76px) !important;
  right: clamp(26px, 4vw, 76px) !important;
  display: grid !important;
  grid-template-columns: minmax(230px, 300px) 1fr minmax(130px, 160px) !important;
  align-items: center !important;
  gap: 24px !important;
  height: 56px !important;
  padding: 4px 18px !important;
  border-radius: 14px !important;
  background: rgba(8, 13, 13, .72) !important;
  border: 1px solid rgba(211, 177, 109, .10) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .10), inset 0 1px 0 rgba(255, 255, 255, .035) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  transition: top .28s ease, height .28s ease, padding .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease, border-radius .28s ease !important;
}

.header.is-scrolled {
  top: 12px !important;
  height: 48px !important;
  padding: 3px 16px !important;
  border-radius: 12px !important;
  background: rgba(7, 10, 9, .88) !important;
  border-color: rgba(211, 177, 109, .18) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .035) !important;
}

.header::before { display: none !important; }

.brand {
  display: inline-flex !important;
  align-items: center !important;
  width: min(300px, 18vw) !important;
  min-width: 230px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.brand img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 41px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.38)) !important;
  transition: max-height .28s ease !important;
}

.header.is-scrolled .brand img { max-height: 34px !important; }

.nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(16px, 1.7vw, 30px) !important;
  text-transform: uppercase !important;
  letter-spacing: .10em !important;
  font-family: Arial, "Helvetica Neue", sans-serif !important;
  font-size: clamp(12px, .76vw, 15px) !important;
  font-weight: 800 !important;
  color: rgba(250,238,211,.90) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.32) !important;
  white-space: nowrap !important;
  transition: font-size .28s ease, gap .28s ease !important;
}

.header.is-scrolled .nav {
  gap: clamp(14px, 1.55vw, 26px) !important;
  font-size: clamp(11px, .72vw, 14px) !important;
}

.nav a {
  position: relative !important;
  padding: 5px 0 8px !important;
  color: rgba(250,238,211,.88) !important;
  transition: color .25s ease, transform .25s ease !important;
}

.nav a::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: var(--seal-red-bright) !important;
  box-shadow: 0 0 8px rgba(179,38,44,.34) !important;
  transform: translateX(-50%) scale(.45) !important;
  opacity: 0 !important;
  transition: all .25s ease !important;
}

.nav a::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  width: 0 !important;
  height: 1.5px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--seal-red) 0%, var(--gold) 100%) !important;
  transform: translateX(-50%) !important;
  transition: width .25s ease !important;
}

.nav a:hover,
.nav a.active { color: #fff3d4 !important; }
.nav a:hover { transform: translateY(-1px) !important; }
.nav a:hover::before,
.nav a.active::before { opacity: 1 !important; transform: translateX(-50%) scale(1) !important; }
.nav a:hover::after,
.nav a.active::after { width: 100% !important; }

.header-icons {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 18px !important;
}

.header-icons button {
  position: relative !important;
  width: 28px !important;
  height: 28px !important;
  color: rgba(211,177,109,.82) !important;
  transition: color .25s ease, transform .25s ease !important;
}

.header-icons button:hover { color: #e7b3a8 !important; transform: translateY(-1px) !important; }

.header-icons svg {
  width: 100% !important;
  height: 100% !important;
  stroke: currentColor !important;
  stroke-width: 1.85 !important;
  fill: none !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.28)) !important;
}

@media (max-width: 1200px) {
  .header { grid-template-columns: minmax(170px, 220px) 1fr minmax(100px, 120px) !important; gap: 12px !important; }
  .brand { min-width: 170px !important; }
  .nav { gap: 15px !important; font-size: 12px !important; letter-spacing: .08em !important; }
}

@media (max-width: 900px) {
  .header { display: flex !important; justify-content: space-between !important; top: 22px !important; height: 54px !important; padding: 4px 14px !important; }
  .header.is-scrolled { top: 10px !important; height: 48px !important; }
  .nav { display: none !important; }
  .brand { width: 205px !important; min-width: 0 !important; }
  .brand img { max-height: 36px !important; }
}

@media (max-width: 560px) {
  .header { left: 18px !important; right: 18px !important; height: 50px !important; border-radius: 14px !important; padding: 0 12px !important; }
  .brand { width: 170px !important; }
  .brand img { max-height: 32px !important; }
  .header-icons { gap: 10px !important; }
  .header-icons button { width: 25px !important; height: 25px !important; }
}
@media (max-width: 767px) {
  .hero {
    min-height: 1120px !important;
    overflow: hidden !important;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3,6,8,.48) 0%, rgba(3,6,8,.28) 20%, rgba(3,6,8,.18) 42%, rgba(3,6,8,.38) 100%) !important,
      linear-gradient(90deg, rgba(5,7,8,.72) 0%, rgba(5,7,8,.54) 38%, rgba(5,7,8,.22) 68%, rgba(5,7,8,.12) 100%) !important;
  }

  .hero-copy.hero-copy--reading {
    top: 126px !important;
    left: 24px !important;
    right: 24px !important;
    width: auto !important;
    max-width: none !important;
    gap: 18px !important;
    z-index: 24 !important;
    align-items: flex-start !important;
  }

  .reading-copy-top {
    gap: 12px !important;
  }

  .hero-copy.hero-copy--reading .eyebrow {
    font-size: 10px !important;
    letter-spacing: .18em !important;
  }

  .hero-copy.hero-copy--reading h1 {
    font-size: clamp(48px, 12vw, 70px) !important;
    line-height: .94 !important;
    max-width: 100% !important;
  }

  .hero-copy.hero-copy--reading .intro {
    max-width: min(100%, 92vw) !important;
    font-size: 15px !important;
    line-height: 1.52 !important;
    color: rgba(250, 240, 220, .95) !important;
  }

  .reading-copy-bottom {
    width: 100% !important;
    gap: 16px !important;
    margin-top: 4px !important;
    align-items: flex-start !important;
  }

  .hero-copy.hero-copy--reading .hero-actions {
    width: 100% !important;
    gap: 12px !important;
    align-items: flex-start !important;
  }

  .hero-copy.hero-copy--reading .btn {
    width: 100% !important;
    min-height: 64px !important;
    border-radius: 999px !important;
    padding: 0 26px !important;
    font-size: 11px !important;
    letter-spacing: .16em !important;
  }

  .hero-copy.hero-copy--reading .btn.secondary {
    display: none !important;
  }

  .hero-copy.hero-copy--reading .product-tags {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: auto !important;
    max-width: 260px !important;
    margin-top: 18px !important;
  }

  .hero-copy.hero-copy--reading .product-tag {
    width: min(250px, calc(100vw - 72px)) !important;
    min-height: 54px !important;
    justify-content: flex-start !important;
    padding: 0 18px 0 10px !important;
    border-radius: 999px !important;
    background: rgba(9, 12, 13, .34) !important;
    border: 1px solid rgba(223, 190, 123, .18) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 8px 18px rgba(0,0,0,.08) !important;
  }

  .hero-copy.hero-copy--reading .product-tag span {
    width: 34px !important;
    height: 34px !important;
    font-size: 18px !important;
    margin-right: 12px !important;
  }

  .hero-copy.hero-copy--reading .product-tag strong {
    font-size: 12px !important;
    letter-spacing: .09em !important;
  }

  .master-stage {
    left: auto !important;
    right: -56px !important;
    bottom: 0 !important;
    height: 78svh !important;
    transform: none !important;
    opacity: .92 !important;
    z-index: 11 !important;
  }

  .dao-master {
    filter:
      contrast(.97)
      saturate(.93)
      brightness(.88)
      drop-shadow(0 22px 34px rgba(0,0,0,.42))
      drop-shadow(0 6px 16px rgba(0,0,0,.22)) !important;
  }

  .master-nameplate,
  .scroll-cue {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 1060px !important;
  }

  .hero-copy.hero-copy--reading {
    top: 118px !important;
    left: 20px !important;
    right: 20px !important;
  }

  .hero-copy.hero-copy--reading h1 {
    font-size: clamp(44px, 12.6vw, 62px) !important;
  }

  .hero-copy.hero-copy--reading .intro {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .hero-copy.hero-copy--reading .btn {
    min-height: 60px !important;
  }

  .hero-copy.hero-copy--reading .product-tags {
    gap: 10px !important;
    margin-top: 14px !important;
  }

  .hero-copy.hero-copy--reading .product-tag {
    width: min(248px, calc(100vw - 68px)) !important;
    min-height: 50px !important;
  }

  .master-stage {
    right: -64px !important;
    bottom: -10px !important;
    height: 72svh !important;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 100svh !important;
    min-height: 780px !important;
    max-height: 940px !important;
    overflow: hidden !important;
  }

  .hero-copy.hero-copy--reading {
    top: 124px !important;
    left: 22px !important;
    right: 22px !important;
    gap: 12px !important;
  }

  .reading-copy-top {
    gap: 8px !important;
  }

  .reading-copy-bottom {
    gap: 10px !important;
    margin-top: -2px !important;
  }

  .hero-copy.hero-copy--reading h1 {
    font-size: clamp(38px, 9.7vw, 54px) !important;
    line-height: .94 !important;
    letter-spacing: -.055em !important;
    max-width: 100% !important;
    white-space: nowrap !important;
  }

  .hero-copy.hero-copy--reading h1 br {
    display: block !important;
  }

  .hero-copy.hero-copy--reading .intro {
    max-width: min(100%, 92vw) !important;
    font-size: 14px !important;
    line-height: 1.48 !important;
  }

  .hero-copy.hero-copy--reading .hero-actions {
    margin-top: 4px !important;
  }

  .hero-copy.hero-copy--reading .btn {
    min-height: 56px !important;
    padding: 0 22px !important;
    font-size: 10.5px !important;
    letter-spacing: .15em !important;
  }

  .hero-copy.hero-copy--reading .product-tags {
    max-width: 218px !important;
    gap: 9px !important;
    margin-top: 8px !important;
  }

  .hero-copy.hero-copy--reading .product-tag {
    width: 212px !important;
    min-height: 46px !important;
    padding: 0 14px 0 8px !important;
    background: rgba(9, 12, 13, .40) !important;
  }

  .hero-copy.hero-copy--reading .product-tag span {
    width: 30px !important;
    height: 30px !important;
    font-size: 16px !important;
    margin-right: 10px !important;
  }

  .hero-copy.hero-copy--reading .product-tag strong {
    font-size: 11px !important;
    letter-spacing: .08em !important;
  }

  .master-stage {
    opacity: 1 !important;
    right: -48px !important;
    bottom: -12px !important;
    height: 66svh !important;
    z-index: 12 !important;
  }

  .dao-master {
    opacity: 1 !important;
    filter:
      contrast(1)
      saturate(.98)
      brightness(.98)
      drop-shadow(0 22px 34px rgba(0,0,0,.42))
      drop-shadow(0 6px 16px rgba(0,0,0,.22)) !important;
  }
}

@media (max-width: 560px) {
  .hero {
    height: 100svh !important;
    min-height: 760px !important;
    max-height: 900px !important;
  }

  .hero-copy.hero-copy--reading {
    top: 116px !important;
    left: 20px !important;
    right: 20px !important;
  }

  .hero-copy.hero-copy--reading h1 {
    font-size: clamp(36px, 10vw, 50px) !important;
    line-height: .94 !important;
    white-space: nowrap !important;
  }

  .hero-copy.hero-copy--reading .intro {
    font-size: 13.5px !important;
    line-height: 1.46 !important;
  }

  .hero-copy.hero-copy--reading .btn {
    min-height: 54px !important;
  }

  .hero-copy.hero-copy--reading .product-tags {
    max-width: 205px !important;
    margin-top: 7px !important;
  }

  .hero-copy.hero-copy--reading .product-tag {
    width: 198px !important;
    min-height: 44px !important;
  }

  .master-stage {
    right: -58px !important;
    bottom: -10px !important;
    height: 62svh !important;
    opacity: 1 !important;
  }
}

@media (max-width: 390px) {
  .hero-copy.hero-copy--reading h1 {
    font-size: 36px !important;
  }

  .hero-copy.hero-copy--reading .intro {
    font-size: 13px !important;
  }

  .hero-copy.hero-copy--reading .product-tag {
    width: 188px !important;
  }

  .master-stage {
    right: -66px !important;
    height: 60svh !important;
  }
}
@media (max-width: 767px) {
  .hero-copy.hero-copy--reading .product-tags {
    margin-top: 18px !important;
    max-width: 208px !important;
  }

  .hero-copy.hero-copy--reading .product-tag {
    width: 204px !important;
  }

  .master-stage {
    right: -44px !important;
    bottom: -76px !important;
    height: 72svh !important;
    z-index: 12 !important;
  }
}

@media (max-width: 560px) {
  .hero-copy.hero-copy--reading .product-tags {
    margin-top: 20px !important;
    max-width: 196px !important;
  }

  .hero-copy.hero-copy--reading .product-tag {
    width: 194px !important;
  }

  .master-stage {
    right: -54px !important;
    bottom: -96px !important;
    height: 70svh !important;
  }
}

@media (max-width: 390px) {
  .hero-copy.hero-copy--reading .product-tags {
    margin-top: 18px !important;
    max-width: 188px !important;
  }

  .hero-copy.hero-copy--reading .product-tag {
    width: 184px !important;
  }

  .master-stage {
    right: -60px !important;
    bottom: -102px !important;
    height: 68svh !important;
  }
}
@media (max-width: 767px) {
  .hero-copy.hero-copy--reading .product-tags {
    margin-top: 34px !important;
  }

  .master-stage {
    right: -48px !important;
    bottom: -118px !important;
    height: 78svh !important;
  }
}

@media (max-width: 560px) {
  .hero-copy.hero-copy--reading .product-tags {
    margin-top: 38px !important;
  }

  .master-stage {
    right: -58px !important;
    bottom: -132px !important;
    height: 76svh !important;
  }
}

@media (max-width: 390px) {
  .hero-copy.hero-copy--reading .product-tags {
    margin-top: 36px !important;
  }

  .master-stage {
    right: -62px !important;
    bottom: -138px !important;
    height: 74svh !important;
  }
}
@media (max-width: 767px) {
  .master-stage {
    right: -60px !important;
    bottom: -132px !important;
    height: 82svh !important;
  }
}

@media (max-width: 560px) {
  .master-stage {
    right: -70px !important;
    bottom: -146px !important;
    height: 80svh !important;
  }
}

@media (max-width: 390px) {
  .master-stage {
    right: -74px !important;
    bottom: -152px !important;
    height: 78svh !important;
  }
}
@media (max-width: 767px) {
  .master-stage {
    right: -72px !important;
    bottom: -150px !important;
    height: 86svh !important;
  }
}

@media (max-width: 560px) {
  .master-stage {
    right: -82px !important;
    bottom: -164px !important;
    height: 84svh !important;
  }
}

@media (max-width: 390px) {
  .master-stage {
    right: -86px !important;
    bottom: -170px !important;
    height: 82svh !important;
  }
}
@media (max-width: 767px) {
  .hero .master-stage {
    right: -118px !important;
    bottom: -218px !important;
    height: 94svh !important;
    transform: none !important;
  }

  .hero .dao-master {
    height: 100% !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }
}

@media (max-width: 560px) {
  .hero .master-stage {
    right: -128px !important;
    bottom: -232px !important;
    height: 92svh !important;
  }
}

@media (max-width: 430px) {
  .hero .master-stage {
    right: -136px !important;
    bottom: -244px !important;
    height: 91svh !important;
  }
}

@media (max-width: 390px) {
  .hero .master-stage {
    right: -142px !important;
    bottom: -250px !important;
    height: 90svh !important;
  }
}
@media (max-width: 767px) {
  .hero .master-stage {
    bottom: -248px !important;
  }
}

@media (max-width: 560px) {
  .hero .master-stage {
    bottom: -264px !important;
  }
}

@media (max-width: 430px) {
  .hero .master-stage {
    bottom: -278px !important;
  }
}

@media (max-width: 390px) {
  .hero .master-stage {
    bottom: -286px !important;
  }
}
@media (max-width: 767px) {
  .guardian-symbol-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(360px, 100%) !important;
    padding: 0 22px !important;
    column-gap: 10px !important;
    row-gap: 16px !important;
    margin: 0 auto 26px !important;
    align-items: center !important;
  }

  .guardian-symbol-card {
    min-height: 86px !important;
    height: 86px !important;
    display: grid !important;
    place-items: center !important;
  }

  .guardian-symbol-card img {
    max-width: 78px !important;
    max-height: 82px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 10px 14px rgba(23, 17, 9, .08)) !important;
  }
}

@media (max-width: 430px) {
  .guardian-symbol-gallery {
    width: min(330px, 100%) !important;
    padding: 0 18px !important;
    column-gap: 8px !important;
    row-gap: 14px !important;
    margin-bottom: 24px !important;
  }

  .guardian-symbol-card {
    min-height: 80px !important;
    height: 80px !important;
  }

  .guardian-symbol-card img {
    max-width: 72px !important;
    max-height: 76px !important;
  }
}

@media (max-width: 360px) {
  .guardian-symbol-gallery {
    width: min(300px, 100%) !important;
    column-gap: 6px !important;
    row-gap: 12px !important;
  }

  .guardian-symbol-card {
    min-height: 72px !important;
    height: 72px !important;
  }

  .guardian-symbol-card img {
    max-width: 64px !important;
    max-height: 68px !important;
  }
}
@media (max-width: 767px) {
  .guardian-symbol-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(430px, 100%) !important;
    padding: 0 24px !important;
    column-gap: 14px !important;
    row-gap: 24px !important;
    margin: 0 auto 30px !important;
  }

  .guardian-symbol-card {
    min-height: 118px !important;
    height: 118px !important;
  }

  .guardian-symbol-card img {
    max-width: 112px !important;
    max-height: 112px !important;
    width: auto !important;
    height: auto !important;
  }
}

@media (max-width: 430px) {
  .guardian-symbol-gallery {
    width: min(390px, 100%) !important;
    padding: 0 20px !important;
    column-gap: 12px !important;
    row-gap: 22px !important;
    margin-bottom: 28px !important;
  }

  .guardian-symbol-card {
    min-height: 108px !important;
    height: 108px !important;
  }

  .guardian-symbol-card img {
    max-width: 100px !important;
    max-height: 100px !important;
  }
}

@media (max-width: 360px) {
  .guardian-symbol-gallery {
    width: min(330px, 100%) !important;
    padding: 0 16px !important;
    column-gap: 10px !important;
    row-gap: 18px !important;
  }

  .guardian-symbol-card {
    min-height: 96px !important;
    height: 96px !important;
  }

  .guardian-symbol-card img {
    max-width: 88px !important;
    max-height: 88px !important;
  }
}
@media (max-width: 767px) {
  .objects-showcase {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .objects-showcase .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: min(430px, 100%) !important;
    margin: 0 auto !important;
    align-items: stretch !important;
  }

  .objects-showcase .category-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: rgba(255, 252, 246, .62) !important;
    border: 1px solid rgba(126,91,45,.10) !important;
    box-shadow: 0 12px 28px rgba(90,58,23,.055) !important;
  }

  .objects-showcase .product-visual {
    height: 132px !important;
    min-height: 132px !important;
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    background:
      radial-gradient(circle at 50% 45%, rgba(211,177,109,.16), transparent 38%),
      linear-gradient(180deg, #fffaf1 0%, #f4ece0 100%) !important;
  }

  .objects-showcase .product-hover-photo {
    display: none !important;
  }

  .objects-showcase .bagua-mark {
    right: 10px !important;
    top: 10px !important;
    width: 42px !important;
    height: 42px !important;
    opacity: .07 !important;
  }

  .objects-showcase .bracelet-object {
    width: 142px !important;
    height: 142px !important;
    transform: translate(-50%, -48%) scale(.54) rotateX(58deg) rotateZ(-16deg) !important;
  }

  .objects-showcase .necklace-object .chain {
    height: 62% !important;
    top: -14px !important;
  }

  .objects-showcase .necklace-object .pendant {
    width: 58px !important;
    height: 58px !important;
    border-width: 4px !important;
  }

  .objects-showcase .necklace-object .pendant::before {
    inset: -10px !important;
  }

  .objects-showcase .necklace-object .pendant span {
    font-size: 24px !important;
  }

  .objects-showcase .talisman-object {
    width: 74px !important;
    height: 122px !important;
    border-radius: 6px !important;
    transform: translate(-50%, -50%) rotate(-7deg) !important;
    box-shadow: 0 14px 24px rgba(90,58,23,.12), inset 0 0 0 5px rgba(126,31,25,.10) !important;
  }

  .objects-showcase .talisman-object::before {
    top: 22px !important;
    left: 12px !important;
    right: 12px !important;
  }

  .objects-showcase .talisman-object::after {
    bottom: 22px !important;
    left: 12px !important;
    right: 12px !important;
  }

  .objects-showcase .talisman-object span {
    top: 32px !important;
    font-size: 22px !important;
  }

  .objects-showcase .talisman-object b {
    top: 58px !important;
    font-size: 18px !important;
  }

  .objects-showcase .talisman-object em {
    bottom: 30px !important;
    font-size: 16px !important;
  }

  .objects-showcase .phone-object {
    width: 72px !important;
    height: 124px !important;
    border-radius: 18px !important;
    transform: translate(-50%, -50%) rotate(7deg) !important;
    box-shadow: 0 14px 24px rgba(90,58,23,.13), inset 0 1px 0 rgba(255,255,255,.14) !important;
  }

  .objects-showcase .phone-object span {
    left: 9px !important;
    top: 9px !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 7px !important;
  }

  .objects-showcase .phone-object b {
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
  }

  .objects-showcase .phone-object em {
    bottom: 11px !important;
    width: 24px !important;
    height: 3px !important;
  }

  .objects-showcase .soft-koi {
    width: 76px !important;
    height: 44px !important;
    left: 7% !important;
    bottom: 15% !important;
  }

  .objects-showcase .product-info {
    margin: 0 !important;
    padding: 12px 12px 14px !important;
    min-height: 92px !important;
    text-align: left !important;
    border: 0 !important;
  }

  .objects-showcase .product-info::before,
  .objects-showcase .product-info::after {
    display: none !important;
  }

  .objects-showcase .product-info h3 {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #171109 !important;
    font-size: 19px !important;
    line-height: 1.05 !important;
    letter-spacing: -.025em !important;
    white-space: normal !important;
  }

  .objects-showcase .category-card:nth-child(4) .product-info h3 {
    font-size: 17px !important;
    line-height: 1.05 !important;
  }

  .objects-showcase .product-info p {
    display: block !important;
    max-width: 100% !important;
    margin: 6px 0 0 !important;
    padding: 0 !important;
    color: rgba(23,17,9,.54) !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }

  .objects-showcase .product-info .shop-link {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .objects-showcase .category-grid {
    gap: 12px !important;
  }

  .objects-showcase .product-visual {
    height: 118px !important;
    min-height: 118px !important;
  }

  .objects-showcase .product-info {
    padding: 10px 10px 12px !important;
    min-height: 86px !important;
  }

  .objects-showcase .product-info h3 {
    font-size: 17px !important;
  }

  .objects-showcase .category-card:nth-child(4) .product-info h3 {
    font-size: 15.5px !important;
  }

  .objects-showcase .product-info p {
    font-size: 10.5px !important;
  }
}
@media (max-width: 767px) {
  .objects-showcase .showcase-head {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    margin-bottom: 22px !important;
    overflow: hidden !important;
  }

  .objects-showcase .showcase-head h2 {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.055em !important;
    overflow-wrap: normal !important;
  }

  .objects-showcase .showcase-head > p {
    max-width: 92vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .objects-showcase .product-info h3::before,
  .objects-showcase .product-info h3::after {
    display: none !important;
    content: none !important;
  }

  .objects-showcase .product-info h3 {
    padding-left: 0 !important;
  }
}

@media (max-width: 430px) {
  .objects-showcase .showcase-head h2 {
    font-size: clamp(31px, 9.4vw, 40px) !important;
    line-height: 1.03 !important;
  }

  .objects-showcase .showcase-head > p {
    font-size: 13px !important;
  }
}

@media (max-width: 360px) {
  .objects-showcase .showcase-head h2 {
    font-size: 30px !important;
  }
}
@media (max-width: 767px) {
  .reading-cta {
    margin-top: 24px !important;
    margin-bottom: 28px !important;
  }

  .reading-cta__banner {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
    overflow: hidden !important;
  }

  .reading-cta__bg {
    object-position: 72% center !important;
  }

  .reading-cta__banner::before {
    display: none !important;
    content: none !important;
  }

  .reading-cta__banner::after {
    background:
      linear-gradient(90deg, rgba(9, 6, 4, .82) 0%, rgba(9, 6, 4, .58) 42%, rgba(9, 6, 4, .26) 70%, rgba(9, 6, 4, .18) 100%) !important;
  }

  .reading-cta__overlay {
    background:
      linear-gradient(90deg, rgba(9, 6, 4, .82) 0%, rgba(9, 6, 4, .58) 42%, rgba(9, 6, 4, .24) 72%, rgba(9, 6, 4, .18) 100%) !important;
  }

  .reading-cta__content {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    padding: 22px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    text-align: left !important;
  }

  .reading-cta__text {
    width: min(300px, 72vw) !important;
    max-width: min(300px, 72vw) !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .reading-cta__eyebrow {
    display: block !important;
    width: 100% !important;
    margin: 0 0 10px !important;
    color: rgba(226, 184, 96, .96) !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
    letter-spacing: .20em !important;
    white-space: normal !important;
    text-align: left !important;
  }

  .reading-cta__eyebrow span {
    display: none !important;
  }

  .reading-cta__content h3 {
    width: min(300px, 72vw) !important;
    max-width: min(300px, 72vw) !important;
    margin: 0 !important;
    color: #fff7ed !important;
    font-size: clamp(30px, 8vw, 38px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.04em !important;
    white-space: normal !important;
    text-align: left !important;
  }

  .reading-cta__sub {
    display: none !important;
  }

  .reading-cta__button {
    align-self: flex-start !important;
    min-height: 42px !important;
    margin-top: 16px !important;
    padding: 0 22px !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    letter-spacing: .12em !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 430px) {
  .reading-cta__banner {
    height: 198px !important;
    min-height: 198px !important;
    max-height: 198px !important;
  }

  .reading-cta__content {
    padding: 20px 20px !important;
  }

  .reading-cta__text,
  .reading-cta__content h3 {
    width: min(280px, 76vw) !important;
    max-width: min(280px, 76vw) !important;
  }

  .reading-cta__content h3 {
    font-size: clamp(28px, 8.2vw, 34px) !important;
  }

  .reading-cta__button {
    min-height: 40px !important;
    margin-top: 14px !important;
    padding: 0 18px !important;
    font-size: 9px !important;
  }
}
@media (max-width: 767px) {
  .signature-showcase {
    overflow: hidden !important;
  }

  .signature-tabs {
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 22px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
    padding: 0 20px 14px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    scrollbar-width: none !important;
  }

  .signature-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .signature-tab {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    scroll-snap-align: start !important;
    padding-bottom: 10px !important;
    font-size: 12px !important;
    letter-spacing: .16em !important;
    line-height: 1 !important;
  }

  .signature-tab::after {
    bottom: 0 !important;
  }

  .signature-panel {
    overflow: visible !important;
  }

  .signature-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 18px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    padding: 0 20px 6px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    scrollbar-width: none !important;
  }

  .signature-grid::-webkit-scrollbar {
    display: none !important;
  }

  .signature-item-card {
    flex: 0 0 min(82vw, 390px) !important;
    width: min(82vw, 390px) !important;
    min-width: min(82vw, 390px) !important;
    scroll-snap-align: start !important;
  }

  .signature-media,
  .signature-item-card.feature-card .signature-media {
    height: 300px !important;
    min-height: 300px !important;
  }

  .signature-item-meta {
    padding-top: 14px !important;
  }

  .signature-item-meta h4 {
    font-size: 28px !important;
    line-height: 1.04 !important;
  }

  .signature-item-meta p {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 430px) {
  .signature-tabs {
    gap: 20px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-left: -18px !important;
    margin-right: -18px !important;
  }

  .signature-tab {
    font-size: 11.5px !important;
    letter-spacing: .15em !important;
  }

  .signature-grid {
    gap: 16px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-left: -18px !important;
    margin-right: -18px !important;
  }

  .signature-item-card {
    flex-basis: 84vw !important;
    width: 84vw !important;
    min-width: 84vw !important;
  }

  .signature-media,
  .signature-item-card.feature-card .signature-media {
    height: 290px !important;
    min-height: 290px !important;
  }
}

@media (max-width: 360px) {
  .signature-tab {
    font-size: 10.5px !important;
    letter-spacing: .12em !important;
  }

  .signature-item-card {
    flex-basis: 86vw !important;
    width: 86vw !important;
    min-width: 86vw !important;
  }

  .signature-media,
  .signature-item-card.feature-card .signature-media {
    height: 270px !important;
    min-height: 270px !important;
  }

  .signature-item-meta h4 {
    font-size: 25px !important;
  }
}
@media (max-width: 767px) {
  .signature-showcase {
    margin-top: 48px !important;
    padding-top: 22px !important;
    overflow: hidden !important;
  }

  .signature-head {
    max-width: 92vw !important;
    margin-bottom: 22px !important;
  }

  .signature-kicker {
    font-size: 10px !important;
    letter-spacing: .28em !important;
    margin-bottom: 10px !important;
  }

  .signature-head h3 {
    font-size: clamp(31px, 8.4vw, 42px) !important;
    line-height: 1.03 !important;
    letter-spacing: -.045em !important;
  }

  .signature-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: min(390px, 100%) !important;
    margin: 0 auto 22px !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .signature-tab {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: 0 8px !important;
    border: 1px solid rgba(126,91,45,.12) !important;
    border-radius: 999px !important;
    background: rgba(255,252,246,.64) !important;
    color: rgba(23,17,9,.56) !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: .12em !important;
    white-space: nowrap !important;
  }

  .signature-tab.is-active {
    color: #171109 !important;
    border-color: rgba(159,31,37,.22) !important;
    background: rgba(245,235,216,.82) !important;
  }

  .signature-tab::after {
    display: none !important;
  }

  .signature-panel {
    overflow: visible !important;
  }

  .signature-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    padding: 0 20px 8px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    scrollbar-width: none !important;
  }

  .signature-grid::-webkit-scrollbar {
    display: none !important;
  }

  .signature-item-card {
    flex: 0 0 min(88vw, 390px) !important;
    width: min(88vw, 390px) !important;
    min-width: min(88vw, 390px) !important;
    min-height: 178px !important;
    display: grid !important;
    grid-template-columns: 44% 56% !important;
    align-items: stretch !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    border: 1px solid rgba(126,91,45,.10) !important;
    background: rgba(255,252,246,.72) !important;
    box-shadow: 0 16px 34px rgba(90,58,23,.06) !important;
    scroll-snap-align: start !important;
  }

  .signature-media,
  .signature-item-card.feature-card .signature-media {
    height: 100% !important;
    min-height: 178px !important;
    border-top: 0 !important;
    border-right: 1px solid rgba(126,91,45,.08) !important;
    transform: none !important;
  }

  .signature-item-meta {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    padding: 14px 14px 14px 16px !important;
  }

  .signature-item-meta h4 {
    font-size: 21px !important;
    line-height: 1.06 !important;
    letter-spacing: -.035em !important;
  }

  .signature-item-meta p {
    margin-top: 8px !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .signature-price {
    margin-top: 10px !important;
    gap: 4px !important;
  }

  .signature-price strong {
    font-size: 14px !important;
  }

  .signature-price span {
    font-size: 9.5px !important;
    letter-spacing: .12em !important;
  }

  .signature-media .bracelet-object {
    transform: translate(-50%, -48%) scale(.58) rotateX(58deg) rotateZ(-16deg) !important;
  }
}

@media (max-width: 390px) {
  .signature-tabs {
    gap: 8px !important;
  }

  .signature-tab {
    font-size: 9px !important;
    letter-spacing: .09em !important;
    min-height: 34px !important;
  }

  .signature-item-card {
    flex-basis: 90vw !important;
    width: 90vw !important;
    min-width: 90vw !important;
    min-height: 168px !important;
  }

  .signature-media,
  .signature-item-card.feature-card .signature-media {
    min-height: 168px !important;
  }

  .signature-item-meta h4 {
    font-size: 19px !important;
  }

  .signature-item-meta p {
    font-size: 11px !important;
  }
}
@media (max-width: 767px) {
  .objects-showcase {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .objects-showcase .showcase-head {
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-bottom: 22px !important;
  }

  .objects-showcase .category-grid {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(0, 82vw) !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 2px 18px 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    align-items: stretch !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-left: 18px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .objects-showcase .category-grid::-webkit-scrollbar {
    display: none !important;
  }

  .objects-showcase .category-card {
    position: relative !important;
    display: block !important;
    min-width: 0 !important;
    height: 418px !important;
    padding: 0 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    background: #15110d !important;
    border: 1px solid rgba(126, 91, 45, .12) !important;
    box-shadow: 0 16px 36px rgba(44, 28, 9, .13) !important;
    scroll-snap-align: start !important;
  }

  .objects-showcase .product-visual {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    background:
      radial-gradient(circle at 50% 42%, rgba(211,177,109,.18), transparent 34%),
      linear-gradient(180deg, #fffaf1 0%, #f3ebdf 100%) !important;
  }

  .objects-showcase .product-visual::before {
    inset: 16px !important;
    border-radius: 18px !important;
    border-color: rgba(126, 91, 45, .08) !important;
  }

  .objects-showcase .product-visual::after {
    bottom: 17% !important;
    height: 7% !important;
    opacity: .82 !important;
  }

  .objects-showcase .product-hover-photo {
    display: none !important;
  }

  .objects-showcase .bagua-mark {
    right: 14px !important;
    top: 14px !important;
    width: 52px !important;
    height: 52px !important;
    opacity: .08 !important;
  }

  .objects-showcase .bracelet-object {
    width: 208px !important;
    height: 208px !important;
    transform: translate(-50%, -46%) scale(.8) rotateX(58deg) rotateZ(-16deg) !important;
  }

  .objects-showcase .necklace-object .chain {
    height: 68% !important;
    top: -20px !important;
  }

  .objects-showcase .necklace-object .pendant {
    width: 82px !important;
    height: 82px !important;
    border-width: 5px !important;
  }

  .objects-showcase .necklace-object .pendant::before {
    inset: -12px !important;
  }

  .objects-showcase .necklace-object .pendant span {
    font-size: 34px !important;
  }

  .objects-showcase .soft-koi {
    width: 108px !important;
    height: 64px !important;
    left: 8% !important;
    bottom: 16% !important;
  }

  .objects-showcase .talisman-object {
    width: 102px !important;
    height: 168px !important;
    border-radius: 8px !important;
    transform: translate(-50%, -52%) rotate(-7deg) !important;
    box-shadow: 0 18px 30px rgba(90,58,23,.14), inset 0 0 0 6px rgba(126,31,25,.10) !important;
  }

  .objects-showcase .talisman-object::before {
    top: 28px !important;
    left: 16px !important;
    right: 16px !important;
  }

  .objects-showcase .talisman-object::after {
    bottom: 28px !important;
    left: 16px !important;
    right: 16px !important;
  }

  .objects-showcase .talisman-object span {
    top: 42px !important;
    font-size: 30px !important;
  }

  .objects-showcase .talisman-object b {
    top: 80px !important;
    font-size: 24px !important;
  }

  .objects-showcase .talisman-object em {
    bottom: 40px !important;
    font-size: 21px !important;
  }

  .objects-showcase .phone-object {
    width: 108px !important;
    height: 182px !important;
    border-radius: 24px !important;
    transform: translate(-50%, -51%) rotate(8deg) !important;
    box-shadow: 0 18px 32px rgba(90,58,23,.15), inset 0 1px 0 rgba(255,255,255,.15) !important;
  }

  .objects-showcase .phone-object span {
    left: 14px !important;
    top: 14px !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 9px !important;
  }

  .objects-showcase .phone-object b {
    width: 58px !important;
    height: 58px !important;
    font-size: 28px !important;
  }

  .objects-showcase .phone-object em {
    bottom: 16px !important;
    width: 34px !important;
    height: 4px !important;
  }

  .objects-showcase .product-info {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 88px 18px 18px !important;
    min-height: 0 !important;
    background: linear-gradient(180deg, rgba(10, 8, 6, 0) 0%, rgba(10, 8, 6, .18) 18%, rgba(10, 8, 6, .56) 54%, rgba(10, 8, 6, .88) 100%) !important;
    border: 0 !important;
    pointer-events: none !important;
  }

  .objects-showcase .product-info::before,
  .objects-showcase .product-info::after,
  .objects-showcase .product-info h3::before,
  .objects-showcase .product-info h3::after {
    display: none !important;
    content: none !important;
  }

  .objects-showcase .product-info h3 {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff7ee !important;
    font-size: clamp(20px, 6vw, 27px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.035em !important;
    white-space: normal !important;
    text-shadow: 0 3px 12px rgba(0,0,0,.24) !important;
  }

  .objects-showcase .category-card:nth-child(4) .product-info h3 {
    font-size: clamp(18px, 5.4vw, 24px) !important;
    line-height: 1.04 !important;
  }

  .objects-showcase .product-info p {
    display: none !important;
  }

  .objects-showcase .product-info .shop-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 10px !important;
    padding: 0 !important;
    color: rgba(255, 248, 240, .96) !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
    pointer-events: auto !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .objects-showcase .product-info .shop-link::after {
    display: inline-block !important;
    content: "→" !important;
    margin-left: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 430px) {
  .objects-showcase .category-grid {
    grid-auto-columns: minmax(0, 84vw) !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    scroll-padding-left: 16px !important;
  }

  .objects-showcase .category-card {
    height: 392px !important;
    border-radius: 20px !important;
  }

  .objects-showcase .product-info {
    padding: 82px 16px 16px !important;
  }

  .objects-showcase .product-info h3 {
    font-size: clamp(19px, 6.5vw, 24px) !important;
  }

  .objects-showcase .category-card:nth-child(4) .product-info h3 {
    font-size: clamp(17px, 5.8vw, 21px) !important;
  }
}
@media (max-width: 767px) {
  .objects-showcase .category-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 4px 18px 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-left: 18px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .objects-showcase .category-grid::-webkit-scrollbar {
    display: none !important;
  }

  .objects-showcase .category-card {
    flex: 0 0 74vw !important;
    width: 74vw !important;
    min-width: 74vw !important;
    max-width: 74vw !important;
    height: 82vw !important;
    min-height: 360px !important;
    max-height: 430px !important;
    display: block !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    scroll-snap-align: start !important;
    box-shadow: 0 12px 28px rgba(32, 22, 12, 0.12) !important;
  }

  .objects-showcase .product-visual {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    min-height: 100% !important;
    border-radius: 0 !important;
  }

  .objects-showcase .product-visual::before {
    inset: 14px !important;
    border-radius: 16px !important;
  }

  .objects-showcase .product-visual::after {
    bottom: 16% !important;
    left: 16% !important;
    width: 68% !important;
    height: 8% !important;
    filter: blur(18px) !important;
    opacity: 0.78 !important;
  }

  .objects-showcase .bracelet-object {
    width: 235px !important;
    height: 235px !important;
    transform: translate(-50%, -47%) scale(.88) rotateX(58deg) rotateZ(-16deg) !important;
  }

  .objects-showcase .necklace-object .chain {
    height: 74% !important;
    top: -28px !important;
  }

  .objects-showcase .necklace-object .pendant {
    width: 92px !important;
    height: 92px !important;
  }

  .objects-showcase .necklace-object .pendant span {
    font-size: 38px !important;
  }

  .objects-showcase .talisman-object {
    width: 116px !important;
    height: 186px !important;
    transform: translate(-50%, -53%) rotate(-7deg) !important;
  }

  .objects-showcase .phone-object {
    width: 122px !important;
    height: 204px !important;
    transform: translate(-50%, -52%) rotate(8deg) !important;
  }

  .objects-showcase .phone-object b {
    width: 64px !important;
    height: 64px !important;
    font-size: 31px !important;
  }

  .objects-showcase .product-info {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 5 !important;
    padding: 96px 16px 16px !important;
    min-height: 0 !important;
    background: linear-gradient(180deg, rgba(8, 7, 6, 0) 0%, rgba(8, 7, 6, 0.16) 18%, rgba(8, 7, 6, 0.58) 58%, rgba(8, 7, 6, 0.9) 100%) !important;
    border: 0 !important;
    pointer-events: none !important;
  }

  .objects-showcase .product-info::before,
.objects-showcase .product-info::after,
.objects-showcase .product-info h3::before,
.objects-showcase .product-info h3::after,
.objects-showcase .bagua-mark {
    display: none !important;
    content: none !important;
  }

  .objects-showcase .product-info h3 {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    color: #fff8ef !important;
    font-size: clamp(18px, 5.8vw, 24px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    white-space: normal !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22) !important;
  }

  .objects-showcase .category-card:nth-child(4) .product-info h3 {
    font-size: clamp(17px, 5.3vw, 22px) !important;
  }

  .objects-showcase .product-info p {
    display: none !important;
  }

  .objects-showcase .product-info .shop-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 8px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #fffdfa !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    pointer-events: auto !important;
  }

  .objects-showcase .product-info .shop-link::after {
    content: "›" !important;
    display: inline-block !important;
    font-size: 16px !important;
    line-height: 1 !important;
    margin-top: -1px !important;
  }
}

@media (max-width: 430px) {
  .objects-showcase .category-grid {
    gap: 12px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    scroll-padding-left: 16px !important;
  }

  .objects-showcase .category-card {
    flex-basis: 76vw !important;
    width: 76vw !important;
    min-width: 76vw !important;
    max-width: 76vw !important;
    height: 86vw !important;
    min-height: 350px !important;
  }

  .objects-showcase .product-info {
    padding: 90px 15px 15px !important;
  }

  .objects-showcase .bracelet-object {
    width: 220px !important;
    height: 220px !important;
  }

  .objects-showcase .necklace-object .pendant {
    width: 86px !important;
    height: 86px !important;
  }

  .objects-showcase .talisman-object {
    width: 108px !important;
    height: 176px !important;
  }

  .objects-showcase .phone-object {
    width: 116px !important;
    height: 194px !important;
  }
}
@media (max-width: 767px) {
  .objects-showcase .category-grid {
    gap: 14px !important;
    padding: 10px 20px 6px !important;
    scroll-padding-left: 20px !important;
    align-items: stretch !important;
  }

  .objects-showcase .category-card {
    flex: 0 0 72vw !important;
    width: 72vw !important;
    min-width: 72vw !important;
    max-width: 72vw !important;
    height: 118vw !important;
    min-height: 430px !important;
    max-height: 510px !important;
    border-radius: 18px !important;
    background: #ebe4d7 !important;
    box-shadow: 0 14px 34px rgba(40, 26, 10, 0.08) !important;
  }

  .objects-showcase .product-visual {
    position: absolute !important;
    inset: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .objects-showcase .product-visual::before {
    content: none !important;
    display: none !important;
  }

  .objects-showcase .product-visual::after {
    display: none !important;
    content: none !important;
  }

  .objects-showcase .product-hover-photo {
    z-index: 1 !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    background-image:
      linear-gradient(180deg, rgba(16,12,8,0.02) 0%, rgba(16,12,8,0.04) 52%, rgba(16,12,8,0.54) 100%),
      var(--hover-image) !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .objects-showcase .category-card:nth-child(1) .product-hover-photo { background-position: center 42% !important; }
  .objects-showcase .category-card:nth-child(2) .product-hover-photo { background-position: center 40% !important; }
  .objects-showcase .category-card:nth-child(3) .product-hover-photo { background-position: center 34% !important; }
  .objects-showcase .category-card:nth-child(4) .product-hover-photo { background-position: center 34% !important; }

  .objects-showcase .bracelet-object,
  .objects-showcase .necklace-object,
  .objects-showcase .talisman-object,
  .objects-showcase .phone-object,
  .objects-showcase .bagua-mark,
  .objects-showcase .soft-koi {
    display: none !important;
    opacity: 0 !important;
  }

  .objects-showcase .product-info {
    position: absolute !important;
    z-index: 4 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 90px 14px 18px !important;
    background: linear-gradient(180deg, rgba(10,8,7,0) 0%, rgba(10,8,7,0.08) 24%, rgba(10,8,7,0.62) 68%, rgba(10,8,7,0.90) 100%) !important;
    border: 0 !important;
  }

  .objects-showcase .product-info::before,
  .objects-showcase .product-info::after {
    content: none !important;
    display: none !important;
  }

  .objects-showcase .product-info h3 {
    color: #fffdfa !important;
    margin: 0 0 8px !important;
    font-size: clamp(17px, 6.2vw, 26px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.035em !important;
    max-width: 92% !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.18) !important;
  }

  .objects-showcase .category-card:nth-child(4) .product-info h3 {
    font-size: clamp(15px, 5.5vw, 22px) !important;
    line-height: 0.98 !important;
    max-width: 85% !important;
  }

  .objects-showcase .product-info p {
    display: none !important;
  }

  .objects-showcase .product-info .shop-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    color: #fffdfa !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.24em !important;
    text-transform: uppercase !important;
    border: 0 !important;
    border-bottom: 2px solid rgba(255,253,250,.9) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .objects-showcase .product-info .shop-link::after {
    content: '›' !important;
    font-size: 15px !important;
    line-height: 1 !important;
    margin-top: -1px !important;
  }
}

@media (max-width: 430px) {
  .objects-showcase .category-grid {
    padding-left: 18px !important;
    padding-right: 18px !important;
    scroll-padding-left: 18px !important;
  }

  .objects-showcase .category-card {
    flex-basis: 74vw !important;
    width: 74vw !important;
    min-width: 74vw !important;
    max-width: 74vw !important;
    height: 122vw !important;
    min-height: 420px !important;
  }

  .objects-showcase .product-info {
    padding: 98px 14px 18px !important;
  }

  .objects-showcase .product-info h3 {
    font-size: clamp(17px, 6vw, 24px) !important;
  }
}
@media (max-width: 767px) {
  .signature-showcase {
    margin-top: 52px !important;
    padding-top: 24px !important;
    overflow: hidden !important;
  }

  .signature-head {
    max-width: none !important;
    padding: 0 20px !important;
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .signature-kicker {
    margin-bottom: 10px !important;
    font-size: 11px !important;
    letter-spacing: .28em !important;
  }

  .signature-head h3 {
    font-size: clamp(30px, 8.8vw, 42px) !important;
    line-height: 1.03 !important;
    letter-spacing: -.05em !important;
    max-width: 9.5em !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .signature-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: auto !important;
    margin: 0 -20px 18px !important;
    padding: 0 20px 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    scroll-padding-left: 20px !important;
  }

  .signature-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .signature-tab {
    flex: 0 0 auto !important;
    min-height: 36px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
    letter-spacing: .16em !important;
    white-space: nowrap !important;
    border: 1px solid rgba(126,91,45,.12) !important;
    border-radius: 999px !important;
    background: rgba(255,252,246,.74) !important;
  }

  .signature-tab.is-active {
    background: rgba(245,235,216,.92) !important;
  }

  .signature-panel {
    overflow: visible !important;
  }

  .signature-grid {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: stretch !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
    padding: 0 20px 10px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    scrollbar-width: none !important;
    scroll-padding-left: 20px !important;
  }

  .signature-grid::-webkit-scrollbar {
    display: none !important;
  }

  .signature-item-card {
    position: relative !important;
    flex: 0 0 74vw !important;
    width: 74vw !important;
    min-width: 74vw !important;
    max-width: 74vw !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    scroll-snap-align: start !important;
  }

  .signature-media,
  .signature-item-card.feature-card .signature-media {
    position: relative !important;
    height: 86vw !important;
    min-height: 340px !important;
    max-height: 470px !important;
    border: 1px solid rgba(126,91,45,.12) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 16px 36px rgba(56, 38, 17, .08) !important;
    background: linear-gradient(180deg, #f6f1ea 0%, #ece4d9 100%) !important;
    border-right: 1px solid rgba(126,91,45,.12) !important;
    transform: none !important;
  }

  .signature-media::after {
    content: "♡" !important;
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 34px !important;
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.88) !important;
    color: rgba(37, 29, 18, .8) !important;
    font-size: 18px !important;
    line-height: 1 !important;
    z-index: 5 !important;
    box-shadow: 0 8px 18px rgba(48, 33, 17, .10) !important;
  }

  .signature-item-meta {
    display: block !important;
    min-width: 0 !important;
    padding: 12px 4px 0 !important;
  }

  .signature-item-meta h4 {
    margin: 0 0 8px !important;
    color: #2b231a !important;
    font-size: clamp(16px, 5.4vw, 24px) !important;
    line-height: 1.18 !important;
    letter-spacing: -.03em !important;
  }

  .signature-item-meta p {
    margin: 0 0 10px !important;
    color: rgba(59, 46, 32, .78) !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  .signature-price {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    margin-top: 0 !important;
  }

  .signature-price strong {
    color: #916c34 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .signature-price span {
    color: rgba(145,108,52,.82) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
  }
}

@media (max-width: 430px) {
  .signature-item-card {
    flex-basis: 76vw !important;
    width: 76vw !important;
    min-width: 76vw !important;
    max-width: 76vw !important;
  }

  .signature-media,
  .signature-item-card.feature-card .signature-media {
    height: 92vw !important;
    min-height: 330px !important;
  }

  .signature-item-meta h4 {
    font-size: clamp(15px, 5.8vw, 21px) !important;
  }
}
@media (max-width: 767px) {
  .signature-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: min(390px, calc(100% - 36px)) !important;
    margin: 0 auto 20px !important;
    padding: 0 !important;
    overflow: visible !important;
    scrollbar-width: none !important;
  }

  .signature-tab {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 999px !important;
    font-size: 10.5px !important;
    letter-spacing: .16em !important;
    white-space: nowrap !important;
  }

  #tab-phonecases {
    font-size: 0 !important;
    letter-spacing: 0 !important;
  }

  #tab-phonecases::before {
    content: "RITUAL OBJECTS" !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .16em !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 390px) {
  .signature-tabs {
    width: min(360px, calc(100% - 32px)) !important;
    gap: 8px !important;
  }

  .signature-tab {
    min-height: 40px !important;
    padding: 0 8px !important;
    font-size: 9.5px !important;
    letter-spacing: .13em !important;
  }

  #tab-phonecases::before {
    font-size: 9.5px !important;
    letter-spacing: .13em !important;
  }
}
@media (max-width: 767px) {
  .signature-media::after,
  .signature-item-card.feature-card .signature-media::after {
    display: none !important;
    content: none !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card {
    cursor: default !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(n + 2) {
    cursor: pointer !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(n + 2) .signature-media {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(2) .signature-media {
    background-image:
      linear-gradient(180deg, rgba(16,12,8,0.02) 0%, rgba(16,12,8,0.04) 55%, rgba(16,12,8,0.20) 100%),
      url("../product-detail/img/wood_gallery_01_main.png") !important;
    background-position: center 48% !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(3) .signature-media {
    background-image:
      linear-gradient(180deg, rgba(16,12,8,0.02) 0%, rgba(16,12,8,0.04) 55%, rgba(16,12,8,0.20) 100%),
      url("../product-detail/img/water_gallery_01_main.png") !important;
    background-position: center 48% !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(4) .signature-media {
    background-image:
      linear-gradient(180deg, rgba(16,12,8,0.02) 0%, rgba(16,12,8,0.04) 55%, rgba(16,12,8,0.20) 100%),
      url("../product-detail/img/fire_gallery_01_main.png") !important;
    background-position: center 48% !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(n + 2) .signature-media > * {
    display: none !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(n + 2) .signature-item-meta h4 {
    font-size: clamp(16px, 5.2vw, 22px) !important;
    line-height: 1.15 !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(n + 2) .signature-price strong {
    color: #8b6533 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(n + 2) .signature-price span {
    color: rgba(138, 101, 51, .78) !important;
  }
}

@media (max-width: 767px) {
  .signature-media::after,
  .signature-item-card.feature-card .signature-media::after {
    display: none !important;
    content: none !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(2) .signature-media {
    background-image:
      linear-gradient(180deg, rgba(16,12,8,.02) 0%, rgba(16,12,8,.04) 55%, rgba(16,12,8,.18) 100%),
      url("../product-detail/img/wood_gallery_01_main.png") !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(3) .signature-media {
    background-image:
      linear-gradient(180deg, rgba(16,12,8,.02) 0%, rgba(16,12,8,.04) 55%, rgba(16,12,8,.18) 100%),
      url("../product-detail/img/water_gallery_01_main.png") !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(4) .signature-media {
    background-image:
      linear-gradient(180deg, rgba(16,12,8,.02) 0%, rgba(16,12,8,.04) 55%, rgba(16,12,8,.18) 100%),
      url("../product-detail/img/fire_gallery_01_main.png") !important;
  }
}
.signature-real-product-card {
  cursor: pointer;
}

.signature-real-product-media {
  background: linear-gradient(180deg, #fcfbf8 0%, #f5f3ee 100%) !important;
}

.signature-real-product-media > :not(.signature-real-product-image) {
  display: none !important;
}

.signature-real-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.signature-real-product-card:hover .signature-real-product-image {
  transform: none;
}

@media (max-width: 767px) {
  .signature-real-product-media::after,
  .signature-real-product-media::before {
    pointer-events: none !important;
  }

  .signature-real-product-image {
    object-fit: cover;
    object-position: center center;
  }
}
.signature-panel[data-panel="bracelets"] .signature-item-card.feature-card > .signature-item-meta {
  display: none !important;
}

.signature-panel[data-panel="bracelets"] .signature-real-product-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.signature-panel[data-panel="bracelets"] .signature-real-product-media {
  background: transparent !important;
}

.signature-panel[data-panel="bracelets"] .signature-real-product-media > :not(.signature-real-product-image) {
  display: none !important;
}

@media (min-width: 768px) {
  .signature-panel[data-panel="bracelets"] .signature-grid {
    display: flex !important;
    grid-template-columns: none !important;
    grid-auto-flow: unset !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: clamp(22px, 2vw, 30px) !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(126, 91, 45, .34) transparent !important;
    padding-bottom: 16px !important;
    cursor: grab;
  }

  .signature-panel[data-panel="bracelets"] .signature-grid.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .signature-panel[data-panel="bracelets"] .signature-grid::-webkit-scrollbar {
    height: 6px !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-grid::-webkit-scrollbar-track {
    background: transparent !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-grid::-webkit-scrollbar-thumb {
    background: rgba(126, 91, 45, .26) !important;
    border-radius: 999px !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card {
    flex: 0 0 calc((100% - 90px) / 4) !important;
    width: calc((100% - 90px) / 4) !important;
    min-width: calc((100% - 90px) / 4) !important;
    max-width: calc((100% - 90px) / 4) !important;
    scroll-snap-align: start !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card.feature-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-media,
  .signature-panel[data-panel="bracelets"] .signature-item-card.feature-card .signature-media,
  .signature-panel[data-panel="bracelets"] .signature-real-product-media {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card.feature-card .signature-media {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .signature-panel[data-panel="bracelets"] .signature-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
    scrollbar-width: none !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-grid::-webkit-scrollbar {
    display: none !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card.feature-card {
    min-height: 0 !important;
    height: auto !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card.feature-card > .signature-item-meta {
    display: none !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-media,
  .signature-panel[data-panel="bracelets"] .signature-item-card.feature-card .signature-media,
  .signature-panel[data-panel="bracelets"] .signature-real-product-media {
    overflow: hidden !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-real-product-image {
    object-fit: cover !important;
    object-position: center center !important;
  }
}
.signature-panel[data-panel="bracelets"] .signature-item-card.feature-card > .signature-item-meta,
.signature-panel[data-panel="bracelets"] .signature-item-card.feature-card .bracelet-object,
.signature-panel[data-panel="bracelets"] .signature-item-card.feature-card .bagua-mark,
.signature-panel[data-panel="bracelets"] .signature-item-card.feature-card .soft-koi {
  display: none !important;
}

.signature-panel[data-panel="bracelets"] .signature-item-card.feature-card .signature-feature-full-media {
  background: transparent !important;
  border-top: 0 !important;
  overflow: hidden !important;
}

.signature-panel[data-panel="bracelets"] .signature-feature-cover {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (min-width: 768px) {
  .signature-panel[data-panel="bracelets"] .signature-grid {
    align-items: stretch !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card.feature-card {
    align-self: stretch !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .signature-panel[data-panel="bracelets"] .signature-item-card.feature-card .signature-feature-full-media {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    aspect-ratio: auto !important;
  }
}

@media (max-width: 767px) {
  .signature-panel[data-panel="bracelets"] .signature-item-card.feature-card .signature-feature-full-media {
    height: 100% !important;
    min-height: 100% !important;
    aspect-ratio: auto !important;
  }
}
.signature-panel .signature-item-card.feature-card > .signature-item-meta,
.signature-panel .signature-item-card.feature-card .bracelet-object,
.signature-panel .signature-item-card.feature-card .bagua-mark,
.signature-panel .signature-item-card.feature-card .soft-koi {
  display: none !important;
}

.signature-panel .signature-item-card.feature-card .signature-feature-full-media {
  background: transparent !important;
  border-top: 0 !important;
  overflow: hidden !important;
}

.signature-panel .signature-feature-cover {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (min-width: 768px) {
  .signature-panel .signature-grid {
    display: flex !important;
    grid-template-columns: none !important;
    grid-auto-flow: unset !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: clamp(22px, 2vw, 30px) !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(126, 91, 45, .34) transparent !important;
    padding-bottom: 16px !important;
    cursor: grab;
  }

  .signature-panel .signature-grid.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .signature-panel .signature-grid::-webkit-scrollbar {
    height: 6px !important;
  }

  .signature-panel .signature-grid::-webkit-scrollbar-track {
    background: transparent !important;
  }

  .signature-panel .signature-grid::-webkit-scrollbar-thumb {
    background: rgba(126, 91, 45, .26) !important;
    border-radius: 999px !important;
  }

  .signature-panel .signature-item-card {
    flex: 0 0 calc((100% - 90px) / 4) !important;
    width: calc((100% - 90px) / 4) !important;
    min-width: calc((100% - 90px) / 4) !important;
    max-width: calc((100% - 90px) / 4) !important;
    scroll-snap-align: start !important;
  }

  .signature-panel .signature-media,
  .signature-panel .signature-item-card.feature-card .signature-media,
  .signature-panel .signature-feature-full-media,
  .signature-panel .signature-real-product-media {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .signature-panel .signature-item-card.feature-card .signature-media {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .signature-panel .signature-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
    scrollbar-width: none !important;
  }

  .signature-panel .signature-grid::-webkit-scrollbar {
    display: none !important;
  }

  .signature-panel .signature-item-card.feature-card > .signature-item-meta {
    display: none !important;
  }

  .signature-panel .signature-feature-full-media,
  .signature-panel .signature-item-card.feature-card .signature-feature-full-media {
    height: 100% !important;
    min-height: 100% !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
  }

  .signature-panel .signature-feature-cover {
    object-fit: cover !important;
    object-position: center center !important;
  }
}
@media (min-width: 768px) {
  .signature-panel .signature-grid {
    align-items: flex-start !important;
  }

  .signature-panel .signature-item-card.feature-card {
    align-self: flex-start !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .signature-panel .signature-item-card.feature-card .signature-feature-full-media,
  .signature-panel .signature-item-card.feature-card .signature-media {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .signature-panel .signature-item-card.feature-card .signature-feature-cover {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (max-width: 767px) {
  .signature-panel .signature-item-card.feature-card {
    height: auto !important;
    min-height: 0 !important;
  }

  .signature-panel .signature-item-card.feature-card .signature-feature-full-media,
  .signature-panel .signature-item-card.feature-card .signature-media {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }
}
@media (min-width: 768px) {
  .signature-panel .signature-grid {
    align-items: stretch !important;
  }

  .signature-panel .signature-item-card.feature-card {
    align-self: stretch !important;
    height: auto !important;
    min-height: 100% !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .signature-panel .signature-item-card.feature-card .signature-feature-full-media,
  .signature-panel .signature-item-card.feature-card .signature-media.visual-dark,
  .signature-panel .signature-item-card.feature-card .signature-media {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .signature-panel .signature-item-card.feature-card .signature-feature-cover {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (max-width: 767px) {
  .signature-panel .signature-item-card.feature-card {
    align-self: stretch !important;
    height: auto !important;
    min-height: 100% !important;
    display: flex !important;
  }

  .signature-panel .signature-item-card.feature-card .signature-feature-full-media,
  .signature-panel .signature-item-card.feature-card .signature-media.visual-dark,
  .signature-panel .signature-item-card.feature-card .signature-media {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .signature-panel .signature-item-card.feature-card .signature-feature-cover {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}
.objects-showcase .product-normal-photo {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  pointer-events: none !important;
  transition: transform .55s ease, filter .45s ease;
}

.objects-showcase .product-hover-swap:hover .product-normal-photo,
.objects-showcase .product-hover-swap:focus-visible .product-normal-photo {
  transform: scale(1.02);
  filter: brightness(.88);
}

.objects-showcase .product-visual:has(.product-normal-photo) {
  background: #15110d !important;
}

.objects-showcase .product-visual:has(.product-normal-photo)::before,
.objects-showcase .product-visual:has(.product-normal-photo)::after {
  display: none !important;
  content: none !important;
}

.objects-showcase .product-visual:has(.product-normal-photo) .bagua-mark,
.objects-showcase .product-visual:has(.product-normal-photo) .bracelet-object,
.objects-showcase .product-visual:has(.product-normal-photo) .necklace-object,
.objects-showcase .product-visual:has(.product-normal-photo) .talisman-object,
.objects-showcase .product-visual:has(.product-normal-photo) .phone-object,
.objects-showcase .product-visual:has(.product-normal-photo) .soft-koi {
  display: none !important;
}

.objects-showcase .product-hover-photo {
  z-index: 8 !important;
}

@media (max-width: 767px) {
  .objects-showcase .product-visual:has(.product-normal-photo) {
    background: #15110d !important;
  }

  .objects-showcase .product-normal-photo {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .objects-showcase .category-card:nth-child(1) .product-normal-photo { object-position: center 52% !important; }
  .objects-showcase .category-card:nth-child(2) .product-normal-photo { object-position: center 50% !important; }
  .objects-showcase .category-card:nth-child(3) .product-normal-photo { object-position: center 50% !important; }
  .objects-showcase .category-card:nth-child(4) .product-normal-photo { object-position: center 52% !important; }
}
.objects-showcase .product-visual {
  border: none !important;
  box-shadow: none !important;
}

.objects-showcase .product-visual::before,
.objects-showcase .product-visual::after {
  content: none !important;
  display: none !important;
}
.mobile-nav-toggle,
.mobile-search-toggle,
.mobile-panel-backdrop,
.mobile-drawer {
  display: none !important;
}

.footer-accordion-toggle {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(211,177,109,.92);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: left;
}

.footer-accordion-toggle i {
  display: none;
  font-style: normal;
}

.footer-column-links {
  display: block;
}

@media (max-width: 900px) {
  body.mobile-panel-open {
    overflow: hidden !important;
  }

  .header,
  .header.is-scrolled {
    left: 16px !important;
    right: 16px !important;
    top: 24px !important;
    height: 60px !important;
    padding: 0 12px !important;
    display: grid !important;
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px 34px !important;
    align-items: center !important;
    gap: 7px !important;
    border-radius: 18px !important;
    background: rgba(7, 12, 12, .88) !important;
    border: 1px solid rgba(211, 177, 109, .16) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
  }

  .header.is-scrolled {
    top: 12px !important;
    height: 54px !important;
  }

  .mobile-nav-toggle,
  .mobile-search-toggle {
    display: grid !important;
    place-items: center !important;
    width: 34px !important;
    height: 34px !important;
    color: rgba(222, 192, 132, .96) !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
  }

  .mobile-nav-toggle {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .mobile-search-toggle {
    grid-column: 2 !important;
    justify-self: start !important;
  }

  .mobile-nav-toggle span {
    display: block !important;
    width: 20px !important;
    height: 1.7px !important;
    margin: 2.8px 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
    box-shadow: 0 1px 7px rgba(0,0,0,.24) !important;
  }

  .mobile-search-toggle svg {
    width: 21px !important;
    height: 21px !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    fill: none !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .header .brand {
    grid-column: 3 !important;
    justify-self: center !important;
    width: min(43vw, 190px) !important;
    min-width: 0 !important;
    max-width: 190px !important;
  }

  .header .brand img,
  .header.is-scrolled .brand img {
    width: 100% !important;
    max-height: 38px !important;
    object-fit: contain !important;
  }

  .header .nav {
    display: none !important;
  }

  .header-icons {
    display: contents !important;
  }

  .desktop-search-btn {
    display: none !important;
  }

  .mobile-panel-backdrop {
    display: block !important;
    position: fixed !important;
    z-index: 10000 !important;
    inset: 0 !important;
    background: rgba(0,0,0,.42) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity .28s ease !important;
  }

  .mobile-panel-backdrop.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .mobile-drawer {
    display: block !important;
    position: fixed !important;
    z-index: 10001 !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: min(86vw, 360px) !important;
    padding: 22px 22px 28px !important;
    background: #14110d !important;
    color: rgba(250,238,211,.92) !important;
    border-right: 1px solid rgba(211,177,109,.18) !important;
    box-shadow: 22px 0 46px rgba(0,0,0,.34) !important;
    transform: translateX(-105%) !important;
    transition: transform .32s cubic-bezier(.2,.72,.2,1) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .mobile-drawer.is-open {
    transform: translateX(0) !important;
  }

  .mobile-search-drawer {
    width: min(92vw, 420px) !important;
  }

  .mobile-drawer__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    padding-bottom: 24px !important;
    border-bottom: 1px solid rgba(211,177,109,.14) !important;
  }

  .mobile-drawer__head img {
    width: 185px !important;
    max-width: 70% !important;
    height: auto !important;
    display: block !important;
  }

  .mobile-drawer__head strong {
    color: #f6ebcf !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
  }

  .mobile-drawer-close {
    width: 36px !important;
    height: 36px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211,177,109,.2) !important;
    background: rgba(255,255,255,.035) !important;
    color: rgba(250,238,211,.92) !important;
    font-size: 26px !important;
    line-height: 1 !important;
  }

  .mobile-drawer__links {
    display: grid !important;
    gap: 0 !important;
    padding: 18px 0 !important;
  }

  .mobile-drawer__links a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 48px !important;
    color: rgba(250,238,211,.92) !important;
    text-decoration: none !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(211,177,109,.10) !important;
  }

  .mobile-drawer__links a::after {
    content: "→" !important;
    color: rgba(211,177,109,.82) !important;
  }

  .mobile-drawer__cta a,
  .mobile-search-form button {
    display: inline-grid !important;
    place-items: center !important;
    min-height: 44px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #dec084 0%, #cfa860 100%) !important;
    color: #171108 !important;
    text-decoration: none !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .13em !important;
    text-transform: uppercase !important;
    border: 0 !important;
  }

  .mobile-search-form {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .mobile-search-form input {
    min-width: 0 !important;
    height: 44px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211,177,109,.22) !important;
    background: rgba(255,255,255,.055) !important;
    color: rgba(250,238,211,.96) !important;
    outline: none !important;
  }

  .mobile-search-form input::placeholder {
    color: rgba(250,238,211,.46) !important;
  }

  .mobile-search-suggestions {
    display: grid !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .mobile-search-suggestions a {
    color: rgba(250,238,211,.86) !important;
    text-decoration: none !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(211,177,109,.10) !important;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 34px 20px 22px !important;
  }

  .footer-shell {
    max-width: 100% !important;
  }

  .footer-top {
    display: block !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(211,177,109,.12) !important;
  }

  .footer-brand {
    text-align: center !important;
    margin-bottom: 24px !important;
  }

  .footer-brand__logo {
    display: inline-block !important;
  }

  .footer-brand__logo img {
    width: min(58vw, 220px) !important;
    margin: 0 auto !important;
  }

  .footer-brand p {
    max-width: 320px !important;
    margin: 16px auto 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: rgba(239,225,195,.66) !important;
  }

  .footer-links {
    display: block !important;
  }

  .footer-column {
    border-top: 1px solid rgba(211,177,109,.14) !important;
  }

  .footer-column:last-child {
    border-bottom: 1px solid rgba(211,177,109,.14) !important;
  }

  .footer-accordion-toggle {
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: rgba(222,192,132,.96) !important;
    cursor: pointer !important;
  }

  .footer-accordion-toggle i {
    display: block !important;
    font-size: 18px !important;
    color: rgba(250,238,211,.72) !important;
    transition: transform .22s ease !important;
  }

  .footer-column.is-open .footer-accordion-toggle i {
    transform: rotate(45deg) !important;
  }

  .footer-column-links {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    padding: 0 !important;
    transition: max-height .28s ease, opacity .22s ease, padding .22s ease !important;
  }

  .footer-column.is-open .footer-column-links {
    max-height: 260px !important;
    opacity: 1 !important;
    padding: 0 0 16px !important;
  }

  .footer-column-links a {
    display: block !important;
    padding: 5px 0 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .footer-bottom {
    padding-top: 18px !important;
    align-items: center !important;
    text-align: center !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .footer-meta {
    justify-content: center !important;
    gap: 14px !important;
  }
}
@media (max-width: 767px) {
  .objects-showcase .product-hover-swap.is-mobile-hover .product-hover-photo {
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .objects-showcase .product-hover-swap.is-mobile-hover .product-normal-photo {
    transform: scale(1.02) !important;
    filter: brightness(.88) !important;
  }

  .objects-showcase .product-hover-swap.is-mobile-hover .bracelet-object,
  .objects-showcase .product-hover-swap.is-mobile-hover .necklace-object,
  .objects-showcase .product-hover-swap.is-mobile-hover .talisman-object,
  .objects-showcase .product-hover-swap.is-mobile-hover .phone-object,
  .objects-showcase .product-hover-swap.is-mobile-hover .bagua-mark,
  .objects-showcase .product-hover-swap.is-mobile-hover .soft-koi {
    opacity: 0 !important;
  }
}
@media (max-width: 767px) {
  .journal-preview {
    padding: 42px 16px 58px !important;
    overflow: hidden !important;
  }

  .journal-shell {
    width: 100% !important;
    max-width: 100% !important;
  }

  .journal-head {
    margin: 0 auto 22px !important;
    padding: 0 4px !important;
  }

  .journal-head h2 {
    font-size: clamp(31px, 9vw, 42px) !important;
    line-height: 1.02 !important;
    white-space: normal !important;
  }

  .journal-grid {
    position: relative !important;
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    min-height: 570px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .journal-card {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transition: top .34s ease, transform .34s ease, opacity .34s ease, filter .34s ease !important;
    will-change: top, transform !important;
  }

  .journal-card:nth-child(1) {
    top: 0 !important;
    z-index: 3 !important;
    transform: translateY(0) scale(1) !important;
  }

  .journal-card:nth-child(2) {
    top: 116px !important;
    z-index: 2 !important;
    transform: translateY(0) scale(.965) !important;
  }

  .journal-card:nth-child(3) {
    top: 232px !important;
    z-index: 1 !important;
    transform: translateY(0) scale(.93) !important;
  }

  .journal-card.is-active {
    top: 0 !important;
    z-index: 10 !important;
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .journal-card:not(.is-active) {
    opacity: .92 !important;
    filter: saturate(.9) brightness(.92) !important;
  }

  .journal-card a {
    min-height: 360px !important;
    height: 360px !important;
    padding: 24px 24px 24px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 18px 42px rgba(46, 31, 16, .18) !important;
  }

  .journal-card a::before {
    background: linear-gradient(180deg, rgba(12,10,8,.12) 0%, rgba(12,10,8,.20) 24%, rgba(12,10,8,.78) 100%) !important;
  }

  .journal-number {
    margin-bottom: 8px !important;
  }

  .journal-category {
    margin-bottom: 10px !important;
    font-size: 11px !important;
    letter-spacing: .2em !important;
  }

  .journal-card h3 {
    font-size: clamp(27px, 8vw, 37px) !important;
    line-height: 1.03 !important;
    letter-spacing: -.045em !important;
  }

  .journal-excerpt {
    margin-top: 14px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .journal-card em {
    margin-top: 18px !important;
    font-size: 11px !important;
    letter-spacing: .16em !important;
  }

  .journal-card:not(.is-active) em::after {
    content: "  Tap to preview" !important;
    opacity: .7 !important;
    letter-spacing: .08em !important;
    font-size: 10px !important;
  }

  .journal-all {
    margin-top: 18px !important;
    position: relative !important;
    z-index: 2 !important;
  }
}
@media (max-width: 900px) {
  .mobile-nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
  }

  .mobile-nav-toggle span {
    width: 16px !important;
    height: 1.15px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: rgba(224, 190, 118, .92) !important;
    box-shadow: none !important;
    opacity: .96 !important;
  }
}
@media (max-width: 900px) {
  body.mobile-panel-open {
    overflow: hidden !important;
  }

  .header {
    position: fixed !important;
    top: max(16px, calc(env(safe-area-inset-top, 0px) + 10px)) !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 9999 !important;

    height: 64px !important;
    min-height: 64px !important;
    padding: 0 18px !important;
    border-radius: 18px !important;

    display: grid !important;
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px 34px !important;
    align-items: center !important;
    gap: 10px !important;

    background: rgba(5, 10, 9, .92) !important;
    border: 1px solid rgba(211, 177, 109, .16) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header.is-scrolled {
    top: max(12px, calc(env(safe-area-inset-top, 0px) + 8px)) !important;
    height: 60px !important;
    min-height: 60px !important;
    padding: 0 17px !important;
    border-radius: 17px !important;
  }

  .header::before,
  .header::after {
    display: none !important;
    content: none !important;
  }

  .nav {
    display: none !important;
  }

  .brand {
    grid-column: 3 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 180px !important;
  }

  .brand img {
    display: block !important;
    width: auto !important;
    height: 34px !important;
    max-width: 180px !important;
    object-fit: contain !important;
  }

  .mobile-nav-toggle,
.mobile-search-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #d9b76a !important;
  }

  .mobile-nav-toggle {
    grid-column: 1 !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  .mobile-nav-toggle span {
    display: block !important;
    width: 17px !important;
    height: 1.4px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    margin: 0 !important;
    opacity: .92 !important;
  }

  .mobile-search-toggle {
    grid-column: 2 !important;
  }

  .mobile-search-toggle svg {
    width: 21px !important;
    height: 21px !important;
    stroke: currentColor !important;
    stroke-width: 1.75 !important;
    fill: none !important;
  }

  .header-icons {
    display: contents !important;
  }

  .desktop-search-btn {
    display: none !important;
  }

  .mobile-panel-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9997 !important;
    display: block !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background: rgba(0, 0, 0, .42) !important;
    transition: opacity .24s ease !important;
  }

  .mobile-panel-backdrop.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 9998 !important;
    width: min(86vw, 360px) !important;
    padding: max(22px, calc(env(safe-area-inset-top, 0px) + 18px)) 22px 26px !important;
    background: #120f0b !important;
    color: #f3e6c8 !important;
    box-shadow: 20px 0 50px rgba(0, 0, 0, .35) !important;
    transform: translateX(-104%) !important;
    transition: transform .28s ease !important;
    overflow-y: auto !important;
  }

  .mobile-search-drawer {
    width: min(92vw, 400px) !important;
  }

  .mobile-drawer.is-open {
    transform: translateX(0) !important;
  }

  .mobile-drawer__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(211, 177, 109, .18) !important;
  }

  .mobile-drawer__head img {
    width: 148px !important;
    height: auto !important;
    display: block !important;
  }

  .mobile-drawer__head strong {
    color: #d9b76a !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }

  .mobile-drawer-close {
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #d9b76a !important;
    border: 1px solid rgba(211, 177, 109, .24) !important;
    border-radius: 999px !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .mobile-drawer__links {
    display: grid !important;
    gap: 0 !important;
    padding: 18px 0 !important;
  }

  .mobile-drawer__links a,
  .mobile-search-suggestions a {
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    border-bottom: 1px solid rgba(211, 177, 109, .10) !important;
    color: #f4ead0 !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }

  .mobile-drawer__cta a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    margin-top: 10px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #e5c676, #b88932) !important;
    color: #171008 !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }

  .mobile-search-form {
    display: grid !important;
    gap: 12px !important;
    padding: 22px 0 16px !important;
  }

  .mobile-search-form input {
    width: 100% !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211, 177, 109, .22) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #f4ead0 !important;
    outline: 0 !important;
  }

  .mobile-search-form button {
    min-height: 46px !important;
    border-radius: 999px !important;
    background: #d9b76a !important;
    color: #171008 !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 38px 22px 28px !important;
    background: #120f0b !important;
    color: #f3e6c8 !important;
  }

  .footer-shell {
    width: 100% !important;
    max-width: none !important;
  }

  .footer-top {
    display: block !important;
  }

  .footer-brand {
    margin-bottom: 24px !important;
  }

  .footer-brand__logo img,
  .footer-brand img {
    width: 150px !important;
    height: auto !important;
  }

  .footer-brand p {
    margin: 16px 0 0 !important;
    max-width: 330px !important;
    color: rgba(243, 230, 200, .78) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .footer-links {
    display: block !important;
  }

  .footer-column {
    border-top: 1px solid rgba(211, 177, 109, .16) !important;
    padding: 0 !important;
  }

  .footer-column:last-child {
    border-bottom: 1px solid rgba(211, 177, 109, .16) !important;
  }

  .footer-accordion-toggle {
    width: 100% !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    color: #d9b76a !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
  }

  .footer-accordion-toggle i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    font-style: normal !important;
    transition: transform .22s ease !important;
  }

  .footer-column.is-open .footer-accordion-toggle i {
    transform: rotate(45deg) !important;
  }

  .footer-column-links {
    display: none !important;
    padding: 0 0 18px !important;
  }

  .footer-column.is-open .footer-column-links {
    display: grid !important;
    gap: 12px !important;
  }

  .footer-column-links a {
    color: #f4ead0 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .footer-bottom {
    display: block !important;
    margin-top: 24px !important;
    padding-top: 18px !important;
    border-top: 0 !important;
    color: rgba(243, 230, 200, .58) !important;
    font-size: 12px !important;
  }

  .footer-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px 18px !important;
    margin-top: 12px !important;
  }
}

@media (max-width: 420px) {
  .header {
    left: 12px !important;
    right: 12px !important;
    height: 60px !important;
    min-height: 60px !important;
    padding: 0 14px !important;
    grid-template-columns: 30px 30px minmax(0, 1fr) 30px 30px !important;
    gap: 8px !important;
    border-radius: 16px !important;
  }

  .brand img {
    height: 30px !important;
    max-width: 150px !important;
  }

  .mobile-nav-toggle,
.mobile-search-toggle {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .mobile-search-toggle svg {
    width: 20px !important;
    height: 20px !important;
  }

  .mobile-nav-toggle span {
    width: 16px !important;
  }
}
[aria-label="Cart"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.header-icons {
  justify-content: flex-end !important;
}

@media (max-width: 900px) {
  .header {
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px !important;
  }
}

@media (max-width: 420px) {
  .header {
    grid-template-columns: 30px 30px minmax(0, 1fr) 30px !important;
  }
}
@media (min-width: 901px) {
  .header {
    grid-template-columns: minmax(230px, 300px) 1fr minmax(190px, 230px) !important;
  }

  .header-icons {
    gap: 12px !important;
  }

  .header-whatsapp-btn {
    min-width: 128px !important;
    min-height: 34px !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211, 177, 109, .34) !important;
    background: rgba(8, 13, 13, .34) !important;
    color: #d9b76a !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
    transition: color .22s ease, border-color .22s ease, transform .22s ease, background .22s ease !important;
  }

  .header-whatsapp-btn:hover {
    color: #f3d8c9 !important;
    border-color: rgba(211, 177, 109, .58) !important;
    background: rgba(211, 177, 109, .08) !important;
    transform: translateY(-1px) !important;
  }

  .header-whatsapp-btn i {
    font-style: normal !important;
    letter-spacing: 0 !important;
    transform: translateY(-.5px) !important;
  }

  .header.is-scrolled .header-whatsapp-btn {
    min-height: 30px !important;
    min-width: 118px !important;
    padding: 0 14px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 900px) {
  .header,
  .header.is-scrolled {
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px !important;
  }

  .header-whatsapp-btn {
    grid-column: 4 !important;
    justify-self: end !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #d9b76a !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  .header-whatsapp-btn span,
  .header-whatsapp-btn i {
    display: none !important;
  }

  .header-whatsapp-btn::before {
    content: "WA" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211,177,109,.28) !important;
    color: #d9b76a !important;
    font-size: 11px !important;
    letter-spacing: .04em !important;
  }
}

@media (max-width: 420px) {
  .header,
  .header.is-scrolled {
    grid-template-columns: 30px 30px minmax(0, 1fr) 30px !important;
  }

  .header-whatsapp-btn {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .header-whatsapp-btn::before {
    width: 28px !important;
    height: 28px !important;
    font-size: 10px !important;
  }
}
.desktop-search-btn,
.mobile-search-toggle,
.mobile-search-drawer {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.header-social-icon,
.header-whatsapp-btn.header-social-icon,
.desktop-messenger-link.header-social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(211, 177, 109, .34) !important;
  background: rgba(8, 13, 13, .26) !important;
  color: #d9b76a !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
  transition: color .22s ease, border-color .22s ease, transform .22s ease, background .22s ease !important;
}

.header-social-icon:hover,
.header-whatsapp-btn.header-social-icon:hover,
.desktop-messenger-link.header-social-icon:hover {
  color: #f3d8c9 !important;
  border-color: rgba(211, 177, 109, .58) !important;
  background: rgba(211, 177, 109, .08) !important;
  transform: translateY(-1px) !important;
}

.header-social-icon svg,
.header-whatsapp-btn.header-social-icon svg,
.desktop-messenger-link.header-social-icon svg {
  display: block !important;
  width: 19px !important;
  height: 19px !important;
  fill: currentColor !important;
  stroke: none !important;
}

.header-whatsapp-btn span,
.header-whatsapp-btn i,
.header-whatsapp-btn::before {
  display: none !important;
  content: none !important;
}

@media (min-width: 901px) {
  .header {
    grid-template-columns: minmax(230px, 300px) 1fr minmax(86px, 104px) !important;
  }

  .header-icons {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
  }

  .desktop-messenger-link {
    display: inline-flex !important;
  }

  .header.is-scrolled .header-social-icon,
  .header.is-scrolled .header-whatsapp-btn.header-social-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
  }

  .header.is-scrolled .header-social-icon svg,
  .header.is-scrolled .header-whatsapp-btn.header-social-icon svg {
    width: 17px !important;
    height: 17px !important;
  }
}

@media (max-width: 900px) {
  .header,
  .header.is-scrolled {
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px !important;
  }

  .desktop-messenger-link {
    display: none !important;
  }

  .header-whatsapp-btn.header-social-icon {
    grid-column: 4 !important;
    justify-self: end !important;
    display: inline-flex !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #d9b76a !important;
  }

  .header-whatsapp-btn.header-social-icon svg {
    width: 21px !important;
    height: 21px !important;
  }

  .header-icons {
    display: contents !important;
  }
}

@media (max-width: 420px) {
  .header,
  .header.is-scrolled {
    grid-template-columns: 30px 30px minmax(0, 1fr) 30px !important;
  }

  .header-whatsapp-btn.header-social-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .header-whatsapp-btn.header-social-icon svg {
    width: 19px !important;
    height: 19px !important;
  }
}
@media (min-width: 901px) {
  .header.header-chat-icons {
    display: grid !important;
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr) minmax(92px, 112px) !important;
    align-items: center !important;
    column-gap: clamp(18px, 2.2vw, 42px) !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .nav {
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    position: static !important;
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px !important;
    align-items: center !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 3 !important;
    justify-self: center !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .nav {
    display: none !important;
  }

  .header.header-chat-icons .header-icons {
    display: contents !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon {
    display: none !important;
  }

  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    grid-column: 4 !important;
    justify-self: end !important;
    display: inline-flex !important;
    position: static !important;
  }
}
@media (min-width: 901px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) minmax(300px, 360px) !important;
    min-height: 76px !important;
    height: 76px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
  }

  .header.header-chat-icons .brand {
    justify-self: start !important;
    align-self: center !important;
  }

  .header.header-chat-icons .brand img {
    max-height: 44px !important;
  }

  .header.header-chat-icons .nav {
    justify-self: center !important;
    align-self: center !important;
    transform: translateX(0) !important;
  }

  .header.header-chat-icons .header-icons {
    justify-self: end !important;
    align-self: center !important;
  }

  .header.header-chat-icons .header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  .header.header-chat-icons .header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}
@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) 78px !important;
    column-gap: 8px !important;
    align-items: center !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 2 !important;
    justify-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    display: inline-flex !important;
    position: static !important;
    margin: 0 !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
  }

  .header.header-chat-icons .header-icons {
    display: contents !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 34px minmax(0, 1fr) 72px !important;
    column-gap: 6px !important;
  }

  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }
}
@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 82px !important;
    grid-template-rows: 1fr !important;
    column-gap: 8px !important;
    align-items: center !important;
    min-height: 64px !important;
    height: 64px !important;
    padding: 0 16px !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .header.header-chat-icons .brand img {
    display: block !important;
    max-height: 34px !important;
    width: auto !important;
  }

  .header.header-chat-icons .nav {
    display: none !important;
  }
  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: 82px !important;
    min-width: 82px !important;
    height: 34px !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211, 177, 109, .30) !important;
    background: rgba(8, 13, 13, .20) !important;
    box-shadow: none !important;
    color: #d9b76a !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    display: block !important;
    width: 19px !important;
    height: 19px !important;
    fill: currentColor !important;
    stroke: none !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 38px minmax(0, 1fr) 72px !important;
    min-height: 60px !important;
    height: 60px !important;
    padding: 0 14px !important;
  }

  .header.header-chat-icons .header-icons {
    width: 72px !important;
    min-width: 72px !important;
    gap: 6px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    flex-basis: 31px !important;
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .header.header-chat-icons .brand img {
    max-height: 31px !important;
  }
}
.desktop-search-btn,
.mobile-search-toggle,
.mobile-search-drawer,
[aria-label="Cart"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.header.header-chat-icons .header-social-icon,
.header.header-chat-icons .header-whatsapp-btn.header-social-icon,
.header.header-chat-icons .desktop-messenger-link.header-social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(211, 177, 109, .34) !important;
  background: rgba(8, 13, 13, .26) !important;
  color: #d9b76a !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
  text-decoration: none !important;
  transition: color .22s ease, border-color .22s ease, transform .22s ease, background .22s ease !important;
}

.header.header-chat-icons .header-social-icon:hover,
.header.header-chat-icons .header-whatsapp-btn.header-social-icon:hover,
.header.header-chat-icons .desktop-messenger-link.header-social-icon:hover {
  color: #f3d8c9 !important;
  border-color: rgba(211, 177, 109, .58) !important;
  background: rgba(211, 177, 109, .08) !important;
  transform: translateY(-1px) !important;
}

.header.header-chat-icons .header-social-icon svg,
.header.header-chat-icons .header-whatsapp-btn.header-social-icon svg,
.header.header-chat-icons .desktop-messenger-link.header-social-icon svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
  stroke: none !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .24)) !important;
}

@media (min-width: 901px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) minmax(300px, 360px) !important;
    min-height: 76px !important;
    height: 76px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
    column-gap: clamp(18px, 2.2vw, 42px) !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    display: none !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .header.header-chat-icons .brand img {
    display: block !important;
    max-height: 44px !important;
    width: auto !important;
  }

  .header.header-chat-icons .nav {
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    width: auto !important;
    min-width: 92px !important;
    height: 40px !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr) minmax(104px, 150px) !important;
  }

  .header.header-chat-icons .nav {
    gap: clamp(14px, 1.8vw, 24px) !important;
    font-size: clamp(12px, 1.25vw, 14px) !important;
    letter-spacing: .10em !important;
  }

  .header.header-chat-icons .brand img {
    max-height: 38px !important;
  }
}

@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 82px !important;
    grid-template-rows: 1fr !important;
    column-gap: 8px !important;
    align-items: center !important;
    min-height: 64px !important;
    height: 64px !important;
    padding: 0 16px !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    display: inline-flex !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .header.header-chat-icons .brand img {
    display: block !important;
    max-height: 34px !important;
    width: auto !important;
  }

  .header.header-chat-icons .nav {
    display: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: 82px !important;
    min-width: 82px !important;
    height: 34px !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211, 177, 109, .30) !important;
    background: rgba(8, 13, 13, .20) !important;
    box-shadow: none !important;
    color: #d9b76a !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 19px !important;
    height: 19px !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 38px minmax(0, 1fr) 72px !important;
    min-height: 60px !important;
    height: 60px !important;
    padding: 0 14px !important;
    column-gap: 6px !important;
  }

  .header.header-chat-icons .header-icons {
    width: 72px !important;
    min-width: 72px !important;
    gap: 6px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    flex-basis: 31px !important;
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .header.header-chat-icons .brand img {
    max-height: 31px !important;
  }
}
@media (min-width: 901px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    box-sizing: border-box !important;
    padding-left: clamp(48px, 4.2vw, 88px) !important;
    padding-right: clamp(48px, 4.2vw, 88px) !important;
    grid-template-columns: minmax(250px, 360px) minmax(0, 1fr) minmax(250px, 360px) !important;
    align-items: center !important;
  }

  .header.header-chat-icons .brand {
    justify-self: start !important;
    margin-left: 0 !important;
  }

  .header.header-chat-icons .nav {
    justify-self: center !important;
  }

  .header.header-chat-icons .header-icons {
    justify-self: end !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    box-sizing: border-box !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (min-width: 901px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) minmax(220px, 280px) !important;
    column-gap: clamp(22px, 2.4vw, 46px) !important;
    align-items: center !important;
    box-sizing: border-box !important;
    height: 76px !important;
    min-height: 76px !important;
    padding-left: clamp(56px, 4.2vw, 86px) !important;
    padding-right: clamp(56px, 4.2vw, 86px) !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
    background: transparent !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    display: block !important;
    width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .header.header-chat-icons .nav {
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 170px minmax(0, 1fr) 170px !important;
    column-gap: 16px !important;
    padding-left: 34px !important;
    padding-right: 34px !important;
  }

  .header.header-chat-icons .brand {
    width: 170px !important;
    min-width: 170px !important;
    max-width: 170px !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    width: 170px !important;
    max-width: 170px !important;
    max-height: 38px !important;
  }

  .header.header-chat-icons .nav {
    gap: 16px !important;
  }

  .header.header-chat-icons .nav a {
    font-size: 12px !important;
    letter-spacing: .12em !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    flex-basis: 36px !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
}

@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) 82px !important;
    grid-template-rows: 1fr !important;
    column-gap: 8px !important;
    align-items: center !important;
    box-sizing: border-box !important;
    height: 64px !important;
    min-height: 64px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    display: block !important;
    width: auto !important;
    max-width: min(44vw, 190px) !important;
    height: auto !important;
    max-height: 34px !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .header.header-chat-icons .nav {
    display: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: 82px !important;
    min-width: 82px !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    position: static !important;
    transform: none !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    margin: 0 !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 34px minmax(0, 1fr) 72px !important;
    height: 60px !important;
    min-height: 60px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    max-width: min(42vw, 165px) !important;
    max-height: 31px !important;
  }

  .header.header-chat-icons .header-icons {
    width: 72px !important;
    min-width: 72px !important;
    gap: 6px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    flex-basis: 31px !important;
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
  }
}
.signature-panel[data-panel="bracelets"] .signature-real-product-media {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.signature-panel[data-panel="bracelets"] .signature-real-product-image {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(2) .signature-real-product-media {
  background-image: url("../product-detail/img/metal_gallery_01_main.png") !important;
}
.signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(3) .signature-real-product-media {
  background-image: url("../product-detail/img/wood_gallery_01_main.png") !important;
}
.signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(4) .signature-real-product-media {
  background-image: url("../product-detail/img/water_gallery_01_main.png") !important;
}
.signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(5) .signature-real-product-media {
  background-image: url("../product-detail/img/fire_gallery_01_main.png") !important;
}
.signature-panel[data-panel="bracelets"] .signature-item-card:nth-child(6) .signature-real-product-media {
  background-image: url("../product-detail/img/earth_gallery_01_main.png") !important;
}
@media (max-width: 767px) {
  .signature-panel[data-panel="bracelets"] .signature-real-product-media {
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }
  .signature-panel[data-panel="bracelets"] .signature-real-product-media img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* === Premium homepage CTA arrows === */
.reading-cta__button > span,
.journal-entry em,
.home-journal-view-all a {
  --dao-arrow-size: 28px;
}
.reading-cta__button > span {
  width: var(--dao-arrow-size);
  height: var(--dao-arrow-size);
  min-width: var(--dao-arrow-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: rgba(185, 143, 70, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24);
  font-size: 0 !important;
  line-height: 0;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.reading-cta__button > span::before {
  content: "↗";
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.reading-cta__button:hover > span {
  transform: translateX(2px) translateY(-1px);
  box-shadow: 0 10px 20px rgba(60, 42, 24, 0.08), inset 0 1px 0 rgba(255,255,255,.30);
}

/* === DAO SIGIL premium homepage CTA icon === */
.reading-cta__button > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  margin-left: 8px !important;
  border-radius: 999px !important;
  border: 1px solid currentColor !important;
  background: rgba(185,143,70,0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24) !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transition: transform .24s ease, box-shadow .24s ease !important;
}
.reading-cta__button > span::before {
  content: "↗";
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}
.reading-cta__button:hover > span {
  transform: translateX(2px) translateY(-1px);
  box-shadow: 0 10px 18px rgba(46,32,16,0.08), inset 0 1px 0 rgba(255,255,255,0.28) !important;
}

/* === Mobile footer brand copy centered === */
@media (max-width: 767px) {
  .footer-brand {
    text-align: center !important;
  }

  .footer-brand__logo {
    display: block !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-brand p {
    margin: 16px auto 0 !important;
    text-align: center !important;
  }
}

