/* Yichao Luxury — tokens sampled from luxury.jpeg */
:root {
  --ylt-bg: #f2f1ef;
  --ylt-paper: #f8f7f5;
  --ylt-stone: #ede9e6;
  --ylt-ink: #1a1612;
  --ylt-muted: #7a7268;
  --ylt-taupe: #8a7a68;
  --ylt-cream: #cfb290;
  --ylt-cream-hover: #dcc4a4;
  --ylt-night: #08090b;
  --ylt-header: #151517;
  --ylt-hero: #0a0908;
  --ylt-gold-text: #c4a882;
  --ylt-line: rgba(26, 22, 18, 0.1);
  --ylt-line-light: rgba(255, 255, 255, 0.14);
  --ylt-serif: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  --ylt-sans: "Outfit", "Noto Sans SC", system-ui, sans-serif;
  --ylt-header-h: 88px;
  --ylt-wrap: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--ylt-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ylt-ink);
  background: var(--ylt-bg);
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p, ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: min(var(--ylt-wrap), calc(100% - 48px));
  margin: 0 auto;
}

.serif { font-family: var(--ylt-serif); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--ylt-header-h);
  background: var(--ylt-night);
  color: #fff;
}

.header-inner {
  height: var(--ylt-header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.brand strong {
  font-family: var(--ylt-serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.22em;
}

.brand span {
  font-size: 7px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.nav-desktop a { color: rgba(255, 255, 255, 0.78); }
.nav-desktop a:hover,
.nav-desktop a.is-on { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.lang-switch a { color: rgba(255, 255, 255, 0.7); }
.lang-switch a.is-on,
.lang-switch a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  background: var(--ylt-cream);
  color: var(--ylt-night);
}

.btn:hover { background: var(--ylt-cream-hover); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }

.btn-ghost--dark {
  border-color: var(--ylt-ink);
  color: var(--ylt-ink);
}

.btn-ghost--dark:hover { background: var(--ylt-ink); color: #fff; }

.btn--sm { padding: 10px 18px; font-size: 11px; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: #fff;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--ylt-night);
  color: #fff;
  padding: 28px 24px;
  display: none;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.nav-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav a {
  font-family: var(--ylt-serif);
  font-size: 28px;
  color: rgba(255, 255, 255, 0.85);
}

.mobile-nav a.is-on { color: var(--ylt-cream); }

.mobile-nav .lang-switch { margin-top: 12px; }
.mobile-nav .btn { align-self: flex-start; margin-top: 8px; }

@media (min-width: 980px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .header-actions .btn { display: inline-flex; }
}

@media (max-width: 979px) {
  .header-actions .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ylt-hero);
  color: #fff;
  min-height: min(78vh, 720px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(78vh, 720px);
}

.hero-copy {
  padding: 56px 0 48px;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--ylt-serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.hero-sub {
  font-family: var(--ylt-serif);
  font-size: clamp(18px, 2.4vw, 26px);
  margin-top: 18px;
  letter-spacing: 0.08em;
}

.hero-lede {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 420px;
  font-size: 14px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-photo {
  position: relative;
  min-height: 320px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-caption {
  display: none;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.32em;
  font-size: 10px;
  color: var(--ylt-gold-text);
  z-index: 2;
}

.hero-caption span { display: block; }

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--ylt-line-light);
}

.trust a { color: #fff; }
.trust strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trust span {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }
  .hero-copy { padding: 88px 0 64px; }
  .hero-photo { min-height: auto; }
  .hero-caption { display: flex; }
  .trust { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Brands ---------- */
.brands {
  background: var(--ylt-bg);
  padding: 56px 0 28px;
  text-align: center;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ylt-muted);
}

.section-title {
  font-family: var(--ylt-serif);
  font-weight: 500;
  font-size: 28px;
  margin-top: 8px;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  align-items: center;
  margin-top: 36px;
  padding: 8px 0 28px;
}

.brand-row a {
  font-family: var(--ylt-serif);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--ylt-ink);
  padding: 12px 0;
}

.brand-row a:hover { color: var(--ylt-taupe); }

.brand-row .more {
  font-family: var(--ylt-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylt-taupe);
}

@media (min-width: 800px) {
  .brand-row {
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
    text-align: center;
  }
}

/* ---------- Arrivals ---------- */
.arrivals {
  background: var(--ylt-bg);
  padding: 24px 0 80px;
}

.arrivals-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.arrivals-head h2 { font-family: var(--ylt-serif); font-weight: 500; font-size: 28px; }
.arrivals-head p { color: var(--ylt-muted); font-size: 14px; margin-top: 4px; }

.link-arrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ylt-taupe);
  white-space: nowrap;
}

.link-arrow:hover { color: var(--ylt-ink); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 16px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ylt-paper);
}

.product-card h3 {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card p {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ylt-muted);
}

.product-card .more {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ylt-taupe);
}

.product-card:hover .more { color: var(--ylt-ink); }

@media (min-width: 900px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 28px 18px; }
}

/* ---------- Boutique band ---------- */
.boutique-band {
  display: grid;
  grid-template-columns: 1fr;
}

.boutique-visual {
  position: relative;
  min-height: 420px;
  color: #fff;
}

.boutique-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boutique-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.15), rgba(8, 9, 11, 0.55));
}

