:root {
  --ink: #080808;
  --paper: #f1f0ec;
  --acid: #d8ff32;
  --line: #c5c4bf;
  --mono: "DM Mono", monospace;
  --sans: Inter, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14px;
}
.topline {
  height: 28px;
  padding: 0 16px;
  background: var(--acid);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  white-space: nowrap;
}
.topline div:last-child {
  display: none;
}
header {
  height: 76px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: absolute;
  z-index: 10;
  top: 28px;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.logo {
  font: 900 17px/13px var(--sans);
  letter-spacing: -0.08em;
  text-decoration: none;
  color: inherit;
}
header p {
  text-align: center;
  font-size: 7px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.bag-open {
  justify-self: end;
  border: 0;
  background: transparent;
  color: inherit;
  font: 10px var(--mono);
  cursor: pointer;
}
.bag-open span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: var(--acid);
  color: #000;
  border-radius: 50%;
}
.hero {
  height: 100svh;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: contrast(1.08) saturate(0.85);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18),
    transparent 45%,
    rgba(0, 0, 0, 0.65)
  );
}
.hero-meta {
  position: absolute;
  z-index: 2;
  top: 125px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}
.hero-type {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 105px;
  width: 100%;
  overflow: hidden;
  color: var(--acid);
}
.hero-type div {
  font: 600 clamp(58px, 18vw, 140px)/0.8 var(--sans);
  letter-spacing: -0.07em;
  white-space: nowrap;
  width: max-content;
  animation: roll 14s linear infinite;
}
@keyframes roll {
  to {
    transform: translateX(-50%);
  }
}
.drop-link {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 22px;
  background: var(--paper);
  color: #000;
  text-decoration: none;
  padding: 19px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}
.manifesto {
  padding: 95px 18px 105px;
  border-bottom: 1px solid var(--line);
}
.section-no {
  font-size: 9px;
  margin-bottom: 48px;
}
.manifesto h1 {
  font: 800 clamp(52px, 16vw, 120px)/0.83 var(--sans);
  letter-spacing: -0.075em;
  margin: 0;
}
.manifesto h1 i {
  font-style: normal;
  color: var(--acid);
  -webkit-text-stroke: 1px #000;
}
.manifesto p {
  font: 15px/1.85 var(--sans);
  margin: 55px 0 0 auto;
  max-width: 520px;
}
.product {
  border-bottom: 1px solid var(--line);
}
.gallery {
  background: #deddd8;
}
.shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--paper);
  padding: 7px;
  font-size: 8px;
}
.shot.full {
  height: 125vw;
  max-height: 760px;
}
.shot.full img {
  object-position: 50% 40%;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.detail-grid .shot {
  height: 60vw;
  max-height: 430px;
}
.close img {
  object-position: 50% 27%;
  transform: scale(2.3);
}
.fabric img {
  object-position: 48% 54%;
  transform: scale(2.6);
}
.buy-panel {
  padding: 36px 18px 70px;
}
.product-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.product-heading small {
  font-size: 8px;
}
.product-heading h2 {
  font: 800 clamp(46px, 14vw, 76px)/0.82 var(--sans);
  letter-spacing: -0.07em;
  margin: 18px 0 0;
}
.product-heading strong {
  font-size: 14px;
}
.title-first {
  color: #173f91;
}
.title-truth {
  color: #c94f32;
}
.tax {
  font-size: 8px;
  color: #777;
  margin: 20px 0 50px;
}
.size-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
}
.guide {
  border: 0;
  border-bottom: 1px solid;
  background: transparent;
  padding: 4px 0;
  font-size: 9px;
  cursor: pointer;
}
.sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 14px 0;
}
.sizes button {
  height: 50px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}
