:root {
  --ink: #171d21;
  --navy: #233746;
  --paper: #ffffff;
  --soft: #f3f2ee;
  --sand: #e7e2d8;
  --orange: #b64819;
  --orange-dark: #8d3312;
  --muted: #58636a;
  --line: #d8d9d6;
  --white: #fff;
  --focus: #4ba2d0;
  --content: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(84px, 8vw, 132px);
  --radius: 6px;
  --radius-large: 12px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
p {
  text-wrap: pretty;
}
h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 600;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.98;
}
h2 {
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.02;
}
h3 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
}

.container {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section);
}
.section--soft {
  background: var(--soft);
}
.section--ink {
  color: var(--white);
  background: var(--ink);
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}
.asset-caption {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}
.media-disclaimer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
}

.button {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}
.button--primary {
  color: var(--white);
  background: var(--orange);
}
.button--primary:hover {
  background: var(--orange-dark);
}
.button--secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}
.button--secondary:hover {
  color: var(--white);
  background: var(--ink);
}
.button--light {
  color: var(--ink);
  background: var(--white);
}
.button--light:hover {
  background: #eceeea;
}
.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover {
  color: var(--orange-dark);
}
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-header {
  position: relative;
  z-index: 50;
  height: 72px;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid rgba(23, 29, 33, 0.12);
}
.site-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 12, 16, 0.55), transparent);
  border: 0;
}
.brand {
  width: 168px;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  height: auto;
}
.brand__light {
  display: none;
}
.site-header--overlay .brand__light {
  display: block;
}
.site-header--overlay .brand__dark {
  display: none;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
}
.desktop-nav a {
  position: relative;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.menu-button,
.mobile-nav {
  display: none;
}

.campaign-hero {
  position: relative;
  min-height: 720px;
  height: min(900px, 94svh);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.campaign-hero picture,
.campaign-hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.campaign-hero img {
  object-fit: cover;
  object-position: center;
}
.campaign-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 14, 18, 0.78) 0%, rgba(8, 14, 18, 0.25) 47%, rgba(8, 14, 18, 0.04) 72%);
}
.campaign-hero__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  height: 100%;
  padding-top: 154px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.campaign-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
}
.campaign-hero__content > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 0 32px;
  font-size: 19px;
}

.section-heading {
  margin-bottom: 50px;
}
.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}
.section-heading--row {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-end;
}
.section-heading--row > p {
  max-width: 420px;
  margin: 0 0 6px;
  color: var(--muted);
}

