/* WANG XIAO DU Official — Belle-inspired fashion site */
:root {
  --ink: #121212;
  --ink-soft: #3a3a3a;
  --muted: #7a7670;
  --paper: #f8f7f5;
  --paper-deep: #efece7;
  --line: rgba(18, 18, 18, 0.12);
  --white: #ffffff;
  --accent: #8b6b4a;
  --nav-h: 96px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* 系统字体优先，避免国外字体 CDN 拖慢手机流量 */
  --font-display: "Songti SC", "STSong", "Noto Serif SC", "Source Han Serif SC", SimSun, Georgia, serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--safe-top));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(139, 107, 74, 0.08), transparent 60%),
    linear-gradient(180deg, #fbfaf8 0%, var(--paper) 40%, #f3f1ed 100%);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header — Belle-like minimal bar */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-solid,
.site-header.is-inner {
  background: rgba(248, 247, 245, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-hero-light .nav-link,
.site-header.is-hero-light .nav-toggle span,
.site-header.is-hero-light .brand-en {
  color: var(--white);
}

.site-header.is-hero-light:not(.is-solid) .brand-lockup .brand-logo {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.site-header.is-solid .nav-link,
.site-header.is-inner .nav-link,
.site-header.is-solid .nav-toggle span,
.site-header.is-inner .nav-toggle span,
.site-header.is-solid .brand-en,
.site-header.is-inner .brand-en {
  color: var(--ink);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-right {
  justify-content: flex-end;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  justify-self: center;
}

.brand-lockup img,
.brand-lockup .brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}

.brand-lockup .brand-en {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  font-weight: 600;
  text-indent: 0.28em;
}

.footer-brand img,
.footer-brand .brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 2px;
}

.nav-link {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

/* Hero — full bleed, brand first */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 14s var(--ease) forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 10vh;
  display: grid;
  gap: 18px;
  max-width: 640px;
  animation: riseIn 1s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0;
}

.hero-brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.18em;
  letter-spacing: 0.42em;
  margin-bottom: 14px;
  font-weight: 500;
  opacity: 0.85;
}

.hero-line {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  max-width: 28em;
  opacity: 0.92;
  font-weight: 400;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  transition: transform 0.35s var(--ease), background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-line {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.28em;
  opacity: 0.75;
}

/* Sections */
.section {
  padding: clamp(64px, 10vw, 112px) 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(28px, 5vw, 48px);
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.section-desc {
  margin: 0 auto;
  max-width: 36em;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Discover strip like Belle */
.discover {
  padding-top: 0;
}

.discover-panel {
  position: relative;
  min-height: min(78vh, 760px);
  overflow: hidden;
  color: var(--white);
}

.discover-panel img {
  width: 100%;
  height: 100%;
  min-height: min(78vh, 760px);
  object-fit: cover;
}

.discover-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.25) 100%);
}

.discover-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
  gap: 14px;
  max-width: 520px;
  justify-items: start;
}

/* Collection mosaic — Belle style full-bleed tiles */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.collection-card {
  position: relative;
  min-height: clamp(280px, 42vw, 460px);
  overflow: hidden;
  color: var(--white);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.62) 100%);
}

.collection-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.collection-meta .en {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.8;
}

.collection-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
}

.collection-meta .more {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Film / OOTD strip */
.film-section {
  background: var(--ink);
  color: var(--white);
}

.film-section .eyebrow,
.film-section .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.film-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.film-visual {
  overflow: hidden;
  min-height: 520px;
}

.film-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.film-copy {
  display: grid;
  gap: 16px;
  padding: 12px;
}

.film-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.stat {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.stat span {
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* Product lookbook row */
.lookbook-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.look-item {
  scroll-snap-align: start;
  display: grid;
  gap: 12px;
}

.look-item .thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-deep);
}

.look-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.look-item img[src*="canvas"] {
  object-position: center 65%;
}

.look-item:hover img {
  transform: scale(1.05);
}

.look-item h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.look-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Brand manifesto */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.manifesto-visual {
  min-height: 560px;
  overflow: hidden;
}

.manifesto-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.manifesto-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(12px, 3vw, 36px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(239, 236, 231, 0.9));
}

.manifesto-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.2;
}

.manifesto-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.pillars {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.pillar {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.pillar strong {
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.pillar span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Classics spotlight */
.classic-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.classic-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  color: var(--white);
}

.classic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.classic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7));
}

.classic-copy {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.classic-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.classic-copy p {
  margin: 0;
  opacity: 0.88;
  font-size: 0.95rem;
}

/* Honors */
.honor-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, 1fr);
  gap: 12px;
}

.honor-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
}

.honor-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eee;
}

.honor-card.featured img {
  aspect-ratio: 16 / 11;
  min-height: 280px;
}

