.collections-page {
  background: var(--ink);
}

.collections-page.collection-sheet-open {
  overflow: hidden;
}

.collections-page .main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.collections-hero {
  position: relative;
  min-height: min(920px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 30%, rgba(200, 147, 88, .2), transparent 25%),
    radial-gradient(circle at 58% 86%, rgba(148, 48, 0, .38), transparent 35%),
    var(--ink);
  color: var(--white);
}

.collections-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(200, 147, 88, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 147, 88, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
  pointer-events: none;
}

.collections-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 190px;
  padding-bottom: clamp(70px, 8vw, 112px);
}

.collections-hero-copy {
  width: min(570px, 52%);
}

.collections-hero .eyebrow {
  color: var(--brand-secondary);
}

.collections-hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(5.2rem, 10.5vw, 10.2rem);
}

.collections-hero-lead {
  max-width: 540px;
  margin-bottom: 30px;
  color: #c7c0b6;
  font-size: clamp(17px, 1.6vw, 21px);
}

.collections-signature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(200, 147, 88, .45);
  padding-top: 16px;
  color: var(--brand-secondary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.collections-signature::before {
  content: "01";
  color: rgba(255, 255, 255, .45);
}

.collections-hero-visual {
  position: absolute;
  z-index: 2;
  right: max(-85px, calc((100vw - var(--container)) / 2 - 100px));
  bottom: -40px;
  width: min(58vw, 820px);
  height: 82%;
  pointer-events: none;
}

.hero-character {
  position: absolute;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  border: 1px solid rgba(200, 147, 88, .2);
  border-radius: 50% 50% 18px 18px;
  background: #ddd9d2;
  box-shadow: 0 35px 75px rgba(0, 0, 0, .4);
}

.hero-character img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-character-one {
  z-index: 2;
  right: 26%;
  height: 72%;
  transform: rotate(-3deg);
}

.hero-character-two {
  z-index: 1;
  right: 0;
  height: 60%;
  transform: translateY(-2%) rotate(7deg);
}

.hero-character-three {
  z-index: 1;
  right: 51%;
  height: 56%;
  transform: translateY(-1%) rotate(-10deg);
}

.collection-lineup {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.collection-lineup::before {
  content: "001";
  position: absolute;
  top: 4vw;
  right: -2vw;
  color: rgba(96, 41, 6, .045);
  font: 600 clamp(11rem, 28vw, 29rem)/.8 "Oswald", sans-serif;
  letter-spacing: -.08em;
  pointer-events: none;
}

.collection-lineup .section-heading {
  position: relative;
  z-index: 1;
}

.collection-lineup .section-heading h2 {
  max-width: 900px;
}

.collection-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
}

.collection-card {
  min-width: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(96, 41, 6, .18);
  border-radius: 22px;
  background: #fdfaf5;
  padding: 0;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(96, 41, 6, .08);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.collection-card:hover {
  border-color: rgba(148, 48, 0, .42);
  box-shadow: 0 28px 65px rgba(96, 41, 6, .14);
  transform: translateY(-7px) rotate(-.25deg);
}

.collection-card:nth-child(even):hover {
  transform: translateY(-7px) rotate(.25deg);
}

.collection-card-media {
  position: relative;
  aspect-ratio: 1.16 / 1;
  display: block;
  overflow: hidden;
  background: #dedbd4;
}

.collection-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 16, 12, .18), transparent 34%);
  pointer-events: none;
}

.collection-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
  transition: transform .55s ease;
}

.collection-card:hover .collection-card-media img {
  transform: scale(1.035);
}

.collection-card-number {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 2px;
  color: rgba(255, 255, 255, .8);
  font: 600 clamp(5rem, 10vw, 8rem)/1 "Oswald", sans-serif;
  letter-spacing: -.07em;
}

.collection-card-body {
  display: block;
  padding: clamp(24px, 3.2vw, 38px);
}

