:root {
  --ivory: #f4efe6;
  --paper: #ebe2d5;
  --ink: #171310;
  --muted: #625a53;
  --burgundy: #721c2b;
  --deep-burgundy: #3b0b15;
  --gold: #c6a15b;
  --line: rgba(23, 19, 16, .18);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.announcement {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3.4vw;
  color: rgba(255, 255, 255, .83);
  background: rgba(10, 8, 7, .88);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.announcement p { margin: 0; }
.announcement span { position: absolute; right: 3.4vw; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 32px;
  left: 0;
  right: 0;
  height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3.4vw;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}
.wordmark,
.footer-wordmark {
  font-family: var(--serif);
  font-size: 29px;
  letter-spacing: .24em;
}
.wordmark { margin-right: -.24em; }
.menu-trigger {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.menu-trigger i {
  display: block;
  width: 15px;
  height: 1px;
  background: currentColor;
}
.menu-trigger i + i { margin-left: -25px; margin-top: 7px; }
.header-actions {
  display: flex;
  justify-self: end;
  gap: 28px;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.header-actions a,
.menu-trigger,
.text-link { transition: opacity .25s ease; }
.header-actions a:hover,
.menu-trigger:hover,
.text-link:hover { opacity: .62; }
.header-actions [aria-current="page"] { border-bottom: 1px solid currentColor; padding-bottom: 5px; }

.eyebrow {
  margin: 0 0 24px;
  color: var(--burgundy);
  font-size: 8px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255, 255, 255, .78); }
.section-index {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 11px;
  padding-top: 6px;
  color: #81776e;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-index i { width: 34px; height: 1px; background: var(--line); }
.text-link,
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.collection-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
  background: #160e0d;
}
.collection-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  animation: collection-breathe 15s ease-in-out infinite alternate;
}
.collection-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 7, 7, .76), rgba(19, 7, 7, .2) 58%, rgba(19, 7, 7, .08)),
    linear-gradient(0deg, rgba(15, 7, 5, .66), transparent 52%);
}
.collection-hero-copy {
  position: absolute;
  z-index: 2;
  left: 7vw;
  bottom: 11vh;
  width: min(900px, 82vw);
}
.collection-hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(76px, 11vw, 170px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .78;
}
.collection-hero-copy > p:last-child {
  width: min(500px, 75vw);
  margin: 38px 0 0 5px;
  color: rgba(255, 255, 255, .82);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
}
.breadcrumb {
  position: absolute;
  z-index: 3;
  right: 3.4vw;
  bottom: 34px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 8px;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.collection-intro {
  display: grid;
  grid-template-columns: 22% 1fr;
  gap: 5vw;
  padding: 120px 8vw 130px;
}
.collection-intro h2 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6.2vw, 95px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}
.collection-intro h2 em { color: var(--burgundy); font-weight: 400; }
.collection-intro-copy {
  display: grid;
  grid-template-columns: minmax(240px, 580px) auto;
  align-items: end;
  gap: 60px;
  margin-top: 54px;
}
.collection-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
}

.catalog { padding: 0 4vw 130px; }
.catalog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.catalog-heading p { margin: 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card { position: relative; }
.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ddd2c4;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
}
.product-card:hover .product-image img { transform: scale(1.035); }
.product-index {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, .9);
  font-size: 8px;
  letter-spacing: .18em;
}
.product-copy { padding: 25px 4px 38px; }
.product-copy h2 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -.025em;
}
.product-copy p {
  margin: 0 0 22px;
  color: #786f67;
  font-family: var(--serif);
  font-size: 14px;
}
.product-link { font-size: 8px; }

.editorial-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 760px;
  background: var(--deep-burgundy);
  color: #fff8ed;
}
.editorial-band > img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}
.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8vw;
}
.editorial-copy h2 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 91px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}
.editorial-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 36px;
  color: rgba(255, 248, 237, .72);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.72;
}

footer {
  padding: 95px 5vw 28px;
  color: #f6eee4;
  background: #15110f;
}
.footer-wordmark {
  display: block;
  width: fit-content;
  margin-bottom: 90px;
  font-size: clamp(45px, 7vw, 102px);
  letter-spacing: .21em;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  padding: 0 0 75px;
}
.footer-grid > div > p {
  margin: 0;
  color: rgba(246, 238, 228, .7);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}
.footer-grid nav { display: flex; flex-direction: column; gap: 13px; }
.footer-grid nav p {
  margin: 0 0 10px;
  color: #a4875c;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.footer-grid nav a {
  width: fit-content;
  color: rgba(246, 238, 228, .76);
  font-family: var(--serif);
  font-size: 14px;
}
.footer-grid nav a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(246, 238, 228, .43);
  font-size: 7px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@keyframes collection-breathe {
  from { transform: scale(1.035) translateX(0); }
  to { transform: scale(1.095) translateX(-1%); }
}

@media (max-width: 900px) {
  .site-header { height: 78px; padding: 0 22px; }
  .wordmark { font-size: 21px; }
  .header-actions { display: none; }
  .menu-trigger span { display: none; }
  .collection-hero { min-height: 780px; }
  .collection-hero-copy { left: 24px; right: 24px; bottom: 105px; width: auto; }
  .collection-hero-copy h1 { font-size: clamp(70px, 22vw, 112px); }
  .breadcrumb { right: 22px; bottom: 28px; }
  .collection-intro {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 88px 24px 98px;
  }
  .collection-intro-copy { grid-template-columns: 1fr; gap: 34px; }
  .product-grid { grid-template-columns: 1fr; gap: 45px; }
  .catalog { padding: 0 16px 90px; }
  .product-image { aspect-ratio: 4 / 5; }
  .editorial-band { grid-template-columns: 1fr; }
  .editorial-band > img { min-height: 580px; height: 70vh; }
  .editorial-copy { padding: 88px 24px; }
  footer { padding: 72px 24px 26px; }
  .footer-wordmark { margin-bottom: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .announcement { justify-content: flex-start; padding-left: 18px; font-size: 6px; }
  .announcement span { right: 18px; }
  .collection-hero-media { object-position: 61% center; }
  .collection-hero-copy > p:last-child { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .collection-hero-media { animation: none; }
  .product-image img { transition: none; }
}
