/* ============================================================
   NUEFLASH — Corporate Website
   Design System: Black + Neon Yellow + White
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;700;800;900&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

/* ---------- CSS Variables ---------- */
:root {
  --c-black: #0A0A0A;
  --c-yellow: #EEFF2C;
  --c-white: #FFFFFF;
  --c-offwhite: #F7F7F5;
  --c-gray: #888888;
  --c-gray-light: #E4E4E4;
  --c-gray-dark: #222222;

  --f-display: 'Archivo', 'Pretendard', sans-serif;
  --f-body: 'Pretendard', 'Inter', -apple-system, sans-serif;

  --content-max: 1440px;
  --gutter: clamp(24px, 5vw, 80px);
  --section-py: clamp(80px, 12vw, 160px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-black);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
.display-1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}
.display-2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}
.display-3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-black);
}
.eyebrow--on-dark { color: var(--c-yellow); }
.body-lg { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: var(--c-gray-dark); }
.body-md { font-size: 15px; line-height: 1.6; color: var(--c-gray-dark); }
.body-sm { font-size: 13px; line-height: 1.5; color: var(--c-gray); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-py) 0; }
.section--dark { background: var(--c-black); color: var(--c-white); }
.section--yellow { background: var(--c-yellow); color: var(--c-black); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: clamp(48px, 8vw, 96px);
  align-items: end;
}
.section-head__title { grid-column: 1 / 2; }
.section-head__desc { grid-column: 2 / 3; max-width: 540px; }
@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head__title, .section-head__desc { grid-column: 1; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-gray-light);
  transition: all 0.3s var(--ease-out);
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: clamp(32px, 3.6vw, 44px);
  width: auto;
  display: block;
}
.nav__menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__menu a {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__lang {
  display: flex;
  gap: 4px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.nav__lang a {
  padding: 6px 8px;
  color: var(--c-gray);
  text-transform: uppercase;
}
.nav__lang a.active { color: var(--c-black); border-bottom: 2px solid var(--c-yellow); }
.nav__lang a:hover { color: var(--c-black); }

.nav__burger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}
.nav__burger span { display: block; height: 2px; background: var(--c-black); }

@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  /* Language switcher stays visible in the header on mobile */
  .nav__lang {
    display: flex;
    gap: 2px;
    margin-right: 12px;
    font-size: 11px;
  }
  .nav__lang a {
    padding: 4px 6px;
  }
  .nav__menu.is-open {
    display: flex;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--c-white);
    flex-direction: column;
    padding: 24px var(--gutter);
    gap: 20px;
    border-bottom: 1px solid var(--c-gray-light);
  }
}
@media (max-width: 480px) {
  .nav { padding: 12px 18px; }
  .nav__lang { margin-right: 6px; gap: 0; }
  .nav__lang a { padding: 4px 5px; font-size: 10px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  background: var(--c-yellow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left center;  /* keep model on left, yellow on right */
}
.hero__content {
  position: absolute;
  inset: auto 0 0 52%;  /* lock to right 48% of viewport */
  z-index: 2;
  padding: 0 clamp(40px, 6vw, 96px) clamp(48px, 8vw, 96px) clamp(20px, 2.5vw, 48px);
  display: flex;
  align-items: flex-end;
}
.hero__inner {
  width: 100%;
  text-align: left;
}
.hero__slogan span { display: block; }
.hero__slogan .en {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(38px, 5.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  color: var(--c-black);
}
.hero__slogan .ko {
  font-family: var(--f-body);
  font-weight: 900;
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: -0.01em;
  margin-top: 16px;
  color: var(--c-black);
}
.hero__meta {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero__meta div {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-black);
}
.hero__meta div::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--c-black);
  margin-right: 8px;
  vertical-align: middle;
}

.hero__scroll {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-black);
  writing-mode: vertical-rl;
  font-weight: 800;
}

/* Mobile: image becomes a topper, content sits on a yellow block underneath */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 60px;
    display: block;
  }
  .hero__media {
    position: relative;
    height: 50vh;
    inset: auto;
  }
  .hero__media img {
    object-position: 30% center;
  }
  .hero__content {
    position: relative;
    inset: auto;
    background: var(--c-yellow);
    padding: 40px var(--gutter) 56px;
  }
  .hero__inner {
    max-width: 100%;
  }
  .hero__scroll { display: none; }
}

/* ============================================================
   MANIFESTO (About / Intro)
   ============================================================ */
.manifesto { background: var(--c-white); }
.manifesto__words {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 32px);
  align-items: baseline;
  margin: 40px 0 clamp(40px, 6vw, 80px);
}
.manifesto__word {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}
.manifesto__word--accent {
  background: var(--c-yellow);
  padding: 0 0.1em;
}
.manifesto__dot {
  display: inline-block;
  width: clamp(8px, 1.5vw, 20px);
  height: clamp(8px, 1.5vw, 20px);
  background: var(--c-black);
  border-radius: 50%;
  align-self: center;
}
.manifesto__copy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--c-gray-light);
  padding-top: 48px;
}
.manifesto__copy h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .manifesto__copy { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   KOLs Section
   ============================================================ */
.kols { background: var(--c-offwhite); }
.kols__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.kols__grid > a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .kols__grid { grid-template-columns: repeat(2, 1fr); }
  .kols__grid > a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}

