:root {
  --text: #171717;
  --muted: #5c5c5c;
  --soft: #f2f2f2;
  --line: #dedede;
  --dark: #111;
  --white: #fff;
  --max: 1440px;
  --gutter: clamp(18px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header:has(.has-mega:hover) {
  color: var(--white);
  background: #060606;
}

.site-header:has(.has-mega:hover) .brand img {
  filter: invert(1);
}

.site-header:has(.has-mega:hover) .main-nav a,
.site-header:has(.has-mega:hover) .meta-nav a,
.site-header:has(.has-mega:hover) .meta-nav svg {
  color: var(--white);
}

.header-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
}

.main-nav,
.meta-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.main-nav {
  align-self: stretch;
}

.main-nav > a,
.main-nav .nav-item > a {
  display: flex;
  align-items: center;
  min-height: 88px;
}

.main-nav .nav-item > a {
  padding-inline: 28px;
}

.main-nav .has-mega {
  display: flex;
  align-self: stretch;
  margin-left: -28px;
}

.main-nav .has-mega:hover > a {
  color: var(--white);
  background: #287aa8;
}

.main-nav a,
.meta-nav a {
  font-size: 15px;
  color: #222;
}

.main-nav a:hover,
.meta-nav a:hover,
.product-card a:hover,
.text-link:hover,
.dialogue-grid a:hover {
  color: #707070;
}

.main-nav a.is-current,
.mobile-nav a.is-current {
  font-weight: 700;
}

.brand {
  line-height: 0;
  justify-self: center;
}

.brand img {
  display: block;
  width: clamp(118px, 10vw, 164px);
  height: 31px;
  object-fit: contain;
  object-position: center;
}

.meta-nav {
  justify-content: flex-end;
}

.meta-nav button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
}

.meta-nav .icon-link {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
}

.meta-nav svg,
.side-tools svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 6px 0;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: #000;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mega-menu {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 25;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  color: #646464;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.1fr 1fr 1fr;
  gap: clamp(34px, 5vw, 86px);
  padding: 52px 0 58px;
}

.mega-inner h2 {
  margin: 0 0 42px;
  color: #6e6e6e;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
}

.mega-inner a {
  display: block;
  margin: 0 0 18px;
  color: #5f5f5f;
  font-size: 22px;
  line-height: 1.22;
}

.mega-inner a:hover {
  color: #287aa8;
}

.mega-action {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #8d8d8d;
}

.mega-action a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #287aa8;
  font-size: 24px;
}

.mega-action span {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.mega-action span::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 29px;
  border-top: 2px solid currentColor;
}

