:root {
  --paper: #fbfaf7;
  --surface: #ffffff;
  --ink: #151515;
  --muted: #706c66;
  --line: #e7e1d8;
  --line-strong: #d2c8bb;
  --red: #8f111f;
  --red-deep: #6f0b16;
  --gold: #c2a36e;
  --black: #0d0d0d;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--black);
  color: var(--ink);
  font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-menu-open {
  overflow: hidden;
}

body.entry-active {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
}

.site-shell {
  width: 100%;
  max-width: 430px;
  min-height: 100svh;
  margin: 0 auto;
  background: var(--paper);
  overflow: hidden;
  position: relative;
}

.entry-screen {
  position: fixed;
  inset: 0 auto 0 50%;
  z-index: 80;
  width: min(100%, 430px);
  min-height: 100svh;
  transform: translateX(-50%);
  overflow: hidden;
  background: #16120f;
  color: #fff;
  touch-action: none;
  transition: transform 720ms cubic-bezier(0.72, 0, 0.18, 1), opacity 520ms ease;
}

.entry-screen.is-dismissed {
  opacity: 0.98;
  pointer-events: none;
  transform: translate(-50%, -100%);
}

.entry-image,
.entry-vignette {
  position: absolute;
  inset: 0;
}

.entry-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  user-select: none;
  -webkit-user-drag: none;
}

.entry-vignette {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.04) 24%, rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.18));
}

.entry-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: calc(env(safe-area-inset-top) + 20px) 16px 0;
  display: flex;
  justify-content: center;
}

.entry-logo {
  width: min(160px, 100%);
  filter: brightness(0) invert(1) drop-shadow(0 3px 12px rgba(0, 0, 0, 0.46));
}

.entry-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 20px calc(env(safe-area-inset-bottom) + 14px);
  display: grid;
  justify-items: center;
}

.entry-swipe {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.entry-swipe svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: entry-swipe-cue 1.6s ease-in-out infinite;
}

.entry-swipe span {
  font-size: 16px;
  line-height: 1.35;
}

.entry-tabs {
  width: 100%;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  color: rgba(255, 255, 255, 0.58);
}

.entry-tabs span {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1.2;
}

.entry-tabs .is-active {
  color: #fff;
}

.entry-tabs svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.entry-tabs img {
  width: 28px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(194, 163, 110, 0.75));
}

@keyframes entry-swipe-cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }

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

@media (prefers-reduced-motion: reduce) {
  .entry-screen {
    transition: none;
  }

  .entry-swipe svg {
    animation: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) 16px 0;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(18px);
}

.icon-button,
.search-button,
.close-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.icon-button {
  flex-direction: column;
  gap: 6px;
}

.icon-button span {
  width: 22px;
  height: 1px;
  background: var(--ink);
}

.search-button {
  justify-self: end;
}

.search-button svg,
.close-button svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.brand-mark {
  width: 28px;
  height: 18px;
  object-fit: contain;
}

.brand-wordmark {
  width: 134px;
  height: 15px;
  object-fit: contain;
}

.hero {
  position: relative;
  min-height: min(620px, calc(100svh - 96px));
  isolation: isolate;
  background: #161616;
  overflow: hidden;
  touch-action: pan-y;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 5800ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-image-closeup {
  object-position: 58% center;
}

.hero-image-onbody {
  object-position: 42% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  z-index: -1;
}

.hero-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 58px;
  color: #fff;
  text-align: center;
}

.hero-copy .eyebrow {
  transition: opacity 280ms ease, visibility 280ms ease;
}

.hero[data-hero-index="1"] .hero-copy .eyebrow {
  opacity: 0;
  visibility: hidden;
}

.hero-dots {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.hero-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

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

.hero h1,
.statement h2,
.collections h2,
.editorial h2,
.services h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  font-weight: 400;
}

.hero h1 {
  font-size: 37px;
  line-height: 1.12;
}