.kol-card {
  position: relative;
  display: block;
  background: var(--c-black);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: var(--c-white);
  transition: transform 0.4s var(--ease-out);
}
.kol-card:hover { transform: translateY(-4px); }
.kol-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s var(--ease-out);
}
.kol-card:hover .kol-card__img { transform: scale(1.04); filter: brightness(0.65); }
.kol-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0) 55%);
  z-index: 2;
}
.kol-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(16px, 2vw, 28px);
  z-index: 3;
}
.kol-card__name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.kol-card__name-cn {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 14px;
}
.kol-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.kol-card__tag {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(255,255,255,0.15);
}
.kol-card__tag--yellow { background: var(--c-yellow); color: var(--c-black); }
.kol-card__followers {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
}
.kol-card__followers span { color: var(--c-yellow); }
.kol-card__lead-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  background: var(--c-yellow);
  color: var(--c-black);
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 10px;
}

/* ============================================================
   SERVICES (Dark)
   ============================================================ */
.services { background: var(--c-black); color: var(--c-white); }
.services__head h2 { color: var(--c-white); }
.services__head .eyebrow { color: var(--c-yellow); }
.services .section-head__desc,
.services .body-lg { color: rgba(255,255,255,0.85); }

.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-gray-dark);
  border: 1px solid var(--c-gray-dark);
}
.service {
  background: var(--c-black);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.service__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--c-yellow);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.service__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.service__title-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-gray);
  margin-bottom: 28px;
}
.service__desc {
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
}
.service__features {
  border-top: 1px solid var(--c-gray-dark);
  padding-top: 24px;
}
.service__features li {
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-left: 16px;
}
.service__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 1px;
  background: var(--c-yellow);
}
@media (max-width: 900px) {
  .services__list { grid-template-columns: 1fr; }
}

/* ============================================================
   COMMISSION CALLOUT
   ============================================================ */
.callout {
  background: var(--c-yellow);
  color: var(--c-black);
  padding: clamp(56px, 10vw, 120px) 0;
  text-align: center;
}
.callout__eyebrow {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.callout__big {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.callout__big strong { background: var(--c-black); color: var(--c-yellow); padding: 0 0.15em; }
.callout__sub {
  font-size: clamp(15px, 1.4vw, 19px);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 500;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--c-white); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.process__step {
  border-top: 2px solid var(--c-black);
  padding-top: 20px;
  position: relative;
}
.process__step-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.process__step-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(15px, 1.3vw, 19px);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.process__step-desc { font-size: 13px; color: var(--c-gray); line-height: 1.5; }
@media (max-width: 900px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ============================================================
   STUDIO Banner
   ============================================================ */
.studio {
  position: relative;
  height: clamp(420px, 60vh, 600px);
  overflow: hidden;
}
.studio__media { position: absolute; inset: 0; }
.studio__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.studio__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--c-white);
}
.studio__content .container { width: 100%; }
.studio__label {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-yellow);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.studio__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-transform: lowercase;
}
.studio__addr { font-size: 15px; line-height: 1.6; opacity: 0.85; max-width: 480px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--c-black); color: var(--c-white); }
.contact__head h2 { color: var(--c-white); }
.contact__head .eyebrow { color: var(--c-yellow); }
.contact .section-head__desc,
.contact .body-lg { color: rgba(255,255,255,0.85); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}

.contact__cta-box {
  background: var(--c-yellow);
  color: var(--c-black);
  padding: clamp(40px, 5vw, 64px);
}
.contact__cta-eyebrow {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.contact__cta-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  text-transform: lowercase;
}
.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-black);
  color: var(--c-yellow);
  padding: 14px 22px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.3s var(--ease-out);
}
.contact__email:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--c-black); }
.contact__email::after { content: '↗'; font-size: 18px; line-height: 1; }

.contact__info dt {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-yellow);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact__info dd {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-black);
  color: var(--c-white);
  padding: 64px 0 32px;
  border-top: 1px solid var(--c-gray-dark);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 48px;
}
.footer__logo {
  display: inline-block;
  width: fit-content;
}
.footer__logo img {
  height: clamp(56px, 7vw, 96px);
  width: auto;
  display: block;
}
.footer__tagline {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-yellow);
  text-align: right;
  text-transform: uppercase;
}
.footer__bottom {
  border-top: 1px solid var(--c-gray-dark);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--c-gray);
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__tagline { text-align: left; }
}

/* ============================================================
   KOL DETAIL PAGE
   ============================================================ */