.mega-action span::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.mobile-nav a {
  display: block;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.side-tools {
  position: fixed;
  left: 0;
  top: 25vh;
  z-index: 30;
  display: grid;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

.side-tools button {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}

.side-tools .badge {
  position: absolute;
  top: 7px;
  right: 7px;
  min-width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 10px;
  line-height: 15px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #e8e8e8;
  aspect-ratio: 21 / 9;
  min-height: 500px;
}

.hero-slider-small {
  margin-top: 70px;
  min-height: 430px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide img {
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  top: 50%;
  width: min(520px, 38vw);
  transform: translateY(-50%);
  color: var(--text);
}

.hero-slide.dark .hero-copy {
  color: var(--white);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.hero-copy.right {
  right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  text-align: right;
}

.hero-copy.left {
  left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4.2vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy h2 {
  font-size: clamp(28px, 3.6vw, 58px);
}

.hero-copy p {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 24px);
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 26px;
  transform: translateX(-50%);
  z-index: 2;
}

.slider-controls button {
  width: 46px;
  height: 34px;
  position: relative;
}

.slider-controls button::before {
  content: "";
  position: absolute;
  inset: 8px 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.slider-controls .slider-prev::before {
  transform: rotate(-135deg);
}

.intro-section {
  padding: clamp(58px, 7vw, 106px) 0 clamp(40px, 6vw, 86px);
}

.intro-section .container,
.section-head {
  max-width: 920px;
}

.intro-section h2,
.section-head h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-section p,
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.48;
}

.text-link,
.product-card a,
.dialogue-grid a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-weight: 700;
  font-size: 17px;
}

.text-link span,
.product-card a span,
.dialogue-grid a span,
.story-card span {
  width: 24px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.text-link span::before,
.product-card a span::before,
.dialogue-grid a span::before,
.story-card span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 23px;
  border-top: 2px solid currentColor;
}

.text-link span::after,
.product-card a span::after,
.dialogue-grid a span::after,
.story-card span::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.content-section {
  padding: clamp(44px, 6vw, 86px) 0;
}

.section-head {
  margin-bottom: clamp(30px, 4.2vw, 58px);
}

.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: var(--soft);
  min-width: 0;
}

.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.compact .product-card img,
.card-grid.two .product-card img {
  aspect-ratio: 16 / 9;
}

.product-card div {
  padding: 25px 25px 29px;
}

.product-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
}

.product-card p {
  min-height: 92px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.compact .product-card p {
  min-height: 76px;
}

.product-card a {
  font-size: 16px;
}

.section-action {
  margin-top: 8px;
}

.wide-image {
  margin-bottom: 28px;
  overflow: hidden;
}

.wide-image img {
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.inspiration-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(430px, 1fr);
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  color: var(--white);
  background: #222;
  scroll-snap-align: start;
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.story-card:hover img {
  transform: scale(1.04);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent);
}

.story-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding: 28px;
}

.story-card h3 {
  grid-column: 1;
  margin: 0;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.story-card p {
  grid-column: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.story-card span {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
}

.dialogue {
  padding: clamp(52px, 7vw, 100px) 0;
  color: var(--white);
  background: var(--dark);
}

.dialogue .section-head p {
  color: #cfcfcf;
}

.dialogue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.dialogue-grid a {
  min-height: 135px;
  margin: 0;
  padding: 28px;
  align-items: flex-end;
  justify-content: space-between;
  background: #242424;
  color: var(--white);
  font-size: 22px;
}

.site-footer {
  color: var(--white);
  background: #0b0b0b;
  border-top: 1px solid #252525;
}

.subpage-hero {
  position: relative;
  min-height: 560px;
  color: var(--white);
  overflow: hidden;
  background: #222;
}

.subpage-hero picture,
.subpage-hero img {
  width: 100%;
  height: 100%;
}

.subpage-hero picture {
  position: absolute;
  inset: 0;
}

.subpage-hero img {
  object-fit: cover;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.04));
}

.subpage-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding-top: 52px;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 12px;
}

.subpage-hero h1 {
  width: min(760px, 82vw);
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.subpage-hero p {
  width: min(680px, 88vw);
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
}

.page-intro {
  padding-bottom: 46px;
}

.page-card-grid {
  padding-bottom: clamp(54px, 7vw, 96px);
}

.local-banner {
  padding: clamp(52px, 7vw, 96px) 0;
  background: #efefef;
}

.local-banner h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
}

.local-banner p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 22px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  padding-bottom: clamp(54px, 7vw, 96px);
}

.contact-panel,
.contact-form,
.news-list article {
  background: var(--soft);
  padding: clamp(24px, 3vw, 42px);
}

.contact-panel h2,
.news-list h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 400;
}

.contact-panel p {
  margin: 12px 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  padding: 15px 16px;
  color: var(--text);
  font: inherit;
  background: var(--white);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  padding: 15px 24px;
  color: var(--white);
  background: var(--dark);
  font-weight: 700;
}

.news-list {
  display: grid;
  gap: 22px;
  padding-bottom: clamp(54px, 7vw, 96px);
}

.news-list article {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
}

.news-list time {
  color: var(--muted);
}

.news-list p {
  margin: 0;
  color: var(--muted);
}

.news-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.products-head {
  padding: 46px 0 64px;
  background: var(--white);
}

.breadcrumb.dark {
  margin-bottom: 40px;
  color: #777;
}

.breadcrumb.dark a {
  color: #777;
}

.products-head-inner {
  max-width: 980px;
}

.products-head h1 {
  margin: 0 0 28px;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.products-head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.48;
}

.product-subnav {
  position: sticky;
  top: 88px;
  z-index: 12;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-subnav .container {
  display: flex;
  gap: 0;
}

.product-subnav a {
  flex: 1;
  padding: 24px 20px;
  color: #606060;
  text-align: center;
  font-size: 20px;
}

.product-subnav a:hover {
  color: #287aa8;
}

.product-overview-section {
  scroll-margin-top: 170px;
  padding: clamp(54px, 7vw, 100px) 0;
}

.product-overview-section + .product-overview-section {
  border-top: 1px solid #ececec;
}

.overview-hero {
  margin-bottom: 28px;
}

.overview-hero img {
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.product-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-tile {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  background: #ececec;
  color: var(--white);
}

.product-tile img {
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  transition: transform 360ms ease;
}

.product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12) 55%, transparent);
}

.product-tile:hover img {
  transform: scale(1.045);
}

.product-tile-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.15;
}

.product-tile-label i {
  flex: 0 0 28px;
  width: 28px;
  height: 20px;
  position: relative;
}

.product-tile-label i::before,
.product-tile-label i::after {
  content: "";
  position: absolute;
  color: inherit;
}

.product-tile-label i::before {
  top: 9px;
  left: 0;
  width: 28px;
  border-top: 2px solid currentColor;
}

.product-tile-label i::after {
  top: 3px;
  right: 0;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.detail-hero picture,
.detail-hero img {
  width: 100%;
  height: 100%;
}

.detail-hero picture {
  position: absolute;
  inset: 0;
}

.detail-hero img {
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 56%, rgba(0, 0, 0, 0.02));
}

.detail-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
}

.detail-hero h1 {
  width: min(860px, 88vw);
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 94px);
  font-weight: 400;
  line-height: 0.98;
}

.detail-hero p {
  margin: 0;
  font-size: clamp(19px, 1.7vw, 28px);
}

.detail-intro {
  padding: clamp(58px, 7vw, 108px) 0;
}

.detail-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(34px, 7vw, 110px);
}

.detail-intro h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.08;
}

.detail-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.5;
}

.detail-intro aside {
  display: grid;
  align-content: start;
  gap: 1px;
  background: var(--line);
}

.detail-intro aside span {
  padding: 18px 20px;
  background: var(--soft);
  font-size: 18px;
}

.detail-materials {
  padding: 0 0 clamp(60px, 7vw, 110px);
}

.detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 44px 0;
  border-bottom: 1px solid #292929;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  width: 180px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1);
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #565656;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  padding: 46px 0 54px;
}

.footer-grid h2 {
  margin: 0 0 19px;
  font-size: 18px;
  font-weight: 400;
}

.footer-grid a {
  display: block;
  margin: 10px 0;
  color: #bdbdbd;
  font-size: 15px;
}

.footer-grid a:hover,
.legal a:hover {
  color: var(--white);
}

.legal {
  display: flex;
  gap: 28px;
  padding: 20px 0 34px;
  color: #9a9a9a;
  font-size: 13px;
  border-top: 1px solid #292929;
}

@media (max-width: 1180px) {
  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slider {
    min-height: 430px;
  }
}

@media (max-width: 900px) {
  .header-grid {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    grid-column: 1;
  }

  .main-nav {
    display: none;
  }

  .mega-menu {
    display: none;
  }

  .brand {
    justify-self: center;
    grid-column: 2;
  }

  .meta-nav {
    grid-column: 3;
    gap: 6px;
  }

  .meta-nav > a:not(:last-child),
  .meta-nav button:not(:last-child) {
    display: none;
  }

  .meta-nav > a:last-child {
    display: inline-grid;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .side-tools {
    display: none;
  }

  .hero-slider,
  .hero-slider-small {
    aspect-ratio: auto;
    height: min(94vh, 720px);
    min-height: 520px;
  }

  .hero-copy {
    top: auto;
    bottom: 76px;
    left: var(--gutter);
    right: var(--gutter);
    width: auto;
    max-width: none;
    transform: none;
    text-align: left;
  }

  .hero-copy.right {
    right: var(--gutter);
    text-align: left;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(34px, 9vw, 58px);
  }

  .card-grid.two,
  .card-grid.three,
  .product-tile-grid,
  .detail-grid,
  .dialogue-grid,
  .footer-grid,
  .contact-layout,
  .detail-intro-grid {
    grid-template-columns: 1fr;
  }

  .product-subnav {
    top: 72px;
    overflow-x: auto;
  }

  .product-subnav .container {
    width: max-content;
    min-width: 100%;
  }

  .product-subnav a {
    min-width: 155px;
    padding: 17px 18px;
    font-size: 17px;
  }

  .inspiration-track {
    grid-auto-columns: minmax(315px, 86vw);
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
  }

  .brand img {
    width: 116px;
    height: 22px;
  }

  .meta-nav button {
    width: 30px;
  }

  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .product-card div {
    padding: 22px;
  }

  .product-card p,
  .compact .product-card p {
    min-height: 0;
  }

  .wide-image img {
    aspect-ratio: 16 / 9;
  }

  .story-card {
    min-height: 360px;
  }

  .story-card div {
    padding: 22px;
  }

  .footer-top,
  .legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .subpage-hero,
  .subpage-hero-copy,
  .detail-hero,
  .detail-hero-copy {
    min-height: 520px;
  }

  .overview-hero img {
    aspect-ratio: 16 / 9;
  }

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