:root {
  --ink: #171114;
  --ink-soft: #33272c;
  --wine: #5e1f35;
  --wine-deep: #35101e;
  --rose: #b98b91;
  --gold: #c5a77b;
  --ivory: #f6f1e9;
  --paper: #fbf8f3;
  --mist: #e8dfd9;
  --white: #fff;
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 1460px;
  --gutter: clamp(20px, 4vw, 72px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: -120px;
  left: 10px;
  width: 1px;
  height: 1px;
  padding: 10px 16px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  background: var(--white);
}

.skip-link:focus {
  top: 10px;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px var(--gutter);
  color: #f8e9e5;
  background: var(--wine-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 var(--gutter);
  background: rgba(251, 248, 243, 0.97);
  border-bottom: 1px solid rgba(23, 17, 20, 0.1);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.wordmark span {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.wordmark small {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.44em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.7vw, 48px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a,
.header-cta {
  position: relative;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background: var(--ink) url("../images/hero.jpg") center 20% / cover no-repeat;
  transform: scale(1.01);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(20, 9, 13, 0.82) 0%, rgba(20, 9, 13, 0.42) 47%, rgba(20, 9, 13, 0.05) 78%),
    linear-gradient(0deg, rgba(17, 8, 11, 0.34), transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - 118px);
  width: min(700px, 88vw);
  flex-direction: column;
  justify-content: center;
  padding: 8vh 0 11vh var(--gutter);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.archive-hero h1,
.product-summary h1,
.content-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 9.3vw, 148px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.76;
}

.content-page h2 {
  margin: 55px 0 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.content-page article > p,
.content-page article > .aura-form {
  max-width: 720px;
}

.aura-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.aura-form label {
  display: grid;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aura-form label:nth-of-type(4),
.aura-form .button {
  grid-column: 1 / -1;
}

.aura-form input,
.aura-form textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bcaeb1;
  border-radius: 0;
  outline: none;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.aura-form input:focus,
.aura-form textarea:focus {
  border-color: var(--wine);
}

.aura-form__honey {
  position: absolute !important;
  left: -9999px;
}

.form-success {
  padding: 15px 18px;
  color: #264f3a;
  background: #e8f1e9;
  border: 1px solid #bdd1c1;
}

.form-error {
  padding: 15px 18px;
  color: #7b1d28;
  background: #f8e7e7;
  border: 1px solid #dfb9bd;
}

.hero h1 em,
.archive-hero h1 em {
  color: #e3c4c2;
  font-weight: 400;
}

.hero__content > p:not(.eyebrow) {
  max-width: 500px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--serif);
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.button--light {
  color: var(--ink);
  background: var(--ivory);
}

.button--light:hover {
  color: var(--white);
  background: var(--wine);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.text-link span {
  font-family: var(--sans);
  font-style: normal;
}

.text-link--light {
  color: var(--white);
}

.hero__index {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.hero__index i {
  width: 68px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.manifesto {
  padding: clamp(90px, 11vw, 180px) var(--gutter);
  text-align: center;
}

.manifesto h2,
.section-heading h2,
.editorial-split h2,
.footer-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 102px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.manifesto > p:last-child {
  max-width: 680px;
  margin: 34px auto 0;
  color: #6d6064;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
}

.shop-section,
.collections,
.archive-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(100px, 11vw, 180px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.section-heading h2 {
  font-size: clamp(46px, 5vw, 76px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.3vw, 38px) clamp(14px, 1.7vw, 26px);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee7e1;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.product-card__quick {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(251, 248, 243, 0.93);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.product-card__media:hover img {
  transform: scale(1.025);
}

.product-card__media:hover .product-card__quick {
  opacity: 1;
  transform: translateY(0);
}

.product-card__meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
}

.product-card__meta .eyebrow {
  margin-bottom: 8px;
  color: #86767b;
  font-size: 8px;
}

.product-card h3,
.price {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 400;
  line-height: 1.3;
}

.price {
  flex: none;
  white-space: nowrap;
}

.editorial-split {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 820px;
  color: var(--ivory);
  background: var(--wine-deep);
}

.editorial-split__image {
  min-height: 700px;
  background-position: center top;
  background-size: cover;
}

.editorial-split__image--corset {
  background-image: url("../images/corset-editorial.jpg");
}

.editorial-split__copy {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: clamp(60px, 8vw, 140px);
}

.editorial-split h2 {
  color: var(--ivory);
}

.editorial-split h2 em {
  color: #d8a5aa;
  font-weight: 400;
}

.editorial-split__copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 38px 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 19px;
}

.editorial-split .button--dark {
  color: var(--ink);
  background: var(--ivory);
}

.collections {
  padding-top: clamp(100px, 11vw, 180px);
}

.collection-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.collection-panel {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  background-position: center top;
  background-size: cover;
}

.collection-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 10, 0.08), rgba(12, 8, 10, 0.67));
  content: "";
  transition: background 300ms ease;
}

.collection-panel:hover::before {
  background: linear-gradient(180deg, rgba(12, 8, 10, 0), rgba(73, 20, 39, 0.74));
}

.collection-panel > * {
  position: relative;
}

.collection-panel > span {
  align-self: end;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.collection-panel p {
  margin: 0 0 8px;
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.collection-panel h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 400;
}

.collection-panel--bridal {
  background-image: url("../images/collection-bridal.jpg");
}

.collection-panel--curve {
  background-image: url("../images/collection-curve.jpg");
}

.collection-panel--play {
  background-image: url("../images/collection-play.jpg");
}

.collection-panel--harness {
  background-image: url("../images/collection-harness.jpg");
}

.related-products {
  padding: clamp(90px, 10vw, 160px) var(--gutter);
  border-top: 1px solid #d7cec8;
}

.journal-shell {
  padding: clamp(80px, 9vw, 150px) var(--gutter);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 70px) 18px;
}

.journal-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8dfda;
}

.journal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 500ms ease;
}

.journal-card:hover .journal-card__media img {
  transform: scale(1.025);
}

.journal-card__placeholder {
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 52px;
  letter-spacing: 0.18em;
}

.journal-card__body {
  padding-top: 24px;
}

.journal-card h2 {
  margin: 10px 0 16px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.journal-card__body > p:not(.eyebrow) {
  max-width: 46ch;
  color: var(--muted);
}

.journal-article__header {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(80px, 9vw, 150px) var(--gutter);
  text-align: center;
}

.journal-article__header h1 {
  margin: 22px 0 30px;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 116px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.journal-article__header > p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 21px;
}

.journal-article__hero {
  width: min(1180px, calc(100% - 2 * var(--gutter)));
  max-height: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.journal-article__hero img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
}

.journal-article__content {
  width: min(760px, calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 130px) 0;
  color: #33292d;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.75;
}

.journal-article__content h2,
.journal-article__content h3 {
  margin: 2.2em 0 0.7em;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.journal-article__content h2 {
  font-size: 44px;
}

.journal-article__content h3 {
  font-size: 30px;
}

.journal-article__content a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.journal-related {
  margin-top: 3.5em;
  padding: 30px;
  border: 1px solid #d9cec9;
  background: #f5efeb;
}

.journal-related h2 {
  margin-top: 0;
}

.journal-related ul {
  margin-bottom: 0;
}

.journal-editorial-note {
  margin-top: 3.5em;
  padding-top: 28px;
  border-top: 1px solid #d9cec9;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
}

.journal-editorial-note p:last-child {
  margin-bottom: 0;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cfc5bf;
  border-bottom: 1px solid #cfc5bf;
}

.values > div {
  padding: clamp(50px, 6vw, 90px) var(--gutter);
  border-right: 1px solid #cfc5bf;
}

.values > div:last-child {
  border-right: 0;
}

.values span {
  color: var(--wine);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.values h3 {
  margin: 28px 0 18px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.values p {
  max-width: 350px;
  margin: 0;
  color: #75686c;
  font-size: 13px;
}

.site-footer {
  padding: clamp(90px, 10vw, 150px) var(--gutter) 30px;
  color: #eee4dd;
  background: var(--ink);
}

.footer-intro {
  max-width: 900px;
  margin-bottom: 120px;
}

.footer-intro h2 {
  color: var(--ivory);
  font-size: clamp(54px, 7vw, 100px);
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  margin-top: 46px;
}

.newsletter__consent {
  display: flex;
  flex: 0 0 100%;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.5;
}

.newsletter__consent input {
  min-width: 14px;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  padding: 0;
  margin-top: 1px;
}

.newsletter__consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-status {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.social-pending {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 15px;
}

.newsletter > input[type="email"] {
  min-width: 0;
  flex: 1;
  padding: 18px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  outline: none;
  font-family: var(--serif);
  font-size: 17px;
}

.newsletter button {
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.wordmark--footer {
  align-items: start;
}

.footer-grid p {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--serif);
  font-size: 15px;
}

.footer-grid h3 {
  margin: 0 0 25px;
  color: #9c898e;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--serif);
  font-size: 14px;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-hero {
  padding: clamp(100px, 11vw, 170px) var(--gutter);
  color: var(--ivory);
  background: var(--wine-deep);
  text-align: center;
}

.archive-hero h1 {
  font-size: clamp(62px, 8vw, 128px);
  line-height: 0.9;
}

.archive-hero > p:last-child {
  max-width: 620px;
  margin: 36px auto 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--serif);
  font-size: 19px;
}

.archive-shell {
  padding-top: 55px;
}

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
  padding-bottom: 22px;
  border-bottom: 1px solid #cec4be;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.archive-filters a:hover {
  color: var(--wine);
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  padding: 18px var(--gutter);
  color: #8b7c80;
  border-bottom: 1px solid #ddd3cc;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(380px, 40%);
  max-width: var(--container);
  margin: 0 auto;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 2px;
  background: var(--paper);
}

.product-gallery figure {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #eee8e3;
}

.product-gallery__lead {
  grid-column: 1 / -1;
  aspect-ratio: 1 / 1.14 !important;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.product-summary {
  position: relative;
}

.product-summary__inner {
  position: sticky;
  top: 20px;
  padding: clamp(48px, 6vw, 100px);
}

.product-summary h1 {
  font-size: clamp(50px, 5vw, 76px);
  line-height: 0.95;
}

.product-price {
  margin: 28px 0;
  font-family: var(--serif);
  font-size: 24px;
}

.product-price small {
  color: #8c7d81;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.product-intro {
  max-width: 520px;
  color: #6e6265;
  font-family: var(--serif);
  font-size: 17px;
}

.option-block {
  margin-top: 30px;
}

.option-block > span {
  display: block;
  margin-bottom: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pills button {
  min-width: 44px;
  min-height: 38px;
  padding: 0 13px;
  color: var(--ink);
  background: transparent;
  border: 1px solid #cfc4be;
  font-size: 10px;
}

.pills button:hover,
.pills button:focus-visible {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.product-summary .button {
  margin-top: 34px;
}

.microcopy {
  margin: 14px 0 28px;
  color: #8d8083;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-align: center;
}

.product-summary details {
  padding: 18px 0;
  border-top: 1px solid #d8cec8;
  font-family: var(--serif);
  font-size: 14px;
}

.product-summary details:last-child {
  border-bottom: 1px solid #d8cec8;
}

.product-summary summary {
  cursor: pointer;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-page {
  max-width: 960px;
  min-height: 60vh;
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) var(--gutter);
}

.content-page h1 {
  margin-bottom: 55px;
  font-size: clamp(62px, 8vw, 112px);
  line-height: 0.9;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    justify-self: end;
    background: transparent;
    border: 0;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 1px;
    background: var(--ink);
  }

  .primary-nav {
    position: fixed;
    inset: 118px 0 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 60px var(--gutter);
    color: var(--ivory);
    background: var(--wine-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .header-cta {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-split {
    grid-template-columns: 1fr;
  }

  .editorial-split__image {
    min-height: 78vw;
  }

  .collection-panel {
    min-height: 480px;
  }

  .collection-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-summary__inner {
    position: static;
  }
}

@media (max-width: 720px) {
  .announcement {
    min-height: 28px;
    font-size: 8px;
  }

  .site-header {
    min-height: 72px;
  }

  .wordmark span {
    font-size: 24px;
  }

  .wordmark small {
    font-size: 7px;
  }

  .primary-nav {
    inset: 100px 0 0;
  }

  .hero {
    min-height: calc(100svh - 100px);
  }

  .hero__image {
    background-position: 62% top;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(18, 8, 12, 0.89) 0%, rgba(18, 8, 12, 0.24) 80%);
  }

  .hero__content {
    min-height: calc(100svh - 100px);
    justify-content: end;
    padding: 100px var(--gutter) 95px;
  }

  .hero h1 {
    font-size: clamp(64px, 21vw, 92px);
  }

  .hero__content > p:not(.eyebrow) {
    margin-top: 25px;
    font-size: 17px;
  }

  .hero__actions {
    align-items: start;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .hero__index {
    display: none;
  }

  .manifesto {
    text-align: left;
  }

  .manifesto h2 br {
    display: none;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .product-grid {
    gap: 32px 10px;
  }

  .product-card__quick {
    display: none;
  }

  .product-card__meta {
    display: block;
    padding-top: 12px;
  }

  .product-card h3,
  .price {
    font-size: 15px;
  }

  .price {
    margin-top: 5px;
  }

  .editorial-split__copy {
    padding: 70px var(--gutter);
  }

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

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

  .journal-article__header {
    text-align: left;
  }

  .journal-article__header > p:last-child {
    margin: 0;
  }

  .journal-article__content {
    font-size: 18px;
  }

  .journal-article__content h2 {
    font-size: 36px;
  }

  .collection-panel {
    min-height: 118vw;
  }

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

  .values > div {
    border-right: 0;
    border-bottom: 1px solid #cfc5bf;
  }

  .values > div:last-child {
    border-bottom: 0;
  }

  .footer-intro {
    margin-bottom: 80px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-base {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .archive-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .archive-filters {
    gap: 12px 18px;
  }

  .product-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-gallery figure,
  .product-gallery__lead {
    min-width: 88vw;
    aspect-ratio: 4 / 5 !important;
    scroll-snap-align: start;
  }

  .product-summary__inner {
    padding: 60px var(--gutter) 80px;
  }

  .product-summary h1 {
    font-size: 54px;
  }

  .aura-form {
    grid-template-columns: 1fr;
  }

  .aura-form label,
  .aura-form label:nth-of-type(4),
  .aura-form .button {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