.kol-hero {
  background: var(--c-yellow);
  padding-top: 90px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.kol-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 80vh;
}
.kol-hero__media {
  position: relative;
  background: var(--c-black);
  overflow: hidden;
}
.kol-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.kol-hero__lead-stripe {
  position: absolute;
  top: 0; left: 0;
  background: var(--c-yellow);
  color: var(--c-black);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 8px 14px;
  z-index: 3;
  text-transform: uppercase;
}
.kol-hero__info {
  background: var(--c-yellow);
  padding: clamp(40px, 6vw, 88px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.kol-hero__breadcrumb {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-black);
  margin-bottom: 24px;
}
.kol-hero__breadcrumb a { border-bottom: 1px solid currentColor; }
.kol-hero__name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  margin-bottom: 12px;
  color: var(--c-black);
}
.kol-hero__name-cn {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--c-black);
  opacity: 0.7;
}
.kol-hero__meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.kol-hero__tag {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--c-black);
  color: var(--c-yellow);
}
.kol-hero__quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  padding-top: 24px;
  border-top: 2px solid var(--c-black);
}
.kol-hero__quick.kol-hero__quick--single {
  grid-template-columns: 1fr;
}
.kol-hero__quick dt {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--c-black);
}
.kol-hero__quick dd {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-black);
}
.kol-hero__quick dd small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  opacity: 0.65;
}
@media (max-width: 900px) {
  .kol-hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .kol-hero__media { aspect-ratio: 3/4; }
}

/* Bio Section */
.kol-bio { background: var(--c-white); }
.kol-bio__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.kol-bio__label {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.kol-bio__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
  text-transform: lowercase;
}
.kol-bio__lead {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--c-black);
  margin-bottom: 24px;
  line-height: 1.4;
}
.kol-bio__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-gray-dark);
}
.kol-bio__body p + p { margin-top: 16px; }
@media (max-width: 768px) {
  .kol-bio__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Platform Cards (Douyin / Xiaohongshu) */
.kol-platforms { background: var(--c-offwhite); }
.kol-platforms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
.kol-platforms__grid--single { grid-template-columns: 1fr; max-width: 720px; }
.platform-card {
  background: var(--c-black);
  color: var(--c-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 320px;
}
.platform-card__img {
  background: var(--c-gray-dark);
  overflow: hidden;
}
.platform-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.platform-card__body {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.platform-card__name {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-yellow);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.platform-card__handle {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.9);
  word-break: break-all;
}
.platform-card__followers {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.platform-card__followers-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 24px;
}
.platform-card__metric {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .kol-platforms__grid { grid-template-columns: 1fr; }
  .platform-card { grid-template-columns: 1fr; }
  .platform-card__img { aspect-ratio: 4/3; }
}

/* KOL Gallery */
.kol-gallery { background: var(--c-black); padding: clamp(48px, 8vw, 96px) 0; }
.kol-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.kol-gallery__grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
@media (max-width: 768px) {
  .kol-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* CTA Strip */
.kol-cta {
  background: var(--c-yellow);
  padding: clamp(56px, 9vw, 112px) 0;
}
.kol-cta__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.kol-cta__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--c-black);
}
.kol-cta__sub {
  font-size: 15px;
  color: var(--c-black);
  margin-top: 12px;
  font-weight: 500;
}
.kol-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-black);
  color: var(--c-yellow);
  padding: 18px 28px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  justify-self: end;
  transition: transform 0.3s var(--ease-out);
}
.kol-cta__btn::after { content: '↗'; font-size: 18px; line-height: 1; }
.kol-cta__btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--c-black); }
@media (max-width: 768px) {
  .kol-cta__grid { grid-template-columns: 1fr; }
  .kol-cta__btn { justify-self: start; }
}

/* KOL Pagination */
.kol-pager {
  background: var(--c-black);
  color: var(--c-white);
  padding: 48px 0 96px;
}
.kol-pager__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.kol-pager__back {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s var(--ease-out);
}
.kol-pager__back:hover { color: var(--c-yellow); }
.kol-pager__next {
  justify-self: end;
  text-align: right;
}
.kol-pager__next-label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 8px;
}
.kol-pager__next-name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--c-white);
  transition: color 0.3s var(--ease-out);
}
.kol-pager__next:hover .kol-pager__next-name { color: var(--c-yellow); }
@media (max-width: 600px) {
  .kol-pager__grid { grid-template-columns: 1fr; gap: 28px; }
  .kol-pager__next { justify-self: start; text-align: left; }
}

/* ============================================================
   TOAST NOTIFICATION (mailto fallback)
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--c-black);
  color: var(--c-white);
  padding: 18px 28px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
  pointer-events: none;
  letter-spacing: 0;
  text-align: center;
  max-width: calc(100vw - 32px);
  border-left: 4px solid var(--c-yellow);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.toast strong {
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--c-yellow);
  display: inline-block;
  margin: 0 4px;
}
.toast.toast--in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 600px) {
  .toast { font-size: 13px; padding: 14px 20px; bottom: 16px; }
}

/* ============================================================
   ANIMATION
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }
