:root {
  --black: #030303;
  --white: #ffffff;
  --green: #b7ee75;
  --acid: #f2ff63;
  --purple: #b947e5;
  --grey: #b8b8b8;
  --soft: #f4f4f0;
  --header-pad-x: 5rem;
  --header-pad-y: 2.35rem;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--white);
  color: var(--black);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  overflow-x: hidden;
}

button,
a,
input {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

a {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

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

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 0;
  padding: var(--header-pad-y) var(--header-pad-x);
  color: var(--black);
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  grid-column: 1;
  grid-row: 1;
  width: max-content;
  font-size: 3.4rem;
  line-height: 0.78;
  font-weight: 950;
  letter-spacing: 0;
}

.main-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  font-size: 1.08rem;
  line-height: 1;
  padding: 0 4em;
}

.main-nav button {
  position: relative;
  padding-bottom: 0.38rem;
  white-space: nowrap;
}

.main-nav button.is-active::after,
.main-nav button:hover::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.1rem;
  content: '';
  background: currentColor;
}

.menu-toggle {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  position: relative;
  display: none;
  width: 2.35rem;
  height: 2.35rem;
}

.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  height: 0.18rem;
  content: '';
  background: currentColor;
}

.menu-toggle::before {
  top: 0.8rem;
}

.menu-toggle::after {
  bottom: 0.8rem;
}

.view {
  display: none;
  min-height: 100vh;
}

.view.is-active {
  display: block;
}

.split-view {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--green);
}

.split-view.is-active {
  display: grid;
}

.split-media {
  min-height: 100vh;
  background: var(--soft);
}

.split-media img,
.order-photo img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
}

.split-copy {
  min-height: 100vh;
  padding: 12.4rem 6rem 8rem;
  background: var(--green);
}

.eyebrow,
.product-title p,
.side-taxonomy,
.catalog-toolbar h3,
.mega-column p {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1;
  text-transform: uppercase;
}

.range-list {
  display: grid;
  gap: 0.55rem;
  max-width: 45rem;
  margin-top: 1.1rem;
}

.range-list button {
  display: block;
  font-size: 3.85rem;
  line-height: 1.04;
}

.range-list button:first-child {
  color: var(--white);
}

.split-cta {
  margin-top: 6.7rem;
}

.split-cta span {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.split-cta button {
  font-size: 3rem;
  line-height: 1.05;
}

.home-view {
  background: var(--white);
}

body[data-route='ranges'] .brand {
  color: var(--white);
}

body[data-route='ranges'] .main-nav {
  color: var(--black);
}

body[data-route='ranges'] .site-header {
  background: transparent;
  backdrop-filter: none;
}

body[data-route='ranges'] .hold-finder.floating {
  display: none;
}

body[data-route='ranges'] .main-nav button.is-active::after {
  display: none;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 72vh;
  min-height: 72vh;
  background: var(--black);
}

.home-feature {
  position: relative;
  height: 100%;
  min-height: 72vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.home-feature img {
  width: 100%;
  height: 100%;
  min-height: 72vh;
  object-fit: cover;
  transition: transform 420ms ease;
}

.home-feature::after,
.home-hero::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
  pointer-events: none;
  z-index: 1;
}

.home-feature:hover img {
  transform: scale(1.025);
}

.home-feature button {
  position: absolute;
  z-index: 2;
  left: 5rem;
  bottom: 4.6rem;
  color: var(--white);
  font-size: 3rem;
  line-height: 1;
}

.home-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.home-hero img {
  width: 100%;
  height: 88vh;
  min-height: 42rem;
  object-fit: cover;
  object-position: center;
}

.home-hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.28));
}

.home-hero-copy {
  position: absolute;
  z-index: 2;
  left: 4.6rem;
  right: 4.6rem;
  top: 48%;
  color: var(--white);
  text-align: center;
  transform: translateY(-50%);
}

.home-hero-copy h1 {
  margin: 0;
  font-size: 12.8rem;
  line-height: 0.88;
  white-space: nowrap;
}

.home-hero-copy p {
  margin: 2.1rem 0 0;
  font-size: 2.45rem;
  line-height: 1;
}

.home-story-strip {
  position: relative;
  display: grid;
  min-height: 34rem;
  grid-template-columns: 1fr 18rem 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 5.8rem 5rem 7rem;
  background: var(--white);
  color: #b9b9b9;
}

.home-story-strip h2 {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.05;
}

.home-story-strip img {
  grid-column: 2;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}

.home-story-strip p {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.home-ranges-menu {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: 2rem;
  min-height: 52rem;
  padding: 5rem;
  overflow: hidden;
  background: var(--grey);
  color: var(--black);
}

.home-ranges-menu div {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  justify-items: start;
}

.home-ranges-menu p {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  line-height: 1;
}

.home-ranges-menu button {
  display: block;
  font-size: 5.7rem;
  line-height: 0.9;
}

.home-ranges-menu div:first-child button:first-of-type {
  color: var(--acid);
}

.home-ranges-menu img {
  position: absolute;
  z-index: 1;
  top: 6rem;
  left: 27%;
  width: min(48rem, 46vw);
  transform: rotate(2deg);
}

.home-ranges-cta {
  position: absolute;
  left: 5rem;
  right: 5rem;
  bottom: 3.4rem;
  z-index: 2;
  max-width: 92rem;
  color: var(--white);
  font-size: 4rem !important;
  line-height: 0.98 !important;
}

.home-camemberts {
  position: relative;
  min-height: 48rem;
  overflow: hidden;
  background: var(--white);
}

.home-camemberts img {
  width: 100%;
  height: 48rem;
  object-fit: cover;
  object-position: center;
}

.home-camemberts h2 {
  position: absolute;
  left: 4rem;
  right: 4rem;
  top: 38%;
  margin: 0;
  font-size: 9.6rem;
  line-height: 0.9;
  text-align: center;
}

.home-camemberts p {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 4rem;
  margin: 0;
  text-align: center;
  font-size: 1.35rem;
}

.mega-panel {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--black);
  background: var(--acid);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.mega-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-photo {
  min-height: 100vh;
  background: var(--white);
}

.mega-photo img {
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
}

.mega-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 4.2rem;
  padding: 12.1rem 6rem 7rem;
}

.mega-column {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.mega-column h2 {
  margin: 0 0 2rem;
  font-size: 3.8rem;
  line-height: 1;
}

.mega-column button {
  display: block;
  margin: 0 0 0.42rem;
  font-size: 1.45rem;
  line-height: 1.08;
}

.mega-column .muted,
.product-side .muted {
  color: #9f9f87;
}

.mega-stack {
  gap: 7rem;
}

.mobile-drawer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 1.35rem;
  color: var(--black);
  background: var(--acid);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-drawer > button:not(.drawer-close) {
  font-size: 2.15rem;
  line-height: 1;
}

.drawer-close {
  align-self: flex-end;
  font-size: 0.78rem;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.drawer-group {
  display: grid;
  gap: 0.45rem;
  margin-top: auto;
}

.drawer-group span {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.drawer-group button {
  font-size: 1.35rem;
}

.categories-view {
  background: var(--white);
}

.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.range-tile {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
  background: var(--white);
}

.range-tile img {
  height: 100%;
  min-height: 50vh;
  object-fit: cover;
  transition: transform 420ms ease;
}

.range-tile:hover img {
  transform: scale(1.035);
}

.range-tile button {
  position: absolute;
  left: 4.6rem;
  bottom: 4rem;
  max-width: calc(100% - 9rem);
  font-size: 2.3rem;
  line-height: 0.98;
}

.range-tile.light button {
  color: var(--white);
}

.catalog-view {
  background: var(--white);
}

.catalog-toolbar {
  min-height: 30rem;
  padding: 12.5rem 5rem 4rem;
  background: var(--acid);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 4.4rem;
  margin-left: 39%;
}

.filter-grid div {
  display: grid;
  align-content: start;
  gap: 0.38rem;
}

.filter-grid h3 {
  margin-bottom: 1.4rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.filter-grid button {
  font-size: 1.13rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 5.8rem;
  padding: 5.4rem 5rem 7rem;
}

.product-card {
  display: grid;
  gap: 1.8rem;
  cursor: pointer;
}

.product-card img {
  height: 18.5rem;
  object-fit: contain;
}

.product-card div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.2rem;
  font-size: 0.68rem;
  line-height: 1.28;
  text-transform: uppercase;
}

.product-card p,
.product-card h2 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.product-view {
  min-height: 100vh;
  padding-right: 27rem;
  background: var(--white);
}

.product-main {
  padding: 11.8rem 5rem 7rem;
}

.product-side {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 27rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 12.6rem 3.2rem 3rem;
  background: var(--acid);
}

.product-side button {
  font-size: 2.9rem;
  line-height: 1.24;
}

.side-taxonomy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #9f9f87;
}

.product-hero {
  position: relative;
  display: grid;
  min-height: 43rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.product-title {
  align-self: start;
}

.product-title h1 {
  max-width: 45rem;
  margin: 0;
  font-size: 3.2rem;
  line-height: 1;
}

.product-hero img {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
  align-self: center;
  justify-self: center;
}

.round-badge {
  position: absolute;
  z-index: 1;
  top: 16.8rem;
  left: min(33rem, 58%);
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  text-align: center;
}

.product-info {
  display: grid;
  grid-template-columns: 17rem minmax(20rem, 38rem);
  gap: 3.8rem;
  margin-top: 2rem;
  align-items: start;
}

.product-info dl {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-info dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-info dt,
.product-info dd {
  margin: 0;
}

.product-info p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.24;
}

.product-info a {
  align-self: end;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 6.5rem;
  margin-left: 49%;
}

.related-products h2 {
  grid-column: 1 / -1;
  margin: 0 0 1rem;
  font-size: 1.85rem;
  line-height: 1.05;
}

.related-products article {
  display: grid;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.related-products img {
  height: 9rem;
  object-fit: contain;
}

.story-view {
  background: var(--green);
  color: var(--white);
}

.story-canvas {
  position: relative;
  min-height: 118rem;
  padding: 18rem 5rem 8rem;
  overflow: hidden;
}

.story-canvas h1 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.05;
}

.story-lead,
.story-copy {
  position: relative;
  z-index: 2;
  max-width: 54rem;
  margin: 7rem auto 0;
  font-size: 2.35rem;
  line-height: 1.28;
}

.story-copy {
  margin-top: 31rem;
}

.story-img {
  position: absolute;
  z-index: 1;
  object-fit: cover;
}

.story-img.one {
  top: 14.5rem;
  left: 43%;
  width: 15rem;
}

.story-img.two {
  top: 23rem;
  right: 5rem;
  width: 27rem;
  height: 42rem;
}

.story-img.three {
  top: 62rem;
  left: 31%;
  width: 44rem;
  height: 25rem;
}

.story-img.four {
  top: 58rem;
  left: 2rem;
  width: 24rem;
  height: 16rem;
}

.story-canvas > button {
  position: absolute;
  left: 5rem;
  bottom: 5rem;
  color: var(--black);
  font-size: 1.15rem;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.order-view {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--purple);
}

.order-view.is-active {
  display: grid;
}

.order-photo {
  min-height: 100vh;
  background: var(--soft);
}

.order-content {
  min-height: 100vh;
  padding: 12.2rem 5rem 5rem;
  background: var(--purple);
}

.order-columns {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5.8rem;
}

.order-columns h1 {
  margin: 0 0 4.8rem;
  font-size: 3rem;
  line-height: 1;
}

.country-list,
.order-links {
  display: grid;
  gap: 0.9rem;
}

.country-list button,
.order-links a {
  font-size: 1.25rem;
  line-height: 1.1;
  text-decoration: none;
}

.order-links h1:not(:first-child) {
  margin-top: 3.7rem;
}

.hold-finder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 19.5rem;
  min-height: 3rem;
  padding: 0.6rem 1.1rem 0.55rem 1.5rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.05);
}

.hold-finder i {
  position: relative;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  border: 0.22rem solid currentColor;
  border-radius: 50%;
}

.hold-finder i::after {
  position: absolute;
  right: -0.48rem;
  bottom: -0.4rem;
  width: 0.72rem;
  height: 0.24rem;
  content: '';
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.hold-finder.floating {
  position: fixed;
  z-index: 60;
  right: 5rem;
  bottom: 2.7rem;
}

body[data-route='catalog'] .hold-finder.floating {
  display: none;
}

.hold-finder.floating {
  display: none;
}

.catalog-toolbar .hold-finder {
  float: left;
  margin-top: 0.2rem;
}

.search-dialog {
  width: min(42rem, calc(100vw - 2rem));
  border: 0;
  padding: 1.35rem;
  color: var(--black);
  background: var(--white);
  box-shadow: 0 1.8rem 6rem rgba(0, 0, 0, 0.24);
}

.search-dialog::backdrop {
  background: rgba(0, 0, 0, 0.32);
}

.search-dialog label {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.search-dialog label span {
  font-size: 2.8rem;
  line-height: 1;
}

.search-dialog input {
  width: 100%;
  border: 0;
  border-bottom: 0.14rem solid var(--black);
  padding: 0.9rem 0;
  outline: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.search-results {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.7rem;
}

.search-results button {
  padding: 0.7rem 0;
  border-bottom: 0.08rem solid #d7d7d7;
}

.type-demo-controls {
  position: fixed;
  z-index: 120;
  right: 1.2rem;
  top: 50%;
  display: grid;
  gap: 0.6rem;
  width: 5.2rem;
  transform: translateY(-50%);
}

.type-demo-controls button {
  display: grid;
  width: 5.2rem;
  height: 5.2rem;
  place-items: center;
  border: 0.16rem solid var(--black);
  border-radius: 50%;
  background: #ff1d1d;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  text-align: center;
  box-shadow: 0 0.35rem 1.1rem rgba(0, 0, 0, 0.22);
}

.type-demo-controls output {
  display: grid;
  min-height: 2rem;
  place-items: center;
  border-radius: 999px;
  background: #ff1d1d;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1;
  text-align: center;
}

@media (max-width: 1360px) {
  :root {
    --header-pad-x: 2rem;
  }

  .split-copy,
  .order-content,
  .product-main {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .range-list button {
    font-size: 3.1rem;
  }

  .filter-grid {
    margin-left: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .product-view {
    padding-right: 21rem;
  }

  .product-side {
    width: 21rem;
  }

  .product-side button {
    font-size: 2.1rem;
  }

  .related-products {
    margin-left: 0;
  }

  .home-feature button {
    left: 3.6rem;
    bottom: 3.8rem;
    font-size: 2.55rem;
  }

  .home-hero-copy h1 {
    font-size: 8.2rem;
  }

  .home-hero-copy p {
    font-size: 1.8rem;
  }

  .home-ranges-menu {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .home-ranges-menu button {
    font-size: 4.1rem;
  }

  .home-ranges-cta {
    left: 2rem;
    right: 2rem;
    font-size: 3rem !important;
  }

  .home-camemberts h2 {
    font-size: 7rem;
  }
}

@media (max-width: 860px) {
  :root {
    --header-pad-x: 1.1rem;
    --header-pad-y: 1rem;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
  }

  .brand {
    font-size: 2.15rem;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    top: 1rem;
    right: 1.1rem;
    display: block;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
  }

  .home-feature-grid {
    grid-template-columns: 1fr 1fr;
    height: 36rem;
    min-height: 36rem;
  }

  .home-feature,
  .home-feature img {
    min-height: 36rem;
  }

  .home-feature button {
    left: 1.25rem;
    bottom: 2.15rem;
    font-size: 1.45rem;
  }

  .home-hero {
    min-height: 34rem;
  }

  .home-hero img {
    height: 34rem;
    min-height: 34rem;
  }

  .home-hero-copy {
    left: 1.1rem;
    right: 1.1rem;
    top: 49%;
  }

  .home-hero-copy h1 {
    font-size: 4.6rem;
  }

  .home-hero-copy p {
    margin-top: 0.85rem;
    font-size: 1.35rem;
  }

  .home-story-strip {
    min-height: 31rem;
    grid-template-columns: 1fr 8.5rem;
    gap: 1.35rem;
    padding: 2.6rem 1.1rem 4.4rem;
  }

  .home-story-strip h2 {
    grid-column: 1 / -1;
    font-size: 1.55rem;
  }

  .home-story-strip img {
    grid-column: 2;
    grid-row: 2 / span 2;
  }

  .home-story-strip p {
    font-size: 1rem;
  }

  .home-ranges-menu {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    min-height: 43rem;
    padding: 2rem 1.1rem 8.5rem;
  }

  .home-ranges-menu button {
    font-size: 2.65rem;
  }

  .home-ranges-menu img {
    top: 7.7rem;
    left: auto;
    right: -1.2rem;
    width: 16rem;
  }

  .home-ranges-cta {
    left: 1.1rem;
    right: 1.1rem;
    bottom: 2rem;
    font-size: 1.6rem !important;
    line-height: 1.02 !important;
  }

  .home-camemberts,
  .home-camemberts img {
    min-height: 34rem;
    height: 34rem;
  }

  .home-camemberts h2 {
    left: 1rem;
    right: 1rem;
    font-size: 4rem;
  }

  .home-camemberts p {
    bottom: 2rem;
    font-size: 1rem;
  }

  .split-view,
  .order-view {
    grid-template-columns: 1fr;
  }

  .split-media,
  .order-photo,
  .split-media img,
  .order-photo img {
    min-height: 28rem;
    height: 55vh;
  }

  .split-copy,
  .order-content {
    min-height: auto;
    padding: 5.8rem 1.1rem 14rem;
  }

  .range-list button {
    font-size: 2.7rem;
  }

  .split-cta {
    margin-top: 4rem;
  }

  .split-cta button {
    font-size: 2.05rem;
  }

  .mega-panel {
    display: none;
  }

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

  .range-tile,
  .range-tile img {
    min-height: 32rem;
  }

  .range-tile button {
    left: 1.1rem;
    bottom: 1.25rem;
    max-width: calc(100% - 2.2rem);
    font-size: 2rem;
  }

  .catalog-toolbar {
    min-height: auto;
    padding: 6rem 1.1rem 2rem;
  }

  .catalog-toolbar .hold-finder {
    float: none;
    width: 100%;
    margin: 0 0 2rem;
  }

  .filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.4rem;
  }

  .filter-grid h3 {
    margin-bottom: 0.65rem;
  }

  .filter-grid button {
    font-size: 0.92rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 1.3rem;
    padding: 2.4rem 1.1rem 7rem;
  }

  .product-card img {
    height: 11rem;
  }

  .product-card div {
    grid-template-columns: 1fr;
    font-size: 0.64rem;
  }

  .product-view {
    padding-right: 0;
  }

  .product-side {
    position: static;
    width: auto;
    padding: 5.8rem 1.1rem 2rem;
  }

  .product-side button {
    font-size: 2.4rem;
    line-height: 1.12;
  }

  .product-main {
    padding: 2rem 1.1rem 7rem;
  }

  .product-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .product-title h1 {
    font-size: 2.7rem;
  }

  .product-hero img {
    grid-column: auto;
    grid-row: auto;
    max-height: 25rem;
  }

  .round-badge {
    top: 12rem;
    right: 1.6rem;
    left: auto;
  }

  .product-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .related-products {
    grid-template-columns: 1fr 1fr;
    margin-top: 4rem;
  }

  .related-products h2 {
    font-size: 1.8rem;
  }

  .story-canvas {
    min-height: auto;
    padding: 6rem 1.1rem 7rem;
  }

  .story-canvas h1 {
    color: var(--white);
  }

  .story-lead,
  .story-copy {
    max-width: none;
    margin: 2rem 0;
    font-size: 1.55rem;
    line-height: 1.22;
  }

  .story-img {
    position: static;
    width: 100% !important;
    height: auto !important;
    margin: 1rem 0;
  }

  .story-canvas > button {
    position: static;
    margin-top: 2.2rem;
  }

  .order-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .order-columns h1 {
    margin-bottom: 1.5rem;
    font-size: 2.65rem;
  }

  .country-list {
    grid-template-columns: 1fr 1fr;
  }

  .country-list button,
  .order-links a {
    font-size: 1rem;
  }

  .hold-finder.floating {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 1rem;
  }
}

@media (max-width: 520px) {
  .home-feature-grid,
  .home-feature,
  .home-feature img {
    height: 32rem;
    min-height: 32rem;
  }

  .home-feature button {
    bottom: 1.6rem;
    font-size: 1.18rem;
  }

  .home-hero-copy h1 {
    font-size: 3.85rem;
  }

  .split-media,
  .order-photo,
  .split-media img,
  .order-photo img {
    min-height: 23rem;
    height: 48vh;
  }

  .range-list button {
    font-size: 2.24rem;
  }

  .filter-grid,
  .product-grid,
  .related-products,
  .country-list {
    grid-template-columns: 1fr;
  }

  .product-side button {
    font-size: 2rem;
  }
}

/* Updated responsive demo layer */
body[data-route='ranges'] .brand,
body[data-route='ranges'] .main-nav {
  color: var(--black);
}

.main-nav button[data-route='order'] {
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  margin-top: -1.35rem;
  border: 0.08rem solid var(--black);
  border-radius: 50%;
  background: var(--acid);
  text-align: center;
}

.main-nav button[data-route='order']::after {
  display: none;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.65rem;
  border: 0.08rem solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.home-feature-grid {
  height: 61vh;
  min-height: 40rem;
  gap: 0.38rem;
  padding: 0.38rem;
  background: var(--white);
}

.home-feature,
.home-feature img {
  min-height: 39.25rem;
}

.home-feature-pyramids img {
  object-position: 54% center;
}

.home-feature button {
  color: var(--white);
  text-shadow: 0 0.05rem 0.3rem rgba(0, 0, 0, 0.18);
}

.home-hero {
  min-height: 72vh;
  border-top: 0.38rem solid var(--white);
}

.home-hero img {
  height: 72vh;
  min-height: 40rem;
}

.home-hero-copy {
  top: 54%;
}

.home-hero-copy h1 {
  font-size: 10.4rem;
  text-shadow: 0 0.06rem 0.4rem rgba(0, 0, 0, 0.22);
}

.home-ranges-menu {
  min-height: 44rem;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  background: #9bc9ff;
}

.home-ranges-menu button {
  font-size: 4.7rem;
}

.home-ranges-menu img {
  top: 0;
  left: auto;
  right: 0;
  width: 54%;
  height: 100%;
  opacity: 0.52;
  object-fit: cover;
  transform: none;
}

.home-ranges-kicker {
  position: absolute;
  z-index: 3;
  right: 16%;
  bottom: 10.5rem;
  max-width: 18rem;
  font-size: 1.15rem !important;
  line-height: 1.12 !important;
}

.home-ranges-link {
  position: absolute;
  z-index: 3;
  right: 17%;
  bottom: 5.4rem;
}

.shop-strip {
  display: grid;
  min-height: 4.4rem;
  place-items: center;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--black);
  text-align: center;
}

.shop-strip p {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.08;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.38rem;
  padding: 0.38rem;
  background: var(--white);
}

.news-photo,
.news-copy {
  min-height: 22rem;
  overflow: hidden;
}

.news-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-photo.tall,
.news-copy.feature {
  grid-column: span 2;
  min-height: 32rem;
}

.news-photo.large {
  grid-column: span 2;
  min-height: 44rem;
}

.news-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2.3rem;
  background: var(--acid);
}

.news-copy.blue {
  background: #58a8ff;
}

.news-copy p,
.news-copy h2 {
  margin: 0;
}

.news-copy > p:first-child {
  font-size: 0.72rem;
  text-transform: uppercase;
}

.news-copy h2 {
  max-width: 37rem;
  font-size: 1.55rem;
  line-height: 1.08;
}

.news-copy.feature h2 {
  font-size: 2rem;
}

.news-copy.feature p:not(:first-child) {
  max-width: 30rem;
  margin-top: 2rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.news-copy button {
  margin-top: 2rem;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.home-story-strip {
  display: grid;
  min-height: 31rem;
  grid-template-columns: 1fr;
  padding: 4.6rem 5rem;
  background:
    linear-gradient(90deg, rgba(142, 198, 255, 0.88), rgba(142, 198, 255, 0.68)),
    url('assets/crops/home-sky-base.jpg') center / cover;
  color: var(--black);
}

.home-story-strip div {
  max-width: 57rem;
}

.home-story-strip p,
.home-story-strip h2 {
  margin: 0;
  text-align: left;
}

.home-story-strip p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.home-story-strip h2 {
  font-size: 2.1rem;
  line-height: 1.12;
}

.home-story-strip button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.home-story-strip button span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  text-decoration: none;
}

.home-social {
  padding: 2.4rem 0.38rem 0.38rem;
  background: var(--white);
}

.home-social h2 {
  margin: 0 0 1.6rem 2.4rem;
  font-size: 3rem;
  line-height: 1;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.38rem;
}

.social-grid img {
  height: 22rem;
  object-fit: cover;
}

.range-toolbar {
  display: grid;
  grid-template-columns: 18rem 1fr;
  gap: 4rem;
  padding: 13rem 5rem 2rem;
  background: var(--acid);
}

.range-actions,
.range-taxonomy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 1rem;
}

.range-taxonomy {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.range-taxonomy button {
  font-size: 3.4rem;
  line-height: 1.05;
}

.range-intro {
  display: grid;
  gap: 2rem;
  padding: 1.5rem 5rem 4.5rem;
  background: var(--white);
  text-align: center;
}

.range-intro p,
.range-intro h1,
.range-intro h2 {
  margin: 0;
}

.range-intro p {
  font-size: 1.85rem;
  line-height: 1;
}

.range-intro h1 {
  font-size: 11.5rem;
  line-height: 0.9;
}

.range-intro div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  text-align: left;
}

.range-intro h2 {
  font-size: 2.25rem;
  line-height: 1.08;
}

.catalog-view .product-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4.5rem 3rem;
  padding-top: 2rem;
}

.catalog-view .product-card img {
  height: 14.5rem;
}

.catalog-view .product-card div {
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1.2rem;
  font-size: 0.68rem;
}

.catalog-filters {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 4rem;
  padding: 5rem;
  background: var(--acid);
  border-top: 0.08rem solid var(--black);
}

.catalog-filters h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}

.catalog-filters .filter-grid {
  margin-left: 0;
}

.filter-grid label {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-view {
  padding-right: 0;
  background: var(--white);
}

.range-product-hero {
  display: grid;
  min-height: 41rem;
  align-items: end;
  padding: 10rem 5rem 4rem;
  background:
    linear-gradient(90deg, rgba(88, 168, 255, 0.86), rgba(88, 168, 255, 0.66)),
    url('assets/crops/product-hero-blue.jpg') center / cover;
  color: var(--black);
}

.range-product-hero p,
.range-product-hero h1 {
  margin: 0;
}

.range-product-hero p {
  margin-bottom: 7rem;
  font-size: 0.9rem;
}

.range-product-hero h1 {
  max-width: 62rem;
  font-size: 2.6rem;
  line-height: 1.08;
}

.product-wide-photo {
  width: 100%;
  height: 42rem;
  padding: 0.38rem;
  background: var(--white);
  object-fit: cover;
}

.product-editorial {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  gap: 0.38rem;
  padding: 0.38rem;
  background: var(--white);
}

.product-editorial > * {
  min-height: 24rem;
}

.product-editorial img {
  height: 100%;
  object-fit: cover;
}

.product-claim,
.newsletter-card,
.discover-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
}

.product-claim {
  grid-row: span 2;
  background: var(--acid);
}

.product-claim p,
.product-claim h2,
.newsletter-card p,
.newsletter-card h2,
.discover-card p {
  margin: 0;
}

.product-claim p,
.newsletter-card p,
.discover-card p {
  font-size: 0.82rem;
}

.product-claim h2 {
  max-width: 37rem;
  font-size: 2.1rem;
  line-height: 1.1;
}

.newsletter-card {
  position: relative;
  background: var(--grey);
  color: var(--white);
}

.newsletter-card h2 {
  font-size: 1.7rem;
  line-height: 1.08;
}

.newsletter-card label {
  display: grid;
  gap: 0.25rem;
  font-size: 1.2rem;
}

.newsletter-card input {
  width: 100%;
  border: 0;
  border-bottom: 0.08rem solid rgba(255, 255, 255, 0.55);
  padding: 0.6rem 0;
  background: transparent;
  color: var(--white);
  outline: 0;
}

.newsletter-card button {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 0.75rem;
  text-align: center;
}

.discover-card {
  background: var(--white);
}

.discover-card img {
  height: auto;
  object-fit: contain;
}

.product-editorial .span-two {
  grid-column: span 2;
  min-height: 31rem;
}

.product-gallery-note {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  padding: 5rem;
}

.product-gallery-note p {
  max-width: 43rem;
  margin: 0;
  color: #a5a5a5;
  font-size: 1.35rem;
  line-height: 1.2;
}

.product-gallery-note div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.38rem;
}

.product-gallery-note img {
  height: 18rem;
  object-fit: cover;
}

.catalogue-cta {
  min-height: 26rem;
  display: grid;
  place-items: center;
  padding: 4rem 2rem;
  background:
    linear-gradient(rgba(142, 198, 255, 0.66), rgba(142, 198, 255, 0.66)),
    url('assets/crops/home-sky-base.jpg') center / cover;
}

.catalogue-cta button {
  max-width: 78rem;
  padding: 0.35rem 2.2rem 0.8rem;
  border: 0.08rem solid var(--black);
  border-radius: 999px;
  background: var(--white);
  font-size: 5.3rem;
  line-height: 0.94;
  text-align: center;
}

.order-view {
  background: var(--acid);
}

.order-view.is-active {
  display: block;
}

.order-resources {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem;
  padding: 13rem 5rem 5rem;
  background: var(--acid);
  border-bottom: 0.08rem solid var(--black);
}

.order-resources h1 {
  margin: 0 0 3rem;
  font-size: 3.8rem;
  line-height: 1;
}

.order-resources a {
  display: block;
  margin-bottom: 1.15rem;
  font-size: 1.35rem;
  line-height: 1.1;
  text-decoration: none;
}

.order-resources h1 a {
  display: inline;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.distributors-panel {
  min-height: 70vh;
  padding: 5rem;
  background:
    linear-gradient(rgba(142, 198, 255, 0.72), rgba(142, 198, 255, 0.72)),
    url('assets/crops/tile-camemberts.jpg') center / cover;
}

.distributors-panel > h1 {
  margin: 0 0 3rem;
  font-size: 4rem;
  line-height: 1;
}

.distributor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 7rem;
}

.distributor-grid article p,
.distributor-grid article h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.08;
}

.distributor-grid article > p:first-child {
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 10rem 1fr 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
  min-height: 7rem;
  padding: 1rem 5rem 1.6rem;
  background: #b8b8b8;
  color: var(--black);
  font-size: 0.72rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.site-footer button,
.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 0.35rem;
  text-decoration: none;
}

.site-footer button {
  padding-left: 2rem;
}

@media (max-width: 1360px) {
  .home-hero-copy h1 {
    font-size: 7.8rem;
  }

  .home-ranges-menu button {
    font-size: 3.6rem;
  }

  .range-toolbar,
  .range-intro,
  .catalog-filters,
  .range-product-hero,
  .product-gallery-note,
  .order-resources,
  .distributors-panel,
  .site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .range-intro h1 {
    font-size: 8rem;
  }

  .catalog-view .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .catalogue-cta button {
    font-size: 3.8rem;
  }
}

@media (max-width: 860px) {
  body[data-route='ranges'] .site-header {
    background: rgba(255, 255, 255, 0.82);
  }

  .main-nav button[data-route='order'] {
    display: none;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .home-feature-pyramids {
    display: none;
  }

  .home-feature,
  .home-feature img {
    height: 30rem;
    min-height: 30rem;
  }

  .home-feature button {
    left: 1.3rem;
    right: 1.3rem;
    bottom: 10rem;
    font-size: 3rem;
    text-align: center;
  }

  .home-hero,
  .home-hero img {
    min-height: 29rem;
    height: 29rem;
  }

  .home-hero-copy h1 {
    font-size: 3.8rem;
    white-space: normal;
  }

  .home-ranges-menu {
    grid-template-columns: 1fr;
    min-height: 35rem;
    padding: 2rem 1.1rem 6rem;
    text-align: center;
  }

  .home-ranges-menu div {
    justify-items: center;
  }

  .home-ranges-menu button {
    font-size: 2.7rem;
  }

  .home-ranges-menu img {
    left: 0;
    width: 100%;
    opacity: 0.44;
  }

  .home-ranges-kicker {
    display: none;
  }

  .home-ranges-link {
    right: 50%;
    bottom: 1.7rem;
    transform: translateX(50%);
  }

  .shop-strip {
    min-height: 3.6rem;
    padding: 0.75rem 1rem;
  }

  .shop-strip p {
    font-size: 1.15rem;
  }

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

  .news-photo,
  .news-copy,
  .news-photo.tall,
  .news-copy.feature,
  .news-photo.large {
    grid-column: auto;
    min-height: 17rem;
  }

  .news-copy {
    padding: 1.2rem;
  }

  .news-copy h2,
  .news-copy.feature h2 {
    font-size: 1rem;
  }

  .news-copy.feature p:not(:first-child) {
    display: none;
  }

  .home-story-strip {
    min-height: 27rem;
    padding: 3rem 1.1rem;
  }

  .home-story-strip h2 {
    font-size: 1.3rem;
  }

  .home-social {
    padding-top: 1.6rem;
  }

  .home-social h2 {
    margin-left: 1.1rem;
    font-size: 1.45rem;
  }

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

  .social-grid img {
    height: 8rem;
  }

  .range-toolbar {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 6.2rem 1.1rem 2rem;
  }

  .range-actions {
    grid-template-columns: 1fr;
    justify-items: start;
    max-width: 14.5rem;
  }

  .range-actions .pill-link {
    width: 100%;
    min-height: 2.65rem;
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 0.78rem;
  }

  .range-taxonomy {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .range-taxonomy button {
    font-size: 2.6rem;
  }

  .range-intro {
    padding: 2rem 1.1rem 3rem;
    overflow: hidden;
  }

  .range-intro h1 {
    max-width: 100%;
    min-width: 0;
    font-size: 2.85rem;
    line-height: 0.94;
    white-space: normal;
  }

  .range-intro h2 {
    max-width: 100%;
    min-width: 0;
  }

  .range-intro p {
    font-size: 1.2rem;
  }

  .range-intro div {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .range-intro h2 {
    font-size: 1.08rem;
  }

  .catalog-view .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 1.4rem;
    padding: 2rem 1.1rem 4rem;
  }

  .catalog-view .product-card img {
    height: 10rem;
  }

  .catalog-view .product-card div {
    font-size: 0.62rem;
  }

  .catalog-filters {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.1rem;
  }

  .range-product-hero {
    min-height: 31rem;
    padding: 6rem 1.1rem 3rem;
  }

  .range-product-hero p {
    margin-bottom: 5rem;
  }

  .range-product-hero h1 {
    font-size: 1.45rem;
  }

  .product-wide-photo {
    height: 18rem;
  }

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

  .product-editorial > * {
    min-height: 16rem;
  }

  .product-claim {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .product-claim,
  .newsletter-card,
  .discover-card {
    padding: 1.2rem;
  }

  .product-claim h2,
  .newsletter-card h2 {
    font-size: 1.15rem;
  }

  .product-editorial .span-two {
    grid-column: 1 / -1;
    min-height: 18rem;
  }

  .product-gallery-note {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.1rem;
  }

  .product-gallery-note p {
    font-size: 1rem;
  }

  .product-gallery-note img {
    height: 11rem;
  }

  .catalogue-cta {
    min-height: 18rem;
  }

  .catalogue-cta button {
    font-size: 1.65rem;
  }

  .order-resources {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 6rem 1.1rem 3rem;
  }

  .order-resources h1 {
    margin-bottom: 1.4rem;
    font-size: 2.7rem;
  }

  .distributors-panel {
    padding: 3rem 1.1rem;
  }

  .distributors-panel > h1 {
    font-size: 2.6rem;
  }

  .distributor-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .distributor-grid article p,
  .distributor-grid article h2 {
    font-size: 1.35rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.8rem 1.1rem 1.1rem;
    font-size: 0.58rem;
  }

  .site-footer button {
    padding-left: 1.2rem;
  }
}

@media (max-width: 520px) {
  .home-feature,
  .home-feature img {
    height: 28rem;
    min-height: 28rem;
  }

  .home-hero-copy h1 {
    max-width: 20rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 3.05rem;
    line-height: 0.95;
  }

  .home-feature button {
    font-size: 2.45rem;
  }

  .home-news-grid,
  .product-editorial,
  .catalog-view .product-grid {
    grid-template-columns: 1fr;
  }

  .news-photo,
  .news-copy {
    min-height: 15rem;
  }

  .news-photo.large {
    min-height: 22rem;
  }

  .catalog-view .product-card div {
    grid-template-columns: 1fr 1fr;
  }

  .product-gallery-note div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-gallery-note img {
    height: 8rem;
  }

  .site-footer {
    grid-template-columns: 0.7fr 1fr 1fr 1.1fr;
    gap: 0.6rem;
  }
}

/* Faithful home pass for the 260618 layouts */
.site-header {
  height: 3.8rem;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.82fr);
  align-items: center;
  padding: 0.7rem 3rem;
  background: var(--white);
  backdrop-filter: none;
}

.brand {
  font-size: 2.15rem;
  line-height: 0.9;
}

.main-nav {
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-size: 0.88rem;
}

.main-nav button[data-route='story'] {
  display: none;
}

.main-nav button[data-route='order'] {
  width: 4.25rem;
  height: 4.25rem;
  margin-top: 0;
  transform: translateY(0.45rem);
}

.home-view {
  padding-top: 3.8rem;
}

.home-feature-grid {
  height: 38.4rem;
  min-height: 0;
  gap: 0.35rem;
  padding: 0 0.35rem 0.35rem;
}

.home-feature,
.home-feature img {
  min-height: 0;
  height: 100%;
}

.home-feature-camembert img {
  object-position: center 54%;
}

.home-feature-pyramids img {
  object-position: center center;
}

.home-feature::after,
.home-hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}

.home-feature button {
  left: 2.45rem;
  bottom: 2.6rem;
  max-width: calc(100% - 5rem);
  font-size: 1.65rem;
  text-shadow: none;
}

.home-hero {
  min-height: 43.7rem;
  border-top: 0;
  border-right: 0.35rem solid var(--white);
  border-bottom: 0.35rem solid var(--white);
  border-left: 0.35rem solid var(--white);
}

.home-hero img {
  height: 43.7rem;
  min-height: 0;
  object-position: center 44%;
}

.home-hero-copy {
  top: 52%;
}

.home-hero-copy h1 {
  font-size: 8.8rem;
  line-height: 0.9;
}

.home-ranges-menu {
  min-height: 37.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.2rem;
  padding: 3.9rem 3rem 4rem;
  background: #91c9ff;
}

.home-ranges-menu img {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.home-ranges-menu button {
  font-size: 3.7rem;
  line-height: 0.92;
}

.home-ranges-menu p {
  font-size: 0.95rem;
}

.home-ranges-kicker {
  right: 18%;
  bottom: 12.2rem;
  max-width: 20rem;
}

.home-ranges-link {
  right: 20.5%;
  bottom: 5.1rem;
}

.shop-strip {
  min-height: 3.45rem;
  padding: 0.6rem 1rem;
}

.shop-strip p {
  font-size: 1.15rem;
  line-height: 1;
}

.home-news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.35rem;
  padding: 0 0.35rem 0.35rem;
}

.news-photo,
.news-copy {
  min-height: 21rem;
}

.news-photo.tall,
.news-copy.feature {
  grid-column: span 2;
  min-height: 38rem;
}

.news-photo.tall img {
  object-position: center center;
}

.news-photo.large {
  grid-column: span 2;
  min-height: 39.5rem;
}

.news-copy {
  padding: 2.6rem 2.9rem;
}

.news-copy h2 {
  font-size: 1.22rem;
  line-height: 1.08;
}

.news-copy.feature h2 {
  max-width: 35rem;
  font-size: 1.45rem;
}

.news-copy.feature p:not(:first-child) {
  max-width: 31rem;
  font-size: 1rem;
}

.home-story-strip {
  min-height: 34rem;
  padding: 5.6rem 3rem;
  background:
    linear-gradient(90deg, rgba(145, 201, 255, 0.72), rgba(145, 201, 255, 0.58)),
    url('assets/desktop/260618_CHEETA-WEBSITE-LAYOUT_Page_01_Image_0006.jpg') center / cover;
}

.home-story-strip div {
  max-width: 43rem;
}

.home-story-strip h2 {
  font-size: 1.18rem;
  line-height: 1.18;
}

.home-social {
  padding-top: 2rem;
}

.home-social h2 {
  margin-left: 2.5rem;
  font-size: 2.8rem;
}

.social-grid img {
  height: 19rem;
}

.mobile-drawer {
  display: grid;
  grid-template-rows: auto minmax(25rem, auto) minmax(28rem, auto) auto;
  gap: 0;
  padding: 0;
  background: var(--acid);
  overflow-y: auto;
}

.drawer-close {
  justify-self: end;
  padding: 1.5rem 2.4rem 1rem;
  color: #9f9f87;
  font-size: 2.25rem;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
}

.drawer-ranges,
.drawer-products,
.drawer-story {
  position: relative;
  display: grid;
  align-content: start;
  padding: 1.5rem 2.4rem 3rem;
}

.drawer-ranges {
  min-height: 26rem;
}

.drawer-products {
  min-height: 31rem;
  border-top: 0.08rem solid var(--black);
  background: #4f9df2;
}

.drawer-story {
  min-height: 6rem;
  background: #b8b8b8;
}

.drawer-ranges p,
.drawer-products p,
.drawer-story p {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-drawer .drawer-ranges > button:not(.pill-link),
.mobile-drawer .drawer-products > button:not(.pill-link):not(.drawer-order) {
  font-size: 2.8rem;
  line-height: 1.05;
}

.drawer-products > button:not(.pill-link):not(.drawer-order)::after {
  content: '↘';
  margin-left: 6.5rem;
  font-size: 1.2rem;
  vertical-align: 0.35em;
}

.drawer-ranges .pill-link,
.drawer-products .pill-link {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  background: var(--white);
}

.drawer-order {
  position: absolute;
  left: 2.4rem;
  bottom: 3rem;
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  text-align: center;
}

.drawer-story button {
  font-size: 1rem;
}

@media (max-width: 1360px) {
  .home-feature-grid {
    height: 32rem;
  }

  .home-hero,
  .home-hero img {
    min-height: 0;
    height: 36rem;
  }

  .home-hero-copy h1 {
    font-size: 6.2rem;
  }

  .home-ranges-menu button {
    font-size: 3rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 3.7rem;
    grid-template-columns: 1fr auto;
    padding: 0.85rem 1.15rem;
  }

  .brand {
    font-size: 2rem;
  }

  .menu-toggle {
    position: static;
    display: block;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: var(--black);
    font-size: 1.9rem;
    line-height: 1;
  }

  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle span {
    display: none;
  }

  .menu-toggle::after {
    position: static;
    display: block;
    width: auto;
    height: auto;
    content: 'Menu';
    background: transparent;
  }

  .home-view {
    padding-top: 3.7rem;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    gap: 0.35rem;
    padding: 0 0.35rem 0.35rem;
  }

  .home-feature-pyramids {
    display: none;
  }

  .home-feature,
  .home-feature img {
    height: 27.4rem;
    min-height: 0;
  }

  .home-feature button {
    left: 1rem;
    right: 1rem;
    bottom: 10.2rem;
    max-width: none;
    font-size: 2.65rem;
    text-align: center;
  }

  .home-hero,
  .home-hero img {
    height: 30.8rem;
    min-height: 0;
  }

  .home-hero {
    border-right-width: 0.35rem;
    border-left-width: 0.35rem;
  }

  .home-hero img {
    object-position: center center;
  }

  .home-hero-copy h1 {
    max-width: 20rem;
    font-size: 3.4rem;
    white-space: normal;
  }

  .home-ranges-menu {
    min-height: 29rem;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0.35rem;
    padding: 1.9rem 1.1rem 4.1rem;
    text-align: center;
  }

  .home-ranges-menu div {
    justify-items: center;
  }

  .home-ranges-menu p {
    margin-bottom: 0.1rem;
    font-size: 0.66rem;
  }

  .home-ranges-menu button {
    font-size: 2.35rem;
    line-height: 0.92;
  }

  .home-ranges-menu div:nth-of-type(2) button:nth-of-type(3),
  .home-ranges-menu div:nth-of-type(3) button:nth-of-type(n + 2) {
    display: none;
  }

  .home-ranges-menu img {
    opacity: 0.74;
  }

  .home-ranges-kicker {
    display: none;
  }

  .home-ranges-link {
    right: 50%;
    bottom: 1.1rem;
    min-height: 2.45rem;
    transform: translateX(50%);
    background: var(--white);
    font-size: 0.72rem;
  }

  .shop-strip p {
    max-width: 26rem;
    font-size: 1rem;
  }

  .home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .news-photo,
  .news-copy,
  .news-photo.tall,
  .news-copy.feature,
  .news-photo.large {
    grid-column: auto;
    min-height: 13.4rem;
  }

  .news-photo.tall,
  .news-copy.feature {
    min-height: 16.8rem;
  }

  .news-photo.large {
    min-height: 22rem;
  }

  .news-copy {
    padding: 1rem;
  }

  .news-copy h2,
  .news-copy.feature h2 {
    font-size: 0.82rem;
  }

  .news-copy.feature p:not(:first-child) {
    display: block;
    margin-top: 1rem;
    font-size: 0.58rem;
    line-height: 1.16;
  }

  .news-copy > p:first-child,
  .news-copy button {
    font-size: 0.48rem;
  }

  .home-story-strip {
    min-height: 21rem;
    padding: 2rem 1.1rem;
  }

  .home-story-strip h2 {
    font-size: 0.9rem;
  }

  .home-story-strip button {
    margin-top: 2rem;
    font-size: 0.66rem;
  }

  .home-social h2 {
    margin-left: 1.1rem;
    font-size: 1.25rem;
  }

  .social-grid img {
    height: 7.5rem;
  }
}

@media (max-width: 520px) {
  .home-feature,
  .home-feature img {
    height: 25.2rem;
  }

  .home-hero,
  .home-hero img {
    height: 28.1rem;
  }

  .home-hero-copy h1 {
    font-size: 3.05rem;
  }

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