.collection-card-meta {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.collection-card-body > strong {
  display: block;
  margin-bottom: 14px;
  font: 600 clamp(2.6rem, 4.6vw, 4.9rem)/.95 "Oswald", sans-serif;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.collection-card-description {
  max-width: 480px;
  display: block;
  color: var(--muted);
  font-size: 15px;
}

.collection-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.collection-status,
.collection-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.collection-status {
  color: var(--muted);
}

.collection-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-secondary);
  box-shadow: 0 0 0 4px rgba(200, 147, 88, .17);
}

.collection-card-link {
  color: var(--brand-primary);
}

.collection-card-link i {
  font-size: 18px;
  font-style: normal;
  transition: transform .2s;
}

.collection-card:hover .collection-card-link i {
  transform: translateX(5px);
}

.collections-manifesto {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(148, 48, 0, .28), transparent 28%),
    var(--ink);
  color: var(--white);
}

.collections-manifesto-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
}

.manifesto-index {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  border-top: 1px solid var(--light-line);
  padding-top: 20px;
  color: var(--brand-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.collections-manifesto h2 {
  margin-bottom: 36px;
  font-size: clamp(4.2rem, 8.5vw, 8.8rem);
}

.manifesto-copy p {
  max-width: 740px;
  margin-bottom: 24px;
  color: #bdb6ac;
  font-size: clamp(18px, 2vw, 23px);
}

.manifesto-copy strong {
  color: var(--white);
  font-weight: 600;
}

.collection-next {
  background: var(--paper-2);
}

.collection-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
}

.collection-next h2 {
  margin-bottom: 0;
}

.collection-next-card {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 20%, rgba(200, 147, 88, .33), transparent 22%),
    linear-gradient(145deg, #191610, #5d2608);
  padding: clamp(28px, 4vw, 46px);
  color: var(--white);
}

.collection-next-card::before {
  content: "002";
  position: absolute;
  top: -20px;
  right: -12px;
  color: rgba(255, 255, 255, .08);
  font: 600 12rem/.9 "Oswald", sans-serif;
  letter-spacing: -.08em;
}

.collection-next-card p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0;
  color: #d5cdc2;
  font-size: 18px;
}

.collections-final {
  background: var(--brand-primary);
  color: var(--white);
}

.collections-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.collections-final .eyebrow {
  color: #f1c58f;
}

.collections-final h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(3.8rem, 7.8vw, 8rem);
}

.collection-sheet[hidden] {
  display: none;
}

.collection-sheet {
  position: fixed;
  z-index: 520;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.collection-sheet-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 8, 6, .78);
  opacity: 0;
  cursor: pointer;
  transition: opacity .24s;
  backdrop-filter: blur(10px);
}

.collection-sheet-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  border: 1px solid rgba(200, 147, 88, .4);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .52);
  opacity: 0;
  transform: translateY(22px) scale(.98);
  transition: opacity .24s, transform .24s;
}

.collection-sheet.is-open .collection-sheet-backdrop,
.collection-sheet.is-open .collection-sheet-dialog {
  opacity: 1;
  transform: none;
}

.collection-sheet-media {
  min-height: 560px;
  background: #dedbd4;
}

.collection-sheet-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.collection-sheet-content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow-y: auto;
  padding: clamp(38px, 5vw, 68px);
}

.collection-sheet-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.collection-sheet-kicker,
.collection-sheet-series,
.collection-sheet-status {
  color: var(--brand-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.collection-sheet-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.collection-sheet-number {
  color: var(--brand-secondary);
}

.collection-sheet-content h2 {
  margin-bottom: 12px;
  font-size: clamp(3.8rem, 6vw, 6rem);
}

.collection-sheet-series {
  display: block;
  margin-bottom: 26px;
  color: var(--muted);
}

.collection-sheet-description {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 17px;
}

.collection-sheet-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
}

.collection-sheet-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-secondary);
}