.product-carousel {
  position: relative;
}
.product-carousel__viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.product-carousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.product-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
}
.product-slide__media {
  position: relative;
  min-height: 610px;
  padding: clamp(32px, 5vw, 76px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid #ececea;
}
.product-slide__media img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(23, 29, 33, 0.1));
}
.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 29, 33, 0.14);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-slide__content {
  padding: clamp(42px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-slide__content h3 {
  max-width: 560px;
  margin-bottom: 22px;
}
.product-slide__description {
  max-width: 500px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
}
.price-block {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
}
.price-block__current {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.price-block del {
  color: var(--muted);
  font-size: 16px;
}
.price-block strong {
  width: 100%;
  color: var(--orange-dark);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.carousel-controls {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.carousel-controls__buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.icon-button,
.play-button {
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}
.icon-button {
  font-size: 20px;
}
.play-button {
  padding-inline: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.icon-button:hover,
.play-button:hover {
  border-color: var(--ink);
}
.carousel-indicators {
  display: flex;
  gap: 8px;
}
.carousel-indicators button {
  width: 44px;
  height: 3px;
  padding: 0;
  border: 0;
  background: #b9bebf;
  cursor: pointer;
}
.carousel-indicators button[aria-current="true"] {
  background: var(--ink);
}
.commerce-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.category-tile {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  border: 1px solid var(--line);
}
.category-tile--product {
  grid-column: span 6;
  min-height: 480px;
}
.category-tile--ac {
  grid-column: span 6;
  min-height: 360px;
  color: var(--white);
  background: var(--navy);
}
.category-tile--utility {
  grid-column: span 3;
  min-height: 360px;
  background: var(--sand);
}
.category-tile--dark {
  color: var(--white);
  background: var(--navy);
}
.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(23, 29, 33, 0.08));
  transition: transform 0.35s ease;
}
.category-tile--ac img {
  height: 100%;
  object-fit: cover;
  filter: none;
}
.category-tile--ac::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 14, 18, 0.75), rgba(8, 14, 18, 0.08) 72%);
  content: "";
}
.category-tile:hover img {
  transform: scale(1.018);
}
.category-tile > span {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.94) 75%, transparent 100%);
}
.category-tile--ac > span,
.category-tile--dark > span {
  background: none;
}
.category-tile--utility > span {
  inset: 0;
  justify-content: flex-end;
}
.category-tile small {
  margin-bottom: 7px;
  color: currentColor;
  opacity: 0.7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.category-tile strong {
  max-width: 440px;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.category-tile i {
  margin-top: 16px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.ac-campaign {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.ac-campaign > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}
.ac-campaign__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 14, 18, 0.76), rgba(8, 14, 18, 0.08) 70%);
}
.ac-campaign__content {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.ac-campaign h2 {
  max-width: 720px;
  margin-bottom: 22px;
}
.ac-campaign__content > p:not(.eyebrow) {
  max-width: 480px;
  margin: 0 0 30px;
  font-size: 18px;
}

.brand-campaign {
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}
.brand-campaign__media {
  min-height: 660px;
  overflow: hidden;
}
.brand-campaign__media img {
  width: 100%;
  height: 660px;
  object-fit: cover;
}
.brand-campaign__content h2 {
  max-width: 580px;
  margin-bottom: 28px;
}
.brand-campaign__content > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
}

