:root {
  --bg: #070807;
  --panel: #10110f;
  --panel-2: #171914;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f2f1e7;
  --muted: rgba(242, 241, 231, 0.62);
  --dim: rgba(242, 241, 231, 0.38);
  --yellow: #d9db72;
  --green: #79c7a4;
  --red: #cf665f;
  --max: 1520px;
  --header: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--yellow);
  color: #111;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  background: rgba(7, 8, 7, 0.94);
  border-bottom: 1px solid transparent;
  transform: translateY(-48px);
  transition: transform 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header:hover,
.site-header:focus-within,
.site-header.is-open,
.site-header.is-scrolled {
  transform: translateY(0);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 44px;
}

.site-logo {
  justify-self: start;
  position: relative;
  z-index: 101;
}

.custom-logo {
  width: auto;
  max-height: 46px;
}

.site-logo__text {
  display: inline-flex;
  align-items: center;
  min-width: 118px;
  min-height: 46px;
  color: var(--text);
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.primary-nav {
  justify-self: center;
}

.primary-nav__menu,
.footer-links,
.social-links__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav__menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  transition: color 160ms ease;
}

.primary-nav li {
  position: relative;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--yellow);
}

.primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 178px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: rgba(17, 18, 15, 0.98);
  border: 1px solid var(--line);
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.primary-nav .sub-menu a {
  justify-content: center;
  min-height: 34px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.6px;
}

.primary-nav .sub-menu .current-menu-item > a,
.primary-nav .sub-menu .current-menu-parent > a,
.primary-nav .sub-menu .current-menu-ancestor > a {
  background: var(--yellow);
  color: #111 !important;
}

.site-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-search {
  display: flex;
  align-items: center;
  height: 40px;
  width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
}

.site-search label {
  flex: 1;
}

.site-search__field {
  width: 100%;
  height: 38px;
  padding: 0 0 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
}

