/* ================================================================
   FCL Home — static prototype
   Matches Figma 1n5q1vDQ2XnGKfZpZSopHZ
   Container: 1280 inside 1564 frame (142px gutter)
   Type: Cormorant Garamond (display serif) + Inter (UI sans)
   ================================================================ */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 禁止 Safari / iOS 自动放大字号（accessibility 设置 + 横竖屏切换都不再缩放）*/
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: 'cv11', 'ss01', 'ss03';   /* Inter 的几何小调，更接近 Söhne */
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Tokens ---------- */
:root {
  --max:        1280px;
  --gutter:     142px;
  --ink:        #111111;
  --ink-2:      #4a4a4a;
  --ink-3:      #6b6b6b;
  --hair:       #e7e7e7;
  --soft:       #f4f5f7;
  --display:    'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sans:       'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ---------- Containers / sections ---------- */
.fcl-container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.fcl-container--mid    { max-width: 1152px; }
.fcl-container--narrow { max-width: 1024px; }

.fcl-section {
  padding: 128px 0;
}
.fcl-section--soft     { background: var(--soft); }
.fcl-section--centered .fcl-section__centerhead { text-align: center; }

/* ---------- Eyebrows / headings ---------- */
.fcl-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.fcl-h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.fcl-section__sub {
  margin: 24px auto 0;
  max-width: 672px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
}

.fcl-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
}
.fcl-section__centerhead { margin-bottom: 80px; }
.fcl-section__foot {
  margin-top: 80px;
  text-align: center;
}
.fcl-section__foot--center { margin-top: 96px; }

.fcl-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: opacity .2s;
}
.fcl-viewall:hover { opacity: .6; }

.fcl-textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .2s;
}
.fcl-textlink:hover { opacity: .6; }

/* ---------- Header ---------- */
.fcl-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.fcl-header.is-scrolled {
  background: #ffffff;
  border-bottom-color: var(--hair);
}
.fcl-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  max-width: 1500px;
  margin: 0 auto;
}
.fcl-header__logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.fcl-header__nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.fcl-header__nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: opacity .2s;
}
.fcl-header__nav a:hover { opacity: .6; }
.fcl-header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.fcl-iconbtn { color: var(--ink); padding: 4px; line-height: 0; }
.fcl-iconbtn:hover { opacity: .6; }
.fcl-header__signin {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.fcl-header__signin:hover { opacity: .6; }

/* ---------- Hero ---------- */
/* 强制白字 — 顶住 Bridge / 主题对 h1/h2/p 的颜色覆盖 */
.fcl-hero,
.fcl-hero .fcl-hero__title,
.fcl-hero .fcl-hero__lead,
.fcl-hero .fcl-hero__copy,
.fcl-hero .fcl-hero__copy * {
  color: #ffffff !important;
}
/* Solid 按钮里的文字保持黑色 */
.fcl-hero .fcl-btn--solid,
.fcl-hero .fcl-btn--solid * {
  color: #111111 !important;
}

.fcl-hero {
  position: relative;
  /* 固定 720px 上限、最多 78vh — 永远留出 viewport 底部 22% 给后续内容 */
  height: min(720px, 78vh);
  min-height: 480px;
  overflow: hidden;
}
/* Each slide is an absolute layer, fade in/out */
.fcl-hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  pointer-events: none;
}
.fcl-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.fcl-hero__media {
  position: absolute; inset: 0;
  background: #111;   /* 视频比例不匹配时空隙的兜底色 */
}
.fcl-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.fcl-hero__media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.fcl-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 40%, rgba(0,0,0,0.0) 75%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
}
/* Decorative green panel on the right (slide 2) */
.fcl-hero__panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 38%;
  background: #167a6a;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

