:root {
  --bg: #fbf4f1;
  --surface: rgba(255, 249, 246, 0.8);
  --surface-strong: #fffdfa;
  --surface-deep: #82645e;
  --text: #342723;
  --muted: #7b6b66;
  --line: rgba(52, 39, 35, 0.1);
  --accent: #c98f8a;
  --accent-deep: #b2726e;
  --accent-soft: #f1d8d4;
  --rose: #eed6d7;
  --sage: #c8d1c4;
  --latte: #dbc5bc;
  --shadow: 0 28px 72px rgba(97, 70, 63, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 216, 212, 0.95), transparent 34%),
    radial-gradient(circle at top right, rgba(200, 209, 196, 0.4), transparent 25%),
    linear-gradient(180deg, #fffaf7 0%, #f7efea 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.26), transparent 20%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 36px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 96%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 24px 8px 4px;
  color: var(--muted);
}

.site-footer p {
  margin: 6px 0 0;
  max-width: 480px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 250, 247, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

.site-header.is-hidden {
  opacity: 0;
  transform: translateY(-140%);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fffaf8;
  font-size: 0.8rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.brand-text {
  letter-spacing: 0.16em;
}

.site-nav {
  display: inline-flex;
  gap: 22px;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  color: #fffdfa;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 18px 30px rgba(178, 114, 110, 0.2);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

main {
  display: grid;
  gap: 32px;
  padding-top: 28px;
}

section {
  position: relative;
  overflow: clip;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 36px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  min-height: 820px;
  padding: 40px;
}

.page-intro,
.collection-banner,
.contact-page,
.contact-support,
.values-grid,
.timeline {
  padding: 36px;
}

.page-intro {
  min-height: 360px;
  display: grid;
  align-content: center;
}

.page-intro h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.94;
}

.page-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 214, 215, 0.5) 0%, transparent 68%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 34px;
  width: 140px;
  height: 140px;
  border-radius: 38% 62% 55% 45% / 44% 40% 60% 56%;
  background: rgba(255, 255, 255, 0.22);
}

.hero-copy,
.hero-panel,
.editorial-feature,
.editorial-side,
.story-copy,
.story-visual,
.stats-band article,
.timeline-list article,
.contact-panel,
.collection-highlight,
.capability-grid article,
.scene-card,
.product-card,
.product-table article,
.process-steps article,
.contact-form,
.contact-copy {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-weight: 600;
}

.hero h1 {
  max-width: 9ch;
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.hero-text,
.section-heading,
.scene-card p,
.product-table p,
.process-steps p,
.faq p,
.contact-copy p,
.editorial-side p,
.editorial-copy p,
.product-desc {
  color: var(--muted);
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-metrics li {
  padding: 20px;
  border: 1px solid rgba(52, 39, 35, 0.07);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.hero-panel {
  display: grid;
  align-content: center;
  gap: 16px;
}

.lookbook-stage {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.lookbook-card,
.lookbook-note,
.signal-card,
.editorial-feature,
.editorial-side,
.product-card {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.lookbook-card {
  position: relative;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.lookbook-tall {
  grid-row: span 2;
}

.lookbook-tag,
.editorial-label,
.product-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lookbook-figure,
.editorial-visual,
.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.lookbook-figure::before,
.editorial-visual::before,
.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(52, 39, 35, 0.1));
}

.lookbook-figure::after,
.editorial-visual::after,
.product-image::after {
  content: none;
}

.portrait-a {
  height: 460px;
  margin-top: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(52, 39, 35, 0.08)),
    url("https://images.pexels.com/photos/25988087/pexels-photo-25988087.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center top;
}

.portrait-b {
  height: 240px;
  margin-top: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(52, 39, 35, 0.08)),
    url("https://images.pexels.com/photos/29636806/pexels-photo-29636806.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
}

.lookbook-info {
  padding: 16px 4px 4px;
}

.lookbook-info h3,
.editorial-copy h3,
.editorial-side h3,
.product-meta h3,
.scene-card h3,
.product-table h3,
.process-steps h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.lookbook-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.lookbook-note {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(241, 216, 212, 0.92), rgba(255, 255, 255, 0.62));
}

.lookbook-note p {
  margin: 0;
  color: var(--muted);
}

.lookbook-note strong {
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.signal-side {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.54);
}

.signal-side p {
  margin: 0;
  color: var(--muted);
}

.signal-side strong {
  display: block;
  margin-top: 8px;
  font-size: 1.18rem;
  line-height: 1.55;
}

.signal-side.warm {
  background: linear-gradient(180deg, rgba(241, 216, 212, 0.9), rgba(255, 255, 255, 0.58));
}

.editorial,
.capability,
.scenes,
.shop,
.products,
.process,
.faq,
.contact {
  padding: 36px;
}

.story-grid,
.contact-page,
.collection-highlight {
  display: grid;
  gap: 20px;
}

.story-grid,
.contact-page {
  grid-template-columns: 1fr 1fr;
}

.story-copy,
.story-visual,
.collection-highlight,
.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
}

.story-copy h2,
.contact-panel h2,
.collection-highlight h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.03;
}

.story-copy p,
.contact-panel p,
.collection-highlight p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
}

