@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Noto+Serif+JP:wght@400;500;600&display=swap");

:root {
  --ink: #171512;
  --ink-2: #2b2721;
  --paper: #f5f2eb;
  --white: #fff;
  --soft: #ebe6dc;
  --muted: #867f74;
  --line: rgba(23, 21, 18, .18);
  --gold: #b99a5c;
  --rakuten: #a91e2c;
  --amazon: #20242b;
  --rail: 58px;
  --header: 94px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); line-height: 1.8; }
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
main { margin-left: var(--rail); }
section { scroll-margin-top: var(--header); }

.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  transform: translateY(-100%);
  animation: page-wipe 1.05s var(--ease) both;
  pointer-events: none;
}

@keyframes page-wipe {
  0% { transform: translateY(0); }
  55% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

.side-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: var(--rail);
  background: rgba(245, 242, 235, .96);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .25s;
}

.menu-toggle small {
  display: block;
  margin-top: 12px;
  font: 9px/1 Arial, sans-serif;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
  transform: translateX(16px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.side-rail__copy {
  position: absolute;
  bottom: 25px;
  left: 50%;
  margin: 0;
  color: var(--muted);
  font: 8px/1 Arial, sans-serif;
  letter-spacing: .2em;
  white-space: nowrap;
  transform: translateX(-50%) rotate(-90deg);
}

.drawer {
  position: fixed;
  inset: 0 auto 0 var(--rail);
  z-index: 45;
  display: flex;
  flex-direction: column;
  width: min(540px, calc(100vw - var(--rail)));
  padding: 34px clamp(30px, 5vw, 70px) 52px;
  background: #1b1916;
  color: #f7f2e8;
  transform: translateX(-110%);
  transition: transform .5s var(--ease);
}

.drawer.is-open { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.16); }
.drawer__top span { font: 500 24px/1 "Cormorant Garamond", serif; letter-spacing: .18em; }
.drawer__close { padding: 7px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font: 10px/1 Arial, sans-serif; letter-spacing: .16em; cursor: pointer; }
.drawer__links { margin-top: auto; margin-bottom: auto; }
.drawer__links a { display: flex; align-items: center; gap: 22px; padding: 16px 0; font: 500 clamp(35px, 5vw, 58px)/1.1 "Cormorant Garamond", serif; }
.drawer__links a span { color: var(--gold); font: 10px/1 Arial, sans-serif; }
.drawer__market { display: flex; gap: 25px; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); font: 10px/1.4 Arial, sans-serif; letter-spacing: .13em; }
.drawer__market p { margin: 0 auto 0 0; color: #938b80; }
.drawer__market a { border-bottom: 1px solid currentColor; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: var(--rail);
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header);
  padding: 0 34px;
  background: rgba(245, 242, 235, .88);
  border-bottom: 1px solid rgba(23,21,18,.1);
  backdrop-filter: blur(14px);
  transition: color .3s, background .3s, transform .3s;
}

.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-dark { background: rgba(22,20,17,.78); color: #fff; border-color: rgba(255,255,255,.12); }

.brand { grid-column: 2; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand strong { font: 500 28px/1 "Cormorant Garamond", serif; letter-spacing: .2em; }
.brand span { margin-top: 8px; color: var(--muted); font: 8px/1 Arial, sans-serif; letter-spacing: .32em; }
.site-header.is-dark .brand span { color: rgba(255,255,255,.55); }
.header-nav { grid-column: 1; grid-row: 1; display: flex; gap: clamp(14px, 2.1vw, 34px); font: 9px/1 Arial, sans-serif; letter-spacing: .13em; }
.header-nav a { position: relative; padding: 12px 0; }
.header-nav a::after { position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.header-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-shop { grid-column: 3; justify-self: end; display: flex; gap: 8px; align-items: center; font: 10px/1 Arial, sans-serif; letter-spacing: .14em; }
.header-shop::after { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid currentColor; border-radius: 50%; content: "→"; font-size: 13px; }

.hero {
  position: relative;
  min-height: 680px;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 35%, rgba(184,149,83,.15), transparent 34%),
    linear-gradient(132deg, #1b1916 0%, #0c0b0a 60%, #211d17 100%);
  color: #f7f3ea;
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,.025) 49% 50%, transparent 51%),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.06) 0 1px, transparent 1.5px);
  background-size: 100% 100%, 11px 11px;
  mix-blend-mode: screen;
}

