:root {
  --paper: #f7f3ee;
  --white: #fffdfa;
  --ink: #28211d;
  --soft-ink: #6f665f;
  --line: rgba(58, 49, 43, .16);
  --blush: #ead8d3;
  --blush-strong: #d8b8b0;
  --mist: rgba(247, 243, 238, .84);
  --veil: rgba(255, 253, 250, .72);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255,253,250,.92), rgba(247,243,238,.98)),
    var(--paper);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 4.8vw, 78px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255,253,250,.86), rgba(255,253,250,.42), transparent);
  backdrop-filter: blur(6px);
}
.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  font-size: 14px;
  color: rgba(40,33,29,.76);
}
.nav-group.right { justify-content: flex-end; }
.nav-group a { position: relative; padding: 8px 0; }
.nav-group a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width .38s ease;
}
.nav-group a:hover::after, .nav-group a.active::after { width: 100%; }
.nav-item { position: relative; padding: 8px 0; }
.nav-item > a::after { display: none; }
.mega-preview {
  position: absolute;
  top: 100%;
  left: -34px;
  width: min(720px, 82vw);
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  padding: 22px;
  background: rgba(255,253,250,.92);
  border: 1px solid rgba(40,33,29,.12);
  box-shadow: 0 24px 60px rgba(65,48,38,.14);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .36s ease, transform .36s ease;
  backdrop-filter: blur(18px);
}
.nav-item:hover .mega-preview { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mega-links { display: grid; gap: 12px; color: var(--ink); font-size: 18px; }
.mega-links a { padding: 0; }
.mega-links a::after { display: none; }
.mega-visuals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mega-visual {
  min-height: 180px;
  background: linear-gradient(140deg, rgba(234,216,211,.22), rgba(255,253,250,.12)), url("./assets/category-dress.png") center/cover;
}
.mega-visual + .mega-visual {
  background-image: linear-gradient(140deg, rgba(234,216,211,.22), rgba(255,253,250,.12)), url("./assets/category-trench.png");
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.logo-wordmark {
  width: clamp(190px, 20vw, 310px);
  height: 100px;
  object-fit: contain;
}
.lang {
  position: fixed;
  right: clamp(22px, 4.8vw, 78px);
  top: 104px;
  z-index: 18;
  font-size: 12px;
  color: rgba(40,33,29,.62);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: end;
  padding: 130px clamp(22px, 5vw, 82px) clamp(52px, 7vw, 96px);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media video, .hero-media img, .hero-media .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-placeholder {
  background:
    linear-gradient(90deg, rgba(216,184,176,.42), rgba(255,253,250,.06) 42%, rgba(118,105,95,.08)),
    linear-gradient(140deg, #ede1d9, #f9f5ef 36%, #d5c4bb 72%, #bda89f);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,243,238,.86), rgba(247,243,238,.36) 46%, rgba(247,243,238,.08)),
    linear-gradient(0deg, rgba(247,243,238,.92), transparent 38%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin-left: auto;
  animation: rise .9s ease both;
}
.kicker {
  margin-bottom: 18px;
  color: rgba(40,33,29,.58);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
h1, .section-title {
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-weight: 400;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(46px, 7vw, 108px);
  line-height: 1.02;
}
.lead {
  max-width: 660px;
  margin-top: 24px;
  color: var(--soft-ink);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 2;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(40,33,29,.72);
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 1px;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.btn:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn.soft { border-color: rgba(40,33,29,.18); background: rgba(255,253,250,.58); }

.category-rail {
  position: fixed;
  left: clamp(18px, 3.2vw, 54px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 16;
  display: grid;
  gap: clamp(18px, 2.2vw, 30px);
  color: rgba(40,33,29,.78);
  font-size: clamp(20px, 2.1vw, 31px);
  font-weight: 600;
  line-height: 1;
}
.category-rail a {
  text-shadow: 0 1px 16px rgba(255,253,250,.76);
  transition: color .32s ease, transform .32s ease;
}
.category-rail a:hover { color: var(--ink); transform: translateX(6px); }

.scroll-stack { background: var(--paper); }
.full-panel {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(230px, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(88px, 10vw, 140px) clamp(22px, 5vw, 82px);
  border-top: 1px solid rgba(40,33,29,.08);
}
.panel-copy { max-width: 420px; }
.section-title {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.08;
}
.panel-text {
  margin-top: 22px;
  color: var(--soft-ink);
  line-height: 1.95;
  font-size: 15px;
}
.media-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  min-height: 66vh;
}
.media-card {
  position: relative;
  overflow: hidden;
  background: #e7ddd5;
  min-height: 420px;
}
.media-card.tall { min-height: 66vh; }
.media-card .image-placeholder, .media-card video, .media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}
.media-card:hover .image-placeholder, .media-card:hover video, .media-card:hover img { transform: scale(1.045); }
.caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--ink);
  background: rgba(255,253,250,.72);
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.content-page {
  min-height: 100vh;
  padding-top: 86px;
  background: var(--paper);
}
.page-hero {
  min-height: 64vh;
  display: grid;
  grid-template-columns: .44fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  padding: clamp(70px, 9vw, 128px) clamp(22px, 5vw, 82px) clamp(42px, 6vw, 72px);
}
.page-hero .section-title { max-width: 780px; }
.page-hero.visual-hero {
  grid-template-columns: .34fr minmax(0, .86fr) minmax(260px, .62fr);
  align-items: center;
}
.portrait-frame {
  overflow: hidden;
  min-height: 420px;
  aspect-ratio: 4 / 5;
  background: #e7ddd5;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-wrap {
  padding: 0 clamp(22px, 5vw, 82px) 90px;
}
.content-inner {
  max-width: 1180px;
  margin-left: auto;
}
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lookbook {
  display: grid;
  grid-template-columns: repeat(7, minmax(118px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.look-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #e7ddd5;
}
.look-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}
.look-card:hover img { transform: scale(1.045); }
.look-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  padding: 9px 10px;
  color: var(--ink);
  background: rgba(255,253,250,.74);
  backdrop-filter: blur(10px);
  font-size: 14px;
}
.card {
  background: rgba(255,253,250,.7);
  border: 1px solid rgba(40,33,29,.12);
  padding: 28px;
  min-height: 188px;
  transition: transform .42s ease, background .42s ease;
}
.card:hover { transform: translateY(-4px); background: rgba(255,253,250,.94); }
.card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}
.card p, .card dd, .card li {
  color: var(--soft-ink);
  line-height: 1.85;
  font-size: 15px;
}
.card dt { margin-top: 10px; color: var(--ink); }
.tag {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(40,33,29,.48);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.quote {
  border-left: 2px solid var(--blush-strong);
  background: rgba(255,253,250,.74);
  padding: 28px 32px;
  color: var(--soft-ink);
  line-height: 1.95;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,253,250,.7);
}
.table th, .table td {
  border: 1px solid rgba(40,33,29,.12);
  padding: 18px;
  text-align: left;
  vertical-align: top;
  color: var(--soft-ink);
  line-height: 1.8;
}
.table th { color: var(--ink); font-weight: 500; }

.footer {
  padding: 36px clamp(22px, 5vw, 82px);
  color: rgba(40,33,29,.48);
  border-top: 1px solid rgba(40,33,29,.08);
  background: var(--white);
  text-align: right;
  font-size: 13px;
}

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.petal {
  position: absolute;
  z-index: 30;
  pointer-events: none;
  color: rgba(178, 139, 130, .45);
  font-size: var(--s, 18px);
  animation: petalFloat 1.9s ease-out forwards;
}
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes petalFloat {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.4) rotate(0deg); }
  30% { opacity: 1; }
  to { opacity: 0; transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1.2) rotate(42deg); }
}

@media (max-width: 980px) {
  .site-header { position: absolute; grid-template-columns: 1fr; gap: 14px; height: auto; padding-top: 22px; }
  .logo { order: -1; justify-content: flex-start; }
  .logo-wordmark { width: min(68vw, 260px); }
  .nav-group, .nav-group.right { justify-content: flex-start; flex-wrap: wrap; gap: 14px 18px; }
  .mega-preview { display: none; }
  .lang { display: none; }
  .category-rail {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    grid-template-columns: repeat(4, max-content);
    gap: 14px 18px;
    padding: 120px 22px 0;
    font-size: 19px;
  }
  .hero { min-height: 74vh; padding-top: 120px; }
  .hero-copy { margin-left: 0; }
  .full-panel, .page-hero, .page-hero.visual-hero { grid-template-columns: 1fr; }
  .portrait-frame { min-height: 360px; width: min(100%, 520px); }
  .media-grid { grid-template-columns: 1fr; min-height: auto; }
  .media-card, .media-card.tall { min-height: 380px; }
  .content-inner { margin-left: 0; }
  .grid.two, .grid.three, .grid.four { grid-template-columns: 1fr; }
  .lookbook { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .look-card { min-height: 260px; }
  .footer { text-align: left; }
}