.story-visual {
  min-height: 420px;
}

.visual-story {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(52, 39, 35, 0.12)),
    url("https://images.pexels.com/photos/29636806/pexels-photo-29636806.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
}

.visual-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(52, 39, 35, 0.08));
}

.visual-story::after {
  content: none;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stats-band article,
.timeline-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
}

.stats-band strong,
.timeline-list strong {
  display: block;
  margin-bottom: 10px;
}

.stats-band p,
.timeline-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline-list h3 {
  margin: 0 0 10px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.contact-info-list strong {
  display: block;
  margin-bottom: 6px;
}

.contact-info-list p {
  margin: 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 14ch;
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  font-size: clamp(2.4rem, 4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.editorial-grid,
.capability-grid,
.scene-list,
.shop-grid,
.product-table,
.process-steps {
  display: grid;
  gap: 18px;
}

.editorial-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.editorial-feature,
.editorial-side,
.capability-grid article,
.scene-card,
.product-card,
.product-table article,
.process-steps article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.editorial-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: center;
}

.visual-soft {
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(52, 39, 35, 0.08)),
    url("https://images.pexels.com/photos/29636806/pexels-photo-29636806.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
}

.visual-knit,
.visual-skirt {
  min-height: 220px;
  margin-bottom: 18px;
}

.visual-knit {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(52, 39, 35, 0.08)),
    url("https://images.pexels.com/photos/28669447/pexels-photo-28669447.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
}

.visual-skirt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(52, 39, 35, 0.12)),
    url("https://images.pexels.com/photos/31845549/pexels-photo-31845549.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center top;
}

.editorial-copy p,
.editorial-side p {
  margin: 0;
  line-height: 1.78;
}

.editorial-copy .editorial-label {
  margin-bottom: 14px;
}

.capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-grid span,
.process-steps strong {
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.capability-grid h3,
.faq summary {
  margin: 12px 0 10px;
}

.capability-grid p,
.scene-card p,
.product-table p,
.process-steps p,
.faq p {
  margin: 0;
  line-height: 1.8;
}

.scene-list,
.product-table {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-image {
  height: 290px;
  margin-bottom: 18px;
}

.image-shirt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(52, 39, 35, 0.08)),
    url("https://images.pexels.com/photos/25988087/pexels-photo-25988087.jpeg?auto=compress&cs=tinysrgb&w=900");
  background-size: cover;
  background-position: center top;
}

.image-cardigan {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(52, 39, 35, 0.08)),
    url("https://images.pexels.com/photos/28669447/pexels-photo-28669447.jpeg?auto=compress&cs=tinysrgb&w=900");
  background-size: cover;
  background-position: center;
}

.image-skirt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(52, 39, 35, 0.1)),
    url("https://images.pexels.com/photos/31845549/pexels-photo-31845549.jpeg?auto=compress&cs=tinysrgb&w=900");
  background-size: cover;
  background-position: center top;
}

.image-dress {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(52, 39, 35, 0.1)),
    url("https://images.pexels.com/photos/29636806/pexels-photo-29636806.jpeg?auto=compress&cs=tinysrgb&w=900");
  background-size: cover;
  background-position: center;
}

.product-meta p,
.product-row {
  margin: 0;
}

.product-desc {
  line-height: 1.72;
}

.product-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-size: 0.95rem;
}

.product-row strong {
  font-size: 1.08rem;
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.faq summary {
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 12px;
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: stretch;
}

.contact-copy {
  padding: 10px 8px 10px 4px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface-strong);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(52, 39, 35, 0.12);
  border-radius: 18px;
  outline: none;
  color: var(--text);
  font: inherit;
  background: #fffdfa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(178, 114, 110, 0.42);
  box-shadow: 0 0 0 4px rgba(201, 143, 138, 0.12);
}

@media (max-width: 1080px) {
  .hero,
  .contact,
  .capability-grid,
  .process-steps,
  .editorial-grid,
  .shop-grid,
  .story-grid,
  .contact-page,
  .stats-band,
  .timeline-list {
    grid-template-columns: 1fr 1fr;
  }

  .lookbook-stage,
  .editorial-feature {
    grid-template-columns: 1fr;
  }

  .capability-grid article:last-child,
  .process-steps article:last-child,
  .editorial-feature {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero,
  .contact,
  .scene-list,
  .product-table,
  .capability-grid,
  .process-steps,
  .editorial-grid,
  .shop-grid,
  .lookbook-stage,
  .editorial-feature,
  .story-grid,
  .contact-page,
  .stats-band,
  .timeline-list {
    grid-template-columns: 1fr;
  }

  .capability-grid article:last-child,
  .process-steps article:last-child,
  .editorial-feature {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
    padding: 24px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .editorial,
  .capability,
  .scenes,
  .shop,
  .products,
  .process,
  .faq,
  .contact,
  .page-intro,
  .collection-banner,
  .contact-page,
  .contact-support,
  .values-grid,
  .timeline {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .portrait-a,
  .portrait-b,
  .product-image,
  .visual-soft,
  .visual-knit,
  .visual-skirt {
    min-height: 220px;
    height: 220px;
  }
}