.hero__jewel {
  position: absolute;
  top: 48%;
  right: clamp(-130px, 2vw, 35px);
  width: min(58vw, 760px);
  transform: translateY(-47%) rotate(-2deg);
  animation: jewel-float 7s ease-in-out infinite alternate;
}

@keyframes jewel-float {
  from { transform: translateY(-47%) rotate(-2deg); }
  to { transform: translateY(-50%) rotate(1deg); }
}

.chain { stroke-dasharray: 6 4; }
.hero__copy { position: absolute; top: 47%; left: clamp(38px, 8vw, 130px); z-index: 2; width: min(560px, 48vw); transform: translateY(-50%); }
.eyebrow, .section-index { margin: 0 0 25px; color: var(--gold); font: 9px/1.4 Arial, sans-serif; letter-spacing: .22em; }
.hero h1 { margin: 0; font-size: clamp(43px, 5.25vw, 76px); font-weight: 400; line-height: 1.28; letter-spacing: .06em; }
.hero__lead { margin: 18px 0 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 2; }
.hero__stamp { position: absolute; right: 27px; bottom: 28px; display: flex; flex-direction: column; align-items: center; gap: 3px; width: 82px; height: 82px; padding-top: 15px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: rgba(255,255,255,.72); font: 7px/1 Arial, sans-serif; letter-spacing: .16em; }
.hero__stamp strong { color: var(--gold); font: 400 27px/.9 "Cormorant Garamond", serif; }
.scroll-cue { position: absolute; bottom: 0; left: 27px; display: flex; flex-direction: column; align-items: center; gap: 11px; color: rgba(255,255,255,.52); font: 7px/1 Arial, sans-serif; letter-spacing: .2em; writing-mode: vertical-rl; }
.scroll-cue span { display: block; width: 1px; height: 60px; overflow: hidden; background: rgba(255,255,255,.2); }
.scroll-cue span::after { display: block; width: 1px; height: 25px; content: ""; background: #fff; animation: scroll-line 1.8s ease-in-out infinite; }
@keyframes scroll-line { from { transform: translateY(-28px); } to { transform: translateY(66px); } }

.dual-cta { display: flex; gap: 10px; }
.dual-cta--hero { margin-top: 24px; }
.mall-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 13px 20px;
  overflow: hidden;
  border: 1px solid transparent;
  color: #fff;
  font: 600 12px/1.3 Arial, sans-serif;
  letter-spacing: .07em;
  transition: transform .25s var(--ease), filter .25s;
}
.mall-button::after {
  position: absolute;
  top: -45%;
  left: -35%;
  width: 28%;
  height: 190%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: rotate(18deg);
  animation: sheen 5.2s 1.5s ease-in-out infinite;
}
@keyframes sheen { 0%, 76% { left: -35%; } 100% { left: 135%; } }
.mall-button:hover { transform: translateY(-2px); filter: brightness(1.1); }
.mall-button--rakuten { background: var(--rakuten); }
.mall-button--amazon { background: var(--amazon); border-color: rgba(255,255,255,.16); }
.dual-cta--hero .mall-button { flex-direction: column; align-items: flex-start; width: 190px; min-height: 69px; }
.dual-cta--hero .mall-button small, .dual-cta--final .mall-button small { margin-bottom: 6px; opacity: .65; font-size: 8px; letter-spacing: .12em; }
.dual-cta--hero .mall-button span, .dual-cta--final .mall-button span { font-family: "Noto Serif JP", serif; font-size: 13px; font-weight: 500; }