/* Copy stack — also absolute layered */
.fcl-hero__copywrap {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
}
.fcl-hero__copy {
  position: absolute;
  /* 文字垂直靠上偏一点（42%）— 底部留呼吸空间给 CTA */
  top: 42%;
  transform: translateY(-50%);
  left: max(206px, 12vw);
  right: 32px;
  max-width: 820px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fcl-hero__copy.is-active {
  opacity: 1;
  transform: translateY(-50%);
}
.fcl-hero__copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fcl-hero__title {
  margin: 0 0 20px;
  font-family: var(--display);
  font-weight: 500;
  /* 标题 max 56px，永远装得下 */
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 680px;
}
.fcl-hero__lead {
  margin: 0 0 28px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}
.fcl-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fcl-hero__dots {
  position: absolute;
  left: 0; right: 0; bottom: 48px;
  display: flex; justify-content: center; gap: 12px;
  z-index: 2;
}
.fcl-hero__dot {
  display: block;
  width: 32px; height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: width .3s, background .3s;
}
.fcl-hero__dot:hover { background: rgba(255,255,255,0.75); }
.fcl-hero__dot.is-active {
  width: 48px;
  background: #ffffff;
}

/* ---------- Buttons ---------- */
.fcl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
}
.fcl-btn--solid {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}
.fcl-btn--solid:hover { background: #f1f1f1; }
.fcl-btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}
.fcl-btn--ghost:hover { background: rgba(255,255,255,0.1); }
.fcl-btn--lg {
  padding: 24px 48px;
  font-size: 15px;
}