.sizes button.selected {
  background: var(--acid);
  border-color: #000;
}
.add {
  width: 100%;
  height: 58px;
  border: 0;
  background: #000;
  color: #fff;
  padding: 0 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordions {
  margin-top: 42px;
  border-top: 1px solid #000;
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  padding: 19px 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
  font-size: 10px;
  cursor: pointer;
}
details p {
  font-size: 9px;
  line-height: 2;
  padding: 0 0 20px;
  margin: 0;
  color: #5b5b57;
}
.quote {
  background: var(--acid);
  padding: 90px 18px;
}
.quote p {
  font: 800 clamp(42px, 13vw, 100px)/0.88 var(--sans);
  letter-spacing: -0.065em;
  margin: 0;
}
.quote span {
  display: block;
  font-size: 8px;
  margin-top: 40px;
}
.last-look {
  height: 115vw;
  max-height: 850px;
  position: relative;
  background: #111;
  color: #fff;
  overflow: hidden;
}
.last-look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  object-position: 50% 45%;
}
.last-look:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent);
}
.last-look > div {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 22px;
}
.last-look span {
  font-size: 8px;
}
.last-look h2 {
  font: 800 clamp(55px, 17vw, 130px)/0.78 var(--sans);
  letter-spacing: -0.08em;
  margin: 22px 0 35px;
}
.last-look a {
  color: #000;
  background: var(--acid);
  padding: 15px 22px;
  text-decoration: none;
  font-size: 9px;
}
footer {
  background: #000;
  color: #fff;
  padding: 55px 18px 24px;
  display: grid;
  gap: 50px;
}
footer > a {
  font: 900 clamp(52px, 17vw, 125px)/0.8 var(--sans);
  letter-spacing: -0.09em;
  color: var(--acid);
  text-decoration: none;
}
footer div {
  display: flex;
  gap: 25px;
  font-size: 9px;
}
footer div a {
  color: inherit;
  text-decoration: none;
}
footer small {
  font-size: 8px;
  color: #777;
}
.shade {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.shade.show {
  opacity: 1;
  pointer-events: auto;
}
.bag {
  position: fixed;
  z-index: 21;
  inset: 0 0 0 auto;
  width: min(100%, 440px);
  background: var(--paper);
  padding: 22px;
  transform: translateX(105%);
  transition: 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
}
.bag.open {
  transform: none;
}
.bag-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 18px;
}
.bag h2 {
  font: 800 28px var(--sans);
  margin: 0;
}
.bag-close,
.size-close {
  font-size: 30px;
  border: 0;
  background: none;
  cursor: pointer;
}
.bag-body {
  flex: 1;
  padding-top: 25px;
}
.bag-empty {
  font-size: 9px;
}
.bag-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
}
.bag-item img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  object-position: 50% 28%;
}
.bag-item p {
  font-size: 10px;
  line-height: 1.8;
}
.bag-item small {
  color: #777;
}
.bag-bottom > div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid;
  padding: 18px 0;
}
.checkout-link {
  width: 100%;
  height: 55px;
  border: 0;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}
.size-modal {
  border: 0;
  width: min(calc(100% - 28px), 500px);
  padding: 25px;
  background: var(--paper);
}
.size-modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.size-close {
  float: right;
}
.size-modal small {
  font-size: 8px;
}
.size-modal h2 {
  font: 800 42px/0.9 var(--sans);
  letter-spacing: -0.06em;
  margin: 60px 0 35px;
}
.size-modal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.size-modal th,
.size-modal td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
@media (min-width: 760px) {
  .topline {
    padding: 0 34px;
  }
  .topline div:last-child {
    display: block;
  }
  header {
    padding: 0 35px;
  }
  .drop-link {
    width: 300px;
    left: 35px;
  }
  .manifesto,
  .quote {
    padding: 140px 6vw;
  }
  .product {
    display: grid;
    grid-template-columns: 57% 43%;
    align-items: start;
  }
  .gallery {
    border-right: 1px solid var(--line);
  }
  .buy-panel {
    position: sticky;
    top: 0;
    padding: 70px 5vw;
  }
  .shot.full {
    height: 75vw;
    max-height: 900px;
  }
  .detail-grid .shot {
    height: 34vw;
  }
  .last-look {
    height: 85vh;
  }
  footer {
    padding: 80px 4vw 30px;
  }
}
@media (min-width: 1200px) {
  .hero > img {
    object-position: 50% 43%;
  }
  .manifesto p {
    font-size: 19px;
  }
  .product {
    grid-template-columns: 62% 38%;
  }
  .shot.full {
    height: 70vw;
  }
  .detail-grid .shot {
    height: 29vw;
  }
  .buy-panel {
    padding: 80px 4vw;
  }
  .last-look > div {
    left: 5vw;
    bottom: 7vh;
  }
}
