@font-face {
  font-family:DM Sans;
  src:url('/assets/fonts/dm-sans.ttf') format('truetype');
  font-weight:100 1000;
  font-display:swap;
}
@font-face {
  font-family:Cormorant;
  src:url('/assets/fonts/cormorant-garamond.ttf') format('truetype');
  font-weight:300 700;
  font-display:swap;
}
@font-face {
  font-family:Cormorant;
  src:url('/assets/fonts/cormorant-garamond-italic.ttf') format('truetype');
  font-weight:300 700;
  font-style:italic;
  font-display:swap;
}
:root {
  --header-height:88px;
  --scene-height:clamp(490px,55.9vw,805px);
  --paper:#faf9f6;
  --ink:#151711;
  --muted:#61645d;
  --line:#d9dbd3;
  --green:#42533f;
  --olive:#4d5944;
  --serif:Cormorant,Georgia,serif;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:24px;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:15px/1.6 'DM Sans',sans-serif;
}
a {
  color:inherit;
  text-decoration:none;
}
button,input,select {
  font:inherit;
  color:inherit;
}
button,a,input,select {
  -webkit-tap-highlight-color:transparent;
}
button,select,input[type=checkbox] {
  cursor:pointer;
}
button {
  background:none;
  border:0;
}
a:hover {
  text-decoration:underline;
  text-underline-offset:5px;
}
img {
  max-width:100%;
  display:block;
}
h1,h2,h3,p {
  margin:0;
}
h1,h2,h3 {
  font-family:var(--serif);
  font-weight:500;
  line-height:1.05;
}
h1 {
  font-size:clamp(62px,7.7vw,110px);
  letter-spacing:-3px;
}
h2 {
  font-size:clamp(42px,4.8vw,64px);
  letter-spacing:-1.8px;
}
h3 {
  font-size:29px;
  letter-spacing:-.8px;
}
p {
  color:var(--muted);
}
:focus-visible {
  outline:2px solid var(--green);
  outline-offset:5px;
}
.shell {
  max-width:1440px;
  padding:0 4.5%;
  margin:auto;
}
.is-home {
  isolation:isolate;
}
.has-wall-light {
  position:relative;
  background:#fff;
}
.has-wall-light::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:min(100%,1280px);
  height:730px;
  background:url('/assets/window-light-wall.webp') left top / 1280px auto no-repeat;
  opacity:.58;
  mask-image:linear-gradient(to right,#000 0%,#000 56%,transparent 100%),linear-gradient(to bottom,#000 0%,#000 24%,transparent 100%);
  mask-composite:intersect;
  pointer-events:none;
}
.has-wall-light>.shell {
  position:relative;
}
.gallery-scene {
  position:absolute;
  inset:0 0 auto;
  height:var(--scene-height);
  z-index:-1;
  overflow:hidden;
  background:url('/assets/quiet-gallery-room.png') center / cover;
}
.gallery-scene img {
  position:absolute;
  left:2.5%;
  top:2.5%;
  width:97.5%;
  height:97.5%;
  object-fit:cover;
  object-position:center;
  mask-image:linear-gradient(to right,transparent,#000 6%),linear-gradient(to bottom,transparent,#000 8%);
  mask-composite:intersect;
}
.header {
  height:var(--header-height);
  border-bottom:1px solid rgb(150 155 142 / 50%);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  position:relative;
  z-index:2;
}
.header-launch {
  grid-template-columns:1fr auto;
}
.brand {
  display:flex;
  align-items:center;
  gap:11px;
  font-family:'DM Sans',sans-serif;
  font-size:25px;
  line-height:1;
  letter-spacing:-.8px;
  font-weight:600;
  white-space:nowrap;
}
.brand img {
  width:26px;
  height:32px;
}
.brand:hover {
  text-decoration:none;
}
.brand-wordmark {
  display:inline-block;
  position:relative;
  color:rgb(40 62 48 / 50%);
}
.brand-wordmark::before {
  content:attr(data-text);
  position:absolute;
  inset:0;
  color:#283e30;
  background:#283e30;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  mask:url('/assets/wordmark-edge.svg') center / 100% 100% no-repeat;
  pointer-events:none;
}
@media(forced-colors:active) {
  .brand-wordmark {
    color:LinkText;
  }
  .brand-wordmark::before {
    content:none;
  }
}
.header nav {
  display:flex;
  gap:32px;
  font-size:14px;
}
.header-launch nav {
  justify-self:end;
}
.header-compare {
  display:flex;
  gap:18px;
  align-items:center;
  justify-self:end;
  font-size:16px;
}
.header-compare span {
  border:1px solid #b9bcb1;
  border-radius:50%;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  font-size:14px;
}
.compare-icon {
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.5;
}
.eyebrow {
  font-size:16px;
  letter-spacing:0;
  text-transform:none;
  font-weight:400;
  color:var(--olive);
  margin-bottom:17px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  background:var(--green);
  color:#fff;
  padding:13px 24px;
  font-size:16px;
  line-height:1.5;
  border:1px solid var(--green);
}
.button:hover {
  background:#2c3d30;
  text-decoration:none;
}
.hero {
  position:relative;
  height:calc(var(--scene-height) - var(--header-height));
}
.hero-room {
  display:none;
}
.hero-copy {
  padding-top:clamp(38px,4.6vw,64px);
  width:44%;
  position:relative;
}
.hero-copy h1 {
  font-size:clamp(72px,8.47vw,112px);
  font-weight:600;
  line-height:.86;
  letter-spacing:-3px;
  margin-bottom:26px;
}
.hero-copy h1 em {
  display:inline-block;
  white-space:nowrap;
  font-weight:600;
  color:var(--olive);
  transform:scaleX(1.105);
  transform-origin:left center;
}
.hero-description {
  line-height:1.5;
  font-size:clamp(16px,1.84vw,22px);
  margin-bottom:24px;
  color:var(--ink);
  white-space:nowrap;
  letter-spacing:-.5px;
}
.hero-copy .button {
  font-size:18px;
  padding:13px 27px;
  gap:24px;
}
.collection {
  padding-top:25px;
}
.launch-intro {
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:100px;
  padding:50px 0 12px;
}
.launch-intro h2 {
  max-width:430px;
}
.launch-intro p {
  max-width:590px;
  margin-bottom:18px;
  font-size:17px;
  line-height:1.75;
}
.launch-intro a {
  color:var(--green);
  text-decoration:underline;
  text-underline-offset:4px;
}
.section-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:0;
  gap:20px;
}
.result-summary {
  font-size:14px;
  white-space:nowrap;
}
.section-heading h2 {
  transform:scaleX(1.05);
  transform-origin:left center;
}
.result-summary span {
  margin:0 3px;
}
.filters {
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-end;
  margin-bottom:24px;
}
.categories {
  display:flex;
  border:0;
  margin:0;
  padding:0;
  gap:7px;
}
.categories label {
  position:relative;
  cursor:pointer;
}
.categories input {
  position:absolute;
  opacity:0;
  width:100%;
  height:100%;
  margin:0;
  cursor:pointer;
}
.categories span {
  border-radius:3px;
  padding:13px 17px;
  display:block;
  font-size:14px;
  border:1px solid var(--line);
  white-space:nowrap;
}
.categories input:checked+span {
  background:var(--green);
  color:#fff;
  border-color:var(--green);
}
.categories input:focus-visible+span {
  outline:2px solid var(--green);
  outline-offset:4px;
}
.select-filters {
  display:flex;
  gap:22px;
  align-items:flex-end;
  flex:1;
  max-width:420px;
}
.select-filters label {
  display:flex;
  flex-direction:column;
  gap:3px;
  flex:1;
  min-width:0;
  font-size:14px;
  color:#4d5049;
}
.select-filters select {
  border:1px solid var(--line);
  background:transparent;
  padding:10px 12px;
  border-radius:3px;
  font-size:14px;
  width:100%;
  height:47px;
}
.filter-submit {
  font-size:12px;
  text-decoration:underline;
  text-underline-offset:3px;
  padding-bottom:12px;
}
.js .filter-submit {
  display:none;
}
.reset-filters {
  text-align:right;
  margin:-15px 0 15px;
  font-size:12px;
}
.grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px 20px;
}
.product {
  border-radius:4px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid #e9e7e0;
  background:#fcfbf8;
}
.product-image {
  display:block;
  overflow:hidden;
  background:#e9e7df;
  aspect-ratio:1.11;
  flex-shrink:0;
}
.product-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s;
}
.product-image:hover img {
  transform:scale(1.025);
}
.product-copy {
  display:flex;
  flex-direction:column;
  padding:16px 19px 0;
  flex:1;
}
.photo-credit {
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}
.photo-credit a {
  text-decoration:underline;
  text-underline-offset:2px;
}
.product .photo-credit {
  margin-bottom:8px;
}
.product h3 {
  font-family:'DM Sans',sans-serif;
  font-size:20px;
  font-weight:500;
  line-height:1.3;
  letter-spacing:-.3px;
}
.price {
  color:var(--ink);
  font-size:18px;
  margin-top:7px;
  margin-bottom:18px;
}
.specs {
  font-size:15px;
  margin-top:6px;
  color:#4d5149;
}
.specs span {
  margin:0 8px;
}
.product-note {
  font-size:11px;
  margin:-13px 0 16px;
}
.product-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  border-top:1px solid var(--line);
  font-size:13px;
  margin-top:auto;
  gap:14px;
}
.product-bottom label {
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}
.product-bottom input {
  accent-color:var(--green);
  width:17px;
  height:17px;
  margin:0;
}
.product-bottom a {
  border-left:1px solid var(--line);
  padding-left:16px;
  white-space:nowrap;
}
.product-bottom a span {
  margin-left:6px;
}
.collection-note {
  margin-top:22px;
  font-size:13px;
}
.comparison-shelf {
  border-radius:4px;
  display:none;
  grid-column:1/-1;
  background:#eceee6;
  padding:20px;
  gap:10px;
  grid-template-columns:1fr repeat(3,1fr);
  min-height:140px;
}
.js .comparison-shelf {
  display:grid;
}
.comparison-shelf-intro {
  padding:9px 18px 7px 0;
}
.comparison-shelf h3 {
  font-size:29px;
  margin-bottom:8px;
}
.comparison-shelf p {
  font-size:13px;
  line-height:1.6;
}
.comparison-shelf .text-link {
  display:inline-block;
  margin-top:10px;
}
.comparison-shelf .text-link[hidden] {
  display:none;
}
.comparison-slot {
  border:1px dashed #c8cfc0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:16px;
  color:#747c6e;
  font-size:12px;
}
.comparison-slot[data-filled=true] {
  border-style:solid;
  background:#f8f9f4;
  color:var(--ink);
}
.slot-symbol {
  border:1px solid #aeb6a5;
  border-radius:50%;
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
  font-size:15px;
  line-height:1;
}
.buying {
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:100px;
  margin:64px 0 55px;
  padding:46px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.buying-summary {
  margin-top:20px;
  font-size:14px;
  line-height:1.9;
}
.buying-tips article {
  display:flex;
  gap:24px;
  padding:0 0 24px;
  margin-bottom:24px;
  border-bottom:1px solid var(--line);
}
.buying-tips article:last-child {
  margin:0;
  padding:0;
  border:0;
}
.buying-tips h3 {
  font-family:'DM Sans',sans-serif;
  font-size:20px;
  font-weight:500;
  line-height:1.35;
  letter-spacing:-.3px;
  margin-bottom:9px;
}
.buying-tips p {
  font-size:13px;
  line-height:1.9;
  max-width:470px;
}
.footer {
  padding:0 0 100px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
}
.footer>.brand {
  font-size:22px;
}
.footer-links {
  display:flex;
  gap:22px;
  flex-basis:100%;
  font-size:14px;
}
.information-page {
  max-width:760px;
  margin:60px auto 90px;
}
.information-page h1 {
  font-size:clamp(42px,4.5vw,54px);
  font-weight:600;
  letter-spacing:-.8px;
  line-height:1.08;
  margin-bottom:28px;
}
.information-page h2 {
  font:500 23px/1.3 'DM Sans',sans-serif;
  letter-spacing:-.4px;
  margin:32px 0 12px;
}
.information-page p {
  margin-bottom:18px;
  font-size:16px;
  line-height:1.8;
}
.information-page a {
  text-decoration:underline;
  text-underline-offset:3px;
}
.footer-tagline {
  margin-left:auto;
  font-size:12px;
}
.fine-print {
  font-size:11px;
  line-height:1.8;
}
.footer .fine-print {
  width:100%;
  max-width:740px;
  margin-top:8px;
}
.compare-tray {
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  max-width:850px;
  width:calc(100% - 40px);
  padding:17px 22px;
  background:var(--paper);
  border:1px solid #c3cbbb;
  box-shadow:0 8px 35px #1b2d1d20;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.compare-tray[hidden] {
  display:none;
}
.compare-tray strong {
  font-size:13px;
  font-weight:500;
}
.compare-tray p {
  font-size:11px;
  margin-top:3px;
}
.tray-actions {
  display:flex;
  align-items:center;
  gap:22px;
  flex-shrink:0;
}
.tray-actions .button {
  padding:11px 18px;
  font-size:13px;
}
.text-button {
  font-size:12px;
  text-decoration:underline;
  text-underline-offset:4px;
}
.status:not(:empty) {
  position:fixed;
  bottom:120px;
  left:50%;
  transform:translateX(-50%);
  padding:13px 20px;
  background:var(--green);
  color:#fff;
  z-index:12;
  max-width:calc(100% - 30px);
  width:max-content;
  box-shadow:0 5px 20px #0002;
  font-size:12px;
}
.empty {
  padding:60px 20px;
  text-align:center;
  border:1px solid var(--line);
}
.empty p {
  margin:17px 0 25px;
}
.empty h2 {
  font-size:38px;
}
.text-link {
  font-size:12px;
  text-decoration:underline;
  text-underline-offset:5px;
}
.back-link {
  display:inline-block;
  margin:32px 0;
  font-size:12px;
}
.detail {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:64px;
  margin:20px 0 80px;
}
.detail-media {
  margin:0;
}
.detail-photo {
  width:100%;
  height:auto;
  max-height:740px;
  object-fit:contain;
  align-self:start;
  background:#eeeae0;
}
.detail-media .photo-credit {
  margin-top:8px;
}
.detail-copy h1 {
  font-size:62px;
  letter-spacing:-1.5px;
  margin-bottom:23px;
}
.detail-copy .lead {
  font-size:14px;
  line-height:1.9;
}
.facts {
  margin:25px 0;
}
.facts div {
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  font-size:12px;
}
.facts dt {
  color:var(--muted);
}
.facts dd {
  margin:0;
}
.sizes {
  width:100%;
  border-collapse:collapse;
  font-size:12px;
}
.sizes caption {
  text-align:left;
  font-size:10px;
  text-transform:none;
  letter-spacing:1px;
  margin:10px 0;
}
.sizes td,.sizes th {
  text-align:left;
  padding:9px 0;
  border-bottom:1px solid var(--line);
  font-weight:400;
}
.sizes td:last-child,.sizes th:last-child {
  text-align:right;
}
.detail-note {
  font-size:12px;
  margin:22px 0;
}
.detail-copy .fine-print {
  margin-top:14px;
}
.page-intro {
  padding:30px 0 45px;
}
.page-intro h1 {
  font-size:70px;
  letter-spacing:-2px;
  margin-bottom:18px;
}
.comparison {
  margin-bottom:80px;
}
.comparison>.fine-print {
  margin-bottom:15px;
}
.comparison-scroll {
  overflow-x:auto;
}
.comparison-table {
  border-collapse:collapse;
  width:100%;
  table-layout:fixed;
  min-width:740px;
}
.comparison-table th,.comparison-table td {
  text-align:left;
  vertical-align:top;
  padding:22px;
  border-bottom:1px solid var(--line);
  font-size:12px;
  font-weight:400;
}
.comparison-table th:first-child {
  width:150px;
  padding-left:0;
  color:var(--muted);
  font-size:11px;
}
.comparison-table thead img {
  width:100%;
  height:190px;
  object-fit:cover;
  margin-bottom:8px;
}
.comparison-table .photo-credit {
  display:block;
  margin-bottom:12px;
}
.comparison-table thead th > a {
  font:500 20px/1.3 'DM Sans',sans-serif;
  letter-spacing:-.3px;
}
.comparison-price-row td {
  font-size:18px;
}
.skip-link {
  position:absolute;
  top:-60px;
  background:var(--green);
  color:#fff;
  padding:10px;
  z-index:20;
}
.skip-link:focus {
  top:0;
}
.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;
}
@media(min-width:1440px) {
  .shell {
    padding:0 64px;
  }
}
@media(min-width:761px) and (max-width:1000px) {
  .hero-description {
    white-space:normal;
    max-width:28vw;
  }
  .brand {
    font-size:23px;
  }
  .header nav {
    gap:24px;
    font-size:14px;
  }
  .header-compare {
    font-size:14px;
    gap:10px;
  }
  .categories span {
    padding:13px 12px;
    font-size:13px;
  }
  .filters {
    gap:20px;
  }
  .select-filters {
    gap:14px;
  }
  .product-copy {
    padding:16px 15px 0;
  }
  .product-bottom {
    font-size:12px;
    gap:10px;
  }
  .product-bottom a {
    padding-left:10px;
  }
  .product-bottom label {
    gap:6px;
  }
  .specs {
    font-size:13px;
  }
  .specs span {
    margin:0 5px;
  }
  .buying {
    gap:60px;
  }
  .detail {
    gap:35px;
  }
  .detail-copy h1 {
    font-size:50px;
  }
}
@media(min-width:761px) and (max-width:880px) {
  .section-heading {
    margin-bottom:16px;
  }
  .filters {
    flex-wrap:wrap;
  }
  .select-filters {
    max-width:none;
    flex-basis:100%;
  }
}
@media(max-width:760px) {
  .has-wall-light::before {
    opacity:.44;
  }
  .shell {
    padding:0 22px;
  }
  .header {
    height:76px;
    display:flex;
    gap:15px;
  }
  .header .brand {
    font-size:20px;
    gap:8px;
    letter-spacing:-.6px;
  }
  .header .brand img {
    width:22px;
    height:27px;
  }
  .header nav {
    display:none;
  }
  .header-launch nav {
    display:flex;
    margin-left:auto;
  }
  .header-guide-link {
    display:none;
  }
  .header-compare {
    margin-left:auto;
    font-size:12px;
    gap:6px;
  }
  .compare-icon {
    display:none;
  }
  .header-compare span {
    width:24px;
    height:24px;
  }
  .gallery-scene {
    display:none;
  }
  .hero {
    height:auto;
  }
  .hero-copy {
    padding-top:35px;
    width:100%;
  }
  .hero-copy h1 {
    font-size:clamp(64px,12vw,85px);
    line-height:.95;
    margin-bottom:20px;
    letter-spacing:-2px;
  }
  .hero-copy .eyebrow {
    font-size:15px;
    margin-bottom:16px;
  }
  .hero-description {
    font-size:16px;
    white-space:normal;
    margin-bottom:20px;
  }
  .hero-copy .button {
    padding:12px 22px;
    font-size:16px;
  }
  .hero-room {
    display:block;
    position:relative;
    width:calc(100% + 44px);
    margin:8px -22px 0;
    height:clamp(250px,50vw,380px);
    overflow:hidden;
    mask-image:linear-gradient(to bottom,transparent,#000 18%);
  }
  .hero-room img {
    position:absolute;
    right:0;
    bottom:0;
    width:135%;
    max-width:none;
    height:auto;
  }
  .collection {
    padding-top:25px;
  }
  .launch-intro {
    grid-template-columns:1fr;
    gap:22px;
    padding-top:36px;
  }
  .launch-intro h2 {
    font-size:43px;
  }
  .launch-intro p {
    font-size:16px;
  }
  .section-heading {
    display:block;
    margin-bottom:17px;
  }
  .section-heading h2 {
    font-size:43px;
  }
  .result-summary {
    margin-top:8px;
    font-size:13px;
  }
  .filters {
    display:block;
    margin-bottom:19px;
  }
  .categories {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:7px;
  }
  .categories span {
    padding:10px;
    text-align:center;
    font-size:14px;
  }
  .select-filters {
    margin-top:14px;
    gap:12px;
    max-width:none;
  }
  .select-filters label {
    font-size:13px;
  }
  .select-filters select {
    font-size:14px;
    height:44px;
  }
  .grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
  }
  .product-copy {
    padding:17px 15px 0;
  }
  .product-bottom {
    gap:9px;
    font-size:12px;
    flex-wrap:wrap;
    padding:15px 0;
  }
  .product-bottom a {
    border:0;
    padding:0;
  }
  .specs {
    font-size:13px;
  }
  .specs span {
    margin:0 4px;
  }
  .price {
    font-size:17px;
  }
  .comparison-shelf {
    grid-template-columns:repeat(3,minmax(0,1fr));
    padding:15px;
  }
  .comparison-shelf-intro {
    grid-column:1/-1;
    padding:0 0 8px;
  }
  .comparison-shelf h3 {
    font-size:29px;
  }
  .comparison-slot {
    min-height:95px;
    padding:10px;
    font-size:12px;
  }
  .buying {
    grid-template-columns:1fr;
    gap:32px;
    margin-top:42px;
    padding:32px 0;
  }
  .buying h2 {
    font-size:42px;
  }
  .buying-tips article {
    gap:17px;
  }
  .footer-tagline {
    margin-left:0;
    width:100%;
    font-size:12px;
  }
  .compare-tray {
    bottom:12px;
    padding:14px;
    gap:12px;
  }
  .compare-tray p {
    display:none;
  }
  .tray-actions {
    gap:12px;
  }
  .tray-actions .button {
    font-size:12px;
    padding:11px;
  }
  .compare-tray strong {
    font-size:12px;
  }
  .detail {
    grid-template-columns:1fr;
    gap:30px;
    margin-top:0;
  }
  .detail-copy h1 {
    font-size:52px;
  }
  .detail-photo {
    max-height:520px;
  }
  .page-intro h1 {
    font-size:56px;
  }
  .page-intro {
    padding-top:5px;
  }
  .comparison-table th,.comparison-table td {
    padding:14px;
  }
  .comparison-table th:first-child {
    width:115px;
  }
  .comparison-table thead img {
    height:150px;
  }
}
@media(min-width:481px) and (max-width:760px) {
  .comparison-shelf {
    order:1;
  }
}
@media(max-width:480px) {
  .grid {
    grid-template-columns:1fr;
  }
  .product-copy {
    padding:20px 21px 0;
  }
  .product-bottom {
    flex-wrap:nowrap;
    font-size:14px;
  }
  .product-bottom a {
    border-left:1px solid var(--line);
    padding-left:18px;
  }
  .specs {
    font-size:14px;
  }
  .price {
    font-size:18px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  * {
    transition:none!important;
  }
}
