:root {
  --ink: #171416;
  --paper: #f8f6f2;
  --white: #fff;
  --cassis: #681f3c;
  --cassis-dark: #3f1026;
  --amber: #c78d2a;
  --blush: #eadde0;
  --mist: #ececf2;
  --stone: #6d686b;
  --line: rgba(23, 20, 22, 0.16);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
  --page: min(calc(100% - 48px), 1540px);
  --reading: 760px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body.is-locked {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 2px solid var(--cassis);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 12px;
  z-index: 300;
  padding: 13px 18px;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus {
  top: 12px;
}
.announcement {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 20px;
  background: var(--cassis);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}
.announcement i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}
.preview-flag {
  padding: 8px 18px;
  background: #fff2c8;
  border-bottom: 1px solid #e3ca79;
  color: #54400a;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.1vw, 36px);
}
.header-actions {
  justify-content: flex-end;
  gap: 22px;
}
.primary-nav a,
.header-actions a,
.header-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.primary-nav a {
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.2s ease;
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  right: 0;
}
.wordmark {
  padding: 6px 16px;
  font-family: var(--display);
  font-size: clamp(30px, 2.25vw, 39px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}
.cart-pill {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  margin-left: 5px;
  padding: 0 4px;
  background: var(--cassis);
  color: var(--white);
  border-radius: 50%;
  font-size: 9px;
}
.menu-toggle {
  display: none !important;
}
.mobile-menu {
  position: fixed;
  inset: 104px 0 0;
  z-index: 75;
  overflow: auto;
  padding: 24px;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}
.mobile-menu.is-open {
  transform: none;
}
.mobile-menu a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
}

main {
  min-height: 65vh;
}
.wrap {
  width: var(--page);
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 17px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
}
.btn:hover {
  background: var(--cassis);
  border-color: var(--cassis);
}
.btn--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
}
.btn--wide {
  width: 100%;
}
.btn[aria-disabled="true"],
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.quiet {
  color: var(--stone);
}
.dev-note {
  padding: 15px 17px;
  background: #fff8df;
  border-left: 3px solid #caa84a;
  color: #58460d;
  font-size: 12px;
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 104px));
  overflow: hidden;
  background: var(--mist);
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__copy {
  position: relative;
  z-index: 2;
  width: min(47%, 650px);
  min-height: min(780px, calc(100vh - 104px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: max(24px, calc((100% - 1492px) / 2));
  padding: 70px 24px 70px 0;
}
.hero h1 {
  max-width: 690px;
  font-size: clamp(58px, 7.4vw, 118px);
}
.hero__copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 27px 0 0;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-top: 31px;
}
.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-block: 1px solid var(--line);
}
.category-strip a {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 15px;
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}
.category-strip a:last-child {
  border-right: 0;
}
.category-strip a:hover {
  background: var(--blush);
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(74px, 8vw, 128px);
}
.section--compact {
  padding-block: clamp(52px, 6vw, 86px);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 36px;
}
.section-title {
  font-size: clamp(43px, 5vw, 78px);
}
.section-lede {
  max-width: 510px;
  margin: 0;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.65;
}
.section-rule {
  border-top: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 54px 14px;
}
.product-card {
  min-width: 0;
}
.product-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #efe9e4;
}
.product-card__media > a {
  display: block;
  height: 100%;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-card:hover img {
  transform: scale(1.025);
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  background: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.quick-add {
  position: absolute;
  display: grid;
  place-items: center;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 43px;
  border: 0;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(calc(100% + 14px));
  transition: 0.22s ease;
}
.product-card:hover .quick-add,
.quick-add:focus-visible {
  transform: none;
}
.quick-add:hover {
  background: var(--cassis);
  color: var(--white);
}
.product-card__info {
  padding-top: 14px;
}
.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.product-card__name {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
.product-card__price {
  flex: 0 0 auto;
  font-size: 12px;
}
.product-card__meta {
  margin: 7px 0 0;
  color: var(--stone);
  font-size: 11px;
  line-height: 1.45;
}

.campaign {
  position: relative;
  min-height: clamp(380px, 38vw, 600px);
  overflow: hidden;
  background: var(--mist);
}
.campaign > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.campaign__copy {
  position: relative;
  z-index: 2;
  width: min(43%, 590px);
  min-height: clamp(380px, 38vw, 600px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: max(24px, calc((100% - 1492px) / 2));
  padding: 48px 24px 48px 0;
}
.campaign__copy h2 {
  font-size: clamp(52px, 6vw, 96px);
}
.campaign__copy p:not(.eyebrow) {
  max-width: 420px;
  margin: 22px 0 29px;
  font-size: 14px;
  line-height: 1.65;
}
.campaign--dark {
  color: var(--white);
  background: #17070e;
}
.campaign--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 4, 8, 0.78),
    rgba(10, 4, 8, 0.1) 65%,
    transparent
  );
}
.campaign--dark .campaign__copy {
  z-index: 3;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}
.profile-card {
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
}
.profile-card:last-child {
  border-right: 0;
}
.profile-card small {
  color: var(--cassis);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.08em;
}
.profile-card h3 {
  margin: 42px 0 11px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 0.95;
  text-transform: uppercase;
}
.profile-card p {
  min-height: 63px;
  margin: 0;
  color: var(--stone);
  font-size: 13px;
  line-height: 1.6;
}
.meter {
  display: flex;
  gap: 5px;
  margin: 25px 0;
}
.meter i {
  width: 22px;
  height: 3px;
  background: var(--line);
}
.meter i.is-on {
  background: var(--amber);
}

.split-editorial {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 700px;
  background: var(--blush);
}
.split-editorial > img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
}
.split-editorial__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(50px, 7vw, 118px);
}
.split-editorial__copy h2 {
  font-size: clamp(56px, 6vw, 94px);
}
.split-editorial__copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.65;
}
.spec-list {
  width: 100%;
  max-width: 470px;
  margin: 10px 0 30px;
  padding: 0;
  border-top: 1px solid rgba(23, 20, 22, 0.27);
  list-style: none;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(23, 20, 22, 0.27);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: start;
}
.trust-layout > h2 {
  position: sticky;
  top: 130px;
  font-size: clamp(52px, 6vw, 90px);
}
.numbered-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}
.numbered-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.numbered-list > li > span {
  color: var(--cassis);
  font-family: var(--display);
  font-weight: 800;
}
.numbered-list h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 23px;
  text-transform: uppercase;
}
.numbered-list p {
  margin: 0;
  color: var(--stone);
  font-size: 13px;
  line-height: 1.65;
}