.site-search__submit,
.language-trigger,
.nav-toggle {
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.site-search__submit {
  width: 40px;
  height: 38px;
  color: var(--muted);
}

.language-switcher {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.language-trigger svg {
  transition: transform 160ms ease;
}

.language-switcher.is-open .language-trigger svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 74px;
  padding: 6px;
  margin: 0;
  list-style: none;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(255, 255, 190, 0.24);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.language-menu a:hover,
.language-menu a:focus {
  background: #ffffb9;
  color: #111;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-main {
  min-height: 70vh;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(121, 199, 164, 0.13), transparent 28%),
    linear-gradient(105deg, #060706 0%, #090b09 42%, #141610 100%);
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.home-hero__bg.is-active {
  opacity: 1;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.02) 56%, rgba(0, 0, 0, 0) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, 52vw);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 260px 52px 84px 88px;
}

.home-title-img {
  width: min(700px, 46vw);
  height: auto;
  margin-top: 0;
  transform: translate(var(--banner-title-offset-x, 0), var(--banner-title-offset-y, 0));
}

.home-subtitle-img {
  width: min(600px, 34vw);
  height: auto;
  margin-top: 54px;
}

.home-hero__custom-text {
  display: grid;
  justify-items: var(--banner-text-justify, start);
  text-align: var(--banner-text-align, left);
  color: var(--banner-text-color, #fff);
  font-family: var(--banner-font-family, Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif);
  transform: translate(var(--banner-title-offset-x, 0), var(--banner-title-offset-y, 0));
}

.home-hero__custom-text h1 {
  max-width: min(100%, 860px);
  margin: 0;
  color: var(--banner-text-color, #fff);
  font-family: inherit;
  font-size: var(--banner-title-font-size, clamp(48px, 5vw, 96px));
  font-weight: var(--banner-title-font-weight, 800);
  line-height: .98;
  text-transform: uppercase;
}

.home-hero__intro {
  max-width: min(100%, 660px);
  margin: 28px 0 0;
  color: var(--banner-text-color, #fff);
  font-family: inherit;
  font-size: var(--banner-subtitle-font-size, clamp(18px, 1.8vw, 30px));
  font-weight: var(--banner-subtitle-font-weight, 500);
  line-height: 1.35;
}

.home-mobile-visual {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--banner-text-color, var(--yellow));
  font-family: var(--banner-font-family, Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif);
  text-transform: uppercase;
  font-size: var(--banner-eyebrow-font-size, 12px);
  font-weight: var(--banner-eyebrow-font-weight, 800);
  letter-spacing: 2.4px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.home-hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.home-hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  cursor: pointer;
}

.button--primary,
.button--filter {
  width: fit-content;
  border-color: var(--yellow);
  background: var(--yellow);
  color: #15160f;
}

.button--ghost {
  background: transparent;
}

.home-hero .button {
  margin-top: 26px;
}

.hero-tiles {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(42%, 820px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 0 0 10px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 4%, black 96%, transparent 100%);
}

.hero-tiles__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
}

.hero-tiles__col:nth-child(2) {
  margin-top: -138px;
}

.hero-tile {
  display: block;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  color: var(--dim);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.hero-tile img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  transition: transform 260ms ease, opacity 260ms ease;
}

.hero-tile--mask {
  aspect-ratio: 0.86;
  position: relative;
}

.hero-tile--mask img {
  height: 100%;
  object-fit: cover;
  clip-path: none;
  -webkit-mask: url("../images/home-masks/tile-mask-01.svg") center / 100% 100% no-repeat;
  mask: url("../images/home-masks/tile-mask-01.svg") center / 100% 100% no-repeat;
}

.hero-tile--mask:nth-child(3n + 2) img {
  -webkit-mask-image: url("../images/home-masks/tile-mask-02.svg");
  mask-image: url("../images/home-masks/tile-mask-02.svg");
}

.hero-tile--mask:nth-child(3n) img {
  -webkit-mask-image: url("../images/home-masks/tile-mask-03.svg");
  mask-image: url("../images/home-masks/tile-mask-03.svg");
}

.hero-tile--mask:nth-child(4n) img {
  -webkit-mask-image: url("../images/home-masks/tile-mask-04.svg");
  mask-image: url("../images/home-masks/tile-mask-04.svg");
}

.hero-tile:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.home-slice-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  pointer-events: auto;
  mask-image: linear-gradient(to bottom, transparent 0, black 1.2%, black 98.8%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 1.2%, black 98.8%, transparent 100%);
}

.home-slice-track {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.home-slice-scene {
  position: relative;
  height: 1480px;
}

.home-slice-scene--frames {
  height: max(112vh, 88vw);
  overflow: visible;
}

.home-frame-slot {
  position: absolute;
  z-index: 5;
  display: block;
  transform-origin: center center;
  filter: none;
}

a.home-frame-slot {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.home-frame-slot:focus-visible {
  outline: 2px solid #ffffb9;
  outline-offset: 6px;
}

.home-frame-slot__media,
.home-frame-slot__content,
.home-frame-slot__shape {
  display: block;
  width: 100%;
  height: 100%;
}

.home-frame-slot__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: var(--frame-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: var(--frame-fill-mask);
  mask-image: var(--frame-fill-mask);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.home-frame-slot__media {
  background-position: var(--frame-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: var(--frame-mask);
  mask-image: var(--frame-mask);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.home-frame-slot__shape {
  position: relative;
  z-index: 2;
  height: auto;
}

.home-frame-slot.has-content-frame .home-frame-slot__outline {
  z-index: 3;
  filter:
    drop-shadow(1.2px 0 0 #ffffb9)
    drop-shadow(-1.2px 0 0 #ffffb9)
    drop-shadow(0 1.2px 0 #ffffb9)
    drop-shadow(0 -1.2px 0 #ffffb9)
    drop-shadow(0 0 2px rgba(255, 255, 185, 0.68));
}

.home-frame-slot--1 {
  top: 50.4vw;
  left: 64.5vw;
  z-index: 4;
  width: 29.45vw;
  aspect-ratio: 1131 / 1223;
  transform: rotate(0deg) scale(0.90); 
}

.home-frame-slot--2 {
  top: 64.35vw;
  left: 61.98vw;
  z-index: 8;
  width: 13.9vw;
  aspect-ratio: 534 / 1518;
  transform: rotate(0deg);
}

.home-frame-slot--3 {
  top: -21.8vw;
  left: 67.47vw;
  z-index: 6;
  width: 29.53vw;
  aspect-ratio: 1134 / 2117;
  transform: rotate(0deg) scale(0.90);
}

.home-frame-slot--4 {
  top: 29.81vw;
  left: 73.7vw;
  z-index: 7;
  width: 22.66vw;
  aspect-ratio: 870 / 1187;
  transform: rotate(0deg) scale(0.86);
}

.home-frame-slot--5 {
  top: 28.1vw;
  left: 59.98vw;
  z-index: 7;
  width: 23.57vw;
  aspect-ratio: 905 / 1143;
  transform: rotate(0deg) scale(0.86);
}

.home-frame-slot--6 {
  top: 17.2vw;
  left: 60.98vw;
  z-index: 8;
  width: 19.97vw;
  aspect-ratio: 767 / 468;
  transform: rotate(0deg) scale(0.86);
}

.home-slice {
  position: absolute;
  display: block;
  transform-origin: center center;
  filter: none;
}

.home-slice img {
  display: block;
  width: 100%;
  height: auto;
}

.home-slice--product-a {
  top: -295px;
  left: 30%;
  z-index: 4;
  width: 98%;
  transform: rotate(-7deg);
}

.home-slice--shape-a {
  top: -12px;
  left: 0;
  z-index: 7;
  width: 29%;
  transform: rotate(0deg);
}

.home-slice--product-b {
  top: 228px;
  left: 1%;
  z-index: 5;
  width: 68%;
  transform: rotate(-15deg);
}

.home-slice--shape-b {
  top: 382px;
  right: 2%;
  z-index: 6;
  width: 33%;
  transform: rotate(-1deg);
}

.home-slice--product-c {
  top: 780px;
  left: 18%;
  z-index: 4;
  width: 98%;
  transform: rotate(-9deg);
}

.home-slice--shape-c {
  top: 920px;
  left: 0;
  z-index: 7;
  width: 25%;
  transform: rotate(0deg);
}

.home-slice--product-d {
  top: 505px;
  left: 6%;
  z-index: 5;
  width: 68%;
  transform: rotate(-12deg);
}

.home-slice--shape-d {
  top: 1168px;
  right: 8%;
  z-index: 6;
  width: 26%;
  transform: rotate(6deg);
}

.more-info-bar {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 44px;
  border: 0;
  border-top: 1px solid var(--line);
  background: #202020;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  cursor: pointer;
}

.more-info-bar__triangle {
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #ffffb9;
  transition: transform 220ms ease;
}

.more-info-bar.is-collapsed .more-info-bar__triangle {
  transform: rotate(180deg);
}

.section,
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 44px;
}

.section--dark {
  max-width: none;
  background: var(--panel);
}

.section--dark > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section__header {
  margin-bottom: 38px;
}

.section__header--split {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 70px;
}

.section__header h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
}

.page-hero {
  padding-top: 170px;
  padding-bottom: 86px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

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

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

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

.product-card,
.news-card,
.store-card {
  background: var(--panel);
  border: 1px solid var(--line);
}

.product-card__media,
.news-card__media {
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #1b1d18, #10110f);
  color: var(--dim);
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}

.product-card__media {
  aspect-ratio: 1.18;
  position: relative;
}

.product-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  color: inherit;
  text-decoration: none;
}

.product-card__title {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.product-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #ffffb9;
  clip-path: polygon(0 0, 58% 50%, 0 100%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-card:hover .product-card__media::before,
.product-card:focus-within .product-card__media::before {
  opacity: 1;
  transform: translateX(0);
}

.news-card__media {
  aspect-ratio: 1.55;
}

.product-card__media img,
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card__gallery {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-card__gallery img {
  position: absolute;
  top: 7%;
  left: 8%;
  width: 84%;
  height: 80%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 420ms ease, transform 240ms ease;
}

.product-card__gallery img.is-active {
  opacity: 1;
}

.product-card:hover .product-card__media img,
.product-card:focus-within .product-card__media img,
.news-card:hover .news-card__media img {
  transform: scale(1.035);
}

.product-card__body,
.news-card__body,
.store-card {
  padding: 24px;
}

.product-card__body {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card__meta,
.news-card time {
  margin: 0 0 10px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.product-card h2,
.news-card h2,
.store-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.12;
}

.product-card h2 a,
.news-card h2 a {
  text-decoration: none;
}

.product-card p,
.news-card p,
.store-card p {
  color: var(--muted);
  line-height: 1.55;
}

.product-card__swatches {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin: 0;
}

.product-card__swatch {
  width: 17px;
  height: 17px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.42);
  background: var(--swatch, #fff);
  cursor: pointer;
}

.product-card__swatch.is-active,
.product-card__swatch:hover,
.product-card__swatch:focus {
  border-color: #ffffb9;
  outline: 1px solid #ffffb9;
}

.product-filters {
  margin-bottom: 28px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) minmax(210px, 1.2fr) auto auto;
  gap: 12px;
  align-items: end;
}

.filter-row label {
  display: grid;
  gap: 8px;
}

.filter-row span,
.contact-form label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.filter-row select,
.filter-row input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  background: #0b0c0b;
  color: var(--text);
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 160px;
  padding-top: 12px;
  resize: vertical;
}

.product-browser.is-loading #product-results {
  opacity: 0.42;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 54px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 156px 44px 96px;
}

.product-detail__media {
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border: 1px solid var(--line);
}

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

.media-placeholder {
  color: var(--dim);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 84px);
  line-height: 0.98;
}

.product-detail--reference {
  display: block;
  max-width: none;
  min-height: calc(100svh - var(--header));
  padding: calc(var(--header) + clamp(40px, 5.2vh, 72px)) clamp(42px, 7.2vw, 138px) 0;
  background: #000;
}

.product-breadcrumb {
  max-width: 1680px;
  margin: 0 auto clamp(34px, 3.1vw, 58px);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(8px, 0.5vw, 10px);
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.product-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.product-breadcrumb a:hover,
.product-breadcrumb a:focus {
  color: #ffffb9;
}

.product-detail__hero {
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  min-height: min(820px, calc(100svh - var(--header) - 52px));
  grid-template-columns: minmax(360px, 0.68fr) minmax(520px, 1.32fr);
  gap: clamp(42px, 5.4vw, 104px);
  align-items: center;
  isolation: isolate;
}

.product-detail__hero::before {
  content: "";
  position: absolute;
  top: clamp(-42px, -2.6vw, -20px);
  bottom: clamp(-42px, -2.6vw, -20px);
  left: calc(50% - 50vw);
  width: 100vw;
  z-index: -1;
  display: none;
  background-image: var(--product-hero-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.62;
  pointer-events: none;
}

.product-detail__hero.has-product-hero-bg::before {
  display: block;
}

.product-detail--reference .product-detail__media {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header) - 128px));
  overflow: visible;
  background: transparent;
  border: 0;
}

.product-detail--reference .product-detail__content {
  order: -1;
  align-self: start;
  max-width: 620px;
  padding-top: clamp(20px, 2.6vw, 50px);
}

.product-detail__gallery {
  position: relative;
  width: 100%;
  min-height: min(760px, calc(100svh - var(--header) - 128px));
  transform: translateX(clamp(-72px, -3.2vw, -34px));
}

.product-detail__gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1);
  transform-origin: center bottom;
  transition: opacity 420ms ease, transform 240ms ease;
}

.product-detail__gallery img.is-active {
  opacity: 1;
}

.product-detail--reference .product-detail__media > img {
  object-fit: contain;
}

.product-detail--reference .eyebrow {
  margin: 0 0 clamp(18px, 1.55vw, 30px);
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 900;
  letter-spacing: clamp(4.5px, 0.5vw, 8px);
  line-height: 1;
  text-transform: uppercase;
}

.product-detail--reference h1 {
  max-width: none;
  color: #ffffb9;
  font-size: clamp(58px, 5vw, 96px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: normal;
  white-space: nowrap;
}

.product-detail--reference .lead {
  max-width: 540px;
  margin: clamp(32px, 2.45vw, 48px) 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 400;
  line-height: 1.55;
}

.product-detail--reference .entry-content {
  max-width: 540px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1.62;
}

.product-detail__colors {
  margin-top: clamp(68px, 7vh, 118px);
}

.product-detail__colors p {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}

.product-detail__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-detail__swatches .product-card__swatch {
  width: clamp(38px, 3.2vw, 54px);
  height: clamp(38px, 3.2vw, 54px);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
  appearance: none;
}

.product-detail__swatches .product-card__swatch.is-active,
.product-detail__swatches .product-card__swatch:hover,
.product-detail__swatches .product-card__swatch:focus {
  border-color: #ffffb9;
  outline: 2px solid rgba(255, 255, 185, 0.5);
  outline-offset: 4px;
}

.product-detail__actions {
  margin-top: clamp(52px, 5.2vh, 90px);
  display: grid;
  justify-items: start;
  gap: clamp(24px, 2vw, 34px);
}

.product-detail__actions .button {
  min-height: 52px;
  padding: 0 34px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
}

.product-detail__actions .product-detail__spec-button {
  min-width: 0;
  min-height: 0;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #fff;
  text-decoration: none;
}

.product-detail__actions .product-detail__manual-button {
  min-width: clamp(210px, 15vw, 292px);
  min-height: 66px;
  padding: 0 34px;
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
}

.product-detail__actions .product-detail__utility-button {
  min-width: clamp(180px, 12.8vw, 260px);
  min-height: 54px;
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.78);
}

.product-detail__thumb-rail {
  position: absolute;
  right: clamp(-132px, -5.8vw, -78px);
  top: 50%;
  z-index: 20;
  display: grid;
  justify-items: center;
  gap: clamp(14px, 1.2vw, 22px);
  width: clamp(92px, 6.2vw, 118px);
  transform: translateY(-50%);
}

.product-detail__thumbs {
  display: grid;
  gap: clamp(12px, 1vw, 18px);
  width: calc(100% + 8px);
  margin: -4px;
  padding: 4px;
  max-height: min(640px, calc(100svh - var(--header) - 220px));
  overflow-y: auto;
  scrollbar-width: none;
}

.product-detail__thumbs::-webkit-scrollbar {
  display: none;
}

.product-detail__thumbs button {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  padding: clamp(8px, 0.7vw, 12px);
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  overflow: hidden;
  transition: background 180ms ease;
}

.product-detail__thumbs button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.product-detail__thumbs button:hover,
.product-detail__thumbs button:focus,
.product-detail__thumbs button.is-active {
  background: rgba(255, 255, 185, 0.12);
}

.product-detail__thumbs button:hover::after,
.product-detail__thumbs button:focus::after,
.product-detail__thumbs button.is-active::after {
  border-color: #ffffb9;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 185, 0.55);
}

.product-detail__thumbs img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail__thumb-arrow {
  width: 34px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.product-detail__thumb-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transition: border-color 160ms ease, transform 160ms ease;
}

.product-detail__thumb-arrow--prev::before {
  transform: rotate(45deg);
}

.product-detail__thumb-arrow--next::before {
  transform: rotate(225deg);
}

.product-detail__thumb-arrow:hover::before,
.product-detail__thumb-arrow:focus::before {
  border-color: #ffffb9;
}

.product-stories {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.product-story {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #050505;
  border-top: 0;
}

.product-story h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 3.4vw, 68px);
  line-height: 1;
}

.product-story p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.7;
}

.product-story .eyebrow {
  margin: 0 0 16px;
  color: #ffffb9;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.product-story--feature {
  min-height: clamp(420px, 38vw, 720px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 5vw, 92px);
  align-items: center;
  padding: clamp(46px, 5.2vw, 92px);
}

.product-story--image-right .product-story__image {
  order: 2;
}

.product-story__image {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-story__image img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
}

.product-story__copy {
  max-width: 700px;
}

.product-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.product-mini-stats span {
  min-width: 136px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-mini-stats strong {
  display: block;
  color: #ffffb9;
  font-size: 30px;
  line-height: 1;
}

.product-story--full-image {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 0;
  padding: 0;
  text-align: center;
}

.product-story--full-image > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
}

.product-story__caption {
  max-width: 980px;
  margin: 38px auto 0;
}

.product-story--banner {
  min-height: clamp(320px, 30vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(46px, 5vw, 96px);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.product-story--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.product-story--banner .product-story__copy {
  position: relative;
  z-index: 1;
}

.product-story--stats {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
  padding: clamp(46px, 5.2vw, 92px);
}

.product-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-stat {
  min-height: 160px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-stat strong {
  display: block;
  color: #ffffb9;
  font-size: clamp(40px, 4vw, 76px);
  line-height: 1;
}

.product-stat span,
.product-stat small {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.product-stat small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.product-specifications {
  max-width: 1680px;
  margin: 0 auto;
  padding: 92px 0 140px;
  border-top: 0;
}

.product-specifications h2 {
  margin: 0 0 46px;
  color: #fff;
  font-size: clamp(42px, 3.6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

.product-spec-groups {
  display: grid;
  gap: 52px;
}

.product-spec-group h3 {
  margin: 0 0 22px;
  color: #ffffb9;
  font-size: clamp(22px, 1.5vw, 30px);
  line-height: 1.2;
  text-transform: uppercase;
}

.product-spec-table {
  margin: 0;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.product-spec-html {
  overflow-x: auto;
}

.product-spec-html table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #050505;
  color: #d6d6d6;
}

.product-spec-html th,
.product-spec-html td {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
  vertical-align: top;
}

.product-spec-html th {
  color: #ffffb9;
  font-weight: 800;
}

.product-spec-html tr:first-child th,
.product-spec-html tr:first-child td {
  color: #fff;
  font-weight: 800;
}

.product-spec-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

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

.product-spec-row dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.product-spec-row dd {
  color: #fff;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.55;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.entry-content,
.page-content {
  color: rgba(242, 241, 231, 0.78);
  line-height: 1.72;
}

.content-intro {
  max-width: 980px;
  color: rgba(242, 241, 231, 0.72);
  font-size: 18px;
}

.software-page,
.faq-page,
.news-page,
.stores-page,
.about-page,
.contact-page {
  max-width: 1680px;
  padding-top: 118px;
  padding-bottom: 140px;
}

.software-page .card-grid--products {
  margin-top: 70px;
}

.news-page .card-grid--news {
  gap: 42px;
}

.news-card {
  min-height: 100%;
}

.news-card__body {
  min-height: 230px;
}

.faq-page {
  display: block;
}

.faq-list {
  max-width: 1240px;
  margin-left: auto;
}

.faq-item {
  background: #070707;
  border-color: rgba(255,255,255,.16);
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-item summary {
  position: relative;
  padding: 28px 72px 28px 30px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffb9;
  font-size: 30px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.store-grid {
  gap: 34px;
}

.store-card {
  background: #070707;
  border: 1px solid rgba(255,255,255,.16);
  padding: 34px;
}

.store-card h2 {
  color: #fff;
}

.contact-page .section__header--split,
.about-page .section__header--split {
  margin-bottom: 56px;
}

.contact-page--reference {
  max-width: none;
  padding: 232px 24px 190px;
  background: #000;
}

.contact-intro {
  max-width: 850px;
  margin: 0 auto 108px;
  text-align: center;
}

.contact-intro > p {
  margin: 0;
  color: #ffffb9;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.contact-layout {
  align-items: start;
}

.contact-copy {
  max-width: 850px;
  margin: 20px auto 0;
  color: rgba(242,241,231,.7);
  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  background: #070707;
  border-color: rgba(255,255,255,.18);
  padding: 34px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 58px;
  background: #020202;
  border-color: rgba(255,255,255,.2);
}

.about-page .content-intro {
  max-width: 1180px;
  font-size: 20px;
  line-height: 1.9;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.spec-panel {
  margin: 26px 0;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.spec-panel h2 {
  margin: 0 0 14px;
}

.spec-panel pre {
  white-space: pre-wrap;
  color: var(--muted);
  font-family: inherit;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
}

.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
}

.faq-item summary:hover {
  color: var(--yellow);
}

.faq-item div {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.store-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 42px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
}

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

.contact-form--reference {
  width: min(100% - 48px, 850px);
  margin: 0 auto;
  gap: 70px;
  padding: 0;
  background: transparent;
  border: 0;
}

.contact-form--reference label {
  display: block;
}

.contact-form--reference input,
.contact-form--reference select,
.contact-form--reference textarea {
  width: 100%;
  min-height: 73px;
  border: 0;
  border-radius: 15px;
  background: #fff;
  color: #050505;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  padding: 0 28px;
  box-shadow: none;
}

.contact-form--reference select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position:
    calc(100% - 36px) 50%,
    calc(100% - 28px) 50%;
  background-size: 9px 9px, 9px 9px;
  background-repeat: no-repeat;
  padding-right: 62px;
}

.contact-form--reference textarea {
  min-height: 253px;
  padding-top: 30px;
  resize: vertical;
}

.contact-form--reference input::placeholder,
.contact-form--reference textarea::placeholder {
  color: #111;
  opacity: 1;
}

.contact-form--reference input:focus,
.contact-form--reference select:focus,
.contact-form--reference textarea:focus {
  box-shadow: 0 0 0 5px rgba(255, 255, 185, 0.3);
}

.contact-form__label {
  margin: 0 0 -56px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form__submit {
  justify-self: end;
  min-width: 258px;
  min-height: 73px;
  border: 0;
  border-radius: 15px;
  background: #ffffb9;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-note {
  margin: 0;
  padding: 18px 24px;
  border-radius: 16px;
  color: #111;
  font-weight: 800;
  text-align: center;
}

.form-note--success {
  background: var(--green);
}

.form-note--error {
  background: var(--red);
}

.article-image {
  margin: 0 0 34px;
}

.site-footer {
  background: #10110f;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 44px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 44px;
}

.footer-column h2 {
  margin: 0 0 16px;
  font-size: 15px;
}

.footer-column h2 a {
  color: inherit;
  text-decoration: none;
}

.footer-column h2 a:hover {
  color: var(--yellow);
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--dim);
  font-size: 11px;
  text-transform: uppercase;
}

.social-links__menu {
  display: flex;
  gap: 8px;
}

.social-links__menu a {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
}

.social-links__menu a:hover {
  color: var(--yellow);
  border-color: rgba(217, 219, 114, 0.6);
}

.nav-links,
.page-numbers {
  display: flex;
  gap: 8px;
}

.page-numbers {
  margin-top: 30px;
}

.page-numbers a,
.page-numbers span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  text-decoration: none;
}

.page-numbers .current {
  background: var(--yellow);
  color: #111;
}

/* Visual-reference pass based on the exported JPG comps. */
.site-header {
  height: 92px;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 185, 0.82);
  transform: none;
}

.site-header:hover,
.site-header:focus-within,
.site-header.is-open,
.site-header.is-scrolled {
  transform: none;
  border-color: rgba(255, 255, 185, 0.95);
}

.site-header__inner {
  grid-template-columns: 250px 1fr 48px;
  max-width: 1920px;
  padding: 0 clamp(34px, 5vw, 92px);
}

.custom-logo {
  max-height: 56px;
}

.site-logo__text {
  min-width: 138px;
  min-height: 56px;
}

.site-logo__image-fallback img {
  width: 138px;
  height: auto;
}

.primary-nav__menu {
  justify-content: center;
  gap: clamp(34px, 5vw, 96px);
}

.primary-nav a {
  min-height: 46px;
  font-size: 15px;
  letter-spacing: 0;
}

.primary-nav .sub-menu {
  min-width: 178px;
  padding: 0;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 190, 0.18);
}

.primary-nav .sub-menu a {
  width: 100%;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu a:focus {
  background: #ffffb9;
  color: #111 !important;
}

.primary-nav .sub-menu .current-menu-item > a,
.primary-nav .sub-menu .current-menu-parent > a,
.primary-nav .sub-menu .current-menu-ancestor > a {
  background: #ffffb9;
  color: #111 !important;
}

.site-search {
  display: none;
}

.language-trigger {
  min-width: 42px;
  min-height: 42px;
  justify-content: center;
  background: #ffffb9;
  color: #111;
  font-size: 13px;
}

.language-menu {
  top: calc(100% + 12px);
  min-width: 92px;
  padding: 8px;
  border-color: rgba(255, 255, 185, 0.32);
}

.language-menu a {
  min-height: 40px;
  font-size: 14px;
}

.language-menu .is-current a {
  background: rgba(255, 255, 185, 0.16);
  color: #ffffb9;
}

.home-hero {
  min-height: 860px;
}

.home-hero__content {
  padding-top: 210px;
}

.home-hero .eyebrow {
  display: none;
}

.page-hero {
  position: relative;
  max-width: none;
  min-height: 660px;
  padding: 92px 44px 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.visual-hero {
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: var(--banner-text-align, center);
}

.visual-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: #f3e967;
}

.visual-hero > * {
  position: relative;
  z-index: 1;
}

.visual-hero .eyebrow,
.visual-hero h1,
.visual-hero p:not(.eyebrow) {
  position: relative;
  width: min(100%, 980px);
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.visual-hero--product { background-image: url("../images/product-hero.jpg"); }
.visual-hero--software { background-image: url("../images/software-hero.jpg"); }
.visual-hero--news { background-image: url("../images/news-hero.jpg"); }
.visual-hero--faq { background-image: none; }
.visual-hero--support { background-image: none; }
.visual-hero--stores { background-image: url("../images/stores-hero.jpg"); }
.visual-hero--about { background-image: url("../images/about-hero.jpg"); }
.visual-hero--contact { background-image: url("../images/contact-hero.jpg"); }

.visual-hero--contact {
  min-height: 670px;
  background-position: center center;
  background-size: cover;
}

.visual-hero--text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 660px;
  padding: 92px 44px 0;
  text-align: var(--banner-text-align, center);
  background-size: cover;
}

.visual-hero--software {
  background-position: center center;
}

.visual-hero--product,
.visual-hero--software,
.visual-hero--support {
  min-height: 670px;
  background-position: center center;
  background-size: cover;
}

.visual-hero--software.visual-hero--text {
  text-align: var(--banner-text-align, center);
}

.visual-hero--software .visual-hero__copy {
  display: grid;
  justify-items: var(--banner-text-justify, center);
  text-align: var(--banner-text-align, center);
}

.visual-hero--software.visual-hero--text h1 {
  width: min(100%, 980px);
  margin-left: auto;
  margin-right: auto;
  color: var(--banner-text-color, #fff);
  font-size: var(--banner-title-font-size, clamp(42px, 3.35vw, 68px));
  letter-spacing: 0;
}

.visual-hero--software.visual-hero--text .eyebrow,
.visual-hero--software.visual-hero--text p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.visual-hero--faq,
.visual-hero--support {
  background-position: center center;
}

.visual-hero__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1220px);
  text-align: var(--banner-text-align, center);
}

.visual-hero--text .eyebrow,
.visual-hero--text h1,
.visual-hero--text p:not(.eyebrow) {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.visual-hero--text .eyebrow {
  margin: 0 0 24px;
  color: var(--banner-text-color, #ffffb9);
}

.visual-hero h1 {
  color: var(--banner-text-color, #fff);
  font-family: var(--banner-font-family, Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif);
  font-size: var(--banner-title-font-size, clamp(42px, 3.35vw, 68px));
  font-weight: var(--banner-title-font-weight, 800);
  line-height: 1;
  transform: translate(var(--banner-title-offset-x, 0), var(--banner-title-offset-y, 0));
}

.visual-hero p:not(.eyebrow) {
  max-width: min(100%, 780px);
  color: var(--banner-text-color, #fff);
  font-family: var(--banner-font-family, Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif);
  font-size: var(--banner-subtitle-font-size, clamp(18px, 1.35vw, 26px));
  font-weight: var(--banner-subtitle-font-weight, 400);
  line-height: 1.4;
}

.visual-hero--text h1 {
  width: min(100%, 1180px);
  color: #fff;
  font-size: clamp(42px, 3.35vw, 68px);
  font-weight: 800;
  letter-spacing: 0;
}

.software-page--reference,
.faq-page--reference,
.support-page {
  max-width: none;
  padding: 96px clamp(42px, 6.25vw, 120px) 128px;
}

.software-page--reference {
  background: #000;
  padding: clamp(145px, 11vw, 230px) 24px clamp(180px, 14vw, 285px);
}

.software-downloads__head {
  max-width: 980px;
  margin: 0 0 42px;
}

.software-downloads__head h2 {
  margin: 0 0 18px;
  color: #ffffb9;
  font-size: clamp(28px, 2.3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.software-downloads__head p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.7;
}

.software-downloads {
  display: grid;
  justify-items: center;
  gap: 54px;
}

.software-download-card {
  display: grid;
  grid-template-columns: minmax(230px, 1.04fr) minmax(230px, 0.96fr);
  width: min(100%, 640px);
  min-height: 320px;
  padding: 32px;
  border-radius: 10px;
  background: #6b7072;
  color: #fff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}

.software-download-card__media {
  position: relative;
  aspect-ratio: 1060 / 790;
  min-height: 238px;
  border-radius: 9px;
  background: transparent;
  overflow: hidden;
}

.software-download-card__visual {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.software-download-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 0 28px 42px;
}

.software-download-card__kicker {
  margin: 0 0 22px;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.software-download-card h2 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
}

.software-download-card__body > p:not(.software-download-card__kicker) {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(16px, 1.1vw, 21px);
}

.software-download-card__actions {
  display: grid;
  justify-items: start;
  gap: 24px;
  margin-top: 54px;
}

.button--light,
.button--ghost-light {
  min-width: 92px;
  min-height: 34px;
  border-color: rgba(255,255,255,.82);
  color: #fff;
  background: transparent;
  font-size: 16px;
}

.button--light {
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  background: #ffffb9;
  color: #111;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.button--light:hover,
.button--light:focus,
.button--ghost-light:hover,
.button--ghost-light:focus {
  border-color: #ffffb9;
  background: #ffffb9;
  color: #111;
}

.support-page {
  background: #000;
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.support-card {
  min-height: 300px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.16);
  background: #080808;
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.support-card:hover,
.support-card:focus {
  transform: translateY(-4px);
  border-color: #ffffb9;
  background: #111;
}

.support-card span {
  display: block;
  margin-bottom: 54px;
  color: #ffffb9;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
}

.support-card h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1;
}

.support-card p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.65;
}

.faq-page--reference {
  background: #000;
}

.faq-page--reference .section__header {
  padding-bottom: 34px;
  border-bottom: 6px solid #ffff5e;
}

.faq-page--reference .section__header h2 {
  color: #fff;
  font-size: clamp(34px, 3.1vw, 62px);
}

.faq-page--reference .faq-list {
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 74px;
}

.faq-page--reference .faq-item {
  min-height: 260px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.34);
  background: transparent;
}

.faq-page--reference .faq-item + .faq-item {
  margin-top: 0;
}

.faq-page--reference .faq-item summary {
  padding: 28px 48px 18px 0;
  color: #fff;
  font-size: clamp(22px, 1.7vw, 34px);
  line-height: 1.2;
}

.faq-page--reference .faq-item summary::after {
  right: 0;
  color: #ffffb9;
}

.faq-page--reference .faq-item div {
  padding: 0 0 28px;
  color: rgba(255,255,255,.68);
  font-size: 17px;
}

.product-browser--reference {
  max-width: none;
  padding: 105px 120px 145px;
}

.product-filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 74px;
}

.spec-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.spec-heading h2 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 1px;
}

.spec-heading:hover h2,
.spec-heading:focus h2,
.spec-heading[aria-expanded="true"] h2 {
  color: #ffffb9;
}

.spec-heading[aria-expanded="true"] .spec-heading__icon,
.spec-heading[aria-expanded="true"] .spec-heading__icon::before,
.spec-heading[aria-expanded="true"] .spec-heading__icon::after {
  background: #ffffb9;
}

.spec-heading__icon,
.spec-heading__icon::before,
.spec-heading__icon::after {
  display: block;
  width: 32px;
  height: 3px;
  background: #fff;
}

.spec-heading__icon {
  position: relative;
}

.spec-heading__icon::before,
.spec-heading__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.spec-heading__icon::before { top: -10px; }
.spec-heading__icon::after { top: 10px; }

.product-filters {
  margin: -28px 0 86px;
  padding: 0;
  background: transparent;
  border: 0;
}

.product-category-filter {
  width: min(100%, 360px);
}

.product-category-filter select {
  width: 100%;
  min-height: 72px;
  border: 1px solid rgba(255,255,255,.22);
  background-color: #050505;
  background-image: linear-gradient(45deg, transparent 50%, #ffffb9 50%), linear-gradient(135deg, #ffffb9 50%, transparent 50%);
  background-position: calc(100% - 26px) 50%, calc(100% - 19px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  appearance: none;
  padding: 0 58px 0 24px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.product-category-filter select:hover,
.product-category-filter select:focus {
  border-color: #ffffb9;
  outline: 0;
}

.product-filters[hidden] {
  display: none;
}

.filter-panel {
  max-width: 1540px;
  min-height: 420px;
  padding: 54px 76px 48px;
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(255,255,255,.04);
  box-shadow: 0 24px 90px rgba(0,0,0,.34);
}

.filter-group {
  margin: 0 0 54px;
  padding: 0;
  border: 0;
}

.filter-group legend {
  display: block;
  margin: 0 0 28px;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.filter-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 28px 58px;
}

.filter-check {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.filter-check input {
  width: 27px;
  height: 27px;
  margin: 0;
  accent-color: #ffffb9;
}

.filter-check span {
  display: inline;
}

.filter-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.product-browser--reference .button--ghost {
  min-height: 52px;
  padding: 0 24px;
  border-color: rgba(255,255,255,.22);
  background: #050505;
  color: #fff;
  font-size: 16px;
}

.product-browser--reference .button--ghost:hover,
.product-browser--reference .button--ghost:focus {
  border-color: #ffffb9;
  background: #ffffb9;
  color: #111;
}

.filter-summary {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 42px;
  min-height: 38px;
}

.filter-summary:not(.has-filter-tags) {
  display: none;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tag {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,185,.52);
  background: rgba(255,255,185,.08);
  color: #ffffb9;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.product-browser--reference .card-grid--products {
  transition: opacity 220ms ease, filter 220ms ease;
}

.product-browser--reference.is-filter-open .card-grid--products {
  opacity: .28;
  filter: brightness(.46);
}

.product-browser--reference .card-grid--products {
  max-width: 1680px;
  gap: 48px;
}

.product-card,
.news-card,
.store-card {
  background: transparent;
  border: 0;
}

.product-card__media,
.news-card__media {
  background: #5d6263;
}

.product-browser--reference .product-card__media {
  aspect-ratio: 0.78;
  min-height: 0;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.product-browser--reference .product-card {
  max-width: 520px;
}

.product-browser--reference .product-card__gallery img {
  top: 15%;
  left: 10%;
  width: 80%;
  height: 70%;
}

.product-browser--reference .product-card:hover .product-card__media,
.product-browser--reference .product-card:focus-within .product-card__media {
  box-shadow: 0 0 0 2px #ffffb9;
}

.product-browser--reference .product-card h2 {
  text-align: center;
  font-size: 34px;
}

.product-browser--reference .product-card__title {
  top: 12.5%;
  font-size: 32px;
}

.product-browser--reference .product-card__body {
  display: none;
}

.news-card__body,
.store-card {
  padding: 24px 0;
}

.product-card h2,
.news-card h2,
.store-card h2 {
  font-size: 28px;
}

.site-footer {
  background: #151515;
  margin-top: 0;
  overflow: hidden;
  transition: max-height 320ms ease, opacity 240ms ease;
  max-height: 760px;
}

.site-footer.is-collapsed {
  max-height: 0;
  opacity: 0;
  border-top: 0;
}

.site-footer__inner {
  max-width: 1920px;
  padding: 72px 110px 52px;
}

.footer-grid {
  gap: 72px;
  margin-bottom: 68px;
}

.footer-column h2 {
  margin-bottom: 22px;
  color: rgba(255,255,255,.62);
  font-size: 20px;
}

.footer-links a {
  font-size: 15px;
}

.footer-bottom {
  align-items: end;
  padding-top: 0;
  border-top: 0;
}

.footer-bottom p {
  font-size: 12px;
  line-height: 1.6;
}

.social-links__menu {
  gap: 32px;
}

.social-links__menu a {
  min-width: 50px;
  min-height: 50px;
  color: #ffffb9;
  font-size: 0;
}

.social-links__menu img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-links__menu span {
  font-size: 14px;
}

.home .home-nav-hotzone,
.front-page .home-nav-hotzone {
  position: fixed;
  inset: 0 0 auto;
  z-index: 99;
  height: 112px;
}

.home .site-header,
.front-page .site-header {
  height: 92px;
  background: transparent;
  border-bottom-color: transparent;
  pointer-events: none;
}

.home .site-header__inner,
.front-page .site-header__inner {
  pointer-events: none;
}

.home .site-logo,
.front-page .site-logo {
  pointer-events: auto;
}

.home .primary-nav,
.home .site-actions,
.front-page .primary-nav,
.front-page .site-actions {
  opacity: 0;
  transform: translateY(-115%);
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms ease;
}

.home .site-header::before,
.front-page .site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #000;
  border-bottom: 2px solid rgba(255, 255, 185, 0.82);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 220ms ease, transform 260ms ease;
}

.home .home-nav-hotzone:hover + .site-header,
.home .site-header:hover,
.home .site-header:focus-within,
.home .site-header.is-open,
.front-page .home-nav-hotzone:hover + .site-header,
.front-page .site-header:hover,
.front-page .site-header:focus-within,
.front-page .site-header.is-open {
  pointer-events: auto;
}

.home .home-nav-hotzone:hover + .site-header::before,
.home .site-header:hover::before,
.home .site-header:focus-within::before,
.home .site-header.is-open::before,
.front-page .home-nav-hotzone:hover + .site-header::before,
.front-page .site-header:hover::before,
.front-page .site-header:focus-within::before,
.front-page .site-header.is-open::before {
  opacity: 1;
  transform: translateY(0);
}

.home .home-nav-hotzone:hover + .site-header .primary-nav,
.home .home-nav-hotzone:hover + .site-header .site-actions,
.home .site-header:hover .primary-nav,
.home .site-header:hover .site-actions,
.home .site-header:focus-within .primary-nav,
.home .site-header:focus-within .site-actions,
.home .site-header.is-open .primary-nav,
.home .site-header.is-open .site-actions,
.front-page .home-nav-hotzone:hover + .site-header .primary-nav,
.front-page .home-nav-hotzone:hover + .site-header .site-actions,
.front-page .site-header:hover .primary-nav,
.front-page .site-header:hover .site-actions,
.front-page .site-header:focus-within .primary-nav,
.front-page .site-header:focus-within .site-actions,
.front-page .site-header.is-open .primary-nav,
.front-page .site-header.is-open .site-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home .primary-nav a:hover,
.home .primary-nav a:focus,
.front-page .primary-nav a:hover,
.front-page .primary-nav a:focus {
  color: #ffffb9;
}

.home .primary-nav .sub-menu a:hover,
.home .primary-nav .sub-menu a:focus,
.front-page .primary-nav .sub-menu a:hover,
.front-page .primary-nav .sub-menu a:focus {
  color: #111 !important;
}

.visual-hero--news,
.visual-hero--stores,
.visual-hero--about,
.visual-hero--faq {
  min-height: 670px;
  background-position: center center;
  background-size: cover;
}

.visual-hero--about {
  background-size: cover;
}

.visual-hero--faq {
  background-image: url("../images/faq-hero.jpg");
}

.visual-hero--stores,
.visual-hero--about,
.visual-hero--news {
  background-color: #000;
}

.stores-page--reference,
.faq-page--reference,
.news-page--reference,
.about-page--reference {
  max-width: none;
  background: #000;
}

.stores-page--reference {
  padding: 156px 24px 156px;
}

.stores-page--reference.is-loading .store-grid,
.stores-page--reference.is-loading .stores-reference-copy {
  opacity: .42;
  transition: opacity 160ms ease;
}

.store-filter-form {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 104px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 5.6vw, 92px);
  align-items: start;
}

.store-filter-control {
  position: relative;
  z-index: 5;
}

.store-filter-control.is-open {
  z-index: 20;
}

.store-filter-toggle {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 34px 0 44px;
  border: 0;
  border-radius: 0;
  background: #ffffb9;
  color: #111;
  font-family: inherit;
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.store-filter-toggle svg {
  flex: 0 0 auto;
  color: #9e9e9e;
}

.store-filter-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  max-height: 500px;
  padding: 14px 18px 0;
  overflow: hidden;
  background: #ffffb9;
  color: #111;
  box-shadow: 0 28px 36px rgba(0, 0, 0, .46);
}

.store-filter-control.is-open .store-filter-panel {
  display: block;
}

.store-filter-search {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.store-filter-search input {
  width: 100%;
  height: 60px;
  padding: 0 72px 0 20px;
  border: 2px solid #202020;
  border-radius: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 18px;
  outline: 0;
}

.store-filter-search svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #111;
  pointer-events: none;
}

.store-filter-options {
  max-height: 330px;
  padding-bottom: 10px;
  overflow-y: auto;
  scrollbar-color: #050505 transparent;
  scrollbar-width: thin;
}

.store-filter-options::-webkit-scrollbar {
  width: 12px;
}

.store-filter-options::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #050505;
}

.store-filter-options a {
  display: block;
  padding: 18px 10px;
  color: #111;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 400;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.store-filter-options a:hover,
.store-filter-options a:focus,
.store-filter-options a.is-selected {
  background: #d9d9d9;
  outline: 0;
}

.store-filter-option-empty {
  display: block;
  padding: 18px 10px 26px;
  color: rgba(17, 17, 17, 0.6);
  font-size: 18px;
  text-transform: uppercase;
}

.stores-reference-copy {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 58px;
}

.stores-reference-copy h2 {
  margin: 0 0 58px;
  color: #fff;
  font-size: clamp(24px, 1.45vw, 30px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.stores-reference-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.15vw, 24px);
  line-height: 1.25;
}

.store-filter-reset {
  display: inline-flex;
  margin-top: 24px;
  color: #ffffb9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.stores-page--reference .store-grid {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(58px, 5vw, 86px) clamp(62px, 5.2vw, 90px);
}

.stores-page--reference .store-card {
  min-height: 104px;
  padding: 22px 26px;
  background: #9b9b98;
  border: 0;
  color: #111;
}

.stores-page--reference .store-card h2 {
  margin: 0 0 8px;
  color: #111;
  font-size: clamp(18px, 1.15vw, 24px);
  line-height: 1.12;
}

.stores-page--reference .store-card p,
.stores-page--reference .store-card .product-card__meta {
  margin: 0;
  color: rgba(0, 0, 0, .72);
  font-size: 14px;
  line-height: 1.35;
}

.stores-page--reference .store-card .button {
  display: none;
}

.stores-page--reference .empty-state,
.faq-page--reference .empty-state,
.news-page--reference .empty-state {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
}

.stores-page--reference .store-empty-state {
  grid-column: 1 / -1;
  padding: 42px 36px;
  border: 1px solid rgba(255, 255, 185, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.faq-page--reference {
  padding: 150px clamp(48px, 8.2vw, 158px) 174px;
}

.faq-reference-heading {
  max-width: 1460px;
  margin: 0 auto 86px;
}

.faq-reference-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.1vw, 60px);
  line-height: 1;
}

.faq-article-grid {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 76px 62px;
}

.faq-article-card {
  min-height: 220px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.faq-article-card h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(21px, 1.35vw, 26px);
  line-height: 1.22;
}

.faq-article-card h3 a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.faq-article-card h3 a:hover,
.faq-article-card h3 a:focus {
  color: #ffffb9;
}

.faq-article-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.7;
}

.news-page--reference {
  padding: clamp(88px, 6.6vw, 128px) clamp(72px, 4.5vw, 172px) clamp(140px, 10.5vw, 202px);
}

.news-list-shell {
  position: relative;
  width: min(3440px, 100%);
  margin: 0 auto;
}

.news-list {
  display: grid;
  gap: clamp(56px, 4.2vw, 112px);
  max-height: clamp(680px, 54vw, 1460px);
  overflow-y: auto;
  padding-right: clamp(44px, 4.2vw, 88px);
  scrollbar-color: #ffffb9 transparent;
  scrollbar-width: thin;
}

.news-list:focus {
  outline: 1px solid rgba(255, 255, 185, 0.28);
  outline-offset: 10px;
}

.news-list::-webkit-scrollbar {
  width: 30px;
}

.news-list::-webkit-scrollbar-track {
  background: transparent;
}

.news-list::-webkit-scrollbar-thumb {
  border: 8px solid #000;
  border-radius: 18px;
  background: #ffffb9;
}

.news-list-card {
  display: grid;
  grid-template-columns: minmax(230px, 28%) minmax(0, 1fr) minmax(180px, auto);
  gap: clamp(48px, 5vw, 132px);
  align-items: center;
  min-height: clamp(320px, 22.4vw, 520px);
  padding: clamp(58px, 4.9vw, 116px) clamp(58px, 6.4vw, 136px);
  border-radius: clamp(16px, 1.45vw, 34px);
  background: #5d6264;
  color: rgba(255, 255, 255, 0.86);
}

.news-list-card__media {
  display: block;
  width: min(100%, 560px);
  justify-self: center;
  overflow: hidden;
  background: #d6d6d6;
}

.news-list-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.news-list-card__body {
  max-width: 960px;
}

.news-list-card__body h2 {
  margin: 0 0 clamp(22px, 2vw, 40px);
  color: #ffffb9;
  font-size: clamp(28px, 2.1vw, 52px);
  font-weight: 500;
  line-height: 1.18;
}

.news-list-card__body h2 a {
  color: inherit;
  text-decoration: none;
}

.news-list-card__body h2 a:hover,
.news-list-card__body h2 a:focus,
.news-list-card__link:hover,
.news-list-card__link:focus {
  color: #fff;
}

.news-list-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.16vw, 28px);
  line-height: 1.58;
}

.news-list-card__body strong {
  display: block;
  margin-top: clamp(26px, 2vw, 42px);
  color: #fff;
  font-size: clamp(17px, 1.16vw, 26px);
  font-weight: 800;
  line-height: 1.45;
}

.news-list-card__link {
  align-self: end;
  justify-self: end;
  color: #ffffb9;
  font-size: clamp(22px, 1.72vw, 42px);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.news-list-cue {
  position: absolute;
  right: 0;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
}

.news-list-cue--top {
  top: -56px;
  border-bottom: 18px solid #ffffb9;
}

.news-list-cue--bottom {
  right: 0;
  bottom: -56px;
  border-top: 18px solid #ffffb9;
}

.news-pagination {
  margin-top: 48px;
}

.about-page--reference {
  position: relative;
  min-height: calc(100svh - var(--header));
  padding: clamp(78px, 6.2vw, 118px) clamp(68px, 8.4vw, 162px) clamp(92px, 7vw, 132px);
  color: #fff;
  overflow: hidden;
}

.about-story {
  max-width: 1700px;
  height: min(940px, calc(100svh - var(--header) - 150px));
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.about-story h2 {
  margin: 0 0 clamp(46px, 4.2vw, 82px);
  color: #fff;
  text-align: center;
  font-size: clamp(36px, 3vw, 58px);
  line-height: 1;
}

.about-story__body {
  color: #fff;
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1.62;
  max-height: 100%;
  overflow-y: auto;
  padding-right: clamp(72px, 6.4vw, 124px);
  scrollbar-color: #ffffb9 transparent;
  scrollbar-width: thin;
}

.about-story__body:focus {
  outline: 1px solid rgba(255, 255, 185, 0.28);
  outline-offset: 10px;
}

.about-story__body::-webkit-scrollbar {
  width: 30px;
}

.about-story__body::-webkit-scrollbar-track {
  background: transparent;
}

.about-story__body::-webkit-scrollbar-thumb {
  border: 8px solid #000;
  border-radius: 18px;
  background: #ffffb9;
}

.about-story__body p {
  margin: 0 0 48px;
}

.about-story__body strong {
  font-weight: 400;
}

.about-story__center {
  margin-top: 130px !important;
  text-align: center;
}

.about-story__mark {
  margin: 96px 0 96px !important;
  text-align: center;
  letter-spacing: 8px;
}

.about-scroll-cue {
  display: none;
  position: absolute;
  right: clamp(54px, 5.5vw, 106px);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
}

.about-scroll-cue--top {
  top: 520px;
  border-bottom: 18px solid #ffffb9;
}

.about-scroll-cue--bottom {
  bottom: 292px;
  border-top: 18px solid #ffffb9;
}

.about-page--reference::after {
  content: "";
  display: none;
  position: absolute;
  right: clamp(62px, 5.8vw, 112px);
  top: 645px;
  width: 28px;
  height: 922px;
  border-radius: 18px;
  background: #ffffb9;
}

@media (max-width: 1600px) {
  .site-header {
    height: 82px;
  }

  .site-header__inner {
    grid-template-columns: 220px 1fr 42px;
    padding: 0 clamp(30px, 5.2vw, 76px);
  }

  .custom-logo {
    max-height: 50px;
  }

  .site-logo__text {
    min-width: 120px;
    min-height: 50px;
  }

  .site-logo__image-fallback img {
    width: 120px;
  }

  .primary-nav__menu {
    gap: clamp(24px, 4vw, 66px);
  }

  .primary-nav a {
    font-size: 14px;
    min-height: 42px;
  }

  .language-trigger {
    min-width: 34px;
    min-height: 34px;
    font-size: 13px;
  }

  .visual-hero {
    background-size: cover;
  }

  .page-hero {
    min-height: 560px;
    padding-top: 82px;
  }

  .visual-hero--text {
    min-height: 560px;
    padding: 112px 78px 76px;
  }

  .product-browser--reference {
    padding: 82px 84px 118px;
  }

  .site-footer__inner {
    padding: 64px 78px 48px;
  }

  .footer-column h2 {
    font-size: 18px;
  }

  .footer-links a {
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    height: var(--header);
    transform: translateY(0);
  }

  .home .site-header,
  .front-page .site-header {
    height: var(--header);
    background: rgba(7, 8, 7, 0.94);
    border-bottom-color: rgba(255, 255, 185, 0.32);
    pointer-events: auto;
  }

  .home .site-header__inner,
  .front-page .site-header__inner,
  .home .nav-toggle,
  .front-page .nav-toggle {
    pointer-events: auto;
  }

  .home .home-nav-hotzone,
  .front-page .home-nav-hotzone {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 22px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    z-index: 110;
    display: none;
    padding: 20px 22px 28px;
    background: rgba(7, 8, 7, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .primary-nav {
    display: block;
  }

  .home .site-header.is-open .primary-nav,
  .front-page .site-header.is-open .primary-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav__menu {
    display: grid;
    gap: 6px;
  }

  .primary-nav a {
    width: 100%;
    min-height: 46px;
  }

  .primary-nav .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    border: 0;
    background: transparent;
    padding: 0 0 0 16px;
  }

  .site-actions {
    display: none;
  }

  .home-hero__content {
    width: 72%;
  }

  .hero-tiles {
    width: 36%;
    opacity: 0.72;
  }

  .home-slice-stage {
    display: none !important;
  }

  .home-slice-scene {
    height: 1360px;
  }

  .home-slice-scene--frames {
    height: 112vh;
  }

  .home-frame-slot--1 {
    width: 8.4vw;
  }

  .home-frame-slot--3 {
    left: 62vw;
    width: 19vw;
  }

  .home-slice--product-a,
  .home-slice--product-c {
    width: 118%;
  }

  .filter-row,
  .card-grid--products,
  .card-grid--news,
  .store-grid,
  .support-card-grid,
  .footer-grid,
  .product-detail,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .software-download-card {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
  }

  .software-download-card__media {
    min-height: 220px;
  }

  .software-download-card__body {
    padding: 34px 4px 12px;
  }

  .faq-page--reference .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-browser--reference .filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .filter-panel {
    padding: 42px 40px;
  }

  .product-filter-head {
    flex-direction: column;
  }

  .product-category-filter {
    width: min(100%, 420px);
  }

  .filter-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 32px;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  .site-logo__text {
    min-height: 38px;
    font-size: 22px;
  }

  .home-hero {
    min-height: 100svh;
    background: #000;
  }

  .home-hero__content {
    width: 100%;
    min-height: 100svh;
    justify-content: center;
    padding: 112px 22px 120px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 46px;
  }

  .home-title-img {
    width: min(100%, 560px);
    max-width: calc(100vw - 44px);
  }

  .home-subtitle-img {
    width: min(82%, 430px);
    max-width: calc(100vw - 44px);
    margin-top: 34px;
  }

  .hero-tiles {
    position: relative;
    inset: auto;
    width: 100%;
    height: 280px;
    opacity: 1;
    padding: 0 22px 22px;
  }

  .hero-tile {
    min-height: 160px;
  }

  .home-slice-stage {
    display: none !important;
  }

  .home-mobile-visual {
    display: none !important;
  }

  .more-info-bar,
  .section,
  .page-hero,
  .site-footer__inner,
  .product-detail {
    padding-left: 22px;
    padding-right: 22px;
  }

  .page-hero {
    min-height: 390px;
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .visual-hero--text {
    min-height: 520px;
    padding: 132px 22px 56px;
  }

  .visual-hero--text h1 {
    font-size: 44px;
  }

  .software-page--reference,
  .faq-page--reference,
  .support-page {
    padding: 68px 22px 88px;
  }

  .filter-row,
  .card-grid--products,
  .card-grid--news,
  .store-grid,
  .support-card-grid,
  .footer-grid,
  .product-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .software-download-card {
    min-height: 0;
    padding: 18px;
  }

  .software-download-card__media {
    min-height: 176px;
  }

  .software-download-card__body {
    padding: 26px 2px 4px;
  }

  .software-download-card__actions {
    margin-top: 34px;
  }

  .button--light,
  .button--ghost-light {
    width: 100%;
  }

  .software-download-card .button--light {
    width: auto;
    min-width: 92px;
  }

  .support-card {
    min-height: 250px;
    padding: 32px 26px;
  }

  .support-card span {
    margin-bottom: 44px;
  }

  .contact-page--reference {
    padding: 70px 22px 110px;
  }

  .contact-intro {
    margin-bottom: 58px;
  }

  .contact-form--reference {
    gap: 30px;
  }

  .contact-form--reference input,
  .contact-form--reference select {
    min-height: 72px;
    border-radius: 16px;
    padding: 0 24px;
    font-size: 18px;
  }

  .contact-form--reference select {
    background-position:
      calc(100% - 34px) 50%,
      calc(100% - 24px) 50%;
    background-size: 10px 10px, 10px 10px;
    padding-right: 58px;
  }

  .contact-form--reference textarea {
    min-height: 220px;
    border-radius: 16px;
    padding: 24px;
    font-size: 18px;
  }

  .contact-form__label {
    margin: 0 0 -14px;
    font-size: 14px;
  }

  .contact-form__submit {
    width: 100%;
    min-height: 72px;
    border-radius: 16px;
  }

  .faq-page--reference .section__header h2 {
    font-size: 38px;
  }

  .faq-page--reference .faq-list {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .product-browser--reference .filter-row {
    grid-template-columns: 1fr;
  }

  .spec-heading h2 {
    font-size: 21px;
  }

  .filter-panel {
    min-height: 0;
    padding: 30px 22px;
  }

  .product-category-filter,
  .product-category-filter select {
    width: 100%;
  }

  .filter-options {
    grid-template-columns: 1fr;
  }

  .filter-check {
    font-size: 19px;
  }

  .product-detail {
    padding-top: 108px;
  }

  .product-detail__media {
    min-height: 320px;
  }

  .site-footer:not(.is-collapsed) {
    max-height: none;
    overflow: visible;
  }

  .site-footer__inner {
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .footer-bottom p {
    max-width: 100%;
    white-space: normal;
  }

  .social-links__menu {
    flex-wrap: wrap;
    gap: 14px;
  }

  .social-links__menu a {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 1600px) {
  .visual-hero--product,
  .visual-hero--software,
  .visual-hero--support,
  .visual-hero--contact,
  .visual-hero--news,
  .visual-hero--stores,
  .visual-hero--about,
  .visual-hero--faq {
    min-height: 640px;
    background-position: center center;
    background-size: cover;
  }

  .stores-page--reference {
    padding-top: 128px;
  }

  .faq-page--reference {
    padding-top: 118px;
  }

  .about-page--reference {
    padding-top: 118px;
  }

  .about-story {
    height: min(820px, calc(100svh - var(--header) - 132px));
  }

  .about-story h2 {
    margin-bottom: clamp(42px, 4vw, 72px);
  }

  .about-page--reference::after,
  .about-scroll-cue {
    display: none;
  }

  .visual-hero--about {
    background-size: cover;
  }
}

@media (max-width: 1100px) {
  .visual-hero--product,
  .visual-hero--software,
  .visual-hero--support,
  .visual-hero--contact,
  .visual-hero--news,
  .visual-hero--stores,
  .visual-hero--about,
  .visual-hero--faq {
    min-height: 520px;
    background-position: center center;
    background-size: cover;
  }

  .visual-hero--about {
    background-size: cover;
  }

  .store-filter-form,
  .stores-reference-copy,
  .stores-page--reference .store-grid,
  .stores-page--reference .empty-state,
  .faq-page--reference .empty-state,
  .news-page--reference .empty-state {
    width: min(100%, 760px);
  }

  .store-filter-form {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-article-grid,
  .news-feature-slide {
    grid-template-columns: 1fr;
  }

  .news-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .news-list-card {
    grid-template-columns: minmax(190px, 34%) minmax(0, 1fr);
    gap: 28px;
    padding: 34px;
  }

  .news-list-card__link {
    grid-column: 2;
    justify-self: start;
  }

  .news-list-cue {
    display: none;
  }

  .about-story__body {
    font-size: 26px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .about-story {
    display: block;
    height: auto;
  }

  .product-detail--reference {
    padding: calc(var(--header) + 36px) 28px 0;
  }

  .product-detail__hero,
  .product-story--feature,
  .product-story--stats {
    grid-template-columns: 1fr;
  }

  .product-detail--reference .product-detail__content {
    order: -1;
    padding-top: 0;
  }

  .product-story--image-right .product-story__image {
    order: 0;
  }

  .product-detail--reference .product-detail__media,
  .product-detail__gallery {
    min-height: 500px;
  }

  .product-detail__gallery {
    transform: none;
  }

  .product-detail__thumb-rail {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 18px;
    transform: none;
  }

  .product-detail__thumb-arrow {
    display: none;
  }

  .product-detail__thumbs {
    display: flex;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .product-detail__thumbs button {
    flex: 0 0 76px;
    width: 76px;
  }

  .product-story--feature,
  .product-story--stats {
    padding: 46px 28px;
  }

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

@media (max-width: 720px) {
  .visual-hero--product,
  .visual-hero--software,
  .visual-hero--support,
  .visual-hero--contact,
  .visual-hero--news,
  .visual-hero--stores,
  .visual-hero--about,
  .visual-hero--faq {
    min-height: calc(var(--header) + 330px);
    background-position: center center;
    background-size: cover;
  }

  .visual-hero--about {
    background-size: cover;
  }

  .stores-page--reference,
  .faq-page--reference,
  .news-page--reference,
  .about-page--reference {
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-detail--reference {
    padding: calc(var(--header) + 24px) 22px 0;
  }

  .product-detail__hero {
    gap: 34px;
  }

  .product-detail--reference h1 {
    font-size: 58px;
  }

  .product-detail--reference .lead {
    max-width: 100%;
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.58;
  }

  .product-detail--reference .entry-content {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

  .product-detail--reference .product-detail__media,
  .product-detail__gallery {
    min-height: 330px;
  }

  .product-detail__actions {
    margin-top: 34px;
  }

  .product-detail__actions .button {
    width: 100%;
    min-height: 50px;
  }

  .product-stories {
    margin-top: 0;
    gap: 0;
  }

  .product-story h2 {
    font-size: 32px;
  }

  .product-story--feature,
  .product-story--stats,
  .product-story--banner {
    padding: 32px 20px;
  }

  .product-story__image {
    min-height: 240px;
  }

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

  .product-specifications {
    margin-top: 0;
    padding: 54px 0 82px;
  }

  .product-specifications h2 {
    margin-bottom: 32px;
  }

  .product-spec-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .stores-page--reference {
    padding-top: 72px;
  }

  .store-filter-form {
    gap: 28px;
    margin-bottom: 78px;
  }

  .store-filter-toggle {
    min-height: 64px;
    padding: 0 22px;
    font-size: 16px;
  }

  .store-filter-panel {
    padding: 12px 12px 0;
  }

  .store-filter-search input {
    height: 54px;
    padding-right: 54px;
    font-size: 16px;
  }

  .store-filter-options {
    max-height: 260px;
  }

  .store-filter-options a {
    padding: 14px 8px;
    font-size: 18px;
  }

  .stores-reference-copy {
    margin-bottom: 42px;
  }

  .stores-reference-copy h2 {
    margin-bottom: 34px;
    text-align: left;
  }

  .stores-page--reference .store-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faq-article-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .news-page--reference {
    padding-top: 82px;
  }

  .news-list {
    gap: 28px;
  }

  .news-list-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .news-list-card__media {
    width: min(100%, 300px);
    justify-self: start;
  }

  .news-list-card__media img {
    aspect-ratio: 4 / 3;
  }

  .news-list-card__link {
    grid-column: auto;
    justify-self: start;
  }

  .news-feature-carousel {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .news-feature-slide {
    gap: 34px;
  }

  .news-feature-slide__media img {
    aspect-ratio: 4 / 3;
  }

  .news-feature-slide__body {
    padding-top: 0;
  }

  .news-feature-carousel__controls {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 0 26px;
    order: -1;
  }

  .news-feature-carousel__link {
    position: static;
    display: inline-block;
    margin-top: 34px;
  }

  .about-page--reference {
    padding-top: 82px;
    padding-bottom: 118px;
  }

  .about-story h2 {
    margin-bottom: 54px;
    font-size: 42px;
  }

  .about-story__body {
    font-size: 24px;
    line-height: 1.52;
  }

  .about-story__center {
    margin-top: 70px !important;
  }

  .about-story__mark {
    margin: 54px 0 !important;
  }
}

@media (max-width: 1100px) {
  .product-detail--reference {
    padding: calc(var(--header) + 42px) 40px 0;
  }

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

  .product-detail--reference .product-detail__media,
  .product-detail__gallery {
    min-height: 500px;
  }

  .product-detail--reference h1 {
    font-size: 62px;
  }

  .product-spec-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .product-detail--reference {
    padding: calc(var(--header) + 24px) 22px 0;
  }

  .product-breadcrumb {
    margin-bottom: 28px;
    font-size: 12px;
  }

  .product-detail__hero {
    gap: 34px;
  }

  .product-detail--reference .product-detail__media,
  .product-detail__gallery {
    min-height: 300px;
  }

  .product-detail--reference h1 {
    font-size: 46px;
    white-space: normal;
  }

  .product-detail--reference .lead {
    max-width: 100%;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.58;
  }

  .product-detail--reference .entry-content {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

  .product-detail__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-detail__actions .button {
    width: 100%;
  }

  .product-detail__actions .product-detail__spec-button {
    width: max-content;
  }

  .product-specifications {
    margin-top: 0;
    padding: 54px 0 92px;
  }

  .product-specifications h2 {
    font-size: 34px;
  }

  .product-spec-row {
    padding: 22px 0;
  }
}
