﻿
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
}

:root {
  --color-background: #f1f1ef;
  --color-surface: #ffffff;
  --color-text: #11120f;
  --color-text-muted: #676863;
  --color-accent: #f0d11a;
  --color-button: #080906;
  --color-button-text: #ffffff;
  --color-border: #dfdfda;
  --container-width: 1240px;
  --radius-small: 3px;
  --radius-medium: 9px;
  --radius-large: 16px;
  --header-height: 66px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  border: 0;
}

::selection {
  background: var(--color-accent);
  color: #111;
}

.shell {
  width: min(calc(100% - 40px), var(--container-width));
  margin-inline: auto;
}

.sr-only {
  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 {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  background: #fff;
  color: #111;
  font-size: 13px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow-label {
  margin: 0;
  color: inherit;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #10110e;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
}

.brand span {
  color: #e9c90d;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 150px;
  height: 34px;
  object-fit: contain;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
  padding-inline: clamp(20px, 3vw, 52px);
  border-bottom: 1px solid rgba(20, 20, 18, 0.07);
  background: rgba(255, 255, 255, 0.96);
  transition:
    box-shadow 250ms ease,
    background 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(20, 20, 18, 0.07);
  backdrop-filter: blur(18px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(19px, 2.5vw, 39px);
}

.desktop-nav ul,
.mobile-menu ul,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(19px, 2.5vw, 39px);
}

.desktop-nav li {
  position: relative;
}

.desktop-nav .sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  display: grid;
  min-width: 190px;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.desktop-nav li:hover > .sub-menu,
.desktop-nav li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.desktop-nav a,
.country {
  position: relative;
  color: #454641;
  font-size: 11px;
  font-weight: 540;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: #111;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}

.icon-button,
.menu-button,
.menu-close {
  cursor: pointer;
  background: transparent;
}

.search-button {
  position: relative;
  width: 28px;
  height: 28px;
}

.search-button span {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  border: 1.5px solid #1e1f1c;
  border-radius: 50%;
}

.search-button span::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 1.5px;
  background: #1e1f1c;
  content: "";
  transform: rotate(45deg);
}

.menu-button {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.menu-button i {
  width: 19px;
  height: 1.5px;
  background: #111;
}

.search-panel {
  position: fixed;
  z-index: 90;
  top: var(--header-height);
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 200ms;
}

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

.search-panel form {
  display: grid;
  width: min(calc(100% - 40px), 760px);
  min-height: 132px;
  grid-template-columns: 1fr auto;
  align-content: center;
  align-items: end;
  gap: 12px;
  margin: 0 auto;
}

.search-panel label {
  grid-column: 1 / -1;
  color: var(--color-text-muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-panel input {
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid #222;
  border-radius: 0;
  outline: 0;
  font-size: 18px;
}

.mobile-menu,
.menu-backdrop {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  padding: 0 20px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid #bc9e00;
  outline-offset: 3px;
}

.button--dark {
  background: var(--color-button);
  color: var(--color-button-text);
}

.button--dark:hover {
  background: #30312d;
}

.button--accent {
  background: var(--color-accent);
  color: #111;
}

.button--accent:hover {
  background: #d9bb0d;
}

.button--outline {
  border-color: #2e2f2b;
  background: transparent;
  color: #1c1d1a;
}

.hero {
  position: relative;
  height: min(690px, calc(100svh - var(--header-height)));
  min-height: 590px;
  overflow: hidden;
  isolation: isolate;
  background: #242621;
  color: #fff;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
}

.hero::before {
  background-position: center;
  background-size: cover;
  filter: saturate(0.72) contrast(1.05);
  transform: scale(1.03);
}

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

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

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

.hero.has-custom-background.hero--city::before {
  background-image: var(--hero-custom-background);
}

.hero::after {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 8, 5, 0.88) 0%, rgba(8, 9, 6, 0.56) 43%, rgba(7, 8, 5, 0.15) 76%),
    linear-gradient(0deg, rgba(7, 8, 5, 0.62), transparent 55%);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  width: min(calc(100% - 80px), 1300px);
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 2vw;
  margin: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 700ms ease,
    visibility 700ms;
}

.hero__slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: 25px;
}

.hero__eyebrow {
  margin: 0 0 16px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.hero__title {
  max-width: 650px;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(50px, 5.4vw, 84px);
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero__text {
  max-width: 520px;
  margin: 24px 0 29px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.hero__product {
  position: relative;
  height: 92%;
  background: radial-gradient(circle at 59% 53%, rgba(227, 226, 217, 0.92) 0 34%, transparent 35%);
}

.hero__product::after {
  position: absolute;
  right: 14%;
  bottom: 2%;
  left: 17%;
  height: 7%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  content: "";
  filter: blur(18px);
}

.hero__product img {
  position: absolute;
  z-index: 2;
  right: 1%;
  bottom: -4%;
  width: min(92%, 760px);
  height: 98%;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.35));
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translateX(35px) scale(0.97);
  transition:
    opacity 900ms 120ms ease,
    transform 900ms 120ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero__slide.is-active .hero__product img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero__halo {
  position: absolute;
  top: 15%;
  right: 12%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 209, 26, 0.28), transparent 65%);
  filter: blur(10px);
}

.hero__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(10, 10, 8, 0.1);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 200ms ease;
}

.hero__arrow:hover {
  background: rgba(10, 10, 8, 0.7);
}

.hero__arrow--left {
  left: 22px;
}

.hero__arrow--right {
  right: 22px;
}

.hero__pagination {
  position: absolute;
  z-index: 5;
  bottom: 29px;
  left: 50%;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.hero__pagination button {
  width: 45px;
  height: 16px;
  padding: 7px 0;
  cursor: pointer;
  background: transparent;
}

.hero__pagination span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
}

.hero__pagination button[aria-current="true"] span {
  background: var(--color-accent);
}

.hero__scroll {
  position: absolute;
  z-index: 5;
  right: 36px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll span {
  color: #fff;
  font-size: 15px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.editorial-intro {
  display: grid;
  gap: 12px;
  padding-block: clamp(34px, 5vw, 72px);
}

.editorial-tile {
  display: grid;
  min-height: 360px;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--color-surface);
}

.editorial-tile--balanced {
  grid-template-columns: 0.85fr 1.15fr;
}

.editorial-tile__visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 57% 51%, rgba(225, 225, 217, 0.85), transparent 37%),
    radial-gradient(circle at 43% 58%, rgba(221, 43, 32, 0.8), transparent 18%),
    linear-gradient(135deg, #07181e 0%, #081012 56%, #020404 100%);
}

.editorial-tile__visual::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 48%, rgba(239, 52, 20, 0.3));
  content: "";
}

.editorial-tile__visual img {
  position: absolute;
  z-index: 2;
  inset: 4% 5% 2% 24%;
  width: 70%;
  height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.42));
  mix-blend-mode: multiply;
  transform: rotate(-7deg);
}

.thermal-screen {
  position: absolute;
  z-index: 3;
  top: 16%;
  left: 12%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 32px;
}

.editorial-tile__visual--rocks {
  background:
    linear-gradient(0deg, rgba(42, 29, 10, 0.2), rgba(42, 29, 10, 0.2)),
    url("../images/editorial-rocks.jpg") center / cover;
}

.editorial-tile__visual--rocks::before {
  background: rgba(85, 61, 19, 0.22);
}

.editorial-tile__visual--rocks img {
  inset: 7% 18% 0% 19%;
  width: 68%;
  height: 93%;
  transform: rotate(13deg);
}

.editorial-tile__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(35px, 6vw, 78px);
}

.editorial-tile__copy h2 {
  max-width: 430px;
  margin: 13px 0 18px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.editorial-tile__copy > p:not(.eyebrow-label) {
  max-width: 430px;
  margin: 0 0 25px;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.catalog-shell {
  padding-bottom: 70px;
}

.catalog-section {
  padding-top: clamp(36px, 5.5vw, 78px);
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-inline: 2px;
}

.section-kicker > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.section-kicker p {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
}

.section-kicker span {
  color: #a1a29d;
  font-size: 9px;
}

.section-kicker > a {
  color: var(--color-text-muted);
  font-size: 10px;
}

.category-banner {
  display: grid;
  min-height: 405px;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: #e6ecec;
}

.category-banner--reverse {
  grid-template-columns: 0.75fr 1.25fr;
}

.category-banner--reverse .category-banner__visual {
  grid-column: 2;
  grid-row: 1;
}

.category-banner--reverse .category-banner__content {
  grid-column: 1;
  grid-row: 1;
}

.category-banner__visual {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  isolation: isolate;
}

.category-banner__visual::before,
.category-banner__visual::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.category-banner__visual::before {
  background-position: center;
  background-size: cover;
}

.category-banner__visual::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 12, 12, 0.15), transparent 55%);
}

.category-banner--snow .category-banner__visual::before {
  background-image: url("../images/mountain-snow.jpg");
}

.category-banner--mountain .category-banner__visual::before {
  background-image: url("../images/mountain-snow.jpg");
  filter: brightness(0.72) saturate(0.65);
}

.category-banner--blue .category-banner__visual::before {
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.95), transparent 20%),
    linear-gradient(135deg, #e5f6fb, #b7dceb 72%, #86bed9);
}

.category-banner--dark .category-banner__visual::before {
  background:
    linear-gradient(145deg, rgba(5, 5, 4, 0.25), rgba(5, 5, 4, 0.6)),
    url("../images/field-dark.jpg") center / cover;
}

.category-banner--sky .category-banner__visual::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent),
    linear-gradient(145deg, #effcff, #c9e9f2 62%, #b5d8e5);
}

.category-banner--gear .category-banner__visual::before {
  background:
    linear-gradient(135deg, rgba(236, 243, 242, 0.8), rgba(207, 219, 218, 0.1)),
    url("../images/gear.jpg") center / cover;
}

.category-banner__visual img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 4% 10% 1%;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.27));
  mix-blend-mode: multiply;
}

.category-banner--snow .category-banner__visual img,
.category-banner--mountain .category-banner__visual img,
.category-banner--dark .category-banner__visual img {
  transform: rotate(-8deg) scale(0.92);
}