.boutique-visual .copy {
  position: relative;
  z-index: 1;
  padding: 48px 32px;
  max-width: 420px;
}

.boutique-visual h2 {
  font-family: var(--ylt-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
}

.boutique-visual p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.boutique-card {
  background: var(--ylt-stone);
  display: grid;
  grid-template-columns: 1fr;
}

.boutique-card .info { padding: 40px 32px; }
.boutique-card h2 {
  font-family: var(--ylt-serif);
  font-weight: 500;
  font-size: 28px;
}
.boutique-card .zh { color: var(--ylt-muted); margin-top: 4px; margin-bottom: 24px; }

.meta-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--ylt-ink);
}

.meta-row svg { margin-top: 3px; color: var(--ylt-taupe); }
.meta-row a { text-decoration: underline; text-underline-offset: 3px; }

.boutique-card .store {
  min-height: 240px;
  background: #cfc8bf center/cover no-repeat;
}

@media (min-width: 900px) {
  .boutique-band { grid-template-columns: 1.15fr 0.85fr; }
  .boutique-card { grid-template-columns: 1fr 0.85fr; }
  .boutique-visual { min-height: 520px; }
}

/* ---------- CTA ---------- */
.cta-band {
  position: relative;
  min-height: 340px;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 11, 0.62);
}

.cta-band .copy {
  position: relative;
  z-index: 1;
  padding: 72px 24px;
}

.cta-band h2 {
  font-family: var(--ylt-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.cta-band p {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ylt-night);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.footer-nav a:hover { color: #fff; }

.footer-base {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--ylt-line-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-base a:hover { color: #fff; }

/* ---------- Inner pages ---------- */
.page-hero {
  background: var(--ylt-night);
  color: #fff;
  padding: 56px 0 48px;
}

.page-hero h1 {
  font-family: var(--ylt-serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.04em;
}

.page-hero p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}

.page-body { padding: 56px 0 80px; }

.prose { max-width: 720px; }
.prose h2 {
  font-family: var(--ylt-serif);
  font-weight: 500;
  font-size: 28px;
  margin: 36px 0 12px;
}
.prose p + p { margin-top: 14px; }
.prose a { color: var(--ylt-taupe); text-decoration: underline; text-underline-offset: 3px; }

.split-list { display: grid; gap: 28px; margin-top: 36px; }
@media (min-width: 800px) {
  .split-list { grid-template-columns: 1fr 1fr; }
}

.cat-block {
  padding: 28px 0;
  border-top: 1px solid var(--ylt-line);
}

.cat-block h2 {
  font-family: var(--ylt-serif);
  font-weight: 500;
  font-size: 32px;
}

.cat-block p { margin-top: 10px; color: var(--ylt-muted); max-width: 520px; }

.piece {
  scroll-margin-top: 110px;
  padding: 32px 0;
  border-top: 1px solid var(--ylt-line);
  display: grid;
  gap: 24px;
  align-items: center;
}

.piece img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ylt-paper);
}

.piece h2 {
  font-family: var(--ylt-serif);
  font-weight: 500;
  font-size: 32px;
}

.piece .house {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ylt-taupe);
}

@media (min-width: 800px) {
  .piece { grid-template-columns: 280px 1fr; }
}

.disclaimer-updated { color: var(--ylt-muted); font-size: 13px; margin: 8px 0 24px; }