.newsletter {
  padding: clamp(74px, 8vw, 126px) 24px;
  background: var(--cassis);
  color: var(--white);
  text-align: center;
}
.newsletter h2 {
  max-width: 950px;
  margin-inline: auto;
  font-size: clamp(48px, 6vw, 88px);
}
.newsletter p:not(.eyebrow) {
  margin: 20px auto 30px;
  color: rgba(255, 255, 255, 0.8);
}
.inline-form {
  width: min(100%, 540px);
  display: flex;
  margin-inline: auto;
  border-bottom: 1px solid currentColor;
}
.inline-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 2px;
  border: 0;
  background: transparent;
  color: inherit;
}
.inline-form input::placeholder {
  color: currentColor;
  opacity: 0.6;
}
.inline-form button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  padding: clamp(72px, 8vw, 124px) 0 48px;
  background: var(--white);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--stone);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumbs a {
  border-bottom: 1px solid transparent;
}
.breadcrumbs a:hover {
  border-color: currentColor;
}
.page-hero h1 {
  max-width: 1280px;
  font-size: clamp(64px, 10vw, 148px);
}
.page-hero__bottom {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.page-hero__bottom p {
  max-width: 640px;
  margin: 0;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.65;
}
.page-hero__bottom span {
  flex: 0 0 auto;
  color: var(--stone);
  font-size: 12px;
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.chip[aria-current="true"],
.chip:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 760px;
  background: var(--white);
}
.product-gallery {
  background: #efeae5;
}
.product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}
.product-buy {
  position: sticky;
  top: 104px;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 760px;
  padding: clamp(45px, 6vw, 90px);
}
.product-buy h1 {
  font-size: clamp(52px, 6vw, 88px);
}
.product-descriptor {
  margin: 12px 0 0;
  color: var(--stone);
  font-size: 13px;
}
.product-price {
  margin: 24px 0;
  font-size: 20px;
}
.variant-row {
  display: grid;
  grid-template-columns: 1fr 128px;
  gap: 12px;
  margin-bottom: 16px;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.field select,
.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}
.fulfillment-box {
  margin: 19px 0;
  padding: 16px;
  background: var(--mist);
  font-size: 12px;
  line-height: 1.6;
}
.fulfillment-box strong {
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.product-description {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion details {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
}
.accordion details[open] summary::after {
  content: "−";
}
.accordion__body {
  padding: 0 0 22px;
  color: var(--stone);
  font-size: 13px;
  line-height: 1.7;
}
.accordion__body p {
  margin: 0 0 10px;
}

.story-band {
  padding: clamp(76px, 9vw, 140px) 0;
  background: var(--cassis-dark);
  color: var(--white);
}
.story-band h2 {
  max-width: 1000px;
  font-size: clamp(50px, 7vw, 104px);
}
.story-band p {
  max-width: 620px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}
.sensory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}
.sensory-card {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
}
.sensory-card:last-child {
  border-right: 0;
}
.sensory-card span {
  color: var(--cassis);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}
.sensory-card h3 {
  margin: 42px 0 10px;
  font-family: var(--display);
  font-size: 30px;
  text-transform: uppercase;
}
.sensory-card p {
  margin: 0;
  color: var(--stone);
  font-size: 13px;
  line-height: 1.65;
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 12px;
}
.comparison th,
.comparison td {
  padding: 18px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.comparison th {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.comparison td:first-child {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}
.prose {
  max-width: var(--reading);
  font-size: 15px;
  line-height: 1.75;
}
.prose h2 {
  margin: 2.4em 0 0.55em;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
  text-transform: uppercase;
}
.prose h3 {
  margin: 2em 0 0.4em;
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
}
.prose p,
.prose ul,
.prose ol {
  margin: 0 0 1.2em;
}
.prose li {
  margin-bottom: 0.45em;
}
.prose a {
  border-bottom: 1px solid currentColor;
}
.side-nav {
  position: sticky;
  top: 112px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}
.side-nav h2 {
  margin: 0 0 14px;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.side-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.side-nav a:last-child {
  border-bottom: 0;
}

.faq-list {
  max-width: 980px;
  margin-inline: auto;
  border-top: 1px solid var(--ink);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--body);
  font-size: 23px;
  font-weight: 400;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-answer {
  max-width: 760px;
  padding: 0 0 28px;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.7;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 16px;
}
.article-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--mist);
}
.article-card p {
  margin: 14px 0 8px;
  color: var(--stone);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  line-height: 0.98;
  text-transform: uppercase;
}
.article-card a:hover h2 {
  color: var(--cassis);
}

.finder {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(42px, 7vw, 100px);
}
.finder__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.finder__intro h2 {
  font-size: clamp(48px, 6vw, 86px);
}
.finder__intro p {
  color: var(--stone);
  line-height: 1.7;
}
.finder-form fieldset {
  margin: 0 0 24px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}
.finder-form legend {
  padding: 0 8px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.choice:last-child {
  border-bottom: 0;
}
.choice input {
  margin-top: 3px;
}
.finder-result {
  margin-top: 24px;
  padding: 30px;
  background: var(--blush);
}
.finder-result h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 8vw, 120px);
}
.contact-details {
  font-size: 14px;
  line-height: 1.75;
}
.contact-details h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 34px;
  text-transform: uppercase;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .field--full {
  grid-column: 1 / -1;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.form-status {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.55;
}

.cart-page {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(34px, 6vw, 86px);
}
.cart-items {
  border-top: 1px solid var(--ink);
}
.cart-item {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  width: 128px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.cart-item h2 {
  margin: 3px 0 6px;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}
.cart-item p {
  margin: 0;
  color: var(--stone);
  font-size: 12px;
}
.quantity {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
}
.quantity button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.summary-box {
  position: sticky;
  top: 112px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.summary-row--total {
  margin: 8px 0 14px;
  border-bottom: 0;
  font-weight: 700;
}
.empty-state {
  padding: 80px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}
.empty-state h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 40px;
  text-transform: uppercase;
}
.empty-state p {
  margin: 0 0 24px;
  color: var(--stone);
}

.search-form {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
}
.search-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 0;
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 56px);
  text-transform: uppercase;
}
.search-form button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  width: min(440px, calc(100% - 36px));
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 0 18px 60px rgba(23, 20, 22, 0.18);
}
.cookie-banner h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 25px;
  text-transform: uppercase;
}
.cookie-banner p {
  margin: 0 0 17px;
  color: var(--stone);
  font-size: 12px;
  line-height: 1.55;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-actions .btn {
  flex: 1 1 120px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(23, 20, 22, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: min(100%, 460px);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cart-drawer.is-open {
  transform: none;
}
.drawer-head {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
}
.icon-button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}
.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 12px 24px;
}
.drawer-line {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.drawer-line img {
  width: 88px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.drawer-line h3 {
  margin: 2px 0 4px;
  font-family: var(--display);
  font-size: 17px;
  text-transform: uppercase;
}
.drawer-line p {
  margin: 0;
  color: var(--stone);
  font-size: 11px;
}
.drawer-foot {
  padding: 22px 24px 24px;
  border-top: 1px solid var(--line);
}
.drawer-foot small {
  display: block;
  margin: 8px 0 16px;
  color: var(--stone);
  font-size: 11px;
  line-height: 1.5;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 170;
  padding: 13px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  opacity: 0;
  transform: translate(-50%, 28px);
  transition: 0.2s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-footer {
  padding: 55px max(24px, calc((100% - 1492px) / 2)) 28px;
  background: var(--ink);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 48px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.footer-tag {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.65;
}
.footer-col h2 {
  margin: 7px 0 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-col a {
  min-height: 32px;
  display: block;
  font-size: 12px;
}
.footer-col a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  :root {
    --page: min(calc(100% - 32px), 1540px);
  }
  .site-header {
    padding-inline: 16px;
  }
  .primary-nav {
    display: none;
  }
  .site-header {
    grid-template-columns: 1fr auto 1fr;
  }
  .menu-toggle {
    display: inline-flex !important;
  }
  .header-actions {
    gap: 14px;
  }
  .desktop-label {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero__copy {
    width: 52%;
    margin-left: 24px;
  }
  .campaign__copy {
    width: 49%;
    margin-left: 24px;
  }
}

@media (max-width: 800px) {
  .announcement {
    min-height: 34px;
  }
  .announcement i,
  .announcement .optional {
    display: none;
  }
  .site-header {
    height: 66px;
  }
  .wordmark {
    font-size: 29px;
  }
  .header-actions {
    gap: 7px;
  }
  .mobile-menu {
    inset: 100px 0 0;
  }
  .hero {
    min-height: 730px;
  }
  .hero__media {
    object-position: 62% center;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(248, 246, 242, 0.9),
      rgba(248, 246, 242, 0.08) 82%
    );
  }
  .hero__copy {
    width: 84%;
    min-height: 730px;
    margin-left: 20px;
    padding-right: 16px;
  }
  .hero h1 {
    font-size: clamp(54px, 15vw, 86px);
  }
  .category-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-strip a:nth-child(2) {
    border-right: 0;
  }
  .category-strip a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section-head {
    display: block;
  }
  .section-head .section-lede,
  .section-head .text-link {
    margin-top: 20px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 10px;
  }
  .quick-add {
    position: static;
    width: 100%;
    margin-top: 10px;
    transform: none;
  }
  .profile-grid,
  .sensory-grid {
    grid-template-columns: 1fr;
  }
  .profile-card,
  .sensory-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .profile-card:last-child,
  .sensory-card:last-child {
    border-bottom: 0;
  }
  .split-editorial,
  .product-layout {
    grid-template-columns: 1fr;
  }
  .split-editorial > img {
    min-height: 500px;
  }
  .split-editorial__copy {
    padding: 55px 24px;
  }
  .trust-layout,
  .content-grid,
  .finder,
  .contact-grid,
  .cart-page {
    grid-template-columns: 1fr;
  }
  .trust-layout > h2,
  .finder__intro,
  .side-nav,
  .summary-box {
    position: static;
  }
  .campaign::after {
    background: linear-gradient(
      90deg,
      rgba(248, 246, 242, 0.88),
      rgba(248, 246, 242, 0.15)
    );
  }
  .campaign--dark::after {
    background: linear-gradient(
      90deg,
      rgba(10, 4, 8, 0.78),
      rgba(10, 4, 8, 0.18)
    );
  }
  .campaign__copy {
    width: 78%;
    margin-left: 20px;
  }
  .page-hero__bottom {
    display: block;
  }
  .page-hero__bottom span {
    display: block;
    margin-top: 15px;
  }
  .product-gallery img {
    min-height: 520px;
  }
  .product-buy {
    position: static;
    min-height: auto;
    padding: 50px 24px;
  }
  .comparison-wrap {
    overflow-x: auto;
  }
  .comparison {
    min-width: 680px;
  }
  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  :root {
    --page: calc(100% - 28px);
  }
  .header-actions a[aria-label="Search"] {
    display: none;
  }
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .product-card__name {
    font-size: 16px;
  }
  .product-card__top {
    display: block;
  }
  .product-card__price {
    display: block;
    margin-top: 5px;
  }
  .page-hero h1 {
    font-size: clamp(56px, 20vw, 95px);
  }
  .collection-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .variant-row {
    grid-template-columns: 1fr;
  }
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .field--full {
    grid-column: auto;
  }
  .cart-item {
    grid-template-columns: 90px 1fr;
  }
  .cart-item img {
    width: 90px;
  }
  .cart-item > strong {
    grid-column: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
}

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

@media print {
  .announcement,
  .preview-flag,
  .site-header,
  .mobile-menu,
  .newsletter,
  .site-footer,
  .cookie-banner,
  .cart-drawer,
  .drawer-overlay,
  .toast {
    display: none !important;
  }
  body {
    background: var(--white);
  }
  .section,
  .wrap {
    width: 100%;
  }
}
