:root {
  --paper: #fffdfa;
  --ink: #242827;
  --cloud: #c8dae8;
  --mist: #edf1f2;
  --petrol: #103e42;
  --blue: #254ced;
  --muted: #656e70;
  --line: #dbe0df;
  --body: var(--font-dm-sans, "DM Sans"), Arial, sans-serif;
  --display: var(--font-manrope, Manrope), Arial, sans-serif;
  --ice: #e4f1ef;
  --slate: #50676a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 15px/1.55 var(--body);
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(46px, 6.8vw, 104px);
}
h2 {
  font-size: clamp(34px, 3.5vw, 54px);
}
h3 {
  font-size: 22px;
}
p {
  color: var(--muted);
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.preview {
  min-height: 35px;
  padding: 8px 4%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: var(--cloud);
  font-size: 11px;
  letter-spacing: 0.025em;
}
header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  gap: 35px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.wordmark {
  font-family: var(--display);
  font-size: 39px;
  font-weight: 500;
  letter-spacing: -2.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wordmark img {
  flex-shrink: 0;
}
nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
nav a {
  padding: 10px 0;
}
nav a:hover {
  color: var(--blue);
}
.header-actions {
  display: flex;
  gap: 21px;
  align-items: center;
}
.icon-button,
.menu-btn {
  background: none;
  border: 0;
  padding: 8px;
  line-height: 1;
  font-size: 26px;
  min-height: 42px;
  min-width: 42px;
}
.icon-button svg {
  height: 21px;
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.bag-btn {
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
}
.bag-btn span {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  min-width: 26px;
  height: 26px;
  font-size: 11px;
}
.menu-btn {
  display: none;
}
.hero {
  padding: 46px 4% 52px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 680px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 27px;
}
.eyebrow:before {
  content: "";
  display: inline-block;
  background: var(--blue);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 2px;
}
.hero h1 {
  font-size: clamp(62px, 6.25vw, 104px);
  letter-spacing: -0.06em;
  line-height: 1.04;
}
.hero h1 em {
  font-weight: 400;
  color: var(--petrol);
}
.hero-copy p {
  max-width: 340px;
  margin: 25px 0 30px;
  font-size: 16px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: var(--cloud);
  border: 0;
  border-radius: 7px;
  padding: 17px 21px;
  min-height: 56px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}
.button:hover {
  background: #b5cfdf;
  transform: translateY(-1px);
}
.button.dark {
  background: var(--ink);
  color: white;
}
.button.dark:hover {
  background: var(--petrol);
}
.button.secondary {
  background: transparent;
  border: 1px solid var(--line);
}
.button:disabled {
  cursor: not-allowed;
  background: #e9eaea;
  color: #7d8483;
  transform: none;
}
.circle-arrow {
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  font-size: 15px;
}
.hero-art {
  height: 550px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #dce9e8;
}
.hero-art > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}
.art-caption {
  position: absolute;
  bottom: 20px;
  left: 23px;
  right: 23px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--petrol);
}
.quiet-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 21px 4%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}
.quiet-strip span {
  display: flex;
  gap: 12px;
  align-items: center;
}
.quiet-strip i {
  font-style: normal;
  font-size: 18px;
  color: var(--petrol);
}
.section {
  padding: 90px 4%;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 34px;
}
.section-head p {
  margin-top: 13px;
  font-size: 14px;
}
.inline-link {
  font-size: 13px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  white-space: nowrap;
}
.shelf {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 20px;
}
.product-card {
  min-width: 0;
}
.product-art {
  height: 315px;
  background: var(--mist);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.product-art > img {
  height: 94%;
  width: 94%;
  object-fit: contain;
  transition: transform 0.35s;
}
.product-art:hover > img {
  transform: translateY(-7px) rotate(-3deg);
}
.category-label {
  position: absolute;
  left: 17px;
  top: 16px;
  font-size: 10px;
  color: var(--muted);
  z-index: 1;
}
.plus {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: background 0.2s;
}
.product-art:hover .plus {
  background: var(--cloud);
}
.product-info {
  padding: 17px 1px 0;
}
.product-info h3 {
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.025em;
  max-width: 95%;
}
.product-info .price {
  font-size: 13px;
  margin-top: 8px;
}
.product-info small {
  font-size: 11px;
  color: var(--muted);
}
.product-info .sizes {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
  min-height: 17px;
}
.product-flag {
  display: inline-block;
  font-size: 10px;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-left: 8px;
  color: var(--muted);
}
.clarity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cloud);
}
.clarity-copy {
  padding: 60px;
  align-self: center;
}
.clarity-copy h2 {
  font-size: clamp(36px, 4.3vw, 64px);
}
.clarity-copy p {
  margin: 24px 0;
  max-width: 350px;
  color: #485959;
}
.record-art {
  display: grid;
  place-items: center;
  padding: 50px;
  background: #dce8ed;
}
.record-sheet {
  width: 88%;
  max-width: 330px;
  background: var(--paper);
  padding: 30px;
  box-shadow: 0 20px 35px #253b3e15;
  transform: rotate(4deg);
  border-radius: 3px;
}
.record-brand {
  font: 500 26px var(--display);
  letter-spacing: -1.5px;
}
.record-sheet hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 22px 0;
}
.record-sheet small {
  font-size: 9px;
  letter-spacing: 0.12em;
}
.record-sheet h3 {
  font-size: 25px;
  margin-top: 9px;
}
.record-sheet dl {
  font-size: 10px;
  margin: 23px 0;
}
.record-sheet dl div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  gap: 10px;
}
.record-sheet dd {
  margin: 0;
}
.sample-stamp {
  font-size: 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  padding: 32px;
  background: #f0f1ed;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 290px;
}
.article-card:nth-child(2) {
  background: #e5edf2;
}
.article-card:nth-child(3) {
  background: #e8efeb;
}
.article-card .kicker {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}
.article-card h3 {
  font-size: 27px;
  line-height: 1.22;
  max-width: 260px;
}
.article-card a {
  font-size: 12px;
  margin-top: auto;
  padding-top: 25px;
}
.faq {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.faq > div > p {
  margin-top: 20px;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 22px;
  line-height: 1;
}
details[open] summary:after {
  content: "−";
}
details p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.8;
}
.page-intro {
  padding: 60px 4% 44px;
}
.page-intro h1 {
  font-size: clamp(44px, 5.3vw, 76px);
}
.page-intro p {
  margin-top: 24px;
  max-width: 520px;
  font-size: 15px;
}
.catalog-section {
  padding-top: 0;
}
.filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tabs {
  display: flex;
  gap: 7px;
  overflow: auto;
  max-width: 100%;
  padding: 3px;
}
.tab {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 5px;
  padding: 10px 15px;
  min-height: 42px;
  font-size: 12px;
}
.tab.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.filter-tools {
  display: flex;
  gap: 12px;
}
.search {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 5px;
  padding: 11px 13px;
  width: 230px;
}
.sort {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 5px;
  max-width: 180px;
  padding: 11px 10px;
  font-size: 12px;
}
.catalog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 23px;
}
.empty {
  padding: 80px 20px;
  text-align: center;
}
.empty h2 {
  margin-bottom: 20px;
}
.loading {
  padding: 100px;
  text-align: center;
}
.pdp {
  padding: 30px 4% 80px;
}
.breadcrumb {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 30px;
}
.pdp-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 7%;
}
.pdp-art {
  background: var(--mist);
  border-radius: 9px;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 25px;
  align-self: start;
}
.pdp-art img {
  width: 85%;
  max-height: 610px;
}
.pdp-art small {
  position: absolute;
  bottom: 20px;
  left: 25px;
  font-size: 10px;
  color: var(--muted);
}
.pdp-copy h1 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.pdp-copy .eyebrow {
  margin: 5px 0 18px;
}
.pdp-copy > .intro {
  margin: 18px 0;
  font-size: 14px;
  max-width: 450px;
}
.pdp-price {
  font-size: 24px;
  margin: 20px 0;
}
.pdp-price small {
  font-size: 12px;
  color: var(--muted);
  margin-left: 10px;
}
.option-label {
  display: block;
  font-size: 12px;
  margin: 20px 0 12px;
}
.variant-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.volume-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px;
}
.volume {
  border: 1px solid var(--line);
  background: transparent;
  text-align: left;
  border-radius: 7px;
  padding: 14px 12px;
  min-height: 108px;
  position: relative;
}
.volume.selected {
  border-color: var(--ink);
  background: #e9f0f5;
}
.volume b,
.volume small,
.volume strong {
  display: block;
}
.volume b {
  font-size: 13px;
  font-weight: 500;
}
.volume small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.volume strong {
  font-weight: 500;
  font-size: 14px;
  margin-top: 10px;
}
.qty-row {
  display: flex;
  gap: 12px;
  margin-top: 21px;
}
.qty {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  align-items: center;
}
.qty button {
  border: 0;
  background: none;
  min-width: 35px;
  min-height: 54px;
}
.qty output {
  display: block;
  min-width: 24px;
  text-align: center;
}
.qty-row > .button {
  flex: 1;
  gap: 10px;
}
.notice {
  font-size: 11px;
  line-height: 1.7;
  margin-top: 17px;
  color: var(--muted);
}
.detail-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
  padding: 25px 0;
  border-block: 1px solid var(--line);
}
.detail-facts small,
.detail-facts span {
  display: block;
}
.detail-facts small {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 5px;
}
.detail-facts span {
  font-size: 12px;
}
.pdp-details {
  margin-top: 60px;
  max-width: 800px;
}
.pdp-details h2 {
  font-size: 36px;
  margin-bottom: 24px;
}
.document-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 5% 100px;
}
.document-page h1 {
  font-size: clamp(42px, 5.5vw, 78px);
  margin-bottom: 30px;
}
.document-page > p {
  font-size: 17px;
  line-height: 1.8;
  margin: 24px 0;
}
.document-page h2 {
  font-size: 35px;
  margin-top: 50px;
}
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.principles p {
  margin-top: 15px;
}
.lookup {
  padding: 30px;
  background: var(--mist);
  border-radius: 8px;
  margin: 35px 0;
}
.lookup label {
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
}
.lookup-row {
  display: flex;
  gap: 12px;
}
.lookup input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 15px;
}
.lookup small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}
.lookup-result {
  margin-top: 23px;
  font-size: 14px;
}
.text-btn {
  border: 0;
  background: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}
