:root {
  --ink: #e8e9ed;
  --muted: #a7abb6;
  --void: #0b0e15;
  --surface: #11151d;
  --line: rgba(255, 255, 255, .14);
  --blue: #9bbcff;
  --display: "Manrope", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "Hanken Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --page: clamp(22px, 4.6vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--void); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 20%, rgba(40, 62, 100, .14), transparent 30%),
    var(--void);
  font-family: var(--body);
  overflow-x: hidden;
}
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 0 var(--page);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}
.site-header.is-scrolled {
  background: rgba(11, 14, 21, .78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.site-header.is-hidden { transform: translateY(-101%); }
.wordmark {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
  letter-spacing: .04em;
}
.wordmark span { color: #fff; }
.desktop-nav { display: flex; gap: clamp(22px, 3vw, 46px); }
.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: .9rem;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.text-button {
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-button {
  display: none;
  width: 34px;
  height: 34px;
  padding: 7px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .3s ease;
}
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--page) 40px;
  background: var(--void);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu nav { display: flex; flex-direction: column; margin-bottom: 48px; }
.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(2rem, 11vw, 4rem);
  font-weight: 700;
  letter-spacing: -.055em;
}
.mobile-menu nav span { padding-top: 8px; font-family: var(--mono); font-size: .65rem; color: var(--muted); letter-spacing: 0; }

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  line-height: 0;
}
.hero__image {
  position: relative;
  width: 100%;
  height: auto;
  scale: 1.02;
  animation: hero-in 1.4s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__cta {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 3.8%;
  width: min(68%, 920px);
  height: 7.2%;
  min-height: 36px;
  transform: translateX(-50%);
  border-radius: 999px;
}
.eyebrow, .section-index {
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow { margin: 0 0 20px; color: var(--blue); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { border-color: #f0f0f2; color: var(--void); background: #f0f0f2; }
.button--light:hover { border-color: var(--blue); background: var(--blue); }
.button--ghost { background: rgba(11,14,21,.28); backdrop-filter: blur(12px); }
.button--ghost:hover { border-color: var(--ink); background: rgba(255,255,255,.08); }
.scroll-cue {
  position: absolute;
  right: var(--page);
  bottom: 38px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .15em;
}
.scroll-cue i { display: block; width: 50px; height: 1px; overflow: hidden; background: var(--line); }
.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--ink);
  animation: scan 2.2s ease-in-out infinite;
}

.section { padding: clamp(90px, 12vw, 180px) var(--page); }
.section-index { margin: 0; color: var(--blue); }
.about__copy h2 {
  max-width: 1050px;
  margin: 22px 0 30px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.065em;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: clamp(45px, 6vw, 80px);
}
.section-heading h2, .drop h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 7rem);
  line-height: .95;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.section-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.directions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.direction {
  min-height: 280px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  transition: background .3s ease;
}
.direction:last-child { border-right: 0; }
.direction:hover { background: rgba(255,255,255,.03); }
.direction span {
  display: block;
  margin-bottom: 48px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .1em;
}
.direction h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.direction p { margin: 0; color: var(--muted); line-height: 1.5; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(50px, 9vw, 150px);
  background: linear-gradient(135deg, #10151e, #0b0e15 65%);
}
.about__image-wrap { height: min(70vw, 760px); overflow: hidden; border: 1px solid var(--line); }
.about__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; filter: contrast(1.05); }
.about__copy > p:not(.section-index) { max-width: 550px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.link-button {
  display: flex;
  justify-content: space-between;
  width: min(100%, 550px);
  margin-top: 44px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: none;
  text-align: left;
  cursor: pointer;
}
.link-button span { color: var(--blue); transition: transform .25s ease; }
.link-button:hover span { transform: translate(3px, -3px); }

.principles { border-top: 1px solid var(--line); }
.principles__list { margin-top: 55px; }
.principle {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  align-items: baseline;
  gap: 30px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}
.principle span { color: var(--blue); font-family: var(--mono); font-size: .65rem; }
.principle h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.6rem); letter-spacing: -.055em; }
.principle p { max-width: 440px; margin: 0; color: var(--muted); line-height: 1.6; }

.drop { position: relative; overflow: hidden; text-align: center; border-top: 1px solid var(--line); }
.drop__background {
  position: absolute;
  inset: 0;
  opacity: .35;
  background: radial-gradient(ellipse at center, rgba(70, 110, 180, .42), transparent 58%);
}
.drop > *:not(.drop__background) { position: relative; }
.drop h2 { font-size: clamp(3.3rem, 8vw, 8.5rem); }
.drop > p:not(.eyebrow) { color: var(--muted); }
.inline-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 650px;
  margin: 45px auto 0;
  border-bottom: 1px solid var(--ink);
}
.inline-form input {
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1.2rem;
}
.inline-form input::placeholder { color: #707580; }
.inline-form button {
  border: 0;
  background: none;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.inline-form button span { margin-left: 10px; color: var(--blue); }
.inline-form small { position: absolute; top: calc(100% + 10px); left: 0; color: var(--blue); }

.footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 45px;
  padding: 65px var(--page) 30px;
  border-top: 1px solid var(--line);
  background: #080a0f;
}
.footer__brand { font-size: clamp(1.4rem, 2.6vw, 2.7rem); }
.footer > p { max-width: 320px; margin: 0; color: var(--muted); line-height: 1.6; }
.footer__links { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer__links a:hover { color: var(--blue); }
.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer__bottom button { padding: 0; border: 0; color: inherit; background: none; cursor: pointer; }
.footer__bottom button:hover, .footer__bottom a:hover { color: var(--ink); }

.modal {
  width: min(580px, calc(100% - 32px));
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #121620;
  box-shadow: 0 30px 100px rgba(0,0,0,.65);
}
.modal::backdrop { background: rgba(5,7,11,.82); backdrop-filter: blur(8px); }
.modal[open] { animation: modal-in .35s cubic-bezier(.2,.8,.2,1); }
.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  padding: 5px;
  border: 0;
  background: none;
  font-size: 2rem;
  font-weight: 200;
  cursor: pointer;
}
.modal h2 { margin: 18px 0; font-family: var(--display); font-size: clamp(2.3rem, 6vw, 4.3rem); line-height: .98; letter-spacing: -.06em; }
.modal > p:not(.section-index) { color: var(--muted); line-height: 1.6; }
.modal-form { display: flex; flex-direction: column; gap: 12px; margin-top: 35px; }
.modal-form label { font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.modal-form input {
  width: 100%;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1.05rem;
}
.modal-form input:focus { border-color: var(--blue); }
.modal-form .button { margin-top: 16px; }
.modal-form small { min-height: 18px; color: var(--blue); }
.modal--text { max-width: 680px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-in { to { scale: 1; } }
@keyframes scan { 0% { transform: translateX(-110%); } 55%,100% { transform: translateX(110%); } }
@keyframes modal-in { from { opacity: 0; transform: translateY(20px) scale(.98); } }

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 66px; }
  .desktop-nav, .text-button { display: none; }
  .menu-button { display: block; }
  .hero__cta {
    width: min(86%, 520px);
    height: 6.5%;
    bottom: 3.2%;
  }
  .scroll-cue { display: none; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 24px; }
  .directions { grid-template-columns: 1fr; }
  .direction {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .direction:last-child { border-bottom: 0; }
  .direction span { margin-bottom: 18px; }
  .about { grid-template-columns: 1fr; }
  .about__image-wrap { height: 85vw; }
  .principle { grid-template-columns: 35px 1fr; gap: 20px; }
  .principle p { grid-column: 2; }
  .footer { grid-template-columns: 1fr; }
  .footer__links { align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .footer__bottom { flex-wrap: wrap; gap: 18px; }
}

@media (min-width: 821px) and (max-width: 1200px) {
  .directions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .direction:nth-child(3) { border-right: 0; }
  .direction:nth-child(n+4) { border-top: 1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Catalog */
.page-catalog .site-header { border-color: var(--line); background: rgba(11, 14, 21, .78); backdrop-filter: blur(18px); }
.catalog-hero { padding-top: calc(76px + clamp(48px, 8vw, 100px)); padding-bottom: 0; }
.catalog-hero h1 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: .95;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.catalog-hero__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 42px;
}
.catalog-hero__lead {
  max-width: 460px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.catalog-count {
  margin: 0;
  color: var(--blue);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.chip {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.chip:hover { color: var(--ink); border-color: rgba(255,255,255,.28); }
.chip.is-active { color: var(--void); background: #f0f0f2; border-color: #f0f0f2; }
.catalog-section { padding-top: 36px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
}
.product__hit {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
}
.product__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  background: #12151b;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.product__hit:hover .product__media img { transform: scale(1.03); }
.product__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: rgba(11,14,21,.72);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product__info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}
.product__type {
  margin: 0 0 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product__info h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.product__price {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.catalog-empty {
  margin: 48px 0 0;
  color: var(--muted);
  text-align: center;
}
.direction-link {
  display: block;
  height: 100%;
  color: inherit;
}
.direction-link:hover h3 { color: var(--blue); }

.product-modal {
  width: min(1100px, calc(100% - 24px));
  max-height: calc(100svh - 24px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #10141c;
  box-shadow: 0 30px 100px rgba(0,0,0,.65);
}
.product-modal::backdrop { background: rgba(5,7,11,.82); backdrop-filter: blur(8px); }
.product-modal[open] { animation: modal-in .35s cubic-bezier(.2,.8,.2,1); }
.product-modal__layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}
.product-modal__media {
  min-height: 520px;
  background: #0c0f14;
  border-right: 1px solid var(--line);
}
.product-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-modal__copy { padding: clamp(28px, 4vw, 48px); }
.product-modal__copy h2 {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.product-modal__price {
  margin: 0 0 22px;
  color: #d8ff4a;
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: .06em;
}
.product-modal__copy > p:not(.section-index):not(.product-modal__price):not(.product-sizes-label) {
  color: var(--muted);
  line-height: 1.65;
}
.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-meta div { margin: 0; }
.product-meta dt {
  margin: 0 0 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-meta dd { margin: 0; }
.product-sizes-label {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.size-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.size-chip {
  min-width: 48px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.size-chip:hover { border-color: rgba(255,255,255,.35); }
.size-chip.is-active { color: var(--void); background: #d8ff4a; border-color: #d8ff4a; }
.product-modal__cta { width: 100%; }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-modal__layout { grid-template-columns: 1fr; }
  .product-modal__media {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .catalog-hero__row { display: block; }
  .catalog-count { margin-top: 24px; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ===== Homepage · mockup editorial ===== */
.page-home {
  --void: #000;
  --surface: #0a0a0a;
  --ink: #f4f4f4;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, .12);
  --blue: #ffffff;
  --display: "Cormorant Garamond", Georgia, serif;
  background: #000;
}
.page-home .noise { opacity: .025; }

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}
.brand-lockup__mark { display: grid; place-items: center; color: #fff; }
.brand-lockup__text { display: grid; gap: 2px; line-height: 1.1; }
.brand-lockup__name {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.brand-lockup__tag {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-header {
  background: transparent;
}
.home-header.is-scrolled {
  background: rgba(0, 0, 0, .82);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.page-home .desktop-nav a::after { background: #fff; }
.page-home .button--light:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}
.page-home .size-chip.is-active {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.home-hero {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}
.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, #000 0%, #000 34%, rgba(0,0,0,.55) 52%, rgba(0,0,0,.08) 72%, transparent 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 28%, transparent 72%, rgba(0,0,0,.45) 100%);
}
.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  scale: 1.04;
  animation: hero-in 1.5s cubic-bezier(.2,.7,.2,1) forwards;
}
.home-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 56px);
  width: min(100%, 560px);
  min-height: 100svh;
  padding: calc(96px + clamp(12px, 3vw, 36px)) var(--page) clamp(40px, 6vw, 72px);
}
.home-hero__brand {
  max-width: 320px;
}
.home-hero__emblem {
  display: inline-grid;
  margin-bottom: 16px;
  animation: hero-fade 1s cubic-bezier(.2,.7,.2,1) both;
}
.home-hero__name {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: hero-fade 1s .06s cubic-bezier(.2,.7,.2,1) both;
}
.home-hero__ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 12px;
  color: rgba(255,255,255,.65);
  animation: hero-fade 1s .1s cubic-bezier(.2,.7,.2,1) both;
}
.home-hero__ornament span {
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,.35);
}
.home-hero__ornament i {
  font-style: normal;
  font-size: .85rem;
}
.home-hero__tag {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: hero-fade 1s .14s cubic-bezier(.2,.7,.2,1) both;
}
.home-hero__titles {
  margin-top: auto;
  animation: hero-fade 1s .2s cubic-bezier(.2,.7,.2,1) both;
}
.home-hero h1 {
  margin: 0;
  font-family: "Oswald", "Hanken Grotesk", sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 600;
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.home-hero__lead {
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(.78rem, 1.4vw, .95rem);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-hero__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.home-hero__cta:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
  transform: translateY(-2px);
}
@keyframes hero-fade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.home-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: clamp(40px, 7vw, 88px) var(--page) clamp(24px, 4vw, 40px);
  background: #000;
}
.home-categories:has(> :nth-child(2)) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 720px) {
  .home-categories:has(> :nth-child(2)) {
    grid-template-columns: 1fr;
  }
}
.home-category {
  display: block;
  overflow: hidden;
  background: #111;
  line-height: 0;
}
.home-category img {
  width: 100%;
  height: auto;
  max-height: min(78vh, 920px);
  object-fit: cover;
  object-position: center top;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s ease;
  filter: contrast(1.04);
}
.home-category:hover img {
  transform: scale(1.02);
  filter: contrast(1.08);
}

.home-lookbook {
  padding: clamp(48px, 8vw, 96px) 0 clamp(28px, 4vw, 48px);
  background: #000;
}
.home-lookbook__rail,
.home-thumbs__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 8px;
  padding: 0 var(--page);
  overflow-x: auto;
  scrollbar-width: none;
}
.home-lookbook__rail { grid-auto-columns: minmax(260px, 1fr); }
.home-lookbook__rail::-webkit-scrollbar,
.home-thumbs__rail::-webkit-scrollbar { display: none; }
.home-shot,
.home-thumbs__rail a {
  display: block;
  overflow: hidden;
  background: #111;
}
.home-shot img,
.home-thumbs__rail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s ease;
  filter: contrast(1.04) saturate(.92);
}
.home-shot:hover img,
.home-thumbs__rail a:hover img {
  transform: scale(1.04);
  filter: contrast(1.08) saturate(1);
}

.home-fabric {
  margin: clamp(28px, 5vw, 64px) 0;
  line-height: 0;
  opacity: .92;
}
.home-fabric img {
  width: 100%;
  height: clamp(72px, 12vw, 140px);
  object-fit: cover;
}

.home-film {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(40px, 7vw, 100px) var(--page);
}
.home-film__copy h2 {
  margin: 14px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.home-film__copy p:not(.section-index) {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.home-film__player {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: #0a0a0a;
  cursor: pointer;
  overflow: hidden;
}
.home-film__player img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .6s ease, opacity .35s ease;
}
.home-film__player:hover img { transform: scale(1.03); opacity: .88; }
.home-film__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: background .25s ease, transform .25s ease;
}
.home-film__play::before {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  content: "";
  transform: translate(-50%, -50%);
}
.home-film__player:hover .home-film__play {
  background: rgba(255,255,255,.92);
  transform: translate(-50%, -50%) scale(1.05);
}
.home-film__player:hover .home-film__play::before {
  border-color: transparent transparent transparent #000;
}

.home-thumbs {
  padding: 0 0 clamp(40px, 7vw, 90px);
}
.home-thumbs__rail {
  grid-auto-columns: minmax(120px, 1fr);
  gap: 6px;
}
.home-thumbs__rail img { aspect-ratio: 3 / 4; }

.page-home .home-catalog {
  padding-top: clamp(60px, 9vw, 120px);
  border-top: 1px solid var(--line);
}
.page-home .directions {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.page-home .direction { min-height: 220px; }
.page-home .home-contact {
  background: #000;
}
.page-home .drop__background { display: none; }
.page-home .footer {
  border-top: 1px solid var(--line);
  background: #000;
}

.home-film-modal {
  width: min(920px, calc(100vw - 32px));
  max-width: none;
  padding: 28px;
  border: 1px solid var(--line);
  background: #050505;
  color: var(--ink);
}
.home-film-modal::backdrop { background: rgba(0,0,0,.78); }
.home-film-modal__frame {
  margin: 12px 0 20px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.home-film-modal__frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.home-film-modal > p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .home-hero__media::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.28) 38%, rgba(0,0,0,.15) 58%, rgba(0,0,0,.72) 100%),
      linear-gradient(90deg, #000 0%, rgba(0,0,0,.55) 45%, transparent 100%);
  }
  .home-hero__copy {
    width: 100%;
    justify-content: flex-end;
    padding-top: calc(88px + 18px);
  }
  .home-hero__image { object-position: 70% center; }
  .home-film { grid-template-columns: 1fr; }
  .page-home .directions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-home .direction:nth-child(odd) { border-right: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .brand-lockup__text { display: none; }
  .home-hero h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .home-hero__lead { letter-spacing: .1em; }
  .page-home .directions { grid-template-columns: 1fr; }
  .page-home .direction { border-right: 0; border-bottom: 1px solid var(--line); }
}
