:root {
  --black: #0a0a0a;
  --white: #f4f4f2;
  --grey: #8a8a8a;
  --line: rgba(10, 10, 10, 0.15);
  --line-light: rgba(244, 244, 242, 0.18);
  --font-main: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-exp: "Archivo Expanded", "Archivo", Helvetica, sans-serif;
  --ease: cubic-bezier(0.65, 0.05, 0, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }
::selection { background: var(--black); color: var(--white); }
.cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  background: #fff;
  transform: translate(-50%, -50%);
}
.cursor-label {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 10001;
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
  color: var(--white);
  background: var(--black);
  padding: 6px 10px;
  transform: translate(14px, 14px) scale(0);
}
@media (hover: none) {
  body, button { cursor: auto; }
  .cursor, .cursor-label { display: none; }
}
.preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.preloader__inner { text-align: center; }
.preloader__logo {
  font-family: var(--font-exp);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  overflow: hidden;
  display: flex; justify-content: center;
}
.preloader__char { display: inline-block; transform: translateY(110%); }
.preloader__counter {
  margin-top: 1.5rem;
  font-size: 12px; font-weight: 500; letter-spacing: 0.3em;
  color: var(--grey);
  font-variant-numeric: tabular-nums;
}
.preloader__bar {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: rgba(244, 244, 242, 0.1);
}
.preloader__bar-fill {
  height: 100%; width: 0%;
  background: var(--white);
}
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 2.5rem;
  mix-blend-mode: difference;
  color: #fff;
}
.nav__logo {
  font-family: var(--font-exp);
  font-weight: 700; font-size: 15px; letter-spacing: 0.05em;
}
.nav__logo sup { font-size: 8px; }
.nav__links { display: flex; gap: 2.2rem; }
.nav__link {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  position: relative; overflow: hidden; padding-bottom: 2px;
}
.nav__link::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px; background: #fff;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 1.6rem; }
.nav__contact { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; }
.nav__burger {
  display: none;
  background: none; border: none;
  width: 30px; height: 20px;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: #fff;
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { top: 14px; }
.nav__burger.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 9px; transform: rotate(-45deg); }
.menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 900;
  display: flex; flex-direction: column; justify-content: center;
  padding: 2.5rem;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}