.category-banner__glow {
  position: absolute;
  z-index: 1;
  top: 28%;
  left: 25%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(240, 209, 26, 0.24);
  filter: blur(35px);
}

.category-banner__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(36px, 5vw, 68px);
  background: #fff;
}

.category-banner__content h2 {
  margin: 12px 0 18px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(28px, 3.1vw, 45px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.category-banner__content > p:not(.eyebrow-label) {
  margin: 0 0 25px;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-mosaic {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 12px;
  margin-top: 12px;
}

.product-mosaic__small {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--color-surface);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.product-card:hover {
  z-index: 2;
  box-shadow: 0 18px 38px rgba(35, 35, 30, 0.08);
  transform: translateY(-4px);
}

.product-card__link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-card__media {
  position: relative;
  display: grid;
  min-height: 215px;
  flex: 1;
  place-items: center;
  padding: 22px 24px 4px;
}

.product-card__media img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  transition: transform 280ms ease;
}

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

.product-card__badge,
.product-detail-badge {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 17px;
  padding: 6px 8px;
  border-radius: 2px;
  background: var(--color-accent);
  color: #111;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__content {
  padding: 13px 18px 23px;
  text-align: center;
}

.product-card__content h3 {
  margin: 0 0 7px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 17px;
  font-weight: 570;
  letter-spacing: -0.035em;
}

.product-card__content p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 10px;
  line-height: 1.55;
}

.product-card__action {
  display: inline-block;
  margin-top: 12px;
  font-size: 9px;
  font-weight: 650;
  text-transform: uppercase;
}

.product-card__action b {
  display: inline-block;
  margin-left: 4px;
  font-size: 11px;
  transition: transform 220ms ease;
}

.product-card:hover .product-card__action b {
  transform: translate(2px, -2px);
}

.product-card--featured .product-card__media {
  min-height: 455px;
}

.product-card--featured .product-card__media img {
  height: 410px;
}

.product-card--featured .product-card__content {
  padding-bottom: 36px;
}

.product-card--featured .product-card__content h3 {
  font-size: clamp(25px, 2.4vw, 38px);
}

.product-card--featured .product-card__content p {
  max-width: 370px;
  font-size: 11px;
}

.news-section {
  padding-block: clamp(42px, 7vw, 92px);
}

.news-track {
  overflow: hidden;
  border-radius: var(--radius-medium);
}

.news-track__inner {
  display: flex;
  width: max-content;
  gap: 12px;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.news-card {
  position: relative;
  width: min(calc((100vw - 64px) / 2), 614px);
  height: 345px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: #111;
  color: #fff;
}

.news-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 4, 0.88), transparent 72%);
  content: "";
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 600ms ease;
}

.news-card:hover img {
  transform: scale(1.035);
}