.honor-body {
  padding: 18px;
  display: grid;
  gap: 6px;
}

.honor-body strong {
  font-size: 0.95rem;
}

.honor-body span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Page hero for inner pages */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 48px;
  text-align: center;
}

.page-hero h1 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 500;
}

.page-hero-line {
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 720px) {
  .page-hero-line {
    white-space: normal;
  }
}

.prose {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 16px;
  color: var(--ink-soft);
}

.prose h2 {
  margin: 24px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
}

.timeline {
  display: grid;
  gap: 0;
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.name-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.name-card {
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
  min-height: 220px;
}

.name-card .glyph {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
}

.name-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.name-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.charity-photo {
  margin: 36px 0 0;
  display: grid;
  gap: 12px;
}

.charity-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 30%;
}

.charity-photo figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.brand-spirit {
  background: var(--paper-deep);
}

.brand-spirit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.brand-spirit-visual {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(18px, 3vw, 32px);
}

.brand-spirit-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 6;
  object-fit: contain;
  object-position: center;
  background: #faf9f7;
}

.brand-spirit-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.25;
}

.brand-spirit-copy > p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  max-width: 34em;
}

@media (max-width: 960px) {
  .brand-spirit-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brand-spirit-visual {
    max-width: 420px;
    margin-inline: auto;
  }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.footer-brand {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-brand p {
  margin: 0;
  max-width: 28em;
  font-size: 0.92rem;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  opacity: 0.8;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  opacity: 0.65;
}

/* ===== Home upgrades ===== */
.hero-home {
  place-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.hero-content-center {
  z-index: 3;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
  max-width: 720px;
  gap: 16px;
}

.hero-mark {
  width: 88px;
  height: 88px;
  object-fit: contain;
  opacity: 0.95;
  margin-bottom: 4px;
  animation: riseIn 0.9s var(--ease) both;
  image-rendering: -webkit-optimize-contrast;
}

.hero-content-center .hero-brand {
  animation: riseIn 1s 0.08s var(--ease) both;
}

.hero-content-center .hero-line {
  animation: riseIn 1s 0.16s var(--ease) both;
  max-width: 22em;
}

.hero-content-center .cta-row {
  justify-content: center;
  animation: riseIn 1s 0.24s var(--ease) both;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}

.hero-dots button.is-active {
  background: #fff;
  width: 40px;
}

.hero-home .hero-scroll {
  left: 28px;
  right: auto;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 16px 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: tickerMove 36s linear infinite;
  white-space: nowrap;
}

.page-home .discover {
  padding: 0;
}

.page-home .discover-panel {
  display: block;
  min-height: min(72vh, 700px);
}

.page-home .discover-panel img {
  min-height: min(72vh, 700px);
  transition: transform 1.2s var(--ease);
}

.page-home .discover-panel:hover img {
  transform: scale(1.04);
}

.page-home .discover-copy {
  gap: 12px;
}

.page-home .discover-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
}

.page-home .discover-copy p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

.discover-eyebrow {
  color: rgba(255, 255, 255, 0.72) !important;
}

.discover-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.section-tight {
  padding-bottom: clamp(40px, 6vw, 72px);
}

.collection-bleed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.collection-bleed .collection-card {
  min-height: clamp(360px, 52vw, 620px);
}

.collection-bleed .collection-card::after {
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.72) 100%);
}

.collection-bleed .collection-meta {
  left: 22px;
  right: 22px;
  bottom: 22px;
  transform: translateY(6px);
  transition: transform 0.45s var(--ease);
}

.collection-bleed .collection-card:hover .collection-meta {
  transform: none;
}

.collection-card-shoes img,
.discover-panel-shoes img {
  object-position: center 78%;
}

.collection-bleed .more {
  display: inline-block;
  margin-top: 4px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.film-home {
  padding: 0;
}

.film-home-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(88vh, 820px);
}

.film-home .film-visual,
.film-home .film-visual img {
  min-height: 100%;
  height: 100%;
}

.film-home .film-copy {
  align-content: center;
  padding: clamp(36px, 7vw, 88px);
  gap: 20px;
}

.film-home .film-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34em;
}

.ootd-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
  align-items: stretch;
}

.ootd-feature,
.ootd-item {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.ootd-feature {
  min-height: 560px;
}

.ootd-stack {
  display: grid;
  gap: 12px;
}

.ootd-item {
  min-height: 274px;
}

.ootd-feature img,
.ootd-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: inherit;
  transition: transform 1s var(--ease);
}

.ootd-feature:hover img,
.ootd-item:hover img {
  transform: scale(1.05);
}

.ootd-feature::after,
.ootd-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.7) 100%);
}

.ootd-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.ootd-caption h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.ootd-caption p {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.82;
}