.menu__links { display: flex; flex-direction: column; gap: 0.5rem; }
.menu__link {
  font-family: var(--font-exp);
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.menu__footer {
  position: absolute; bottom: 2rem; left: 2.5rem; right: 2.5rem;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.15em; color: var(--grey);
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__title-wrap { overflow: hidden; }
.hero__title {
  font-family: var(--font-exp);
  font-size: clamp(8rem, 32vw, 34rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.85;
  display: flex;
  user-select: none;
}
.hero__char { display: inline-block; }
.hero__meta {
  position: absolute; left: 2.5rem; right: 2.5rem; bottom: 7rem;
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 0.4rem; }
.hero__meta-right { text-align: right; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 10px; letter-spacing: 0.3em; font-weight: 500;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: var(--black);
  transform-origin: top;
  animation: scrollLine 1.8s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero__product {
  position: absolute;
  right: 12%; top: 18%;
  width: clamp(140px, 18vw, 260px);
  z-index: 5;
}
.scene { perspective: 1200px; }
.card3d {
  transform-style: preserve-3d;
  will-change: transform;
}
.garment {
  width: 100%; height: auto; display: block;
  color: var(--black);
}
.garment--light { color: var(--white); }
.marquee {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 1.1rem 0;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__item {
  font-family: var(--font-exp);
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.section-head {
  padding: 7rem 2.5rem 4rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 3rem;
  align-items: start;
}
.section-head--light { border-top-color: var(--line-light); }
.section-head__index {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  padding-top: 0.8rem;
}
.section-head__title {
  font-family: var(--font-exp);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  grid-column: 2;
}
.section-head__title span { display: inline-block; }
.section-head__desc {
  grid-column: 2;
  max-width: 460px;
  font-size: 14px; line-height: 1.7; color: var(--grey);
  font-weight: 500;
}
.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.product {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.product__scene {
  padding: 1.5rem 3rem;
  margin-bottom: 2rem;
}
.product__card { transition: none; }
.product__info { display: flex; flex-direction: column; gap: 0.5rem; }
.product__row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
}
.product__name {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
}
.product__price {
  font-size: 13px; font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.product__tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  color: var(--grey);
}
.product::after {
  content: "DARMOWA WYCENA →";
  position: absolute; top: 1.2rem; right: -1px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em;
  background: var(--black); color: var(--white);
  padding: 5px 10px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.product:hover::after { opacity: 1; transform: translateX(0); }
.featured {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-bottom: 8rem;
}
.featured__bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-exp);
  font-size: clamp(8rem, 28vw, 30rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 244, 242, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.featured__stage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 2rem 2.5rem 0;
  position: relative;
}
.featured__scene {
  display: flex; justify-content: center;
  touch-action: pan-y;
}
.featured__card {
  width: clamp(240px, 30vw, 420px);
  position: relative;
  cursor: none;
}
.featured__face { backface-visibility: hidden; }
.featured__face--back {
  position: absolute; inset: 0;
  transform: rotateY(180deg);
}
.featured__details {
  display: flex; flex-direction: column; gap: 1.4rem;
  max-width: 420px;
}
.featured__label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
}
.featured__desc {
  font-size: 14px; line-height: 1.8; color: var(--grey); font-weight: 500;
}
.featured__cta { display: flex; align-items: center; gap: 2rem; }
.featured__price {
  font-family: var(--font-exp);
  font-size: 1.8rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.featured__hint {
  font-size: 10px; letter-spacing: 0.25em; color: var(--grey);
  font-weight: 500;
}
.btn {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  padding: 1rem 2.2rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease);
  z-index: 1;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--white);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--black); }
.btn:hover::before { transform: scaleY(1); }
.btn--light {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.btn--light::before { background: var(--black); }
.btn--light:hover { color: var(--white); }
.lookbook { background: var(--white); }
.lookbook__pin { overflow: hidden; }
.lookbook__track {
  display: flex;
  height: 100svh;
  width: max-content;
  will-change: transform;
}
.lookbook__panel {
  width: 100vw; height: 100%;
  flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.2rem;
  border-right: 1px solid var(--line);
  background: var(--white); color: var(--black);
  padding: 2rem;
}
.lookbook__panel--dark { background: var(--black); color: var(--white); }
.lookbook__num {
  font-size: 12px; font-weight: 600; letter-spacing: 0.3em;
  opacity: 0.5;
}
.lookbook__title {
  font-family: var(--font-exp);
  font-size: clamp(4rem, 16vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.lookbook__text {
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  opacity: 0.55; max-width: 320px; text-align: center; line-height: 1.7;
}
.studio { padding-bottom: 6rem; }
.studio__manifesto {
  padding: 2rem 2.5rem 5rem;
  max-width: 1100px;
}
.studio__line {
  font-family: var(--font-exp);
  font-size: clamp(1.4rem, 3.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.studio__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 2.5rem;
}
.studio__stat {
  padding: 2.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  border-right: 1px solid var(--line);
}
.studio__stat:last-child { border-right: none; }
.studio__stat-num {
  font-family: var(--font-exp);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.studio__stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--grey);
}
.footer {
  background: var(--black);
  color: var(--white);
  padding-top: 5rem;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  padding: 0 2.5rem 5rem;
  border-bottom: 1px solid var(--line-light);
}
.footer__label {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  color: var(--grey);
}
.footer__form { display: flex; gap: 0; max-width: 440px; }
.footer__input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line-light);
  border-right: none;
  color: var(--white);
  padding: 1rem 1.2rem;
  font-family: inherit;
  font-size: 12px; letter-spacing: 0.1em;
  outline: none;
}
.footer__input::placeholder { color: var(--grey); }
.footer__form .btn {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.footer__form .btn::before { background: var(--black); }
.footer__form .btn:hover { color: var(--white); }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em;
  color: var(--grey);
  margin-bottom: 0.5rem;
}
.footer__col a {
  font-size: 13px; font-weight: 500;
  width: fit-content;
  position: relative;
}
.footer__col a::after {
  content: ""; position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 1px; background: var(--white);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.footer__col a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__logo-wrap {
  padding: 4rem 0 2rem;
  display: flex; justify-content: center;
  overflow: hidden;
}
.footer__logo {
  font-family: var(--font-exp);
  font-size: clamp(3rem, 11.5vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
}
.footer__bottom {
  display: flex; justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--line-light);
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
  color: var(--grey);
  flex-wrap: wrap; gap: 0.6rem;
}
.reveal-lines span { display: inline-block; }
@media (max-width: 1024px) {
  .collection__grid { grid-template-columns: repeat(2, 1fr); }
  .featured__stage { grid-template-columns: 1fr; text-align: center; }
  .featured__details { margin: 0 auto; align-items: center; }
  .hero__product { right: 6%; top: 14%; }
}
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav__links, .nav__contact { display: none; }
  .nav__burger { display: block; }
  .hero__meta { left: 1.5rem; right: 1.5rem; bottom: 6rem; font-size: 10px; }
  .hero__product { width: 120px; right: 8%; top: 12%; }
  .section-head { padding: 5rem 1.5rem 3rem; grid-template-columns: 1fr; }
  .section-head__title, .section-head__desc { grid-column: 1; }
  .collection__grid { grid-template-columns: 1fr; }
  .studio__stats { grid-template-columns: repeat(2, 1fr); margin: 0 1.5rem; }
  .studio__stat:nth-child(2) { border-right: none; }
  .studio__stat:nth-child(1), .studio__stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .studio__manifesto { padding: 1.5rem 1.5rem 4rem; }
  .footer__top { grid-template-columns: 1fr; padding: 0 1.5rem 4rem; }
  .footer__bottom { padding: 1.5rem; }
  .featured__stage { padding: 2rem 1.5rem 0; }
}
.ai { background: var(--black); color: var(--white); padding-bottom: 7rem; }
.ai__wrap { padding: 1rem 2.5rem 0; display: flex; justify-content: center; }
.ai__window { width: 100%; max-width: 760px; border: 1px solid var(--line-light); background: #101010; }
.ai__bar { display: flex; align-items: center; gap: 7px; padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--line-light); }
.ai__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grey); opacity: 0.5; }
.ai__bar-title { margin-left: 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.25em; color: var(--grey); }
.ai__chat { height: 400px; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; scroll-behavior: smooth; }
.ai__msg { max-width: 82%; padding: 0.9rem 1.1rem; font-size: 13px; line-height: 1.65; font-weight: 500; }
.ai__msg--bot { border: 1px solid var(--line-light); align-self: flex-start; }
.ai__msg--user { background: var(--white); color: var(--black); align-self: flex-end; }
.ai__msg--price { border-color: var(--white); }
.ai__price { font-family: var(--font-exp); font-size: 1.5rem; font-weight: 800; display: block; margin: 0.6rem 0; font-variant-numeric: tabular-nums; }
.ai__rows { display: flex; flex-direction: column; gap: 0.3rem; margin: 0.8rem 0; padding: 0.8rem 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.ai__row { display: flex; justify-content: space-between; gap: 1rem; font-size: 11px; letter-spacing: 0.05em; color: var(--grey); font-variant-numeric: tabular-nums; }
.ai__row span:last-child { color: var(--white); white-space: nowrap; }
.ai__typing { display: inline-flex; gap: 5px; align-items: center; }
.ai__typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--grey); animation: aiTyping 1s ease-in-out infinite; }
.ai__typing span:nth-child(2) { animation-delay: 0.15s; }
.ai__typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes aiTyping { 0%, 100% { opacity: 0.25; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-4px); } }
.ai__options { display: flex; flex-wrap: wrap; gap: 0.6rem; padding: 0 1.5rem 1.1rem; }
.ai__options:empty { display: none; }
.ai__option { background: transparent; border: 1px solid var(--line-light); color: var(--white); padding: 0.65rem 1.1rem; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease); }
.ai__option:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.ai__analysis { display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0 1.5rem; }
.ai__analysis:empty { display: none; }
.ai__analysis-label { width: 100%; font-size: 9px; font-weight: 700; letter-spacing: 0.25em; color: var(--grey); margin-bottom: 0.2rem; }
.ai__chip { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; padding: 0.35rem 0.7rem; border: 1px solid var(--line-light); color: var(--grey); }
.ai__chip--on { border-color: var(--white); color: var(--white); }
.ai__lead { display: flex; flex-direction: column; gap: 0.7rem; width: 100%; }
.ai__lead-input { background: transparent; border: 1px solid var(--line-light); color: var(--white); padding: 0.85rem 1rem; font-family: inherit; font-size: 12px; letter-spacing: 0.1em; outline: none; }
.ai__lead-input:focus { border-color: var(--white); }
.ai__lead-input::placeholder { color: var(--grey); }
.ai__lead-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 10px; line-height: 1.6; color: var(--grey); cursor: pointer; }
.ai__lead-consent input { margin-top: 2px; flex-shrink: 0; accent-color: #fff; }
.ai__lead-btn { background: var(--white); color: var(--black); border: 1px solid var(--white); padding: 0.85rem 1.4rem; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.ai__lead-btn:hover:not(:disabled) { background: transparent; color: var(--white); }
.ai__lead-btn:disabled { opacity: 0.45; }
.ai__lead-note { font-size: 10px; letter-spacing: 0.08em; color: var(--grey); line-height: 1.6; min-height: 14px; }
.ai__form { display: flex; border-top: 1px solid var(--line-light); }
.ai__input { flex: 1; background: transparent; border: none; color: var(--white); padding: 1.1rem 1.5rem; font-family: inherit; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; outline: none; }
.ai__input::placeholder { color: var(--grey); letter-spacing: 0.15em; font-size: 11px; }
.ai__send { background: transparent; border: none; border-left: 1px solid var(--line-light); color: var(--white); width: 62px; font-size: 18px; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.ai__send:hover { background: var(--white); color: var(--black); }
@media (max-width: 768px) {
  .ai__wrap { padding: 1rem 1.5rem 0; }
  .ai__chat { height: 340px; padding: 1.2rem; }
  .ai__msg { max-width: 92%; }
  .ai__options { padding: 0 1.2rem 1rem; }
  .ai__analysis { padding: 0 1.2rem; }
  .ai__input { padding: 1rem 1.2rem; }
}