.hero p:not(.eyebrow) {
  margin: 12px auto 24px;
  max-width: 18em;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.7;
}

.button {
  min-height: 42px;
  min-width: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 13px;
  line-height: 1.3;
}

.button-light {
  color: #fff;
}

.button-dark {
  color: #fff;
}

.section-padding {
  padding: 46px 26px;
}

.statement {
  text-align: center;
  background:
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.statement h2 {
  max-width: 330px;
  margin: 0 auto;
  font-size: 25px;
  line-height: 1.48;
}

.statement p:not(.eyebrow) {
  max-width: 310px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.collections {
  background: var(--paper);
}

.collections h2,
.services h2 {
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 22px;
}

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

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

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.34;
  object-fit: cover;
  background: #eee8df;
}

.product-card h3 {
  margin: 13px 0 5px;
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
}

.product-card p {
  margin: 0;
  min-height: 38px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.product-card a {
  display: inline-flex;
  margin-top: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--red);
  color: var(--red);
  font-size: 13px;
  line-height: 1.4;
}

.editorial {
  background: #101010;
  color: #fff;
}

.editorial > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.editorial-copy {
  padding-top: 38px;
  padding-bottom: 42px;
}

.editorial h2 {
  font-size: 30px;
  line-height: 1.25;
}

.editorial p:not(.eyebrow) {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.95;
}

.services {
  background: #fff;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-list li {
  border-bottom: 1px solid var(--line);
}

.service-list a {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.service-list strong,
.service-list small {
  display: block;
}

.service-list strong {
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
}

.service-list small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.service-list a > span:last-child {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 26px;
  line-height: 1;
}

.site-footer {
  padding: 36px 26px calc(34px + env(safe-area-inset-bottom));
  background: var(--black);
  color: #fff;
  text-align: center;
}

.footer-cn {
  margin: 0 0 6px;
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
}

.footer-en {
  margin: 0 0 24px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 13px;
  line-height: 1.2;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 18px;
  margin-bottom: 26px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.is-menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel {
  width: 100%;
  max-width: 430px;
  height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transform: translateX(-18px);
  transition: transform 220ms ease;
  overflow: hidden;
}

.is-menu-open .menu-panel {
  transform: translateX(0);
}

.menu-header {
  flex: 0 0 auto;
  height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) 16px 0;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.close-button {
  justify-self: start;
}

.menu-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.menu-brand img:first-child {
  width: 28px;
  height: 18px;
  object-fit: contain;
}

.menu-brand img:last-child {
  width: 134px;
  height: 15px;
  object-fit: contain;
}

.menu-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 18px;
}

.menu-categories {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.menu-categories a {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 52px 0 26px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.4;
}

.menu-categories a:last-child {
  border-bottom: 0;
}

.menu-categories a::after {
  content: "›";
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 24px;
  line-height: 1;
}

.menu-categories .is-active {
  background: #f2eee8;
}

.menu-series {
  padding: 28px 26px 18px;
}

.menu-series h2 {
  margin: 0 0 16px;
  font-family: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
}

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

.menu-series-grid a {
  display: block;
  min-width: 0;
}

.menu-series-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eee8df;
}

.menu-series-grid span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.35;
}

.menu-all-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--black);
  color: var(--black);
  font-size: 14px;
  line-height: 1.4;
}

.quick-links {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--black);
  color: #fff;
}

.quick-links a {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.45;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-arrows {
  flex: 0 0 auto;
  height: calc(54px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--black);
  color: #fff;
}

.menu-arrows span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

.menu-arrows span:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

@media (max-width: 360px) {
  .section-padding,
  .menu-series {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-copy {
    left: 22px;
    right: 22px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .statement h2 {
    font-size: 23px;
  }

  .brand-wordmark,
  .menu-brand img:last-child {
    width: 122px;
  }

  .menu-categories a {
    padding-left: 22px;
  }
}