.collection-sheet-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 1040px) {
  .collections-hero-visual {
    right: -90px;
    width: 66vw;
  }

  .collections-hero-copy {
    width: 55%;
  }
}

@media (max-width: 820px) {
  .collections-hero {
    min-height: 900px;
    align-items: flex-start;
  }

  .collections-hero-content {
    padding-top: 150px;
  }

  .collections-hero-copy {
    width: 100%;
  }

  .collections-hero h1 {
    max-width: 720px;
    font-size: clamp(5.1rem, 16vw, 8rem);
  }

  .collections-hero-lead {
    max-width: 470px;
  }

  .collections-hero-visual {
    right: -8%;
    bottom: -18px;
    width: 92%;
    height: 48%;
  }

  .collection-grid {
    gap: 18px;
  }

  .collection-card-media {
    aspect-ratio: 1 / 1.08;
  }

  .collections-manifesto-grid,
  .collection-next-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-index {
    position: static;
  }

  .collection-next-card {
    min-height: 300px;
  }

  .collection-sheet-dialog {
    grid-template-columns: .92fr 1.08fr;
  }

  .collection-sheet-media {
    min-height: 500px;
  }
}

@media (max-width: 620px) {
  .collections-hero {
    min-height: 100svh;
  }

  .collections-hero::before {
    background-size: 42px 42px;
  }

  .collections-hero-content {
    padding-top: 118px;
    padding-bottom: 54vh;
  }

  .collections-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(4.3rem, 22vw, 6.1rem);
  }

  .collections-hero-lead {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .collections-signature {
    max-width: 280px;
    align-items: flex-start;
  }

  .collections-hero-visual {
    right: -18%;
    bottom: -5%;
    width: 127%;
    height: 50%;
  }

  .hero-character {
    border-radius: 48% 48% 14px 14px;
  }

  .collection-lineup::before {
    top: 84px;
    font-size: 13rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    border-radius: 17px;
  }

  .collection-card-media {
    aspect-ratio: 1.07 / 1;
  }

  .collection-card-body {
    padding: 24px 20px 22px;
  }

  .collection-card-body > strong {
    font-size: 3rem;
  }

  .collection-card-description {
    font-size: 14px;
  }

  .collection-card-footer {
    margin-top: 22px;
  }

  .collections-manifesto h2 {
    font-size: clamp(4rem, 19vw, 5.7rem);
  }

  .manifesto-copy p {
    font-size: 17px;
  }

  .collection-next-card {
    min-height: 260px;
    border-radius: 17px;
  }

  .collections-final-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .collections-final .button {
    width: 100%;
  }

  .collection-sheet {
    place-items: end center;
    padding: 0;
  }

  .collection-sheet-dialog {
    width: 100%;
    max-height: calc(100svh - 72px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(230px, 39svh) auto;
    overflow-y: auto;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }

  .collection-sheet-media {
    min-height: 0;
  }

  .collection-sheet-media img {
    object-position: center 40%;
  }

  .collection-sheet-content {
    display: block;
    overflow: visible;
    padding: 30px 20px calc(28px + env(safe-area-inset-bottom));
  }

  .collection-sheet-close {
    top: 14px;
    right: 14px;
    background: rgba(247, 243, 236, .92);
  }

  .collection-sheet-content h2 {
    padding-right: 42px;
    font-size: 3.8rem;
  }

  .collection-sheet-description {
    font-size: 15px;
  }

  .collection-sheet-content .button {
    width: 100%;
  }
}

@media (max-width: 350px) {
  .collections-hero-content {
    padding-bottom: 50vh;
  }

  .collections-hero h1 {
    font-size: 4rem;
  }

  .collections-final h2 {
    font-size: 3.35rem;
  }

  .collection-card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collection-card,
  .collection-card-media img,
  .collection-card-link i,
  .collection-sheet-backdrop,
  .collection-sheet-dialog {
    transition: none;
  }
}