.section-pad { padding: clamp(90px, 11vw, 160px) clamp(30px, 7vw, 105px); }
.statement { position: relative; min-height: 720px; overflow: hidden; background: var(--paper); }
.statement__inner { display: grid; grid-template-columns: minmax(330px, .9fr) minmax(320px, .65fr); justify-content: space-between; gap: 80px; max-width: 1120px; margin: 80px auto 0; }
.statement h2 { margin: 0; font-size: clamp(38px, 4.5vw, 64px); font-weight: 400; line-height: 1.65; letter-spacing: .08em; }
.statement__copy { max-width: 480px; padding-top: 24px; }
.statement__copy p { margin: 0 0 25px; color: #504a42; font-size: 13px; line-height: 2.35; }
.statement__copy small { color: var(--muted); font-size: 10px; line-height: 1.8; }
.statement__word { position: absolute; right: -25px; bottom: -50px; color: rgba(23,21,18,.04); font: 500 clamp(110px, 19vw, 250px)/.7 "Cormorant Garamond", serif; letter-spacing: -.04em; pointer-events: none; }

.best { background: #eae5dc; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; max-width: 1180px; margin: 0 auto 55px; }
.section-head h2 { margin: 0; font: 500 clamp(58px, 8vw, 112px)/.78 "Cormorant Garamond", serif; letter-spacing: -.035em; }
.section-head > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 2; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; max-width: 1180px; margin: 0 auto; background: rgba(23,21,18,.13); border: 1px solid rgba(23,21,18,.13); }
.product-card { min-width: 0; background: var(--paper); }
.product-card__visual { position: relative; display: grid; place-items: center; aspect-ratio: 1 / 1.04; overflow: hidden; background: #f7f5f0; }
.product-card__visual::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.5); pointer-events: none; }
.product-card__visual img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .75s var(--ease); }
.product-card:hover .product-card__visual img { transform: scale(1.055); }
.product-card__rank { position: absolute; top: 17px; left: 18px; z-index: 2; font: 8px/1 Arial, sans-serif; letter-spacing: .14em; }
.product-card__fallback { position: absolute; z-index: 0; color: var(--gold); font: 400 88px/1 "Cormorant Garamond", serif; }
.product-art { position: relative; z-index: 1; display: block; width: 100%; height: 100%; overflow: hidden; background: radial-gradient(circle at 55% 40%, #fff 0, #ece7de 28%, #d8d0c3 72%, #c7bcaa 100%); }
.product-art::before { position: absolute; top: 22%; left: -8%; width: 116%; height: 60%; border: 3px solid #b99a5c; border-color: transparent transparent #b99a5c #b99a5c; border-radius: 50%; content: ""; transform: rotate(-12deg); box-shadow: 0 2px 2px rgba(255,255,255,.8); }
.product-art i { position: absolute; top: 45%; left: 50%; display: block; transform: translate(-50%, -50%); }
.product-art--ring i { width: 29%; aspect-ratio: 1; border: 13px solid #b99a5c; border-radius: 50%; box-shadow: inset 0 0 7px rgba(53,39,17,.35), 0 16px 22px rgba(48,39,25,.18); }
.product-art--heart i { width: 29%; aspect-ratio: 1; transform: translate(-50%, -48%) rotate(45deg); border: 11px solid #b99a5c; border-top-color: transparent; border-left-color: transparent; border-radius: 0 0 50% 0; }
.product-art--heart i::before, .product-art--heart i::after { position: absolute; width: 82%; height: 82%; border: 11px solid #b99a5c; border-radius: 50%; content: ""; }
.product-art--heart i::before { top: -49%; right: -12%; border-bottom-color: transparent; border-left-color: transparent; }
.product-art--heart i::after { bottom: -12%; left: -49%; border-top-color: transparent; border-right-color: transparent; }
.product-card__visual.is-broken img { display: none; }
.product-card__body { padding: 25px 24px 27px; }
.product-card__source { margin: 0 0 12px; color: var(--gold); font: 8px/1.4 Arial, sans-serif; letter-spacing: .13em; }
.product-card h3 { margin: 0; font: 500 29px/1 "Cormorant Garamond", serif; letter-spacing: .02em; }
.product-card h3 + p { margin: 8px 0 0; font-size: 11px; }
.product-card__note { min-height: 44px; margin: 14px 0 20px; color: var(--muted); font-size: 10px; line-height: 1.8; }
.dual-cta--card { gap: 6px; }
.dual-cta--card .mall-button { flex: 1; min-width: 0; min-height: 42px; padding: 9px 8px; font-size: 9px; }

.editorial { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 760px; background: var(--ink); color: #fff; }
.editorial__art { position: relative; overflow: hidden; background: radial-gradient(circle at 55% 43%, #81745f 0, #39342c 26%, #151310 70%); }
.editorial__art::after { position: absolute; inset: 0; content: ""; background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 35%), repeating-linear-gradient(110deg, rgba(255,255,255,.018) 0 1px, transparent 1px 10px); }
.editorial__ring { position: absolute; z-index: 1; border: 14px solid #bea066; border-radius: 50%; box-shadow: inset 0 0 10px rgba(0,0,0,.55), 0 20px 30px rgba(0,0,0,.35); }
.editorial__ring--one { top: 28%; left: 26%; width: 220px; height: 220px; transform: rotateX(60deg) rotateZ(-25deg); }
.editorial__ring--two { right: 16%; bottom: 25%; width: 150px; height: 150px; border-width: 10px; transform: rotateX(63deg) rotateZ(23deg); }
.editorial__chain { position: absolute; top: 12%; left: 5%; z-index: 2; width: 90%; height: 58%; border: 3px solid #c9a766; border-color: transparent transparent #c9a766 #c9a766; border-radius: 50%; transform: rotate(-18deg); box-shadow: 0 2px 3px rgba(255,240,180,.3); }
.editorial__stone { position: absolute; top: 61%; left: 55%; z-index: 3; width: 40px; height: 40px; background: radial-gradient(circle at 30% 25%, #fff, #cce0e0 35%, #779092 70%, #273235); clip-path: polygon(50% 0, 90% 25%, 100% 70%, 50% 100%, 0 70%, 10% 25%); box-shadow: 0 0 28px rgba(255,255,255,.7); }
.editorial__copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(45px, 7vw, 110px); }
.editorial__copy h2 { margin: 0 0 45px; font-size: clamp(37px, 4vw, 58px); font-weight: 400; line-height: 1.65; }
.editorial__copy ul { margin: 0 0 45px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.editorial__copy li { display: flex; gap: 28px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.72); font-size: 12px; }
.editorial__copy li span { color: var(--gold); font: 10px/2 Arial, sans-serif; }
.text-link { display: inline-flex; align-items: center; align-self: flex-start; gap: 30px; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 11px; }

.collections { background: var(--paper); }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1180px; margin: 0 auto; }
.collection-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; aspect-ratio: .82 / 1; padding: 27px; overflow: hidden; color: #fff; isolation: isolate; }
.collection-card::before, .collection-card::after { position: absolute; z-index: -1; content: ""; border-radius: 50%; }
.collection-card::before { width: 72%; aspect-ratio: 1; border: 12px solid rgba(230,200,126,.86); box-shadow: 0 30px 50px rgba(0,0,0,.25), inset 0 0 10px rgba(0,0,0,.35); transition: transform .7s var(--ease); }
.collection-card:hover::before { transform: rotate(24deg) scale(1.08); }
.collection-card::after { inset: 0; border-radius: 0; background: linear-gradient(0deg, rgba(0,0,0,.66), transparent 62%); }
.collection-card--one { background: radial-gradient(circle at 70% 25%, #82745e, #28231d 66%); }
.collection-card--one::before { top: 16%; right: -8%; transform: rotate(15deg); }
.collection-card--two { background: radial-gradient(circle at 35% 30%, #9a8d7a, #35302a 67%); }
.collection-card--two::before { top: 20%; left: 16%; border-width: 20px; transform: rotateX(55deg) rotateZ(-20deg); }
.collection-card--three { background: radial-gradient(circle at 50% 20%, #6e6253, #211e1a 70%); }
.collection-card--three::before { top: 16%; left: 20%; border-width: 4px; clip-path: polygon(0 0, 58% 0, 58% 100%, 0 100%); transform: rotate(-25deg); }
.collection-card__number { font: 9px/1 Arial, sans-serif; letter-spacing: .14em; }
.collection-card div { position: relative; z-index: 2; }
.collection-card small { font: 8px/1 Arial, sans-serif; letter-spacing: .18em; }
.collection-card h3 { margin: 11px 0 4px; font: 500 45px/1 "Cormorant Garamond", serif; }
.collection-card p { margin: 0; color: rgba(255,255,255,.65); font-size: 10px; }
.collection-card__arrow { position: absolute; top: 20px; right: 20px; display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }

.journal { background: #ddd6ca; }
.journal-list { max-width: 1180px; margin: 0 auto; border-top: 1px solid var(--line); }
.journal-item { position: relative; display: grid; grid-template-columns: 215px 1fr 40px; gap: 35px; align-items: center; min-height: 130px; border-bottom: 1px solid var(--line); }
.journal-item p { display: flex; flex-direction: column; gap: 10px; margin: 0; font: 9px/1 Arial, sans-serif; letter-spacing: .12em; }
.journal-item em { color: var(--gold); font-style: normal; }
.journal-item h3 { margin: 0; font-size: 14px; font-weight: 500; }
.journal-item__arrow { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; transition: background .25s, color .25s; }
.journal-item:hover .journal-item__arrow { background: var(--ink); color: #fff; }

.final-cta { padding: 140px 30px; background: radial-gradient(circle at center, #363027, #171512 70%); color: #fff; text-align: center; }
.final-cta h2 { margin: 0 0 45px; font-size: clamp(42px, 6vw, 78px); font-weight: 400; line-height: 1.55; }
.dual-cta--final { justify-content: center; }
.dual-cta--final .mall-button { flex-direction: column; width: min(260px, 42vw); min-height: 80px; }

.site-footer { position: relative; margin-left: var(--rail); padding: 70px 5vw 30px; background: #0f0e0c; color: rgba(255,255,255,.62); }
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
.site-footer__brand strong { color: #fff; font: 500 48px/1 "Cormorant Garamond", serif; letter-spacing: .18em; }
.site-footer__brand span { margin-top: 10px; font: 8px/1 Arial, sans-serif; letter-spacing: .25em; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 25px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); font: 9px/1 Arial, sans-serif; letter-spacing: .12em; }
.site-footer p { margin: 28px 0 70px; font-size: 9px; line-height: 1.9; }
.site-footer > small { font: 7px/1 Arial, sans-serif; letter-spacing: .1em; }
.mobile-buybar { display: none; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .header-nav { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__jewel { right: -180px; width: 72vw; opacity: .8; }
  .hero__copy { width: min(570px, 58vw); }
  .statement__inner { grid-template-columns: 1fr 1fr; gap: 45px; }
  .collection-card h3 { font-size: 37px; }
}

@media (max-width: 720px) {
  :root { --rail: 0px; --header: 72px; }
  body { padding-bottom: 58px; }
  main, .site-footer { margin-left: 0; }
  .side-rail { inset: 0 0 auto auto; width: 62px; height: var(--header); border-right: 0; border-left: 1px solid var(--line); }
  .side-rail__copy, .menu-toggle small { display: none; }
  .menu-toggle { top: 50%; }
  .site-header { right: 62px; left: 0; grid-template-columns: 1fr; height: var(--header); padding: 0 18px; }
  .brand { grid-column: 1; justify-self: start; align-items: flex-start; }
  .brand strong { font-size: 25px; }
  .brand span { margin-top: 6px; }
  .header-shop { display: none; }
  .drawer { left: 0; width: 100vw; padding: 26px 27px 42px; }
  .drawer__close { display: none; }
  .drawer__links a { font-size: 42px; }
  .drawer__market { align-items: flex-start; flex-wrap: wrap; }
  .drawer__market p { flex-basis: 100%; }
  .hero { min-height: 680px; height: 92svh; }
  .hero__jewel { top: 38%; right: -80px; width: 118vw; opacity: .62; }
  .hero__copy { top: auto; right: 24px; bottom: 75px; left: 24px; width: auto; transform: none; }
  .hero h1 { font-size: clamp(39px, 11vw, 54px); }
  .hero__lead { margin-top: 17px; font-size: 11px; }
  .eyebrow { margin-bottom: 16px; font-size: 7px; }
  .hero__stamp { top: 91px; right: 18px; bottom: auto; width: 67px; height: 67px; padding-top: 12px; }
  .hero__stamp strong { font-size: 22px; }
  .scroll-cue { display: none; }
  .dual-cta--hero { gap: 6px; margin-top: 22px; }
  .dual-cta--hero .mall-button { flex: 1; width: auto; min-height: 59px; padding: 10px 13px; }
  .dual-cta--hero .mall-button span { font-size: 11px; }
  .section-pad { padding: 88px 20px; }
  .statement { min-height: auto; }
  .statement__inner { grid-template-columns: 1fr; gap: 35px; margin-top: 45px; }
  .statement h2 { font-size: 36px; line-height: 1.62; }
  .statement__copy { padding-top: 0; }
  .statement__copy p { font-size: 12px; }
  .statement__word { right: -5px; bottom: 0; font-size: 27vw; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 25px; margin-bottom: 38px; }
  .section-head h2 { font-size: 64px; }
  .section-head > p { font-size: 10px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__visual { aspect-ratio: 1 / .95; }
  .product-card__body { padding: 24px 20px 30px; }
  .editorial { grid-template-columns: 1fr; }
  .editorial__art { min-height: 480px; }
  .editorial__ring--one { left: 17%; }
  .editorial__copy { padding: 70px 24px 85px; }
  .editorial__copy h2 { font-size: 36px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { aspect-ratio: .95 / 1; }
  .collection-card h3 { font-size: 45px; }
  .journal-item { grid-template-columns: 1fr 35px; gap: 15px; min-height: 145px; padding: 22px 0; }
  .journal-item p { grid-column: 1 / -1; flex-direction: row; }
  .journal-item h3 { font-size: 12px; line-height: 1.8; }
  .final-cta { padding: 100px 20px; }
  .final-cta h2 { font-size: 42px; }
  .dual-cta--final { gap: 7px; }
  .dual-cta--final .mall-button { width: 50%; min-height: 68px; padding: 11px 8px; }
  .site-footer { padding: 60px 20px 35px; }
  .site-footer__brand strong { font-size: 39px; }
  .site-footer p { margin-bottom: 35px; }
  .mobile-buybar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 70; display: grid; grid-template-columns: 1fr 1fr; height: 58px; box-shadow: 0 -6px 20px rgba(0,0,0,.18); }
  .mobile-buybar a { display: grid; place-items: center; color: #fff; font: 600 11px/1 Arial, sans-serif; letter-spacing: .06em; }
  .mobile-buybar a:first-child { background: var(--rakuten); }
  .mobile-buybar a:last-child { background: var(--amazon); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