.build-preview__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(80px, 12vw, 180px);
}
.build-preview__intro h2 {
  max-width: 580px;
  margin-bottom: 26px;
}
.build-preview__intro > p:not(.eyebrow) {
  max-width: 520px;
  color: #c4ccd0;
}
.build-index {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.build-index a {
  min-height: 112px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 32px;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.build-index span {
  font-size: 22px;
  font-weight: 600;
}
.build-index small {
  color: #b9c2c6;
  font-size: 13px;
}
.build-index b {
  font-size: 18px;
  font-weight: 400;
}
.build-index a:hover span {
  color: #efa37e;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.support-grid a {
  position: relative;
  min-height: 170px;
  padding: 28px 52px 28px 28px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.support-grid strong {
  margin-bottom: 12px;
  font-size: 18px;
}
.support-grid span {
  color: var(--muted);
  font-size: 13px;
}
.support-grid b {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 18px;
  font-weight: 400;
}
.support-grid a:hover {
  background: var(--soft);
}

.site-footer {
  padding: 78px 0 28px;
  color: var(--white);
  background: var(--ink);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
}
.site-footer__brand img {
  width: 180px;
  height: auto;
}
.site-footer__brand p {
  max-width: 260px;
  margin: 20px 0 0;
  color: #aeb8bd;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.site-footer nav strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer nav a {
  color: #bfc7cb;
  font-size: 13px;
  text-decoration: none;
}
.site-footer nav a:hover {
  color: var(--white);
}
.site-footer__bottom {
  margin-top: 58px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #838f95;
  font-size: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* Interior pages */
.page-main {
  min-height: 70vh;
}
.page-hero {
  padding: clamp(86px, 10vw, 150px) 0 clamp(72px, 8vw, 120px);
  background: var(--soft);
}
.page-hero--dark {
  color: var(--white);
  background: var(--navy);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  align-items: end;
}
.page-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
}
.page-hero__summary {
  max-width: 540px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
}
.page-hero--dark .page-hero__summary {
  color: #d2d9dc;
}
.support-campaign {
  position: relative;
  min-height: 720px;
  display: grid;
  color: var(--white);
  background: #11161b;
  overflow: hidden;
}
.support-campaign__visual,
.support-campaign__visual img,
.support-campaign__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.support-campaign__visual img {
  object-fit: cover;
  object-position: center;
}
.support-campaign__shade {
  background:
    linear-gradient(90deg, rgba(12, 17, 22, 0.72) 0%, rgba(12, 17, 22, 0.48) 42%, rgba(12, 17, 22, 0.04) 72%),
    linear-gradient(0deg, rgba(12, 17, 22, 0.32), transparent 38%);
}
.support-campaign__content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 100%;
  padding-block: 88px;
}
.support-campaign__content h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(58px, 6vw, 86px);
}
.support-campaign__content > p:last-child {
  max-width: 610px;
  margin: 0;
  color: #d5dcdf;
  font-size: 18px;
  line-height: 1.65;
}
.support-campaign__note {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - 1360px) / 2));
  bottom: 22px;
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}
.page-section {
  padding: var(--section) 0;
}
.page-section--soft {
  background: var(--soft);
}
.page-section--ink {
  color: var(--white);
  background: var(--ink);
}
.page-copy {
  max-width: 760px;
}
.page-copy h2 {
  margin-bottom: 26px;
}
.page-copy p {
  color: var(--muted);
  font-size: 18px;
}
.page-section--ink .page-copy p {
  color: #c4ccd0;
}
.state-panel {
  margin-top: 48px;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--line);
  background: var(--white);
}
.state-panel--dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: #223039;
}
.state-panel h2,
.state-panel h3 {
  max-width: 700px;
}
.state-panel p {
  max-width: 700px;
  color: var(--muted);
}
.state-panel--dark p {
  color: #c4ccd0;
}
.status-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--sand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.product-card {
  border: 1px solid var(--line);
  background: var(--white);
}
.product-card__media {
  min-height: 410px;
  padding: 44px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-bottom: 1px solid #ececea;
}
.product-card__media img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(23, 29, 33, 0.09));
}
.product-card__body {
  padding: 30px;
}
.product-card h2 {
  margin-bottom: 14px;
  font-size: 34px;
}
.product-card p {
  color: var(--muted);
}
.comparison-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
}
.comparison-table-wrap:focus-visible {
  outline-offset: -3px;
}
.comparison-table {
  width: 100%;
  min-width: 680px;
  border-spacing: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.comparison-table th,
.comparison-table td {
  width: 31%;
  padding: 22px 24px;
  text-align: left;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.comparison-table th:first-child {
  width: 38%;
}
.comparison-table thead th {
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.comparison-table tbody th {
  font-size: 13px;
}
.comparison-table tbody td {
  font-size: 15px;
  font-weight: 600;
}
.comparison-table__pending {
  color: var(--muted);
  font-weight: 500 !important;
}
.product-detail {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: calc(100svh - 72px);
}
.product-detail__media {
  padding: clamp(30px, 6vw, 86px);
  display: grid;
  place-items: center;
  background: var(--white);
  border-right: 1px solid #ececea;
}
.product-detail__media img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(23, 29, 33, 0.1));
}
.product-detail__content {
  padding: clamp(48px, 7vw, 104px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-detail__content h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5.5vw, 76px);
}
.product-detail__content > p:not(.eyebrow):not(.commerce-status) {
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
}
.product-detail .price-block {
  margin-top: 30px;
}
.product-detail__notice {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.product-detail__notice strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}
.product-detail__notice p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.route-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.route-index a {
  min-height: 170px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.route-index strong {
  margin-bottom: 10px;
  font-size: 22px;
}
.route-index span {
  max-width: 420px;
  color: var(--muted);
  font-size: 13px;
}
.route-index a:hover {
  background: var(--soft);
}
.brand-story {
  max-width: 950px;
}
.brand-story p {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.brand-direction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.brand-direction p {
  color: var(--muted);
  font-size: 18px;
}
.support-list {
  border-top: 1px solid var(--line);
}
.support-list section {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 60px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 80px;
}
.support-list h2 {
  margin: 0;
  font-size: 28px;
}
.support-list p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}
.support-list a {
  margin-top: 12px;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
}
.support-request__notice {
  margin-top: 22px !important;
  padding: 16px 18px;
  color: var(--ink) !important;
  background: var(--soft);
  border-left: 3px solid var(--orange);
  font-size: 12px !important;
}
.support-request__notice strong {
  display: block;
  margin-bottom: 3px;
}
.support-request-form {
  margin-top: 28px;
}
.support-request-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.support-request-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field--wide {
  grid-column: 1 / -1;
}
.form-field > span {
  font-size: 12px;
  font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #aeb5b9;
  border-radius: 3px;
}
.form-field textarea {
  min-height: 104px;
  resize: vertical;
  line-height: 1.5;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #737e84;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #707b81;
}
.support-request-form__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}
.support-request-form__status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }
  body.menu-open .site-header {
    color: var(--white);
    background: transparent;
    border-color: transparent;
  }
  body.menu-open .brand__dark {
    display: none;
  }
  body.menu-open .brand__light {
    display: block;
  }
  .menu-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: currentColor;
    background: none;
    border: 0;
    font-size: 13px;
    cursor: pointer;
  }
  .menu-button i,
  .menu-button i::after {
    width: 22px;
    height: 1px;
    display: block;
    background: currentColor;
    content: "";
    transition: transform 0.2s ease;
  }
  .menu-button i::after {
    transform: translateY(6px);
  }
  .menu-button[aria-expanded="true"] i {
    transform: rotate(45deg);
  }
  .menu-button[aria-expanded="true"] i::after {
    transform: rotate(-90deg);
  }
  .mobile-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    padding: 116px var(--gutter) 44px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--white);
    background: var(--ink);
  }
  .mobile-nav[hidden] {
    display: none;
  }
  .mobile-nav a {
    padding: 8px 0;
    color: var(--white);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-decoration: none;
  }
  .product-slide {
    grid-template-columns: 1fr;
  }
  .product-slide__media {
    border-right: 0;
    border-bottom: 1px solid #ececea;
  }
  .product-slide__media {
    min-height: 500px;
  }
  .product-slide__content {
    min-height: 520px;
  }
  .category-tile--product {
    min-height: 410px;
  }
  .category-tile--ac {
    grid-column: span 12;
  }
  .category-tile--utility {
    grid-column: span 6;
    min-height: 260px;
  }
  .brand-campaign {
    grid-template-columns: 1fr;
  }
  .brand-campaign__media,
  .brand-campaign__media img {
    min-height: 560px;
    height: 560px;
  }
  .brand-campaign__content {
    max-width: 760px;
  }
  .build-preview__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .support-campaign {
    min-height: 680px;
  }
  .support-campaign__content h1 {
    max-width: 620px;
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-detail__media {
    border-right: 0;
    border-bottom: 1px solid #ececea;
  }
  .product-detail__media {
    min-height: 620px;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 18px;
    --section: 76px;
  }
  h1 {
    font-size: clamp(48px, 14vw, 62px);
  }
  h2 {
    font-size: clamp(34px, 10vw, 44px);
  }
  h3 {
    font-size: 32px;
  }
  .site-header {
    height: 66px;
  }
  .brand {
    width: 146px;
  }
  .mobile-nav {
    padding-top: 104px;
  }
  .mobile-nav a {
    font-size: 26px;
  }
  .campaign-hero {
    min-height: 720px;
    height: 100svh;
  }
  .campaign-hero img {
    object-position: center;
  }
  .campaign-hero__shade {
    background: linear-gradient(0deg, rgba(8, 14, 18, 0.82) 0%, rgba(8, 14, 18, 0.08) 72%);
  }
  .campaign-hero__content {
    padding-top: 120px;
    padding-bottom: 58px;
    justify-content: flex-end;
  }
  .campaign-hero h1 {
    max-width: 360px;
    margin-bottom: 18px;
  }
  .campaign-hero__content > p:not(.eyebrow) {
    max-width: 340px;
    margin-bottom: 24px;
    font-size: 17px;
  }
  .campaign-hero .button {
    width: 100%;
  }
  .asset-caption {
    right: 18px;
    bottom: 10px;
    font-size: 7px;
  }
  .section-heading--row {
    display: grid;
    gap: 24px;
  }
  .product-carousel {
    padding-inline: 0;
  }
  .product-carousel .commerce-status,
  .carousel-controls {
    margin-right: 18px;
    margin-left: 18px;
  }
  .product-slide__media {
    min-height: 360px;
    padding: 36px 20px;
  }
  .product-slide__media img {
    max-height: 300px;
  }
  .product-slide__content {
    min-height: 500px;
    padding: 36px 24px;
  }
  .product-slide__description {
    font-size: 16px;
  }
  .action-row {
    display: grid;
  }
  .action-row .button {
    width: 100%;
  }
  .carousel-indicators button {
    width: 32px;
  }
  .category-grid {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }
  .category-tile--product,
  .category-tile--ac,
  .category-tile--utility {
    grid-column: auto;
    min-height: 380px;
  }
  .category-tile--utility {
    min-height: 210px;
  }
  .category-tile strong {
    font-size: 28px;
  }
  .ac-campaign,
  .ac-campaign__content {
    min-height: 660px;
  }
  .ac-campaign > img {
    object-position: 61% center;
  }
  .ac-campaign__shade {
    background: linear-gradient(0deg, rgba(8, 14, 18, 0.82), rgba(8, 14, 18, 0.08) 78%);
  }
  .ac-campaign__content {
    justify-content: flex-end;
    padding-bottom: 64px;
  }
  .ac-campaign .button {
    width: 100%;
  }
  .brand-campaign {
    padding-inline: 0;
  }
  .brand-campaign__media,
  .brand-campaign__media img {
    min-height: 460px;
    height: 460px;
  }
  .brand-campaign__content {
    padding-inline: 18px;
  }
  .build-index a {
    min-height: 118px;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
  }
  .build-index small {
    grid-column: 1;
  }
  .build-index b {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .support-grid {
    grid-template-columns: 1fr;
    margin-inline: 18px;
    padding: 0;
  }
  .support-grid a {
    min-height: 132px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .site-footer__brand {
    grid-column: auto;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
  .page-hero {
    padding-top: 70px;
  }
  .page-hero__summary {
    font-size: 16px;
  }
  .support-campaign {
    min-height: 790px;
  }
  .support-campaign__visual img {
    object-position: center;
  }
  .support-campaign__shade {
    background: linear-gradient(
      180deg,
      rgba(10, 15, 20, 0.7) 0%,
      rgba(10, 15, 20, 0.42) 43%,
      rgba(10, 15, 20, 0.12) 67%,
      rgba(10, 15, 20, 0.58) 100%
    );
  }
  .support-campaign__content {
    align-self: start;
    padding-block: 60px 160px;
  }
  .support-campaign__content h1 {
    max-width: 350px;
    margin-bottom: 20px;
    font-size: clamp(46px, 13vw, 58px);
  }
  .support-campaign__content > p:last-child {
    max-width: 350px;
    font-size: 16px;
  }
  .support-campaign__note {
    right: 18px;
    bottom: 16px;
    left: 18px;
    max-width: none;
    text-align: left;
  }
  .product-list,
  .route-index,
  .brand-direction {
    grid-template-columns: 1fr;
  }
  .product-card__media {
    min-height: 330px;
    padding: 26px;
  }
  .product-detail__media {
    min-height: 420px;
    padding: 30px 18px;
  }
  .product-detail__content {
    padding: 52px 18px 76px;
  }
  .product-detail__content h1 {
    font-size: 50px;
  }
  .support-list section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .support-request-form__grid {
    grid-template-columns: 1fr;
  }
  .form-field--wide {
    grid-column: auto;
  }
  .support-request-form__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .support-request-form__actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
