:root {
  --graphite: #101114;
  --ink: #17191e;
  --porcelain: #eff0f1;
  --paper: #e7e8e9;
  --mirror: #b7d2d1;
  --oxblood: #9e2f3e;
  --champagne: #cdb59e;
  --line-dark: rgba(238, 240, 242, .22);
  --line-light: rgba(16, 17, 20, .22);
  --pad: clamp(22px, 7vw, 44px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #08090b; }
body {
  margin: 0;
  color: var(--porcelain);
  background: #08090b;
  font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
button, a { color: inherit; font: inherit; }
a { text-decoration: none; }
button { border: 0; }
img { display: block; width: 100%; height: 100%; }
figure, p, h1, h2, h3, blockquote, dl, dd, ol { margin: 0; }
ol { padding: 0; list-style: none; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -60px;
  padding: 10px 14px;
  color: var(--graphite);
  background: var(--porcelain);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

body > header,
body > aside,
body > main,
body > .toast {
  width: min(100%, 640px);
  margin-inline: auto;
}

.folio-bar {
  position: fixed;
  inset: 0 auto auto 50%;
  z-index: 100;
  height: 50px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 42px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(15, 16, 19, .88);
  backdrop-filter: blur(16px);
}
.folio-bar__brand {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(183, 210, 209, .58);
  font: 500 13px/1 Georgia, serif;
}
.folio-bar__spine { display: flex; min-width: 0; align-items: center; gap: 10px; }
.folio-bar__spine span,
.folio-bar__chapter,
.folio-bar__index {
  font-size: 8px;
  line-height: 1;
  letter-spacing: .13em;
  font-weight: 700;
}
.folio-bar__spine i { height: 1px; flex: 1; background: var(--line-dark); }
.folio-bar__chapter { color: var(--mirror); white-space: nowrap; }
.folio-bar__index { padding: 8px 0; background: none; cursor: pointer; }

.portfolio-index {
  position: fixed;
  z-index: 120;
  inset: 50px auto auto 50%;
  transform: translate(-50%, -112%);
  padding: 24px var(--pad) 32px;
  color: var(--graphite);
  background: var(--mirror);
  border-bottom: 1px solid var(--graphite);
  opacity: 0;
  pointer-events: none;
  transition: transform .55s var(--ease), opacity .25s ease;
}
.portfolio-index.is-open { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.portfolio-index__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line-light); font-size: 9px; letter-spacing: .14em; font-weight: 700; }
.portfolio-index__head button { width: 34px; height: 34px; font-size: 26px; line-height: 1; background: none; cursor: pointer; }
.portfolio-index nav { display: grid; margin-top: 12px; }
.portfolio-index nav a { display: grid; grid-template-columns: 42px 1fr; padding: 13px 0; border-bottom: 1px solid var(--line-light); font-size: 13px; letter-spacing: .08em; }
.portfolio-index nav a span { color: var(--oxblood); font-size: 9px; }
.portfolio-index > p { margin-top: 22px; font-size: 9px; line-height: 1.7; letter-spacing: .08em; }

main { overflow: hidden; background: var(--graphite); }
.motion-scene { position: relative; opacity: 0; transform: translateY(22px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.motion-scene.is-visible { opacity: 1; transform: none; }

.chapter-head__label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: currentColor;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
}
.chapter-head__label i { height: 1px; background: currentColor; opacity: .3; }
.chapter-head h2 {
  margin-top: 32px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 300;
}
.chapter-head h2 span { display: block; }

.visual {
  position: relative;
  overflow: hidden;
  background: #141519;
}
.visual picture { display: block; width: 100%; height: 100%; }
.visual img { object-fit: cover; transition: transform 1.2s var(--ease), filter .5s ease; }
.visual--contain {
  padding: 14px;
  background: #0d0f12;
}
.visual--contain img { object-fit: contain; }

.hero {
  min-height: 100svh;
  padding: 50px 0 0;
  color: var(--porcelain);
  background: #07080a;
}
.hero-carousel {
  position: relative;
  min-height: calc(100svh - 50px);
  overflow: hidden;
  background: #07080a;
}
.hero-carousel__viewport {
  position: relative;
  height: calc(100svh - 50px);
  min-height: 760px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .8s var(--ease), transform 1.2s var(--ease);
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.hero-slide__visual {
  width: 100%;
  height: 100%;
  padding: 44px 36px 72px;
}
.hero-slide__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, .08) 18%, rgba(8, 9, 11, .2) 48%, rgba(8, 9, 11, .76) 100%);
  pointer-events: none;
}
.hero-slide__copy {
  position: absolute;
  z-index: 4;
  left: 28px;
  right: 28px;
  bottom: 120px;
  display: grid;
  gap: 8px;
  pointer-events: none;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .55);
}
.hero-slide__copy h2 {
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 300;
}
.hero-slide__copy p {
  max-width: 330px;
  color: rgba(239, 240, 241, .78);
  font-size: 12px;
  line-height: 1.65;
}
.hero-carousel__top,
.hero__edition {
  font-size: 8px;
  letter-spacing: .13em;
  font-weight: 700;
}
.hero-carousel__top {
  position: absolute;
  z-index: 4;
  inset: 18px 18px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .55);
}
.hero-carousel__nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 38px;
  height: 54px;
  place-items: center;
  color: var(--porcelain);
  background: rgba(16, 17, 20, .32);
  border: 1px solid rgba(239, 240, 241, .18);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 30px;
}
.hero-carousel__nav--prev { left: 12px; }
.hero-carousel__nav--next { right: 12px; }
.hero-carousel__dots {
  position: absolute;
  z-index: 5;
  left: 28px;
  right: 28px;
  bottom: 82px;
  display: flex;
  gap: 8px;
}
.hero-carousel__dots button,
.kit-carousel__dots button {
  width: 34px;
  height: 2px;
  padding: 0;
  background: rgba(239, 240, 241, .34);
  cursor: pointer;
}
.hero-carousel__dots button.is-active,
.kit-carousel__dots button.is-active { background: var(--porcelain); }
.hero__edition {
  position: absolute;
  z-index: 6;
  left: 28px;
  right: 28px;
  bottom: 8px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(239, 240, 241, .62);
  pointer-events: none;
}
.hero__edition b { color: var(--oxblood); font-size: 24px; line-height: .8; }

