:root {
  --black: #080808;
  --ink: #111;
  --paper: #eeeae0;
  --yellow: #e9ef00;
  --line: #303030;
  --pad: clamp(22px, 4vw, 64px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: #f4f4ef;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
body.loading {
  overflow: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
img {
  display: block;
  width: 100%;
}
.section-pad {
  padding: 130px var(--pad);
}
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #f8f8f4;
  display: grid;
  place-items: center;
  transition:
    clip-path 0.85s cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0.85s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}
.loader.done {
  clip-path: polygon(0 0, 100% 0, 100% 48%, 50% 51%, 0 48%);
  visibility: hidden;
}
.loader-noise {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}
.strike-scene {
  position: relative;
  width: min(60vw, 460px);
  aspect-ratio: 1;
  animation: sceneStrike 2.45s ease-out both;
}
.strike-scene::before {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 8%;
  border-radius: 50%;
  pointer-events: none;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5'%3E%3Cpath stroke='%23e9ef00' d='M201 42L197 58L204 86L202 111'/%3E%3Cpath stroke='%23fff' d='M286 67L278 76L270 96L255 121'/%3E%3Cpath stroke='%23e9ef00' d='M345 132L326 134L313 148L283 166'/%3E%3Cpath stroke='%23fff' d='M361 215L344 208L321 214L292 206'/%3E%3Cpath stroke='%23e9ef00' d='M320 302L312 292L302 278L267 260'/%3E%3Cpath stroke='%23fff' d='M205 356L211 337L204 316L201 286'/%3E%3Cpath stroke='%23e9ef00' d='M93 306L99 294L109 276L143 261'/%3E%3Cpath stroke='%23fff' d='M39 205L64 211L82 200L108 204'/%3E%3Cpath stroke='%23e9ef00' d='M68 119L86 124L96 141L125 157'/%3E%3Cpath stroke='%23fff' d='M124 61L132 76L129 92L150 119'/%3E%3C/g%3E%3C/svg%3E");
  filter:
    drop-shadow(0 0 3px rgba(233, 239, 0, 0.8))
    drop-shadow(0 0 8px rgba(233, 239, 0, 0.35));
  animation: biteStreaks 2.45s ease-out both;
}
.strike-scene::after {
  content: "";
  position: absolute;
  z-index: 7;
  inset: 25%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(233, 239, 0, 0.2) 0%,
    rgba(233, 239, 0, 0.08) 38%,
    transparent 72%
  );
  animation: bitePulse 2.45s ease-out both;
}
.snake-jaw {
  position: absolute;
  inset: 0;
  overflow: hidden;
  mix-blend-mode: multiply;
  z-index: 2;
}
.snake-jaw img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}
.snake-jaw-top {
  clip-path: polygon(0 0, 100% 0, 100% 53%, 0 53%);
  transform-origin: 50% 53%;
  animation: jawTop 2.45s cubic-bezier(0.76, 0, 0.24, 1) both;
}
.snake-jaw-bottom {
  clip-path: polygon(0 53%, 100% 53%, 100% 100%, 0 100%);
  transform-origin: 50% 53%;
  animation: jawBottom 2.45s cubic-bezier(0.76, 0, 0.24, 1) both;
}
.prey-word {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  font-family: "Archivo Black", sans-serif;
  color: #0a0a0a;
  font-size: clamp(25px, 5vw, 58px);
  letter-spacing: 0.09em;
  animation: prey 2.45s both;
}
.loader-copy {
  position: absolute;
  bottom: 8vh;
  left: 6vw;
  right: 6vw;
  color: #111;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.3em;
  font-size: 9px;
  font-weight: 600;
  animation: fade 0.7s 0.2s both;
}
.loader-copy b {
  font-weight: 600;
}
.loader-line {
  position: absolute;
  bottom: 5vh;
  left: 6vw;
  right: 6vw;
  height: 2px;
  background: #ddd;
}
.loader-line span {
  display: block;
  height: 100%;
  background: #111;
  animation: load 2.35s cubic-bezier(0.7, 0, 0.3, 1) both;
}
@keyframes sceneStrike {
  0% {
    opacity: 0;
  }
  14%,
  100% {
    opacity: 1;
  }
}
@keyframes jawTop {
  0%,
  25% {
    transform: translateY(0) rotate(0deg);
  }
  43%,
  60% {
    transform: translateY(-5%) rotate(-12deg);
  }
  69% {
    transform: translateY(1%) rotate(1.5deg);
  }
  75%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes jawBottom {
  0%,
  25% {
    transform: translateY(0) rotate(0deg);
  }
  43%,
  60% {
    transform: translateY(6%) rotate(11deg);
  }
  69% {
    transform: translateY(-1%) rotate(-1.5deg);
  }
  75%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes bitePulse {
  0%,
  66%,
  75%,
  100% {
    opacity: 0;
    transform: scale(0.75);
  }
  69% {
    opacity: 1;
    transform: scale(0.9);
  }
  74% {
    opacity: 0;
    transform: scale(1.22);
  }
}
@keyframes biteStreaks {
  0%,
  65%,
  79%,
  100% {
    opacity: 0;
    transform: scale(0.68) rotate(-7deg);
  }
  68% {
    opacity: 1;
    transform: scale(0.86) rotate(-2deg);
  }
  75% {
    opacity: 0;
    transform: scale(1.22) rotate(7deg);
  }
}
@keyframes prey {
  0%,
  28% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.1);
  }
  43%,
  63% {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.25, 0.25);
  }
  72%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5, 0);
  }
}
@keyframes load {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.announcement {
  height: 29px;
  background: var(--yellow);
  color: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.announcement span {
  font-size: 6px;
}
.navbar {
  height: 80px;
  position: absolute;
  top: 29px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.brand {
  width: 146px;
  height: 42px;
  overflow: hidden;
}
.brand img {
  height: 100%;
  object-fit: cover;
}
.navbar nav {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
}
.navbar nav a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative;
}
.navbar nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--yellow);
  transition: 0.3s;
}
.navbar nav a:hover:after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.language-switch {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}
.language-switch a {
  min-width: 34px;
  min-height: 30px;
  padding-left: 2px;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s,
    background-color 0.2s,
    box-shadow 0.2s;
}
.language-switch a:hover {
  color: var(--yellow);
}
.language-switch a.active {
  color: #080808;
  background: var(--yellow);
  box-shadow: 0 2px 10px rgba(233, 239, 0, 0.22);
}
.language-switch a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.language-switch span {
  display: none;
}
.menu-button {
  border: 0;
  background: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
  cursor: pointer;
}
.menu-button {
  display: none;
  width: 28px;
  padding: 5px 0;
}
.menu-button span {
  display: block;
  height: 1px;
  background: #fff;
  margin: 6px 0;
}
.nav-backdrop {
  display: none;
}
.hero {
  height: calc(100vh - 29px);
  min-height: 650px;
  position: relative;
  overflow: hidden;
}
.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
  filter: saturate(0.78) contrast(1.08);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.18) 60%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 45%);
}
.hero-copy {
  position: absolute;
  left: var(--pad);
  bottom: 10%;
  width: min(890px, 85vw);
}
.eyebrow {
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin: 0 0 20px;
}
.hero h1,
.section-heading h2,
.lookbook h2,
.about h2,
.contact h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(62px, 10vw, 155px);
  line-height: 0.79;
  letter-spacing: -0.07em;
  margin: 0;
  text-transform: uppercase;
}
.hero h1 em,
.about h2 em {
  color: var(--yellow);
  font-style: normal;
}
.hero h1.hero-season-title {
  width: max-content;
  max-width: 92vw;
  font-size: clamp(38px, 5.7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.hero-season-title span,
.hero-season-title em {
  white-space: nowrap;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  margin-top: 38px;
}
.hero-bottom p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  min-width: 190px;
  padding: 17px 20px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: 0.25s;
}
.button-yellow {
  background: var(--yellow);
  color: #000;
}
.button:hover {
  transform: translateY(-3px);
}
.scroll-label {
  position: absolute;
  right: var(--pad);
  bottom: 5%;
  font-size: 8px;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}
.ticker {
  background: var(--yellow);
  color: #080808;
  overflow: hidden;
  padding: 17px 0;
  font-family: "Archivo Black";
  font-size: 24px;
  white-space: nowrap;
}
.ticker div {
  width: max-content;
  animation: ticker 20s linear infinite;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 42px;
  margin-bottom: 55px;
}
.section-heading h2 {
  font-size: clamp(60px, 9vw, 130px);
}
.section-heading > p {
  font-size: 12px;
  line-height: 1.7;
  color: #aaa;
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(35px, 6vw, 100px);
}
.gallery-main {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #ddd;
}
.gallery-main img {
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s;
}
.badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  background: var(--yellow);
  color: #000;
  padding: 9px 12px;
  font-size: 8px;
  letter-spacing: 0.18em;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.thumb {
  padding: 0;
  border: 2px solid transparent;
  background: 0;
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
  opacity: 0.55;
}
.thumb.active {
  border-color: var(--yellow);
  opacity: 1;
}
.thumb img {
  height: 100%;
  object-fit: cover;
}
.product-info {
  padding-top: 20px;
  position: sticky;
  top: 30px;
  align-self: start;
}
.product-info h3 {
  font-family: "Archivo Black";
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
}
.price {
  font-size: 18px;
  margin: 26px 0;
}
.description {
  font-size: 13px;
  line-height: 1.8;
  color: #aaa;
  max-width: 500px;
}
.selector {
  margin-top: 42px;
}
.selector-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.selector-head button {
  color: #aaa;
  text-decoration: underline;
  border: 0;
  background: none;
  font-size: 9px;
  cursor: pointer;
}
.sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.sizes button {
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.sizes button:hover,
.sizes button.selected {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}
.add-button {
  width: 100%;
  border: 0;
  background: var(--yellow);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: 0.2s;
}
.add-button:hover {
  background: #fff;
}
.product-notes {
  margin-top: 25px;
}
.product-notes details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.product-notes details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.14em;
  cursor: pointer;
}
.product-notes p {
  color: #999;
  font-size: 12px;
  line-height: 1.7;
}
.lookbook {
  background: var(--paper);
  color: var(--ink);
  padding: 130px var(--pad);
  position: relative;
}
.lookbook-title {
  position: sticky;
  top: 30px;
  z-index: 1;
  pointer-events: none;
}
.lookbook h2 {
  font-size: clamp(65px, 11vw, 160px);
}
.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw 16vw;
  margin-top: -35px;
  position: relative;
  z-index: 2;
}
.look {
  margin: 0;
}
.look img {
  height: 100%;
  object-fit: cover;
}
.look figcaption {
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.18em;
  margin-top: 10px;
}
.look-1 {
  height: 75vw;
  max-height: 950px;
  margin-top: 24vw;
}
.look-2 {
  height: 55vw;
  max-height: 720px;
}
.look-3 {
  height: 62vw;
  max-height: 780px;
}
.look-4 {
  height: 50vw;
  max-height: 650px;
  margin-top: 12vw;
}
.about {
  background: #101010;
}
.about-intro h2 {
  font-size: clamp(58px, 9vw, 130px);
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10vw;
  margin: 100px 0 120px;
  padding-left: 20vw;
}
.about-story p {
  font-size: 15px;
  line-height: 1.9;
  color: #aaa;
  margin-top: 0;
}
.about-story .lead {
  font-size: 26px;
  color: #fff;
  line-height: 1.35;
  grid-row: span 3;
}
.about-story .signature {
  color: var(--yellow);
  font-weight: 600;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.values article {
  padding: 38px 8% 20px 0;
  border-right: 1px solid var(--line);
  min-height: 300px;
}
.values article + article {
  padding-left: 12%;
}
.values article:last-child {
  border: 0;
}
.values span {
  font-size: 9px;
  color: var(--yellow);
}
.values h3 {
  font-family: "Archivo Black";
  font-size: 32px;
  line-height: 0.95;
}
.values p {
  font-size: 12px;
  line-height: 1.7;
  color: #999;
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(70px, 10vw, 170px);
  min-height: calc(100vh - 92px);
  align-items: center;
  background: var(--paper);
  color: #0a0a0a;
}
.contact-aside {
  position: relative;
  isolation: isolate;
}
.contact h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(78px, 10.8vw, 168px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  margin: 22px 0 0;
  text-transform: uppercase;
}
.contact-aside > p:not(.eyebrow) {
  max-width: 500px;
  font-size: clamp(16px, 1.55vw, 23px);
  line-height: 1.34;
  margin: 42px 0 0;
}
.contact-quick-links {
  display: flex;
  gap: 22px;
  margin-top: 34px;
}
.contact-quick-links a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-watermark {
  position: absolute;
  z-index: -1;
  width: min(300px, 52%);
  left: 8%;
  bottom: -22%;
  opacity: 0.055;
  filter: grayscale(1);
  pointer-events: none;
}
.contact-form {
  border: 1px solid #111;
  padding: clamp(26px, 3vw, 42px);
  box-shadow: 28px 32px 70px rgba(0, 0, 0, 0.08);
}
.contact-form-heading {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding-bottom: 18px;
  color: #555;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-form label {
  display: block;
  padding: 20px 0 0;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.16em;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.38);
  outline: 0;
  margin-top: 10px;
  padding: 14px;
  font-size: 16px;
  color: #000;
  text-transform: none;
  letter-spacing: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111;
  background: #fff;
}
.contact-form textarea {
  height: 168px;
  resize: vertical;
}
.contact-form .add-button {
  background: #080808;
  color: #fff;
  margin-top: 38px;
  width: 100%;
}
.form-status {
  font-size: 11px;
}
.contact-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--yellow);
  color: #080808;
  border-top: 1px solid #080808;
  border-bottom: 1px solid #080808;
}
.contact-card {
  position: relative;
  min-width: 0;
  min-height: 190px;
  padding: 34px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #080808;
  transition:
    background 0.25s,
    color 0.25s;
}
.contact-card:last-child {
  border-right: 0;
}
.contact-card > span:first-child {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-card strong {
  max-width: calc(100% - 36px);
  overflow-wrap: anywhere;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1;
}
.contact-card:first-child strong {
  font-size: clamp(15px, 1.65vw, 24px);
}
.contact-card-arrow {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  font-size: 20px;
}
.contact-card:hover,
.contact-card:focus-visible {
  background: #080808;
  color: var(--yellow);
}
footer {
  padding: 80px var(--pad) 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 7vw;
}
.footer-brand img {
  width: 180px;
}
.footer-brand p,
.newsletter p {
  color: #888;
  font-size: 11px;
  line-height: 1.7;
}
footer h3 {
  text-transform: uppercase;
  color: #777;
  letter-spacing: 0.16em;
  font-size: 9px;
  margin: 0 0 20px;
}
footer div > a:not(.button) {
  display: block;
  font-size: 11px;
  margin: 12px 0;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .social-links .social-icon-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid #353535;
  border-radius: 50%;
  color: #f4f4ef;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.social-icon-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon-link svg[data-brand="tiktok"] {
  fill: currentColor;
  stroke: none;
}
footer .social-links .social-icon-link:hover,
footer .social-links .social-icon-link:focus-visible {
  color: #080808;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.newsletter .button {
  margin-top: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-left: clamp(20px, 5vw, 80px);
}
.footer-legal a {
  color: #888;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--yellow);
}
.footer-credit a {
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-credit {
  margin-left: auto;
  text-align: right;
}
.footer-credit a:hover {
  color: var(--yellow);
}
.home-page main > .shop,
.home-page main > .lookbook,
.home-page main > .about,
.home-page main > .contact {
  display: none;
}
.subpage .navbar {
  position: relative;
  top: auto;
}
.subpage .loader {
  display: none;
}
.subpage footer {
  background: var(--black);
}
.legal-page main {
  min-height: 62vh;
  background: var(--paper);
  color: #080808;
}
.legal-placeholder {
  padding-top: clamp(90px, 14vw, 190px);
  padding-bottom: clamp(90px, 14vw, 190px);
}
.legal-placeholder h1 {
  max-width: 1100px;
  margin: 18px 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(54px, 9vw, 130px);
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.legal-empty-space {
  min-height: 80px;
}
.navbar nav a[aria-current="page"]:after {
  width: 100%;
}
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 850px) {
  .section-pad {
    padding: 90px 20px;
  }
  .announcement {
    font-size: 7px;
  }
  .navbar {
    height: 65px;
    padding: 0 20px;
  }
  .brand {
    width: 115px;
  }
  .menu-button {
    display: block;
  }
  .navbar nav {
    position: fixed;
    z-index: 90;
    top: 94px;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 94px);
    overflow-y: auto;
    background: #090909;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    transform: translateY(calc(-100% - 20px));
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.4s,
      visibility 0.4s;
  }
  .navbar nav.open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .navbar nav a {
    font-family: "Archivo Black";
    font-size: 30px;
    padding: 15px;
    border-bottom: 1px solid var(--line);
  }
  .nav-backdrop {
    position: fixed;
    z-index: 40;
    inset: 94px 0 0;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s,
      visibility 0.3s;
  }
  body.menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hero {
    min-height: 620px;
  }
  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent 75%);
  }
  .hero-copy {
    left: 20px;
    bottom: 8%;
    width: calc(100% - 40px);
  }
  .hero h1 {
    font-size: clamp(57px, 17vw, 95px);
  }
  .hero h1.hero-season-title {
    max-width: 100%;
    font-size: clamp(20px, 7vw, 44px);
    line-height: 1.04;
    letter-spacing: -0.06em;
  }
  .hero-bottom {
    display: block;
  }
  .hero-bottom p {
    display: none;
  }
  .hero-bottom .button {
    margin-top: 20px;
  }
  .scroll-label {
    display: none;
  }
  .section-heading {
    align-items: start;
  }
  .section-heading > p {
    display: none;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-info {
    position: static;
  }
  .lookbook {
    padding: 90px 20px;
  }
  .lookbook-title {
    position: relative;
    top: auto;
  }
  .look-grid {
    gap: 70px 12px;
    margin-top: 50px;
  }
  .look-1,
  .look-2,
  .look-3,
  .look-4 {
    height: 75vw;
    margin: 0;
  }
  .look-1,
  .look-4 {
    margin-top: 100px;
  }
  .about-story {
    grid-template-columns: 1fr;
    padding: 0;
    margin: 70px 0;
  }
  .about-story .lead {
    margin-bottom: 30px;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .values article,
  .values article + article {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: 0;
    padding-top: 110px;
    padding-bottom: 90px;
  }
  .contact h1 {
    font-size: clamp(68px, 21vw, 118px);
  }
  .contact-aside > p:not(.eyebrow) {
    font-size: 17px;
  }
  .contact-watermark {
    width: min(240px, 58%);
    bottom: -12%;
  }
  .contact-form {
    padding: 24px 20px;
    box-shadow: 16px 20px 45px rgba(0, 0, 0, 0.08);
  }
  .contact-directory {
    grid-template-columns: 1fr;
  }
  .contact-card {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid #080808;
  }
  .contact-card:last-child {
    border-bottom: 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand,
  .newsletter {
    grid-column: span 2;
  }
  .footer-bottom {
    gap: 20px;
  }
  .footer-legal {
    width: 100%;
    order: 2;
    margin-left: 0;
  }
  .legal-placeholder h1 {
    overflow-wrap: anywhere;
    font-size: clamp(38px, 10vw, 58px);
  }
  .strike-scene {
    width: 92vw;
  }
  .loader-copy span {
    max-width: 170px;
    line-height: 1.8;
  }
  .loader-copy b {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Transparent snake loader treatment */
.loader {
  background: #050505;
  isolation: isolate;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.72s;
  clip-path: none;
  will-change: opacity;
}
.loader.done {
  opacity: 0;
  clip-path: none;
  visibility: hidden;
  pointer-events: none;
}
.loader-noise {
  filter: invert(1);
  opacity: 0.2;
}
.snake-jaw {
  mix-blend-mode: normal;
}
.prey-word,
.loader-copy {
  color: #fff;
}
.loader-line {
  background: #282828;
}
.loader-line span {
  background: var(--yellow);
}
.prey-word {
  width: 82%;
  height: auto;
  line-height: 0;
  color: transparent;
}
.prey-word img {
  width: 100%;
  height: auto;
  clip-path: polygon(0 20%, 90% 20%, 90% 70%, 0 70%);
  filter: drop-shadow(0 0 10px rgba(233, 239, 0, 0.22));
}
.navbar .brand img {
  height: auto;
  object-fit: unset;
  transform: translateY(-30%);
}

@media (max-width: 850px) {
  .nav-actions {
    gap: 12px;
  }
  .language-switch {
    font-size: 9px;
  }
  .language-switch a {
    min-width: 31px;
    min-height: 28px;
  }
}
@media (max-width: 850px) {
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-credit {
    width: 100%;
    order: 3;
    margin-top: 12px;
    text-align: right;
  }
}

/* Product showcase */
.shop .section-heading h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 8vw, 118px);
  line-height: 0.82;
  letter-spacing: -0.06em;
  margin: 0;
  text-transform: uppercase;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 45px);
}
.product-card {
  flex: 0 1 560px;
  width: 100%;
}
.product-card-link {
  display: block;
}
.product-card-media {
  position: relative;
  aspect-ratio: 4/5;
  background: #161616;
  overflow: hidden;
}
.product-card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card-link:hover .product-card-media img {
  transform: scale(1.035);
}
.product-card-info {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
}
.product-card-info h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.product-card-prices {
  display: flex;
  flex-direction: column;
  align-items: end;
  white-space: nowrap;
  font-size: 12px;
}
.product-card-prices del {
  color: #777;
  margin-top: 5px;
}
.shop-state {
  border: 1px solid var(--line);
  padding: 28px;
  color: #aaa;
  font-size: 12px;
  line-height: 1.7;
}
.shop-state-error {
  border-color: #7a2828;
  color: #ff9e9e;
}
.shop-state-empty {
  text-align: center;
  padding: 70px 20px;
}
.back-link {
  display: inline-block;
  margin-bottom: 35px;
  color: #aaa;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-page .product-info h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  text-transform: uppercase;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 26px 0;
  font-size: 19px;
}
.price-compare {
  color: #777;
  font-size: 14px;
}
.discount-badge {
  background: var(--yellow);
  color: #000;
  font-size: 9px;
  padding: 5px 7px;
}
.size-info {
  margin-top: 34px;
}
.size-info .selector-head {
  align-items: center;
}
.size-guide-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 4px 0;
  color: var(--yellow) !important;
  text-underline-offset: 4px;
}
.size-guide-trigger:hover,
.size-guide-trigger:focus-visible {
  color: #fff !important;
}
.size-guide-trigger:focus-visible,
.size-guide-close:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}
.size-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(64px, 1fr));
  gap: 6px;
}
.size-list span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  font-size: 12px;
}
.social-order {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.social-order > p {
  margin: 0 0 16px;
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
}
.social-order-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}
.social-order-link {
  position: relative;
  min-width: 0;
  min-height: 68px;
  padding: 12px 24px 11px 12px;
  background: var(--yellow);
  color: #080808;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 9px;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.social-order-link:hover,
.social-order-link:focus-visible {
  background: #fff;
  transform: translateY(-2px);
}
.social-order-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}
.social-order-platform {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.social-order-link strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(7px, 0.68vw, 10px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.social-order-arrow {
  position: absolute;
  top: 11px;
  right: 10px;
  font-size: 12px;
}
.size-guide-open {
  overflow: hidden;
}
.size-guide-modal {
  width: min(980px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  border: 1px solid #3a3a3a;
  background: #0d0d0d;
  color: #f4f4ef;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
  overflow: auto;
}
.size-guide-modal::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}
.size-guide-modal-inner {
  padding: clamp(18px, 3vw, 34px);
}
.size-guide-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}
.size-guide-modal-head .eyebrow {
  margin-bottom: 8px;
  color: var(--yellow);
}
.size-guide-modal-head h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.size-guide-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  border: 1px solid #3a3a3a;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.size-guide-close:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #080808;
}
.size-guide-modal img {
  width: 100%;
  height: auto;
  background: #fff;
}
@media (max-width: 850px) {
  .shop .section-heading h1 {
    font-size: clamp(46px, 14vw, 78px);
  }
}
@media (max-width: 520px) {
  .product-card-info h3 {
    font-size: 24px;
  }
  .social-order-links {
    grid-template-columns: 1fr;
  }
  .social-order-link {
    min-height: 58px;
  }
  .social-order-link strong {
    font-size: 10px;
  }
  .size-guide-modal {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }
  .size-guide-modal-inner {
    padding: 16px;
  }
  .size-guide-modal-head {
    margin-bottom: 16px;
  }
}