/* Solid button used on light bg (Get Featured, CTA) */
.fcl-section--centered .fcl-btn--solid,
.fcl-section--cta .fcl-btn--solid {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}
.fcl-section--centered .fcl-btn--solid:hover,
.fcl-section--cta .fcl-btn--solid:hover { background: #000; }

/* ---------- Grid ---------- */
.fcl-grid {
  display: grid;
  gap: 32px;
}
.fcl-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.fcl-grid--gap-row {
  row-gap: 32px;
}
.fcl-grid--steps {
  gap: 64px;
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Cards (designer / product / story) ---------- */
.fcl-card {
  display: block;
  color: var(--ink);
}
.fcl-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eee;
}
.fcl-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.fcl-card:hover .fcl-card__media img { transform: scale(1.04); }
.fcl-card__title {
  margin: 24px 0 6px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.fcl-card__title--sm {
  font-size: 18px;
  line-height: 1.35;
  margin: 8px 0 6px;
}
.fcl-card__meta {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.fcl-card__sub {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
}

/* Designer card: meta below title */
.fcl-card--designer .fcl-card__meta { order: 2; margin-top: 4px; }
.fcl-card--designer { display: flex; flex-direction: column; }
.fcl-card--designer .fcl-card__media { order: 0; }
.fcl-card--designer .fcl-card__title { order: 1; }

/* Product card: brand small first, then name, then price */
.fcl-product__by {
  margin: 16px 0 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.fcl-product__name {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
}
.fcl-product__price {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

/* Story card: play overlay + duration */
.fcl-story__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.fcl-story__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-radius: 50%;
  transition: transform .2s;
}
.fcl-card:hover .fcl-story__play { transform: translate(-50%, -50%) scale(1.08); }
.fcl-story__time {
  position: absolute;
  right: 12px; bottom: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(0,0,0,0.65);
  letter-spacing: 0.02em;
}

/* ---------- Press / Featured In ---------- */
.fcl-press__media {
  width: 100%;
  aspect-ratio: 264 / 352;
  overflow: hidden;
  background: #eee;
}
.fcl-press__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.fcl-press__source {
  margin: 24px 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.fcl-press__title {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
}

/* ---------- How It Works ---------- */
.fcl-step__num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.fcl-step__title {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.fcl-step__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* ---------- Elevate Your Brand ---------- */
.fcl-elevate__head { margin-bottom: 56px; }
.fcl-elevate__head .fcl-section__sub { margin-left: 0; }
.fcl-pricelist {
  max-width: 768px;
}
.fcl-pricelist li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--hair);
}
.fcl-pricelist__name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.fcl-pricelist__price {
  font-size: 18px;
  color: var(--ink-3);
}
.fcl-section--soft .fcl-elevate > .fcl-textlink { margin-top: 56px; display: inline-flex; }

/* ---------- CTA ---------- */
.fcl-section--cta {
  text-align: center;
}
.fcl-cta__title {
  margin: 0 0 24px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 80px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.fcl-cta__sub {
  max-width: 672px;
  margin: 0 auto 56px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ---------- Footer ---------- */
.fcl-footer {
  border-top: 1px solid var(--hair);
  padding: 80px 0 32px;
}
.fcl-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.fcl-footer__logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.fcl-footer__about {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-3);
}
.fcl-footer__col h4 {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.fcl-footer__col ul li { margin: 0 0 12px; }
.fcl-footer__col a {
  font-size: 14px;
  color: var(--ink-3);
  transition: color .2s;
}
.fcl-footer__col a:hover { color: var(--ink); }
.fcl-footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--hair);
  font-size: 13px;
  color: var(--ink-3);
}

/* ---------- Fashion Week section (dark) ---------- */
.fcl-section--dark {
  background: #0e0e0e;
  color: #ffffff;
}
.fcl-eyebrow--inv { color: rgba(255,255,255,0.7); }
.fcl-h2--inv      { color: #ffffff; }

.fcl-fw {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: stretch;
}
.fcl-fw__left {
  padding: 8px 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fcl-fw__lead {
  margin: 24px 0 40px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
}
.fcl-fw__meta {
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 80px 1fr;
  row-gap: 18px;
  column-gap: 24px;
  font-size: 14px;
}
.fcl-fw__meta > div {
  display: contents;
}
.fcl-fw__meta dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.fcl-fw__meta dd {
  margin: 0;
  color: #ffffff;
  font-weight: 400;
}
.fcl-fw__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.fcl-fw__right {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.fcl-fw__right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}

.fcl-fw__past {
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 40px;
}
.fcl-fw__pastgrid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fcl-fw__pastgrid a {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #222;
}
.fcl-fw__pastgrid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s, opacity .3s;
  opacity: .85;
}
.fcl-fw__pastgrid a:hover img { transform: scale(1.04); opacity: 1; }

/* Inverse ghost button used inside dark section */
.fcl-btn--ghost-inv {
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}
.fcl-btn--ghost-inv:hover { background: rgba(255,255,255,0.08); }

/* Solid button inside dark section should stay light bg */
.fcl-section--dark .fcl-btn--solid {
  background: #ffffff;
  color: #0e0e0e;
  border-color: #ffffff;
}
.fcl-section--dark .fcl-btn--solid:hover { background: #ededed; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .fcl-hero__copy { left: 64px; top: 180px; }
  .fcl-hero__title { font-size: 64px; }
  .fcl-hero__panel { width: 32%; }
  .fcl-h2 { font-size: 44px; }
  .fcl-cta__title { font-size: 60px; }
  .fcl-fw { grid-template-columns: 1fr; gap: 32px; }
  .fcl-fw__right { min-height: 320px; }
  .fcl-fw__pastgrid { grid-template-columns: repeat(2, 1fr); }
  .fcl-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .fcl-grid--steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .fcl-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .fcl-section { padding: 80px 0; }
  .fcl-header__inner { grid-template-columns: 1fr auto; gap: 16px; padding: 16px 20px; }
  .fcl-header__nav { display: none; }
  .fcl-hero__copy { left: 24px; right: 24px; top: 140px; }
  .fcl-hero__title { font-size: 48px; }
  .fcl-hero__lead { font-size: 16px; margin-bottom: 32px; }
  .fcl-hero__panel { display: none; }
  .fcl-fw__meta { grid-template-columns: 1fr; row-gap: 4px; }
  .fcl-fw__meta dt { margin-top: 12px; }
  .fcl-fw__pastgrid { grid-template-columns: 1fr; }
  .fcl-h2 { font-size: 36px; }
  .fcl-cta__title { font-size: 44px; }
  .fcl-section__head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 48px; }
  .fcl-grid--4 { grid-template-columns: 1fr; }
  .fcl-grid--steps { grid-template-columns: 1fr; }
  .fcl-footer__cols { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .fcl-btn { padding: 18px 28px; }
}