.statement { min-height: 900px; padding: 88px var(--pad) 96px; color: var(--graphite); background: var(--porcelain); }
.statement__layout { position: relative; z-index: 2; display: grid; gap: 38px; margin-top: 56px; }
.statement__card {
  position: relative;
  display: grid;
  grid-template-columns: 46% 1fr;
  min-height: 430px;
  overflow: hidden;
  color: var(--porcelain);
  background: linear-gradient(145deg, #1d2022, #0c0e11 76%);
  border: 1px solid #0b0c0f;
  box-shadow: 0 24px 44px rgba(16, 17, 20, .18);
}
.statement__portrait { height: 100%; min-height: 430px; padding: 10px; }
.statement__portrait img { filter: saturate(.95) contrast(.98); }
.statement__card-copy { position: relative; display: flex; flex-direction: column; padding: 20px; }
.statement__card-copy::after { content: ""; position: absolute; inset: auto -44px -84px auto; width: 190px; height: 190px; border: 1px solid rgba(183, 210, 209, .36); border-radius: 50%; }
.statement__card-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); }
.statement__card-top > span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--mirror); font: 500 15px/1 Georgia, serif; }
.statement__card-top small { font-size: 7px; letter-spacing: .12em; }
.statement__card-name { display: grid; margin: 44px 0 34px; }
.statement__card-name strong { font-size: 38px; line-height: 1; letter-spacing: .08em; font-weight: 300; }
.statement__card-name span { margin-top: 8px; color: var(--mirror); font-size: 8px; letter-spacing: .18em; }
.statement__card dl { display: grid; gap: 13px; margin-top: auto; }
.statement__card dl > div { display: grid; grid-template-columns: 70px 1fr; padding-top: 10px; border-top: 1px solid var(--line-dark); }
.statement__card dt { color: var(--mirror); font-size: 7px; letter-spacing: .15em; }
.statement__card dd { font-size: 10px; line-height: 1.45; letter-spacing: .06em; }
.statement__body > span { display: block; color: var(--oxblood); font-size: 8px; letter-spacing: .14em; font-weight: 700; }
.statement__body > p { margin-top: 18px; padding-left: 18px; border-left: 2px solid var(--oxblood); font-family: "Songti SC", SimSun, serif; font-size: 17px; line-height: 1.9; }
.statement__body blockquote { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line-light); font-size: 25px; line-height: 1.35; letter-spacing: 0; }
.statement__mark { position: absolute; right: -20px; bottom: -74px; color: rgba(16, 17, 20, .035); font: 300 300px/1 Georgia, serif; pointer-events: none; }