.news-card > div {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.news-card p {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-card h3 {
  max-width: 480px;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.news-card a {
  display: inline-block;
  margin-top: 18px;
  font-size: 9px;
  text-transform: uppercase;
}

.news-controls {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.news-progress {
  height: 1px;
  margin-right: 12px;
  background: #cfcfca;
}

.news-progress span {
  display: block;
  height: 100%;
  background: #111;
  transition: width 350ms ease;
}

.news-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #c9cac5;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
}

.site-footer {
  padding: clamp(48px, 6vw, 82px) clamp(20px, 4vw, 62px) 24px;
  background: #171815;
  color: #f5f5f1;
}

.newsletter {
  display: flex;
  max-width: var(--container-width);
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto 70px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter h2 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 520;
  letter-spacing: -0.055em;
}

.newsletter form {
  display: grid;
  width: min(100%, 420px);
  grid-template-columns: 1fr 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.newsletter input {
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.newsletter button {
  cursor: pointer;
  background: transparent;
  color: #fff;
  font-size: 19px;
}

.footer-grid {
  display: grid;
  max-width: var(--container-width);
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.footer-heading {
  width: 100%;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}

.footer-heading span {
  display: none;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  margin-top: 19px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #999a95;
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: grid;
  max-width: var(--container-width);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 65px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand--footer {
  color: #fff;
}

.footer-bottom p {
  margin: 0;
  color: #858681;
  font-size: 9px;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.social-links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #c9cac5;
  font-size: 8px;
}

.newsletter__notice {
  margin: 12px 0 0;
  color: var(--color-accent);
  font-size: 11px;
}

/* Catalog */

.catalog-page,
.product-page {
  min-height: 100vh;
}

.inner-hero {
  display: grid;
  min-height: 480px;
  grid-template-columns: 1.6fr 0.6fr;
  align-items: end;
  gap: 60px;
  padding: 80px max(20px, calc((100vw - var(--container-width)) / 2)) 62px;
  background:
    linear-gradient(90deg, rgba(9, 10, 8, 0.88), rgba(9, 10, 8, 0.27)),
    url("../images/field-dark.jpg") center 62% / cover;
  color: #fff;
}

.inner-hero h1 {
  max-width: 850px;
  margin: 12px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 520;
  letter-spacing: -0.067em;
  line-height: 0.97;
}

.inner-hero > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.catalog-controls {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  align-items: end;
  gap: 12px;
  padding-block: 34px;
}

.catalog-search,
.catalog-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalog-search label,
.catalog-select label {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-search input,
.catalog-select select {
  height: 47px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  padding: 0 14px;
  outline: 0;
  background: #fff;
  font-size: 12px;
}

.toggle-filter {
  display: flex;
  height: 47px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 11px;
}

.toggle-filter input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-filter span {
  position: relative;
  width: 38px;
  height: 21px;
  border-radius: 20px;
  background: #c9cac6;
  transition: background 180ms ease;
}

.toggle-filter span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: transform 180ms ease;
}

.toggle-filter input:checked + span {
  background: #171815;
}

.toggle-filter input:checked + span::after {
  transform: translateX(17px);
}

.catalog-results {
  padding-bottom: 90px;
}

.results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--color-border);
}

.results-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 520;
  letter-spacing: -0.05em;
}

.results-heading p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 10px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.catalog-grid .product-card__media {
  min-height: 270px;
}

.catalog-grid .product-card__media img {
  height: 240px;
}

.load-more {
  margin: 34px auto 0;
}

.empty-state {
  display: grid;
  min-height: 380px;
  place-items: center;
  align-content: center;
  gap: 16px;
  border-radius: var(--radius-medium);
  background: #fff;
  text-align: center;
}

.empty-state h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 34px;
  font-weight: 520;
}

.catalog-grid .product-card.is-filtered-out,
.catalog-grid .product-card.is-beyond-limit {
  display: none;
}

/* Product */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-block: 24px;
  color: var(--color-text-muted);
  font-size: 10px;
}

.breadcrumb span:last-child {
  overflow: hidden;
  color: #222;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-overview {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(35px, 5vw, 80px);
  padding-bottom: 84px;
}

.product-gallery__main {
  position: relative;
  display: grid;
  height: 650px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: #fff;
}

.product-gallery__main::before {
  position: absolute;
  inset: 0;
  content: "";
}

.gallery-shot--terrain::before {
  background:
    linear-gradient(0deg, rgba(10, 11, 8, 0.12), rgba(10, 11, 8, 0.12)),
    url("../images/mountain-snow.jpg") center / cover;
}

.gallery-shot--detail::before {
  background:
    radial-gradient(circle at center, rgba(240, 209, 26, 0.23), transparent 35%),
    #181916;
}

.product-gallery__main img {
  position: relative;
  z-index: 2;
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 30px 24px rgba(0, 0, 0, 0.16));
  transition: transform 400ms ease;
}

.gallery-shot--terrain img {
  transform: rotate(-7deg) scale(0.9);
}

.gallery-shot--detail img {
  transform: scale(1.12);
}

.product-gallery__main > p {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 18px;
  margin: 0;
  color: #8b8c87;
  font-size: 9px;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 9px;
}

.product-gallery__thumbs button {
  position: relative;
  display: grid;
  height: 110px;
  place-items: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  background: #fff;
}

.product-gallery__thumbs button::before {
  position: absolute;
  inset: 0;
  content: "";
}

.product-gallery__thumbs button.gallery-shot--terrain::before {
  background: url("../images/mountain-snow.jpg") center / cover;
}

.product-gallery__thumbs button.gallery-shot--detail::before {
  background: #1b1c19;
}

.product-gallery__thumbs button.is-active {
  border-color: #111;
}

.product-gallery__thumbs img {
  position: relative;
  z-index: 2;
  width: 78%;
  height: 90px;
  object-fit: contain;
}

.product-info {
  padding-top: clamp(25px, 5vw, 76px);
}

.product-info h1 {
  max-width: 600px;
  margin: 14px 0 20px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.product-info__lede {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-price {
  margin: 0 0 30px;
  font-size: 11px;
}

.product-price strong {
  display: block;
  margin-top: 4px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 28px;
  font-weight: 560;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.product-highlights > div {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.product-highlights span {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-accent);
}

.product-highlights p {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
}

.color-picker {
  margin: 27px 0;
  padding: 0;
  border: 0;
}

.color-picker legend {
  margin-bottom: 11px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.color-picker > div {
  display: flex;
  gap: 10px;
}

.color-picker button {
  width: 25px;
  height: 25px;
  border: 3px solid var(--color-background);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 1px #b9bab5;
}

.color-picker button.is-active {
  box-shadow: 0 0 0 2px #111;
}

.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.product-note {
  margin: 15px 0 0;
  color: #858681;
  font-size: 9px;
}

.spec-story {
  padding-block: clamp(75px, 9vw, 130px);
  background:
    linear-gradient(90deg, rgba(6, 7, 5, 0.93), rgba(7, 8, 5, 0.65)),
    url("../images/field-dark.jpg") center / cover;
  color: #fff;
}

.spec-story h2 {
  max-width: 850px;
  margin: 15px 0 58px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(45px, 6vw, 82px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.spec-story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.spec-story__grid article {
  min-height: 230px;
  padding: 30px;
  background: rgba(11, 12, 9, 0.82);
}

.spec-story__grid strong {
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 600;
}

.spec-story__grid h3 {
  margin: 55px 0 11px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 23px;
  font-weight: 520;
  letter-spacing: -0.035em;
}

.spec-story__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.65;
}

.specifications {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding-block: clamp(70px, 9vw, 120px);
}

.specifications h2 {
  max-width: 450px;
  margin: 14px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(37px, 4vw, 57px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.specifications dl {
  margin: 0;
  border-top: 1px solid #cfcfca;
}

.specifications dl > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 19px 0;
  border-bottom: 1px solid #cfcfca;
}

.specifications dt {
  color: #9a9b96;
  font-size: 9px;
}

.specifications dd {
  margin: 0;
  font-size: 13px;
}

.related {
  padding-bottom: 90px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 130px 1fr 130px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .country {
    display: none;
  }

  .hero__slide {
    width: calc(100% - 70px);
    grid-template-columns: 0.95fr 1.05fr;
  }

  .product-mosaic {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-card--featured .product-card__media {
    min-height: 410px;
  }

  .product-card--featured .product-card__media img {
    height: 360px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 60px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    z-index: 130;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(88vw, 430px);
    flex-direction: column;
    padding: 28px 30px;
    background: #f8f8f5;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
      visibility 320ms;
  }

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

  .menu-backdrop {
    position: fixed;
    z-index: 120;
    inset: 0;
    display: block;
    background: rgba(8, 9, 6, 0.5);
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 250ms ease,
      visibility 250ms;
  }

  .menu-backdrop.is-open {
    visibility: visible;
    opacity: 1;
  }

  .menu-close {
    align-self: flex-end;
    padding: 0;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
  }

  .mobile-menu > .eyebrow-label {
    margin-top: 30px;
    color: #8a8b86;
  }

  .mobile-menu nav,
  .mobile-menu__list {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
  }

  .mobile-menu nav a {
    padding: 14px 0;
    border-bottom: 1px solid #dfdfda;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 27px;
    font-weight: 520;
    letter-spacing: -0.04em;
  }

  .mobile-menu__meta {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    color: #777873;
    font-size: 10px;
  }

  .hero {
    height: 660px;
  }

  .hero__slide {
    width: calc(100% - 60px);
    grid-template-columns: 0.85fr 1.15fr;
  }

  .hero__product {
    height: 83%;
  }

  .hero__product img {
    right: -14%;
    width: 120%;
  }

  .editorial-tile,
  .editorial-tile--balanced,
  .category-banner,
  .category-banner--reverse {
    grid-template-columns: 1fr 1fr;
  }

  .category-banner--reverse .category-banner__visual {
    grid-column: 2;
  }

  .category-banner--reverse .category-banner__content {
    grid-column: 1;
  }

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

  .product-card--featured .product-card__media {
    min-height: 380px;
  }

  .product-card--featured .product-card__media img {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 45px;
  }

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

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

  .inner-hero {
    min-height: 420px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .inner-hero > p {
    max-width: 520px;
  }

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

  .product-info {
    padding-top: 0;
  }

  .product-gallery__main {
    height: 570px;
  }

  .specifications {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--container-width));
  }

  .site-header {
    padding-inline: 17px;
  }

  .search-panel form {
    width: calc(100% - 28px);
    grid-template-columns: 1fr auto;
  }

  .search-panel input {
    min-width: 0;
    font-size: 14px;
  }

  .hero {
    height: calc(100svh - var(--header-height));
    min-height: 610px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(7, 8, 5, 0.9) 0%, rgba(7, 8, 5, 0.3) 70%),
      linear-gradient(90deg, rgba(7, 8, 5, 0.5), transparent);
  }

  .hero__slide {
    width: calc(100% - 38px);
    grid-template-columns: 1fr;
    align-items: end;
    padding-bottom: 86px;
  }

  .hero__content {
    z-index: 4;
    grid-row: 1;
    align-self: end;
    padding-bottom: 0;
  }

  .hero h1,
  .hero__title {
    max-width: 520px;
    font-size: clamp(45px, 13vw, 66px);
  }

  .hero__text {
    max-width: 430px;
    margin: 18px 0 22px;
    font-size: 12px;
  }

  .hero__product {
    position: absolute;
    z-index: 1;
    top: -4%;
    right: -25%;
    width: 100%;
    height: 69%;
    opacity: 0.85;
  }

  .hero__product img {
    right: 0;
    width: 100%;
    height: 100%;
  }

  .hero__arrow {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  .hero__pagination {
    bottom: 25px;
  }

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

  .editorial-tile--balanced .editorial-tile__copy {
    grid-row: 2;
  }

  .editorial-tile__visual {
    min-height: 300px;
  }

  .editorial-tile__copy {
    padding: 33px 25px 38px;
  }

  .category-banner,
  .category-banner--reverse {
    grid-template-columns: 1fr;
  }

  .category-banner--reverse .category-banner__visual,
  .category-banner--reverse .category-banner__content {
    grid-column: 1;
  }

  .category-banner--reverse .category-banner__visual {
    grid-row: 1;
  }

  .category-banner--reverse .category-banner__content {
    grid-row: 2;
  }

  .category-banner__visual {
    min-height: 320px;
  }

  .category-banner__content {
    min-height: 320px;
    padding: 34px 26px 40px;
  }

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

  .product-card__media {
    min-height: 270px;
  }

  .product-card__media img {
    height: 245px;
  }

  .product-card--featured .product-card__media {
    min-height: 340px;
  }

  .product-card--featured .product-card__media img {
    height: 315px;
  }

  .news-card {
    width: calc(100vw - 28px);
    height: 330px;
  }

  .footer-grid {
    display: block;
  }

  .footer-grid section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-heading {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .footer-heading span {
    display: block;
    font-size: 16px;
    transition: transform 200ms ease;
  }

  .footer-links {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    transition:
      max-height 250ms ease,
      margin 250ms ease;
  }

  .footer-grid section.is-open .footer-links {
    max-height: 260px;
    margin: 3px 0 22px;
  }

  .footer-grid section.is-open .footer-heading span {
    transform: rotate(45deg);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .catalog-controls {
    grid-template-columns: 1fr;
  }

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

  .catalog-grid .product-card__media {
    min-height: 330px;
  }

  .catalog-grid .product-card__media img {
    height: 300px;
  }

  .inner-hero {
    min-height: 520px;
    padding: 70px 18px 38px;
  }

  .inner-hero h1 {
    font-size: clamp(43px, 13vw, 63px);
  }

  .product-overview {
    padding-bottom: 62px;
  }

  .product-gallery__main {
    height: 430px;
  }

  .product-gallery__thumbs button {
    height: 86px;
  }

  .product-gallery__thumbs img {
    height: 70px;
  }

  .product-info h1 {
    font-size: clamp(42px, 13vw, 61px);
  }

  .product-cta {
    flex-direction: column;
  }

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

  .spec-story h2 {
    margin-bottom: 38px;
  }

  .spec-story__grid {
    grid-template-columns: 1fr;
  }

  .spec-story__grid article {
    min-height: 185px;
  }

  .spec-story__grid h3 {
    margin-top: 32px;
  }

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

/* WordPress content templates */

.content-page {
  min-height: 70vh;
}

.content-hero {
  display: flex;
  min-height: 390px;
  align-items: flex-end;
  padding-block: clamp(70px, 10vw, 130px) 55px;
  background:
    linear-gradient(90deg, rgba(8, 9, 7, 0.88), rgba(8, 9, 7, 0.42)),
    url("../images/field-dark.jpg") center / cover;
  color: #fff;
}

.content-hero h1,
.not-found-page h1 {
  max-width: 920px;
  margin: 12px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(45px, 6vw, 82px);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.content-hero__lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.entry-featured {
  margin-top: 55px;
}

.entry-featured img {
  width: 100%;
  max-height: 700px;
  border-radius: var(--radius-medium);
  object-fit: cover;
}

.entry-content {
  padding-block: clamp(55px, 8vw, 105px);
  font-size: 16px;
  line-height: 1.8;
}

.entry-content--narrow {
  max-width: 860px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.comments-area h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.entry-content h2 {
  margin-top: 2em;
  font-size: clamp(30px, 4vw, 48px);
}

.entry-content h3 {
  margin-top: 1.8em;
  font-size: clamp(23px, 3vw, 32px);
}

.entry-content a {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.entry-content img,
.entry-content .wp-block-image img {
  border-radius: var(--radius-medium);
}

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

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-block: 60px;
}

.post-card {
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: #fff;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card > a > div {
  padding: 25px;
}

.post-card h2 {
  margin: 12px 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 25px;
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.post-card p:not(.eyebrow-label) {
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.65;
}

.pagination {
  padding-bottom: 70px;
}

.pagination .nav-links {
  display: flex;
  gap: 8px;
}

.pagination .page-numbers {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--color-border);
  background: #fff;
}

.pagination .current {
  background: #111;
  color: #fff;
}

.not-found-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding-block: 80px;
}

.not-found-page .empty-state {
  width: min(calc(100% - 40px), 900px);
}

.comments-area {
  max-width: 860px;
  padding-bottom: 80px;
}

.comment-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.comment-list li {
  margin-top: 15px;
  padding: 20px;
  border-radius: var(--radius-small);
  background: #fff;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  padding: 12px;
  background: #fff;
}

.comment-form input[type="submit"] {
  min-height: 42px;
  padding-inline: 20px;
  cursor: pointer;
  background: #111;
  color: #fff;
}

.search-form {
  display: grid;
  width: min(100%, 620px);
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.search-form input {
  min-width: 0;
  border: 1px solid var(--color-border);
  padding-inline: 14px;
  background: #fff;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 900px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .post-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 420px) {
  .header-tools {
    gap: 8px;
  }

  .hero__product {
    right: -30%;
    width: 114%;
  }

  .hero__eyebrow {
    font-size: 10px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Elementor owns the outer canvas; theme widgets retain the source layout. */
.elementor-page-content,
.elementor-front-page,
.elementor-full-width-content,
.elementor-widget-ulefone-home > .elementor-widget-container,
.elementor-widget-ulefone-home-hero > .elementor-widget-container,
.elementor-widget-ulefone-home-promos > .elementor-widget-container,
.elementor-widget-ulefone-home-category > .elementor-widget-container,
.elementor-widget-ulefone-home-news > .elementor-widget-container,
.elementor-widget-ulefone-catalog > .elementor-widget-container,
.elementor-widget-ulefone-product-detail > .elementor-widget-container,
.elementor-widget-ulefone-header > .elementor-widget-container,
.elementor-widget-ulefone-footer > .elementor-widget-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

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

.elementor-editor-active .site-header,
.elementor-editor-preview .site-header {
  position: relative;
  top: auto;
}

/* Reference Home: every section is an independent Elementor widget. */
.ulefone-ref-shell {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.ulefone-ref-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  border-radius: 1px;
  padding: 8px 16px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ulefone-ref-button:hover,
.ulefone-ref-button:focus-visible {
  background: #fff;
  color: #111;
  transform: translateY(-1px);
}

.ulefone-ref-hero {
  position: relative;
  display: grid;
  min-height: 610px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #111513;
  background-image: var(--ref-hero-image);
  background-position: var(--ref-hero-position, center center);
  background-size: cover;
}

.ulefone-ref-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 21, 19, .98) 0%, rgba(17, 21, 19, .98) 39%, rgba(17, 21, 19, .84) 48%, transparent 66%);
  background: linear-gradient(90deg, var(--ref-hero-overlay, #111513) 0%, var(--ref-hero-overlay, #111513) 39%, color-mix(in srgb, var(--ref-hero-overlay, #111513) 84%, transparent) 48%, transparent 66%);
  content: "";
}

.ulefone-ref-hero__inner {
  display: flex;
  align-items: center;
}

.ulefone-ref-hero__copy {
  width: min(43%, 520px);
  padding-block: 80px;
  color: var(--ref-hero-text, #d5db00);
}

.ulefone-ref-eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.ulefone-ref-hero h1 {
  max-width: 520px;
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}

.ulefone-ref-hero__description {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--ref-hero-description, #fff);
  font-size: 15px;
  line-height: 1.6;
}

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

.ulefone-ref-button--accent {
  border-color: var(--ref-button-bg, #d7df00);
  background: var(--ref-button-bg, #d7df00);
  color: var(--ref-button-color, #111);
}

.ulefone-ref-promos {
  padding-block: 42px 28px;
  background: #f5f5f5;
}

.ulefone-ref-promo {
  display: grid;
  min-height: 300px;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  background: #fff;
}

.ulefone-ref-promo + .ulefone-ref-promo {
  margin-top: 20px;
}

.ulefone-ref-promo--right .ulefone-ref-promo__image {
  order: 2;
}

.ulefone-ref-promo--right .ulefone-ref-promo__copy {
  order: 1;
}

.ulefone-ref-promo__image {
  min-height: 300px;
  overflow: hidden;
}

.ulefone-ref-promo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.ulefone-ref-promo:hover .ulefone-ref-promo__image img {
  transform: scale(1.025);
}

.ulefone-ref-promo__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(34px, 6vw, 84px);
}

.ulefone-ref-promo__copy h2 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: -.045em;
  line-height: 1.04;
}

.ulefone-ref-promo__copy p {
  max-width: 420px;
  margin: 14px 0 0;
  color: #686868;
  font-size: 14px;
  line-height: 1.65;
}

.ulefone-ref-promo__copy .ulefone-ref-button {
  margin-top: 22px;
}

.ulefone-ref-category {
  padding-block: 54px;
  background: #f5f5f5;
}

.ulefone-ref-category + .ulefone-ref-category {
  border-top: 1px solid #e8e8e8;
}

.ulefone-ref-category__heading {
  margin-bottom: 16px;
}

.ulefone-ref-category__heading p {
  margin: 0 0 3px;
  color: #7c7c7c;
  font-size: 12px;
}

.ulefone-ref-category__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.ulefone-ref-category__banner {
  display: grid;
  min-height: 360px;
  grid-template-columns: 1.62fr .78fr;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
}

.ulefone-ref-category__banner--right {
  grid-template-columns: .78fr 1.62fr;
}

.ulefone-ref-category__banner--right .ulefone-ref-category__visual {
  order: 2;
}

.ulefone-ref-category__banner--right .ulefone-ref-category__copy {
  order: 1;
}

.ulefone-ref-category__visual {
  min-height: 360px;
  overflow: hidden;
}

.ulefone-ref-category__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ulefone-ref-category__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(28px, 4vw, 62px);
}

.ulefone-ref-category__copy p {
  margin: 0;
  color: #4e4e4e;
  font-size: 15px;
  line-height: 1.65;
}

.ulefone-ref-category__copy .ulefone-ref-button {
  margin-top: 22px;
}

.ulefone-ref-products {
  display: grid;
  grid-template-columns: 1.02fr 1.98fr;
  gap: 12px;
  margin-top: 14px;
}

.ulefone-ref-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ulefone-ref-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
}

.ulefone-ref-product-card--featured {
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 40px 28px 24px;
  text-align: center;
}

.ulefone-ref-product-card--featured .ulefone-ref-product-card__copy {
  position: relative;
  z-index: 1;
}

.ulefone-ref-product-card--featured .ulefone-ref-product-card__image {
  width: 100%;
  height: 400px;
}

.ulefone-ref-product-card--small {
  min-height: 304px;
}

.ulefone-ref-product-card__link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.ulefone-ref-product-card--small .ulefone-ref-product-card__image {
  height: 205px;
  padding: 18px 20px 4px;
}

.ulefone-ref-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 320ms ease;
}

.ulefone-ref-product-card:hover .ulefone-ref-product-card__image img {
  transform: scale(1.035);
}

.ulefone-ref-product-card__copy {
  padding: 15px 20px 22px;
  text-align: center;
}

.ulefone-ref-product-card__copy h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.13;
}

.ulefone-ref-product-card--small .ulefone-ref-product-card__copy h3 {
  font-size: 16px;
}

.ulefone-ref-product-card__copy p {
  max-width: 440px;
  margin: 8px auto 0;
  color: #777;
  font-size: 11px;
  line-height: 1.45;
}

.ulefone-ref-product-card--featured .ulefone-ref-button {
  margin-top: 15px;
}

.ulefone-ref-product-card__badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  border-radius: 30px;
  padding: 5px 9px;
  background: #d7df00;
  color: #111;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.ulefone-ref-news {
  padding-block: 54px 62px;
  background: #fff;
}

.ulefone-ref-news__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.ulefone-ref-news__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 31px;
  letter-spacing: -.04em;
}

.ulefone-ref-news__all {
  color: #444;
  font-size: 12px;
  text-decoration: none;
}

.ulefone-ref-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ulefone-ref-news-card {
  overflow: hidden;
  background: #f5f5f5;
}

.ulefone-ref-news-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ulefone-ref-news-card__image {
  height: 236px;
  overflow: hidden;
}

.ulefone-ref-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.ulefone-ref-news-card:hover .ulefone-ref-news-card__image img {
  transform: scale(1.03);
}

.ulefone-ref-news-card__copy {
  padding: 18px 20px 24px;
}

.ulefone-ref-news-card__copy p {
  margin: 0 0 8px;
  color: #858585;
  font-size: 10px;
}

.ulefone-ref-news-card__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .ulefone-ref-hero__copy {
    width: 50%;
  }

  .ulefone-ref-category__banner,
  .ulefone-ref-category__banner--right {
    min-height: 310px;
    grid-template-columns: 1.25fr .75fr;
  }

  .ulefone-ref-category__banner--right {
    grid-template-columns: .75fr 1.25fr;
  }

  .ulefone-ref-category__visual {
    min-height: 310px;
  }

  .ulefone-ref-products {
    grid-template-columns: 1fr 1.7fr;
  }

  .ulefone-ref-product-card--featured {
    min-height: 540px;
  }

  .ulefone-ref-product-card--featured .ulefone-ref-product-card__image {
    height: 330px;
  }

  .ulefone-ref-product-card--small {
    min-height: 264px;
  }

  .ulefone-ref-product-card--small .ulefone-ref-product-card__image {
    height: 166px;
  }
}

@media (max-width: 760px) {
  .ulefone-ref-shell {
    width: min(100% - 24px, 1180px);
  }

  .ulefone-ref-hero {
    min-height: 570px;
    align-items: flex-end;
    background-position: 68% center;
  }

  .ulefone-ref-hero::before {
    background: linear-gradient(0deg, rgba(17, 21, 19, .98) 0%, rgba(17, 21, 19, .9) 43%, transparent 82%);
    background: linear-gradient(0deg, var(--ref-hero-overlay, #111513) 0%, color-mix(in srgb, var(--ref-hero-overlay, #111513) 90%, transparent) 43%, transparent 82%);
  }

  .ulefone-ref-hero__copy {
    width: 100%;
    max-width: 520px;
    padding-block: 200px 50px;
  }

  .ulefone-ref-promo,
  .ulefone-ref-promo--right {
    grid-template-columns: 1fr;
  }

  .ulefone-ref-promo--right .ulefone-ref-promo__image,
  .ulefone-ref-promo--right .ulefone-ref-promo__copy {
    order: initial;
  }

  .ulefone-ref-promo__image {
    min-height: 230px;
  }

  .ulefone-ref-category__banner,
  .ulefone-ref-category__banner--right {
    grid-template-columns: 1fr;
  }

  .ulefone-ref-category__banner--right .ulefone-ref-category__visual,
  .ulefone-ref-category__banner--right .ulefone-ref-category__copy {
    order: initial;
  }

  .ulefone-ref-category__visual {
    min-height: 250px;
  }

  .ulefone-ref-products {
    grid-template-columns: 1fr;
  }

  .ulefone-ref-product-card--featured {
    min-height: 520px;
  }

  .ulefone-ref-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ulefone-ref-news__grid {
    grid-template-columns: 1fr;
  }

  .ulefone-ref-news-card__image {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .ulefone-ref-products__grid {
    grid-template-columns: 1fr;
  }

  .ulefone-ref-product-card--small {
    min-height: 310px;
  }

  .ulefone-ref-product-card--small .ulefone-ref-product-card__image {
    height: 215px;
  }
}