/* Loader-to-site cinematic handoff */
body.loading .hero-image {
  transform: scale(1.12);
  filter: saturate(0.55) contrast(1.15) blur(8px);
}
body:not(.loading) .hero-image {
  transform: scale(1);
  filter: saturate(0.78) contrast(1.08);
  transition:
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.05s ease-out;
}
body.loading .hero-copy {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(12px);
}
body:not(.loading) .hero-copy {
  filter: blur(0);
  transition:
    opacity 0.85s 0.12s ease-out,
    transform 1s 0.12s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s 0.12s ease-out;
}
body.loading .navbar,
body.loading .announcement {
  opacity: 0;
  transform: translateY(-18px);
}
body:not(.loading) .navbar,
body:not(.loading) .announcement {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.65s 0.3s ease-out,
    transform 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
body.loading .scroll-label {
  opacity: 0;
}
body:not(.loading) .scroll-label {
  opacity: 1;
  transition: opacity 0.6s 0.65s ease-out;
}

/* Stop the sticky lookbook heading before the image grid begins */
.lookbook-heading-zone {
  min-height: clamp(380px, 38vw, 610px);
  position: relative;
}
.look-grid {
  margin-top: 0;
}

@media (max-width: 850px) {
  .lookbook-heading-zone {
    min-height: 0;
  }
  .look-grid {
    margin-top: 50px;
  }
}

/* Product size chart */
.sizes {
  grid-template-columns: repeat(3, 1fr);
}
.selector-head button span {
  display: inline-block;
  margin-left: 5px;
  font-size: 14px;
  transition: transform 0.25s;
}
.selector-head button[aria-expanded="true"] span {
  transform: rotate(45deg);
}
.size-chart {
  margin-top: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  animation: sizeChartIn 0.3s ease-out both;
}
.size-chart-scroll {
  overflow-x: auto;
}
.size-chart table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 10px;
  text-align: left;
}
.size-chart th,
.size-chart td {
  padding: 14px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.size-chart tr > *:last-child {
  border-right: 0;
}
.size-chart tbody tr:last-child > * {
  border-bottom: 0;
}
.size-chart thead th {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.08em;
  background: #080808;
}
.size-chart tbody tr:nth-child(even) {
  background: #1b1b1b;
}
.size-chart tbody th {
  color: #fff;
}
.size-chart > p {
  margin: 0;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 9px;
  line-height: 1.5;
}
@keyframes sizeChartIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