.manifesto-bleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(80vh, 760px);
}

.manifesto-bleed .manifesto-visual,
.manifesto-bleed .manifesto-visual img {
  min-height: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto-bleed .manifesto-copy {
  background:
    linear-gradient(165deg, #fbfaf8 0%, #f1eee8 100%);
  padding: clamp(36px, 7vw, 88px);
}

.classic-eyebrow {
  color: rgba(255, 255, 255, 0.7) !important;
}

.section-honors {
  background: var(--paper-deep);
}

.honor-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.honor-tile {
  background: rgba(255, 255, 255, 0.72);
  padding: 28px 22px;
  display: grid;
  gap: 10px;
  min-height: 140px;
  align-content: center;
}

.honor-tile strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.honor-tile span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-en {
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 12px;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* Mobile */
@media (max-width: 960px) {
  :root {
    --nav-h: 64px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .site-header {
    height: calc(var(--nav-h) + var(--safe-top));
    padding-top: var(--safe-top);
  }

  .header-inner {
    width: min(1280px, calc(100% - 28px));
    grid-template-columns: auto 1fr auto;
  }

  .brand-lockup {
    justify-self: start;
    flex-direction: row;
    gap: 10px;
  }

  .brand-lockup img,
  .brand-lockup .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-lockup .brand-en {
    display: none;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
    width: 44px;
    height: 44px;
  }

  .mobile-nav {
    position: fixed;
    top: calc(var(--nav-h) + var(--safe-top));
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(248, 247, 245, 0.98);
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 20px max(20px, var(--safe-right)) max(28px, var(--safe-bottom)) max(20px, var(--safe-left));
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    font-size: 1.05rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.08em;
  }

  .container {
    width: min(1200px, calc(100% - 28px));
  }

  .hero-content {
    width: min(1200px, calc(100% - 28px));
    margin-bottom: max(7vh, calc(20px + var(--safe-bottom)));
    gap: 14px;
  }

  .hero-brand {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
  }

  .hero-line {
    font-size: 0.95rem;
  }

  .cta-row {
    gap: 10px;
  }

  .cta-row .btn {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: clamp(48px, 12vw, 88px) 0;
  }

  .page-hero {
    padding: calc(var(--nav-h) + var(--safe-top) + 36px) 0 36px;
  }

  .collection-grid,
  .collection-bleed,
  .film-layout,
  .film-home-grid,
  .manifesto,
  .manifesto-bleed,
  .classic-grid,
  .honor-grid,
  .honor-strip,
  .ootd-grid,
  .footer-grid,
  .name-grid {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .film-visual,
  .film-visual img,
  .manifesto-visual,
  .manifesto-visual img,
  .film-home-grid,
  .manifesto-bleed {
    min-height: 300px;
  }

  .ootd-feature,
  .ootd-item {
    min-height: 280px;
  }

  .collection-bleed .collection-card {
    min-height: 360px;
  }

  .hero-mark {
    width: 56px;
    height: 56px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mag-sticky-buy {
    padding: 12px max(16px, var(--safe-right)) max(12px, var(--safe-bottom)) max(16px, var(--safe-left));
  }

  .mag-breadcrumb {
    padding-top: calc(var(--nav-h) + var(--safe-top) + 16px);
  }
}

@media (max-width: 720px) {
  .collection-bleed {
    grid-template-columns: 1fr 1fr;
  }

  .honor-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .collection-bleed,
  .honor-strip {
    grid-template-columns: 1fr;
  }

  .collection-bleed .collection-card {
    min-height: 320px;
  }

  .discover-panel,
  .discover-panel img {
    min-height: min(62vh, 520px);
  }

  .btn {
    min-height: 48px;
  }

  .magazine-filter {
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .magazine-filter::-webkit-scrollbar {
    display: none;
  }

  .mag-filter-btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 8px 16px;
  }
}

/* 省流量 / 弱网：减少动效与重绘 */
html.is-save-data .hero-media img,
html.is-save-data .hero-slide img {
  animation: none !important;
  transform: none !important;
}

html.is-save-data .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html.is-save-data .hero-content {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Magazine-style product display ===== */
.magazine-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(28px, 5vw, 48px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.mag-filter-btn {
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--line);
  background: transparent;
  transition: all 0.3s var(--ease);
}

.mag-filter-btn:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.mag-filter-btn.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mag-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.mag-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.mag-card-cover {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
}

.mag-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.mag-card:hover .mag-card-cover img {
  transform: scale(1.05);
}

.mag-card-cover-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--paper-deep), #e8e4de);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 2rem;
}

.mag-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mag-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.mag-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.mag-card-summary {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mag-card-footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mag-card-read {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.mag-card:hover .mag-card-read {
  opacity: 0.7;
}

.mag-card-platform {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.magazine-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
  font-size: 1rem;
}

.magazine-load-more {
  text-align: center;
  margin-top: 48px;
}

/* Magazine detail page */
.magazine-hero {
  position: relative;
  min-height: 62vh;
  min-height: 62dvh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  color: var(--white);
  margin-top: var(--nav-h);
}

.magazine-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-deep);
  transform: scale(1.04);
  animation: heroZoom 14s var(--ease) forwards;
}

.magazine-hero-img-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  font-size: 3rem;
}

.magazine-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.magazine-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(36px, 6vw, 72px);
  display: grid;
  gap: 12px;
  max-width: 760px;
  animation: riseIn 1s var(--ease) both;
}

.magazine-hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
}

.magazine-hero-summary {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  opacity: 0.9;
  max-width: 40em;
  line-height: 1.6;
}

.magazine-article {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

.magazine-article:empty {
  display: none;
}

.magazine-article h1,
.magazine-article h2,
.magazine-article h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  margin: 1.8em 0 0.6em;
  line-height: 1.3;
}

.magazine-article h1 { font-size: 2rem; }
.magazine-article h2 { font-size: 1.6rem; }
.magazine-article h3 { font-size: 1.3rem; }

.magazine-article p {
  margin: 0 0 1.2em;
}

.magazine-article img {
  width: 100%;
  border-radius: 2px;
  margin: 1.5em 0;
}

.magazine-article blockquote {
  margin: 1.5em 0;
  padding: 16px 24px;
  border-left: 3px solid var(--accent);
  background: var(--paper-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
}

.magazine-article ul,
.magazine-article ol {
  margin: 0 0 1.2em;
  padding-left: 1.5em;
}

.magazine-article li {
  margin-bottom: 0.5em;
}

.magazine-article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.magazine-article strong {
  color: var(--ink);
  font-weight: 600;
}

.magazine-shop {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Magazine responsive */
@media (max-width: 960px) {
  .magazine-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .magazine-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mag-card-cover {
    aspect-ratio: 16 / 10;
  }

  .magazine-hero {
    min-height: 50vh;
  }

  .magazine-article {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

/* ===== Product detail landing page enhancements ===== */

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Breadcrumb */
.mag-breadcrumb {
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.mag-breadcrumb a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.mag-breadcrumb a:hover {
  color: var(--ink);
}

.mag-breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}

.mag-breadcrumb .current {
  color: var(--ink-soft);
}

/* Hero meta info */
.magazine-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  align-items: center;
}

.mag-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.08);
}

.mag-hero-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.mag-hero-meta-text {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

/* Article section */
.mag-article-section {
  padding: clamp(48px, 7vw, 80px) 0 clamp(32px, 5vw, 56px);
}

.magazine-article-wrap {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

/* Drop cap on first paragraph */
.magazine-article > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5em;
  font-weight: 500;
  float: left;
  line-height: 0.8;
  margin: 0.05em 0.12em 0 0;
  color: var(--accent);
}

/* Article divider */
.magazine-article > p:first-of-type {
  margin-top: 0;
}

.magazine-article::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
}

/* Article footer with share */
.mag-article-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mag-share {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mag-share-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.mag-share-btn {
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.mag-share-btn:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.mag-share-btn.copied {
  color: var(--accent);
  border-color: var(--accent);
}

/* Related products */
.mag-related-section {
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(32px, 5vw, 56px);
  background: var(--paper-deep);
}

.mag-related-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 32px;
}

.mag-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mag-related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.4s var(--ease);
}

.mag-related-card:hover {
  transform: translateY(-3px);
}

.mag-related-cover {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper);
}

.mag-related-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.mag-related-card:hover .mag-related-cover img {
  transform: scale(1.06);
}

.mag-related-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}

.mag-related-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

/* Sticky mobile buy bar */
.mag-sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.mag-sticky-buy.is-visible {
  transform: translateY(0);
}

.mag-sticky-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.mag-sticky-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mag-sticky-btn {
  flex-shrink: 0;
  padding: 10px 28px;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--white);
  background: var(--ink);
  transition: opacity 0.3s ease;
}

.mag-sticky-btn:hover {
  opacity: 0.85;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Toast */
.mag-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9999;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

.mag-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Loading skeleton */
.mag-skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, var(--paper-deep) 25%, #e4e0da 50%, var(--paper-deep) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 2px;
}

.mag-skeleton-line + .mag-skeleton-line {
  margin-top: 12px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Detail page responsive */
@media (max-width: 960px) {
  .mag-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .mag-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .magazine-article > p:first-of-type::first-letter {
    font-size: 2.8em;
  }

  .mag-article-footer {
    flex-direction: column;
    gap: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 72px;
  }
}
