:root {
  --black: #0b0b0b;
  --charcoal: #181818;
  --ivory: #f5f1e8;
  --white: #fcfaf6;
  --gold: #b89a5a;
  --grey: #8a8a8a;
  --line: rgba(11, 11, 11, .12);
  --shadow: 0 24px 60px rgba(11, 11, 11, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  line-height: 1.45;
  overflow-x: hidden;
  padding-top: 94px;
  position: relative;
  width: 100%;
}
body::before {
  background:
    radial-gradient(circle at 18% 10%, rgba(184,154,90,.10), transparent 28%),
    linear-gradient(180deg, rgba(245,241,232,.42), transparent 360px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
a,
button,
select,
input,
summary,
.product-carousel {
  touch-action: manipulation;
}
.skip-link {
  background: var(--black);
  color: var(--white);
  left: 12px;
  padding: 10px 12px;
  position: absolute;
  top: -60px;
  z-index: 20;
}
.skip-link:focus { top: 12px; }
.top-bar {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateZ(0);
  z-index: 100;
}
.announcement {
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .02em;
  padding: 9px 12px;
  text-align: center;
}
.site-header {
  align-items: center;
  background: rgba(252, 250, 246, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 11, 11, .08);
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 59px;
  padding: 8px 10px;
}
.discount-marquee {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex: 0 0 auto;
  gap: 0;
  height: 28px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: 100%;
  z-index: 2;
}
.discount-marquee-track {
  animation: discount-marquee 36s linear infinite;
  display: flex;
  flex: 0 0 auto;
  gap: 34px;
  min-width: max-content;
  padding-right: 34px;
  width: max-content;
}
.discount-marquee span {
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
@keyframes discount-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.brand {
  font-family: var(--serif);
  font-size: clamp(20px, 6vw, 24px);
  grid-column: 1;
  grid-row: 1;
  line-height: 1;
}
.desktop-nav {
  display: flex;
  font-size: clamp(9px, 2.85vw, 11px);
  font-weight: 900;
  gap: clamp(7px, 2.2vw, 10px);
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
  letter-spacing: .02em;
  line-height: 1;
  min-width: 0;
  text-align: center;
  text-transform: uppercase;
}
.desktop-nav a {
  align-items: center;
  display: inline-flex;
  min-height: 40px;
  white-space: nowrap;
}
.header-actions {
  align-items: center;
  display: flex;
  gap: 8px;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}
.language-picker {
  align-items: center;
  display: inline-flex;
  gap: 3px;
  justify-content: center;
  min-height: 34px;
  min-width: 44px;
  padding: 0;
  position: relative;
}
.language-picker span[data-i18n] {
  color: var(--grey);
  display: none;
  font-size: 12px;
  font-weight: 800;
}
.language-picker select {
  appearance: none;
  background: transparent;
  border: 0;
  color: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  inset: 0;
  min-height: 34px;
  min-width: 44px;
  opacity: 0;
  outline: 0;
  padding: 0;
  position: absolute;
  z-index: 2;
}
.language-picker select option {
  background: #fff;
  color: var(--black);
  font: 500 14px/1.3 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.language-current {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.language-arrow {
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  margin-top: -3px;
}
.icon-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 12px;
}
.hero {
  display: grid;
  min-height: 76svh;
  position: relative;
}
.hero picture,
.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 62% center;
  position: absolute;
  width: 100%;
}
.hero::after {
  background: linear-gradient(180deg, rgba(11,11,11,.06), rgba(11,11,11,.18) 40%, rgba(11,11,11,.72));
  content: "";
  inset: 0;
  position: absolute;
}
.hero-copy {
  align-self: end;
  color: var(--white);
  padding: 118px 16px 28px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}
h1 { font-size: clamp(46px, 15vw, 82px); max-width: 9ch; }
h2 { font-size: clamp(34px, 10vw, 58px); }
h3 { font-size: 30px; }
p { color: rgba(11,11,11,.70); margin: 0; }
.hero p:not(.eyebrow) {
  color: rgba(252,250,246,.82);
  font-size: 16px;
  margin-top: 14px;
  max-width: 460px;
}
.button-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.button {
  align-items: center;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 7px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { box-shadow: 0 14px 30px rgba(11,11,11,.14); transform: translateY(-1px); }
.button:disabled,
.button.is-disabled {
  box-shadow: none;
  cursor: not-allowed;
  opacity: .42;
  transform: none;
}
.button:disabled:hover,
.button.is-disabled:hover {
  box-shadow: none;
  transform: none;
}
.button-secondary {
  background: rgba(252,250,246,.08);
  border-color: rgba(252,250,246,.48);
}
.button-secondary-dark {
  background: transparent;
  border-color: rgba(11,11,11,.20);
  color: var(--black);
}
.button.small {
  min-height: 48px;
  padding: 12px 16px;
}
.shop-section,
.product-detail,
.compare,
.editorial,
.faq,
.feature-strip {
  padding: 48px 16px;
}
.section-heading {
  margin-bottom: 22px;
}
.section-heading p:not(.eyebrow) {
  margin-top: 10px;
  max-width: 620px;
}
.product-grid {
  align-items: stretch;
  display: grid;
  gap: 14px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover {
  border-color: rgba(184,154,90,.35);
  box-shadow: 0 18px 44px rgba(11,11,11,.10);
  transform: translateY(-3px);
}
.product-card-media {
  aspect-ratio: 4 / 3.25;
  background: var(--ivory);
  display: block;
  overflow: hidden;
  position: relative;
}
.product-card-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.product-card-media > img {
  transition: transform .45s ease;
}
.product-card:hover .product-card-media > img { transform: scale(1.035); }
.product-card-carousel .carousel-viewport {
  border-radius: 0;
  clip-path: none;
  height: 100%;
}
.product-card-carousel .carousel-slide {
  aspect-ratio: 4 / 3.25;
}
.product-card-carousel .carousel-slide img {
  transform: scale(1.03);
}
.product-card:hover .product-card-carousel .carousel-slide.is-active img,
.product-card-carousel:hover .carousel-slide.is-active img {
  transform: scale(1.075);
}
.product-card-carousel .carousel-arrow {
  font-size: 30px;
  height: 38px;
  width: 38px;
}
.product-card-carousel .carousel-arrow-prev { left: 10px; }
.product-card-carousel .carousel-arrow-next { right: 10px; }
.product-card-carousel .carousel-dots {
  bottom: 10px;
  left: 0;
  margin-top: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}
.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}
.product-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.product-card-body p:not(.product-label) {
  margin-top: 8px;
}
.product-card-body .lead {
  font-size: 16px;
  line-height: 1.35;
}
.color-picker {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}
.color-picker > span {
  color: #5f5a50;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-option {
  align-items: center;
  background: rgba(252,250,246,.82);
  border: 1px solid rgba(11,11,11,.14);
  border-radius: 999px;
  color: var(--black);
  cursor: pointer;
  display: inline-flex;
  font: 900 13px/1 var(--sans);
  gap: 8px;
  min-height: 38px;
  padding: 7px 13px 7px 8px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.color-option:hover,
.color-option:focus-visible {
  border-color: rgba(11,11,11,.36);
  transform: translateY(-1px);
}
.color-option.is-active {
  border-color: rgba(11,11,11,.72);
  box-shadow: 0 0 0 3px rgba(184,154,90,.18);
}
.color-swatch {
  border: 1px solid rgba(11,11,11,.18);
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  width: 20px;
}
.color-swatch-white {
  background: linear-gradient(135deg, #fff, #e8e8e2);
}
.color-swatch-blue {
  background: #17294f;
}
.compact-list {
  gap: 7px;
  margin-top: 12px;
}
.compact-list li {
  color: #5c564d;
  font-size: 14px;
}
.delivery-note {
  color: #5f5a50;
  font-size: 13px;
  font-weight: 850;
}
.product-card-body .delivery-note {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}
.product-card-body .delivery-note::before,
.purchase-panel .delivery-note::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 6px;
  width: 6px;
}
.purchase-panel .delivery-note {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}
.buy-line,
.purchase-panel {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.buy-line {
  margin-top: auto;
  padding-top: 16px;
}
.product-card .buy-line {
  align-items: stretch;
  flex-direction: column;
}
.card-actions,
.purchase-actions {
  display: grid;
  gap: 8px;
}
.card-actions {
  grid-template-columns: 1fr;
  min-width: 164px;
}
.card-actions .button {
  width: 100%;
}
.purchase-actions {
  width: 100%;
}
.product-card-pack {
  border-color: rgba(184,154,90,.42);
  box-shadow: 0 14px 36px rgba(184,154,90,.12);
}
.product-card-pack .product-label {
  color: #8d6d27;
}
.price {
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}
.price-stack {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.old-price {
  color: #8d887e;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.discount-badge {
  align-items: center;
  background: rgba(184,154,90,.14);
  border: 1px solid rgba(184,154,90,.35);
  border-radius: 999px;
  color: #7d642f;
  display: inline-flex;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .02em;
  line-height: 1;
  padding: 6px 8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.feature-strip {
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 1px;
  padding: 0;
}
.feature-strip div {
  background: var(--charcoal);
  display: grid;
  gap: 4px;
  padding: 18px 16px;
  position: relative;
}
.feature-strip div::before {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 4px;
  left: 16px;
  position: absolute;
  top: 0;
  width: 44px;
}
.feature-strip span {
  color: rgba(252,250,246,.68);
  font-size: 14px;
}
.product-detail {
  display: grid;
  gap: 24px;
  overflow: hidden;
}
.product-carousel {
  position: relative;
}
.carousel-viewport {
  border-radius: 14px;
  clip-path: inset(0 round 14px);
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transform: translateX(calc(var(--index, 0) * -100%));
  transition: transform .28s ease;
}
.carousel-slide {
  aspect-ratio: 4 / 5;
  background: var(--ivory);
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.carousel-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transition: transform 1.1s cubic-bezier(.2,.78,.2,1);
  width: 100%;
}
.product-detail.is-visible .carousel-slide.is-active img {
  transform: scale(1.015);
}
.product-carousel:hover .carousel-slide.is-active img {
  transform: scale(1.075);
}
.placeholder-slide {
  align-items: center;
  background:
    linear-gradient(145deg, #fff, #f1ece2);
  border: 1px solid rgba(11,11,11,.08);
  display: flex;
  justify-content: center;
}
.placeholder-slide span {
  border: 1px solid rgba(11,11,11,.15);
  border-radius: 999px;
  color: rgba(11,11,11,.42);
  font-family: var(--serif);
  font-size: 24px;
  padding: 12px 18px;
}
.carousel-arrow {
  align-items: center;
  background: rgba(252,250,246,.94);
  border: 1px solid rgba(11,11,11,.12);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(11,11,11,.12);
  color: var(--black);
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  font-size: 38px;
  height: 52px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  z-index: 2;
}
.carousel-arrow-prev { left: 10px; }
.carousel-arrow-next { right: 10px; }
.carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.carousel-dot {
  background: rgba(11,11,11,.20);
  border-radius: 999px;
  height: 6px;
  transition: width .2s ease, background .2s ease;
  width: 6px;
}
.carousel-dot.is-active {
  background: var(--gold);
  width: 22px;
}
.lead {
  color: var(--black);
  font-size: 19px;
  margin-top: 12px;
}
.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.check-list li {
  color: rgba(11,11,11,.72);
  display: flex;
  gap: 8px;
}
.check-list li::before {
  color: var(--gold);
  content: "•";
  font-size: 20px;
  line-height: 1;
}
.purchase-panel {
  background: var(--ivory);
  border: 1px solid rgba(184,154,90,.28);
  border-radius: 12px;
  display: grid;
  gap: 12px;
  padding: 14px;
}
.compare {
  background: var(--ivory);
}
.compare-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.compare-table div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.compare-table span,
.compare-table strong {
  border-bottom: 1px solid var(--line);
  color: rgba(11,11,11,.72);
  font-size: 13px;
  padding: 12px 10px;
}
.compare-table strong,
.compare-table span:first-child {
  color: var(--black);
}
.editorial {
  display: grid;
  gap: 20px;
}
.editorial img {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}
.editorial p:not(.eyebrow) {
  margin-top: 12px;
}
.reviews {
  padding: 52px 16px;
}
.rating-summary {
  align-items: center;
  background: var(--black);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 18px 0;
  padding: 16px;
}
.rating-summary strong {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}
.stars {
  color: var(--gold);
  letter-spacing: .08em;
}
.reviews-grid {
  display: flex;
  gap: 12px;
  margin-left: -16px;
  margin-right: -16px;
  overflow-x: auto;
  padding: 2px 16px 14px;
  scroll-padding-left: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.reviews-grid::-webkit-scrollbar {
  display: none;
}
.review-card {
  background: #fff;
  border: 1px solid rgba(11,11,11,.10);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(11,11,11,.05);
  display: grid;
  flex: 0 0 min(78vw, 320px);
  gap: 8px;
  padding: 16px;
  scroll-snap-align: start;
}
.review-card header {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.review-card strong {
  font-size: 14px;
  font-weight: 950;
}
.review-card p {
  color: #4d4d4d;
  font-size: 14px;
  margin: 0;
}
.review-form {
  background: var(--ivory);
  border: 1px solid rgba(184,154,90,.28);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
}
.review-form h3 {
  font-family: var(--sans);
  font-size: 18px;
}
.review-fields {
  display: grid;
  gap: 12px;
}
.review-form label {
  color: #4d4d4d;
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 6px;
}
.review-form input,
.review-form select,
.review-form textarea {
  background: #fff;
  border: 1px solid rgba(11,11,11,.14);
  border-radius: 7px;
  color: var(--black);
  font: inherit;
  min-height: 48px;
  padding: 12px;
  width: 100%;
}
.review-form textarea {
  min-height: 104px;
  resize: vertical;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
}
.faq details p {
  margin-top: 10px;
}
.legal-hub {
  padding: 52px 16px 80px;
}
.legal-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.legal-card {
  background: #fff;
  border: 1px solid rgba(11,11,11,.10);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(11,11,11,.05);
  padding: 18px;
}
.legal-card summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 950;
  gap: 12px;
  justify-content: space-between;
  letter-spacing: .01em;
  list-style: none;
  min-height: 34px;
}
.legal-card summary::-webkit-details-marker {
  display: none;
}
.legal-card summary::after {
  border: 1px solid rgba(11,11,11,.15);
  border-radius: 999px;
  color: var(--grey);
  content: "+";
  display: grid;
  flex: 0 0 28px;
  height: 28px;
  place-items: center;
  width: 28px;
}
.legal-card[open] summary {
  margin-bottom: 12px;
}
.legal-card[open] summary::after {
  content: "-";
}
.legal-card p {
  color: #4d4d4d;
  font-size: 14px;
  margin: 0 0 10px;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card strong {
  color: var(--black);
}
.site-footer {
  align-items: center;
  background: var(--black);
  color: rgba(252,250,246,.78);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 800;
  gap: 10px 16px;
  justify-content: center;
  padding: 24px 16px calc(100px + env(safe-area-inset-bottom));
}
.site-footer a {
  min-height: 34px;
  padding: 8px 0;
}
.toast {
  background: var(--black);
  border: 1px solid rgba(184,154,90,.42);
  border-radius: 999px;
  bottom: 86px;
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  left: 16px;
  max-width: calc(100vw - 32px);
  opacity: 0;
  padding: 12px 16px;
  pointer-events: none;
  position: fixed;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
  white-space: nowrap;
  z-index: 40;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 760px) {
  body {
    padding-top: 110px;
  }
  .top-bar {
    position: fixed;
    top: 0;
    z-index: 100;
  }
  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    padding: 12px 24px;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .desktop-nav {
    gap: 22px;
    grid-column: 2;
    grid-row: 1;
    font-size: 14px;
    font-weight: 800;
  }
  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }
  .hero-copy,
  .shop-section,
  .product-detail,
  .compare,
  .editorial,
  .faq,
  .legal-hub {
    padding-left: max(32px, calc((100vw - 1160px) / 2));
    padding-right: max(32px, calc((100vw - 1160px) / 2));
  }
  .button-row { flex-direction: row; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
  .product-detail {
    align-items: center;
    grid-template-columns: 1.08fr .92fr;
  }
  .product-detail-alt .gallery { order: 2; }
  .product-detail-alt .product-carousel { order: 2; }
  .purchase-actions { grid-template-columns: 1fr 1fr; }
  .editorial {
    align-items: center;
    grid-template-columns: .9fr 1fr;
  }
  .editorial img { aspect-ratio: 16 / 10; }
  .reviews {
    padding-left: max(32px, calc((100vw - 1160px) / 2));
    padding-right: max(32px, calc((100vw - 1160px) / 2));
  }
  .reviews-grid {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    scroll-padding-left: 0;
  }
  .review-card {
    flex-basis: 280px;
  }
  .review-fields {
    grid-template-columns: 1fr 220px;
  }
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer {
    padding-bottom: 24px;
  }
}