.works { padding: 90px var(--pad) 92px; color: var(--porcelain); background: #0d0f12; }
.works__intro { max-width: 460px; margin: 22px 0 48px; padding-left: 16px; border-left: 1px solid var(--oxblood); color: rgba(239, 240, 241, .7); font-size: 12px; line-height: 1.8; }
.works__lookbook { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.look-card { position: relative; min-width: 0; overflow: hidden; background: #17191e; }
.look-card--1 { grid-column: 1 / -1; }
.look-card--1 .look-card__visual { aspect-ratio: 4 / 5; }
.look-card:not(.look-card--1) .look-card__visual { aspect-ratio: 1 / 1.22; }
.look-card .visual--contain { padding: 10px; }
.look-card > div:last-child { min-height: 112px; padding: 13px 12px 14px; border-top: 1px solid rgba(239, 240, 241, .12); }
.look-card > div span { color: var(--oxblood); font-size: 7px; letter-spacing: .12em; }
.look-card > div b { float: right; color: rgba(239, 240, 241, .52); font-size: 6px; letter-spacing: .08em; font-weight: 600; }
.look-card h3 { margin-top: 16px; font-size: 20px; font-weight: 400; letter-spacing: 0; }
.look-card p { margin-top: 7px; color: rgba(239, 240, 241, .62); font-size: 9px; line-height: 1.55; }
.look-card:hover .visual img { transform: scale(1.025); }
.works__registration { position: absolute; z-index: 6; right: -8px; top: 36px; width: 142px; height: 142px; border: 1px solid rgba(183, 210, 209, .7); pointer-events: none; }
.works__registration::before,
.works__registration::after { content: ""; position: absolute; background: rgba(183, 210, 209, .62); }
.works__registration::before { left: 50%; top: 10px; bottom: 10px; width: 1px; }
.works__registration::after { top: 50%; left: 10px; right: 10px; height: 1px; }
.works__registration span { position: absolute; left: 5px; top: 5px; font-size: 6px; letter-spacing: .08em; }
.works__registration b { position: absolute; right: 7px; bottom: 4px; font: 300 30px/1 Georgia, serif; }
.works__note { margin-top: 18px; text-align: right; color: var(--mirror); font-size: 7px; letter-spacing: .15em; }

.craft { padding: 90px var(--pad) 96px; color: var(--graphite); background: var(--paper); }
.craft__intro { margin: 24px 0 48px; padding-left: 16px; border-left: 2px solid var(--oxblood); font-family: "Songti SC", SimSun, serif; font-size: 15px; line-height: 1.85; }
.makeover { position: relative; }
.makeover__before { display: grid; grid-template-columns: 44% 1fr; gap: 0; border: 1px solid var(--graphite); background: var(--porcelain); }
.makeover__before-visual { aspect-ratio: 4 / 5; padding: 8px; background: #d8d7d2; }
.makeover__before > div:last-child { display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.makeover__before span,
.makeover-card span { color: var(--oxblood); font-size: 7px; letter-spacing: .13em; font-weight: 700; }
.makeover__before h3 { margin: 10px 0 9px; font-size: 26px; font-weight: 400; }
.makeover__before p { color: rgba(16, 17, 20, .62); font-size: 10px; line-height: 1.65; }
.makeover__after-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 28px; }
.makeover-card { min-width: 0; color: var(--porcelain); background: var(--graphite); }
.makeover-card__crop { height: 250px; overflow: hidden; }
.makeover-card__visual { width: 100%; height: 100%; padding: 8px; }
.makeover-card--portrait .makeover-card__visual { padding: 0; }
.makeover-card--portrait .makeover-card__visual img,
.makeover-card--eye .makeover-card__visual img,
.makeover-card--skin .makeover-card__visual img,
.makeover-card--lip .makeover-card__visual img { transform: none; }
.makeover-card > div:last-child { min-height: 100px; padding: 13px; border-top: 1px solid rgba(239, 240, 241, .12); }
.makeover-card h3 { margin: 10px 0 6px; font-size: 20px; font-weight: 400; }
.makeover-card p { color: rgba(239, 240, 241, .58); font-size: 8px; line-height: 1.5; }
.makeover__axis { display: flex; align-items: center; gap: 12px; margin: 24px 0 0; color: var(--oxblood); }
.makeover__axis i { flex: 1; height: 1px; background: var(--oxblood); }
.makeover__axis span { font-size: 7px; letter-spacing: .15em; font-weight: 700; }

.codes { padding: 90px var(--pad) 96px; color: #183342; background: linear-gradient(180deg, var(--mirror), #d9e1d6); }
.codes__grid { display: grid; gap: 18px; margin-top: 50px; }
.code-card { position: relative; overflow: hidden; }
.code-card--kit { color: var(--porcelain); background: var(--graphite); }
.kit-carousel { position: relative; overflow: hidden; background: #090a0c; }
.kit-carousel__viewport { position: relative; aspect-ratio: 4 / 5; }
.kit-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .65s var(--ease), transform .9s var(--ease);
}
.kit-slide.is-active { opacity: 1; transform: scale(1); }
.code-card__visual { width: 100%; height: 100%; }
.kit-carousel__meta {
  position: absolute;
  z-index: 3;
  left: 14px;
  right: 14px;
  top: 14px;
  display: flex;
  justify-content: space-between;
  color: rgba(239, 240, 241, .82);
  font-size: 7px;
  letter-spacing: .12em;
  font-weight: 700;
}
.kit-carousel__dots {
  position: absolute;
  z-index: 3;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
}
.code-card__copy { padding: 22px; }
.code-card__copy span,
.honors__head > span { color: var(--oxblood); font-size: 8px; letter-spacing: .13em; font-weight: 700; }
.code-card__copy h3,
.honors__head h3 { margin: 16px 0 10px; font-size: 28px; line-height: 1.15; font-weight: 400; letter-spacing: 0; }
.code-card__copy p { color: rgba(239, 240, 241, .64); font-size: 11px; line-height: 1.75; }
.code-card--honors { min-height: 500px; padding: 24px; color: var(--graphite); border: 1px solid rgba(16, 17, 20, .8); background: rgba(239, 240, 241, .34); }
.honors__head p { color: rgba(16, 17, 20, .66); font-size: 13px; line-height: 1.75; }
.code-card--honors ol { margin-top: 28px; border-top: 1px solid var(--line-light); }
.code-card--honors li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; position: relative; padding: 20px 0 26px; border-bottom: 1px solid var(--line-light); }
.code-card--honors li > span { color: var(--oxblood); font: 400 21px/1 Georgia, serif; }
.code-card--honors li div { display: grid; gap: 8px; }
.code-card--honors li small { font-size: 8px; letter-spacing: .12em; font-weight: 700; }
.code-card--honors li b { font-size: 18px; line-height: 1.35; font-weight: 500; }
.code-card--honors li em { grid-column: 2; color: rgba(16, 17, 20, .62); font-size: 12px; line-height: 1.55; font-style: normal; }
.honors__stamp {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--oxblood);
  border: 2px solid var(--oxblood);
  border-radius: 50%;
  transform: rotate(-13deg);
  opacity: .82;
}
.honors__stamp::before,
.honors__stamp::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--oxblood);
  border-radius: 50%;
}
.honors__stamp::after {
  inset: 16px;
  border-style: solid;
  opacity: .45;
}
.honors__stamp span,
.honors__stamp small {
  position: relative;
  z-index: 2;
  font-size: 8px;
  letter-spacing: .12em;
  font-weight: 800;
}
.honors__stamp i {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--oxblood);
}