.lookup-result p {
  margin-top: 10px;
}
.research-banner {
  background: var(--petrol);
  color: white;
  padding: 65px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.research-banner h2 {
  max-width: 600px;
}
.research-banner .button {
  white-space: nowrap;
  color: var(--ink);
}
footer {
  background: #16393c;
  color: #e8efed;
  padding: 65px 4% 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-intro h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-top: 35px;
}
.footer-top > div > b {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 26px;
}
.footer-top > div > a:not(.wordmark),
.footer-top button {
  display: block;
  font-size: 12px;
  margin: 14px 0;
  color: #c4d2d1;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-top: 65px;
  padding-top: 25px;
  border-top: 1px solid #ffffff20;
  font-size: 10px;
}
.footer-bottom p {
  color: #b6c6c5;
  max-width: 650px;
}
.footer-bottom span {
  white-space: nowrap;
}
dialog {
  width: min(600px, calc(100% - 30px));
  max-height: 85vh;
  border: 0;
  border-radius: 12px;
  padding: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 100px #0002;
}
dialog::backdrop {
  background: #112d3670;
  backdrop-filter: blur(3px);
}
.dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
}
.dialog-head h2 {
  font-size: 28px;
}
#dialog-content > p {
  margin: 15px 0;
  line-height: 1.8;
}
.cart-line {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img {
  width: 65px;
  height: 90px;
  background: var(--mist);
  border-radius: 5px;
}
.cart-line > div {
  flex: 1;
}
.cart-line b {
  font-size: 14px;
}
.cart-line small {
  font-size: 11px;
  color: var(--muted);
}
.cart-line button {
  border: 0;
  background: transparent;
  padding: 4px 0;
  text-decoration: underline;
  font-size: 11px;
}
.cart-line > span {
  font-size: 13px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  font-size: 17px;
}
.cart-actions {
  display: flex;
  gap: 10px;
}
.cart-actions > .button {
  flex: 1;
  font-size: 12px;
  gap: 10px;
}
#toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  padding: 15px 25px;
  background: var(--ink);
  color: white;
  border-radius: 7px;
  z-index: 80;
  font-size: 13px;
  transition: opacity 0.2s, transform 0.2s;
  max-width: 90%;
  text-align: center;
}
#toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (min-width: 1600px) {
  header,
  .preview,
  .section,
  .hero,
  .page-intro,
  .pdp,
  footer,
  .quiet-strip,
  .research-banner {
    padding-left: max(4%, calc((100vw - 1480px) / 2));
    padding-right: max(4%, calc((100vw - 1480px) / 2));
  }
}
@media (max-width: 1100px) {
  nav {
    gap: 20px;
  }
  .header-actions {
    gap: 10px;
  }
  .hero {
    gap: 25px;
    min-height: 610px;
  }
  .hero-art {
    height: 490px;
  }
  .hero h1 {
    font-size: 70px;
  }
  .product-art {
    height: 265px;
  }
  .clarity-copy {
    padding: 40px;
  }
  .filters {
    align-items: start;
  }
  .pdp-layout {
    gap: 5%;
  }
  .pdp-art {
    min-height: 560px;
  }
  .pdp-copy h1 {
    font-size: 42px;
  }
  .volume {
    padding: 12px 9px;
  }
}
@media (max-width: 800px) {
  header {
    height: 80px;
    gap: 15px;
  }
  .wordmark {
    font-size: 32px;
  }
  .wordmark img {
    width: 29px;
    height: 29px;
  }
  nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .account {
    display: none;
  }
  .header-actions {
    gap: 8px;
  }
  .menu-open nav {
    position: absolute;
    display: flex;
    top: 80px;
    left: 0;
    right: 0;
    padding: 20px 5%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 5px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding-top: 38px;
    min-height: auto;
    padding-bottom: 40px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-art {
    height: 410px;
  }
  .hero-copy p {
    font-size: 14px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .quiet-strip {
    font-size: 10px;
    gap: 15px;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }
  .product-art {
    height: 330px;
  }
  .article-grid {
    gap: 14px;
  }
  .article-card {
    padding: 25px 20px;
    min-height: 265px;
  }
  .article-card h3 {
    font-size: 23px;
  }
  .clarity {
    min-height: 430px;
  }
  .clarity-copy {
    padding: 32px;
  }
  .record-art {
    padding: 25px;
  }
  .record-sheet {
    width: 100%;
    padding: 24px;
  }
  .faq {
    gap: 45px;
  }
  .pdp-layout {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .pdp-art {
    min-height: 420px;
  }
  .pdp-copy h1 {
    font-size: 33px;
  }
  .volume-options {
    gap: 5px;
  }
  .volume {
    padding: 10px 6px;
  }
  .volume b {
    font-size: 11px;
  }
  .volume strong {
    font-size: 12px;
  }
  .qty-row {
    flex-wrap: wrap;
  }
  .qty-row > .button {
    min-width: 180px;
  }
  .detail-facts {
    gap: 12px;
  }
  .footer-top {
    gap: 30px;
  }
  .footer-intro h2 {
    font-size: 27px;
  }
}
@media (max-width: 600px) {
  .preview {
    font-size: 9px;
    padding: 7px 5%;
    justify-content: center;
  }
  .preview span:first-child {
    display: none;
  }
  header {
    padding: 0 5%;
    height: 76px;
  }
  .header-actions {
    gap: 4px;
  }
  .icon-button {
    min-width: 34px;
    padding: 6px;
  }
  .bag-btn {
    font-size: 12px;
    margin: 0 4px;
  }
  .menu-btn {
    min-width: 32px;
    font-size: 23px;
  }
  .wordmark {
    font-size: 31px;
    gap: 7px;
  }
  .wordmark img {
    width: 26px;
    height: 26px;
  }
  .menu-open nav {
    top: 76px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 38px 5% 24px;
    gap: 29px;
  }
  .hero h1 {
    font-size: clamp(48px, 12.5vw, 70px);
    line-height: 1.05;
  }
  .eyebrow {
    margin-bottom: 20px;
  }
  .hero-copy p {
    font-size: 14px;
    max-width: 300px;
    margin: 22px 0;
  }
  .hero .button {
    padding: 14px 18px;
    min-height: 52px;
  }
  .hero-art {
    height: 340px;
  }
  .hero-art > img {
    object-position: 65% 50%;
  }
  .art-caption {
    bottom: 16px;
    font-size: 9px;
    left: 17px;
    right: 17px;
  }
  .quiet-strip {
    padding: 16px 5%;
    justify-content: center;
  }
  .quiet-strip span {
    gap: 9px;
  }
  .quiet-strip span:nth-child(3) {
    display: none;
  }
  .section {
    padding: 50px 5%;
  }
  .section-head {
    align-items: start;
    gap: 20px;
    margin-bottom: 24px;
  }
  .section-head h2 {
    font-size: 32px;
  }
  .section-head p {
    font-size: 12px;
    max-width: 220px;
  }
  .section-head .inline-link {
    font-size: 11px;
    margin-top: 8px;
  }
  .shelf {
    gap: 25px 12px;
  }
  .product-art {
    height: 235px;
  }
  .product-art > img {
    height: 95%;
    width: 100%;
  }
  .category-label {
    left: 12px;
    top: 12px;
    font-size: 8px;
  }
  .plus {
    width: 27px;
    height: 27px;
    font-size: 16px;
    bottom: 12px;
    right: 12px;
  }
  .product-info {
    padding-top: 12px;
  }
  .product-info h3 {
    font-size: 15px;
    line-height: 1.3;
  }
  .product-info .price {
    font-size: 12px;
  }
  .product-info .sizes {
    font-size: 10px;
  }
  .product-flag {
    margin-left: 0;
    margin-top: 5px;
  }
  .clarity {
    grid-template-columns: 1fr;
  }
  .clarity-copy {
    padding: 35px 28px;
  }
  .clarity-copy h2 {
    font-size: 38px;
  }
  .clarity-copy p {
    font-size: 14px;
  }
  .record-art {
    min-height: 340px;
    padding: 30px;
  }
  .record-sheet {
    max-width: 275px;
    padding: 22px;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .article-card {
    min-height: 235px;
    padding: 28px;
  }
  .article-card h3 {
    font-size: 29px;
    max-width: 320px;
  }
  .article-card .kicker {
    margin-bottom: 22px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .faq h2 {
    font-size: 36px;
  }
  .faq > div > p {
    margin-top: 15px;
    font-size: 13px;
  }
  summary {
    font-size: 14px;
  }
  .page-intro {
    padding: 40px 5% 30px;
  }
  .page-intro h1 {
    font-size: 47px;
  }
  .page-intro p {
    font-size: 13px;
    margin-top: 18px;
  }
  .catalog-section {
    padding-top: 0;
  }
  .filters {
    gap: 14px;
  }
  .tabs {
    width: 100%;
  }
  .tab {
    padding: 9px 13px;
    font-size: 11px;
  }
  .filter-tools {
    width: 100%;
    gap: 9px;
  }
  .search {
    width: 100%;
    min-width: 0;
    flex: 1;
    font-size: 12px;
  }
  .sort {
    max-width: 133px;
    font-size: 11px;
  }
  .catalog-meta {
    font-size: 10px;
  }
  .pdp {
    padding: 22px 5% 50px;
  }
  .breadcrumb {
    font-size: 10px;
    margin-bottom: 22px;
  }
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pdp-art {
    position: relative;
    top: 0;
    min-height: 375px;
    max-height: 420px;
  }
  .pdp-art img {
    height: 360px;
    width: auto;
  }
  .pdp-copy h1 {
    font-size: 39px;
    overflow-wrap: normal;
  }
  .pdp-price {
    font-size: 23px;
  }
  .volume-options {
    gap: 9px;
  }
  .volume {
    padding: 14px 12px;
  }
  .volume b {
    font-size: 12px;
  }
  .volume strong {
    font-size: 14px;
  }
  .qty-row {
    flex-wrap: nowrap;
  }
  .qty-row > .button {
    min-width: 0;
  }
  .qty button {
    min-width: 32px;
  }
  .pdp-details {
    margin-top: 45px;
  }
  .pdp-details h2 {
    font-size: 30px;
  }
  .document-page {
    padding: 40px 5% 70px;
  }
  .document-page h1 {
    font-size: 46px;
  }
  .document-page > p {
    font-size: 15px;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .lookup {
    padding: 22px;
  }
  .lookup-row {
    flex-direction: column;
  }
  .lookup .button {
    justify-content: center;
  }
  .research-banner {
    padding: 40px 5%;
    align-items: start;
    flex-direction: column;
    gap: 26px;
  }
  .research-banner h2 {
    font-size: 34px;
  }
  footer {
    padding: 45px 5% 24px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .footer-intro {
    grid-column: 1/-1;
  }
  .footer-intro h2 {
    font-size: 31px;
    margin-top: 25px;
  }
  .footer-top > div > b {
    margin-bottom: 20px;
  }
  .footer-bottom {
    display: block;
    margin-top: 40px;
  }
  .footer-bottom span {
    display: block;
    margin-top: 20px;
  }
  dialog {
    padding: 23px;
  }
  .dialog-head h2 {
    font-size: 25px;
  }
  .cart-actions {
    flex-direction: column;
  }
  .cart-line > span {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 43px;
  }
  .hero-art {
    height: 290px;
  }
  .product-art {
    height: 200px;
  }
  .product-info h3 {
    font-size: 13px;
  }
  .section-head h2 {
    font-size: 28px;
  }
  .wordmark {
    font-size: 28px;
  }
  .wordmark img {
    width: 23px;
  }
  .header-actions {
    gap: 0;
  }
  .icon-button {
    min-width: 30px;
  }
  .volume {
    padding: 10px 8px;
  }
  .pdp-copy h1 {
    font-size: 35px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

#main:focus {
  outline: none;
}

/* Access, policy navigation and detail refinements. */
header {
  position: sticky;
  top: 0;
}
nav a[aria-current="page"] {
  color: var(--petrol);
  box-shadow: inset 0 -1px var(--petrol);
}
.footer-top {
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-top a:hover,
.footer-top button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.research-notice {
  padding: 16px 18px;
  background: #edf3f5;
  border: 1px solid #d7e3e6;
  border-radius: 8px;
  margin: 22px 0;
  font-size: 12px;
  color: var(--petrol);
}
.research-notice b,
.research-notice span {
  display: block;
}
.research-notice span {
  margin: 5px 0 8px;
}
.research-notice a {
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.qty button:disabled {
  opacity: 0.35;
  cursor: default;
}
.policy-page {
  max-width: 970px;
  margin: auto;
}
.policy-page h1 {
  font-size: clamp(38px, 5.5vw, 70px);
  overflow-wrap: anywhere;
}
.policy-page section {
  margin: 35px 0;
}
.policy-page section h2 {
  font-size: 25px;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.policy-page section p {
  line-height: 1.8;
}
.policy-updated {
  font-size: 11px;
  color: var(--muted);
  margin: 22px 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.policy-nav {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  gap: 10px 25px;
  margin-top: 40px;
  font-size: 12px;
}
.age-gate {
  width: min(580px, calc(100% - 32px));
  padding: 38px;
  border: 1px solid var(--line);
  max-height: calc(100dvh - 32px);
  inset: 0;
  margin: auto;
  position: fixed;
  z-index: 110;
  overflow: auto;
}
.age-gate::backdrop {
  background: #17383c9c;
  backdrop-filter: blur(9px);
}
#storefront-shell[inert] {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}
.access-pending {
  overflow: hidden;
}
.age-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 35px;
  font: 500 32px/1 var(--display);
  letter-spacing: -1.5px;
}
.age-pill {
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 100px;
  width: 48px;
  height: 32px;
  font: 500 12px var(--body);
  letter-spacing: 0;
}
.age-gate .eyebrow {
  margin-bottom: 18px;
}
.age-gate h2 {
  font-size: 43px;
  line-height: 1.08;
  outline: none;
}
.age-gate p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 19px;
}
.access-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 25px 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.access-check input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 2px 0;
  accent-color: var(--petrol);
}
.age-gate .button {
  width: 100%;
  gap: 15px;
}
.age-decline {
  display: block;
  margin: 12px auto 0;
  min-height: 44px;
  border: 0;
  background: none;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.access-privacy {
  border: 0;
  margin-top: 13px;
}
.access-privacy summary {
  padding: 12px 0;
  font-size: 11px;
  color: var(--muted);
}
.access-privacy p {
  font-size: 11px;
  margin: 0 0 10px;
}
.age-gate[open]:not(:modal) {
  box-shadow: 0 0 0 100vmax #17383c8a;
}
@media (max-width: 800px) {
  header {
    gap: 12px;
  }
  .policy-nav {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
  }
  .footer-intro {
    grid-column: auto;
  }
}
@media (max-width: 600px) {
  .footer-intro {
    grid-column: 1/-1;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
  }
  .footer-top a,
  .footer-top button {
    min-height: 28px;
  }
  .age-gate {
    padding: 26px;
  }
  .age-mark {
    margin-bottom: 25px;
    font-size: 29px;
  }
  .age-gate h2 {
    font-size: 36px;
  }
  .age-gate p {
    font-size: 12px;
  }
  .access-check {
    font-size: 11px;
    margin: 20px 0;
  }
  .age-gate .eyebrow {
    font-size: 9px;
  }
  .research-notice {
    padding: 14px;
    font-size: 11px;
  }
  .icon-button,
  .menu-btn {
    min-width: 40px;
    min-height: 44px;
  }
  .wordmark {
    font-size: 29px;
  }
  .header-actions {
    gap: 0;
  }
  .qty-row > .button {
    font-size: 12px;
    gap: 8px;
  }
  .policy-page h1 {
    font-size: 42px;
  }
  .policy-nav {
    flex-direction: column;
    gap: 2px;
  }
}
@media (max-width: 360px) {
  .wordmark {
    font-size: 25px;
    gap: 5px;
  }
  .wordmark img {
    width: 22px;
  }
  .bag-btn {
    gap: 5px;
    font-size: 11px;
  }
  .icon-button,
  .menu-btn {
    min-width: 36px;
  }
  .age-gate {
    padding: 22px;
  }
  .age-gate h2 {
    font-size: 31px;
  }
  .age-mark {
    margin-bottom: 22px;
  }
  .policy-page h1 {
    font-size: 37px;
  }
  .volume strong {
    font-size: 12px;
  }
}