.contact { min-height: 700px; padding: 82px var(--pad) 52px; color: var(--porcelain); background: linear-gradient(180deg, #121315, #10201d 100%); }
.contact__mirror { position: absolute; right: -62px; top: 130px; width: 240px; height: 240px; border: 1px solid rgba(183, 210, 209, .28); border-radius: 50%; }
.contact__mirror i { position: absolute; background: rgba(183, 210, 209, .22); }
.contact__mirror i:first-child { top: 50%; left: 12px; right: 12px; height: 1px; }
.contact__mirror i:last-child { left: 50%; top: 12px; bottom: 12px; width: 1px; }
.contact__brush {
  position: absolute;
  right: 24px;
  bottom: 94px;
  width: 176px;
  height: 124px;
  opacity: .7;
  transform: rotate(-9deg);
}
.contact__brush i:first-child {
  position: absolute;
  left: 0;
  top: 52px;
  width: 154px;
  height: 8px;
  background: linear-gradient(90deg, var(--champagne), rgba(239, 240, 241, .18));
}
.contact__brush i:nth-child(2) {
  position: absolute;
  right: 0;
  top: 36px;
  width: 44px;
  height: 40px;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(180deg, rgba(239, 240, 241, .74), rgba(183, 210, 209, .2));
}
.contact__brush i:nth-child(3) {
  position: absolute;
  left: 44px;
  top: 26px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(183, 210, 209, .34);
  border-radius: 50%;
}
.contact__meta { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); font-size: 7px; letter-spacing: .12em; }
.contact h2 { display: flex; justify-content: space-between; margin: 68px -2px 36px; font-size: 88px; line-height: .84; font-weight: 700; letter-spacing: 0; }
.contact blockquote { max-width: 360px; font-size: 32px; line-height: 1.2; letter-spacing: 0; }
.contact > p { max-width: 390px; margin-top: 22px; color: rgba(239, 240, 241, .62); font-size: 12px; line-height: 1.75; }
.contact button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 48px;
  padding: 16px 0;
  color: var(--porcelain);
  border-top: 1px solid var(--porcelain);
  border-bottom: 1px solid var(--porcelain);
  background: none;
  font-size: 13px;
  letter-spacing: .08em;
  cursor: pointer;
}
.contact__button-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(239, 240, 241, .62);
  border-radius: 50%;
  animation: iconPulse 2.2s ease-in-out infinite;
}
.contact__button-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: iconSend 2.2s ease-in-out infinite;
}
.contact button:hover .contact__button-icon { background: rgba(183, 210, 209, .12); }
.contact > a { display: block; margin-top: 62px; text-align: right; color: var(--mirror); font-size: 8px; letter-spacing: .12em; }

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(183, 210, 209, .28); transform: scale(1); }
  50% { box-shadow: 0 0 0 10px rgba(183, 210, 209, 0); transform: scale(1.06); }
}
@keyframes iconSend {
  0%, 100% { transform: translate(0, 0); opacity: 1; }
  45% { transform: translate(4px, -4px); opacity: .72; }
}

.toast { position: fixed; z-index: 150; left: 50%; bottom: 22px; padding: 12px 16px; color: var(--graphite); background: var(--porcelain); font-size: 10px; text-align: center; opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: .35s var(--ease); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 520px) {
  .chapter-head h2 { font-size: 43px; }
  .hero-carousel__viewport { min-height: 710px; }
  .hero-slide__visual { padding: 56px 30px 70px; }
  .hero-slide__copy { bottom: 118px; }
  .hero-slide__copy h2 { font-size: 32px; }
  .statement__card { grid-template-columns: 1fr; }
  .statement__portrait { min-height: 380px; aspect-ratio: 4 / 5; }
  .contact h2 { font-size: 62px; margin-top: 58px; }
  .contact blockquote { font-size: 28px; }
  .makeover-card__crop { height: 215px; }
}

@media (max-width: 420px) {
  :root { --pad: 22px; }
  .folio-bar { grid-template-columns: 36px 1fr auto; gap: 9px; padding-inline: 12px; }
  .folio-bar__chapter { display: none; }
  .hero-carousel__viewport { min-height: 660px; }
  .works__registration { width: 118px; height: 118px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .motion-scene { opacity: 1; transform: none; }
}
