/*
 * KORMELL Belarus theme
 * Lightweight, framework-free presentation layer for WordPress/Gutenberg.
 */

:root {
  --color-navy-950: #111111;
  --color-navy-900: #151b24;
  --color-navy-800: #1d2735;
  --color-navy-700: #2b3a50;
  --color-cyan-700: #135fd1;
  --color-cyan-600: #1469d6;
  --color-cyan-500: #428be9;
  --color-cyan-100: #eaf2ff;
  --color-red-700: #b9152c;
  --color-red-600: #d91f38;
  --color-red-500: #ee3048;
  --color-white: #fff;
  --color-ink: #192331;
  --color-muted: #657180;
  --color-line: #dfe5ec;
  --color-surface: #f4f7fa;
  --color-success: #167853;
  --shadow-xs: 0 1px 2px rgba(17, 17, 17, 0.08);
  --shadow-sm: 0 8px 24px rgba(17, 17, 17, 0.1);
  --shadow-md: 0 18px 50px rgba(17, 17, 17, 0.15);
  --radius-sm: 0.5rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.35rem;
  --container: 76rem;
  --reading: 48rem;
  --header-height: 5rem;
  --site-header-total: calc(var(--header-height) + 2.4rem);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

html {
  min-width: 20rem;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-total) + var(--wp-admin--admin-bar--height, 0px) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: inherit;
  font-size: 1rem;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

figure {
  margin: 0;
}

button,
input,
select,
textarea {
  max-width: 100%;
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

a {
  color: var(--color-cyan-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--color-cyan-700);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--color-cyan-500);
  outline-offset: 3px;
}

::selection {
  background: var(--color-cyan-100);
  color: var(--color-navy-950);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: var(--color-navy-900);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.13;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p,
ul,
ol,
blockquote,
table {
  margin-top: 0;
  margin-bottom: 1.15rem;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.container,
.wp-site-blocks > :where(header, main, footer) > .alignwide {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.alignwide {
  width: min(calc(100vw - 2rem), var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.alignfull {
  width: 100%;
  max-width: none;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 10000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  color: var(--color-navy-950);
  font-weight: 800;
}

/* Header and navigation */

.topbar {
  background: var(--color-navy-950);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  min-height: 2.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.topbar a {
  color: var(--color-white);
  font-weight: 650;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--color-cyan-500);
}

.topbar__links,
.topbar__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(7, 29, 52, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 18px rgba(17, 17, 17, 0.07);
  backdrop-filter: blur(14px);
}

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

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-branding,
.custom-logo-link,
.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-navy-900);
  text-decoration: none;
}

.brand__logo-wrap,
.brand__custom-logo {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.brand__logo-wrap {
  min-height: 2.9rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.45rem;
  background: var(--color-navy-950);
}

.brand__custom-logo .custom-logo-link {
  display: inline-flex;
}

.brand__logo {
  width: auto;
  max-width: 11.5rem;
  max-height: 3.15rem;
  object-fit: contain;
}

.brand__wordmark {
  display: inline-block;
  color: var(--color-white);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.brand__logo + .brand__wordmark {
  margin-left: 0.55rem;
  padding-left: 0.55rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.brand__dealer {
  max-width: 8.5rem;
  padding-left: 0.7rem;
  border-left: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.25;
}

.custom-logo {
  width: auto;
  max-height: 3.1rem;
}

.site-title {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.site-description {
  margin: 0.1rem 0 0;
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav,
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav ul,
.nav .menu,
.primary-nav ul,
.primary-nav .menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav li,
.primary-nav li {
  position: relative;
  margin: 0;
}

.nav a,
.primary-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.7rem 0.85rem;
  align-items: center;
  border-radius: var(--radius-sm);
  color: var(--color-navy-900);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.nav a:hover,
.nav .current-menu-item > a,
.nav .current_page_item > a,
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  background: var(--color-cyan-100);
  color: var(--color-cyan-700);
}

.nav .sub-menu,
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  display: grid;
  width: max-content;
  min-width: 14rem;
  padding: 0.5rem;
  visibility: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  opacity: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-0.5rem);
  transition: 0.2s var(--ease);
}

.nav li:hover > .sub-menu,
.nav li:focus-within > .sub-menu,
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-navy-900);
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: 0.2s ease;
}

.nav-toggle__lines {
  position: relative;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle__lines::before {
  top: -0.4rem;
}

.nav-toggle__lines::after {
  top: 0.4rem;
}

body.nav-open .nav-toggle__lines {
  background: transparent;
}

body.nav-open .nav-toggle__lines::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-toggle__icon {
  position: relative;
  display: grid;
  width: 1.25rem;
  gap: 0.27rem;
}

.nav-toggle__icon i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle__icon i:first-child {
  transform: translateY(0.35rem) rotate(45deg);
}

body.nav-open .nav-toggle__icon i:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle__icon i:last-child {
  transform: translateY(-0.35rem) rotate(-45deg);
}

.topbar p {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: var(--color-cyan-500);
  box-shadow: 0 0 0 0.25rem rgba(75, 149, 255, 0.14);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.85rem;
}

.header-phone {
  display: grid;
  color: var(--color-navy-900);
  line-height: 1.15;
  text-align: right;
  text-decoration: none;
}

.header-phone:hover {
  color: var(--color-cyan-700);
}

.header-phone__label {
  margin-bottom: 0.2rem;
  color: var(--color-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button--small {
  min-height: 2.6rem;
  padding: 0.62rem 0.9rem;
  font-size: 0.82rem;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 72vh, 52rem);
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background: var(--color-navy-950);
  color: var(--color-white);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 38, 0.96) 0%, rgba(4, 20, 38, 0.8) 48%, rgba(4, 20, 38, 0.3) 100%),
    var(--hero-image, linear-gradient(135deg, var(--color-navy-800), var(--color-cyan-700)));
  background-position: center;
  background-size: cover;
}

.hero::after {
  right: -8rem;
  bottom: -10rem;
  width: 32rem;
  height: 32rem;
  border: 5rem solid rgba(30, 120, 255, 0.16);
  border-radius: 50%;
}

.hero__inner {
  width: min(calc(100% - 2rem), var(--container));
  padding-block: clamp(5rem, 10vw, 9rem);
}

.hero__content {
  max-width: 48rem;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--color-white);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
}

.hero p {
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero__eyebrow,
.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-cyan-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__eyebrow::before,
.eyebrow::before {
  width: 2rem;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--color-red-500);
  content: "";
}

.hero .eyebrow,
.section--dark .eyebrow {
  color: var(--color-cyan-500);
}

.hero__actions,
.button-row {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections, grids and cards */

.section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--compact {
  padding-block: clamp(2.75rem, 5vw, 4.25rem);
}

.section--surface {
  background: var(--color-surface);
}

.section--dark {
  overflow: hidden;
  background: var(--color-navy-950);
  color: rgba(255, 255, 255, 0.78);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section__header {
  display: flex;
  margin-bottom: clamp(1.8rem, 4vw, 3.25rem);
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.section__header > :first-child,
.section__heading {
  max-width: 50rem;
}

.section__header p {
  max-width: 39rem;
  color: var(--color-muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.grid > * {
  grid-column: span 4;
  min-width: 0;
}

.grid--2 > * {
  grid-column: span 6;
}

.grid--4 > * {
  grid-column: span 3;
}

.card,
.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}

.card:hover,
.product-card:hover {
  border-color: rgba(30, 120, 255, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-0.35rem);
}

.card__media,
.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-navy-800), var(--color-cyan-700));
}

.card__media img,
.product-card__media img,
.post-thumbnail img,
.entry-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

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

.card__body,
.product-card__body {
  display: flex;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
  flex-direction: column;
}

.card__body h3,
.product-card__body h2,
.product-card__body h3 {
  margin-bottom: 0.6rem;
}

.card__body p,
.product-card__body p {
  color: var(--color-muted);
}

.card__footer,
.product-card__footer {
  margin-top: auto;
  padding-top: 1rem;
}

.card__link,
.product-card__link {
  font-weight: 800;
  text-decoration: none;
}

.card__link::after,
.product-card__link::after {
  margin-left: 0.35rem;
  content: "→";
  transition: margin 0.2s ease;
}

.card__link:hover::after,
.product-card__link:hover::after {
  margin-left: 0.6rem;
}

.article-card {
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}

.article-card:hover {
  border-color: rgba(30, 120, 255, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-0.35rem);
}

.article-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-navy-800), var(--color-cyan-700));
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

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

.article-card__body {
  display: flex;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
  flex-direction: column;
}

.article-card__meta {
  display: flex;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.article-card__title {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.article-card__title a,
.product-card h3 a {
  color: var(--color-navy-900);
  text-decoration: none;
}

.article-card__title a:hover,
.product-card h3 a:hover {
  color: var(--color-cyan-700);
}

.article-card__body > p,
.product-card__body > p {
  color: var(--color-muted);
}

.article-card__body .text-link,
.product-card__body .text-link {
  margin-top: auto;
  padding-top: 1rem;
}

.document-card {
  display: grid;
  min-width: 0;
  height: 100%;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-xs);
}

.document-card__icon {
  display: grid;
  width: 3.4rem;
  height: 4.15rem;
  border-radius: 0.45rem;
  place-items: center;
  background: var(--color-cyan-100);
  color: var(--color-cyan-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.document-card__body {
  min-width: 0;
}

.document-card__body h3 {
  overflow-wrap: anywhere;
}

.document-card__body > p:not(.eyebrow) {
  color: var(--color-muted);
}

.spec-chips {
  display: flex;
  margin: 0.85rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}

.spec-chips li {
  margin: 0;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-navy-900);
  font-size: 0.75rem;
  font-weight: 750;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-cyan-700);
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.2s var(--ease);
}

.text-link:hover span {
  transform: translateX(0.18rem);
}

.badge,
.product-card__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  align-items: center;
  border-radius: 999px;
  background: var(--color-cyan-100);
  color: var(--color-cyan-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(9rem, 18vw);
  gap: 0.75rem;
}

.photo-grid > * {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.photo-grid > :first-child {
  grid-column: span 8;
  grid-row: span 2;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.photo-grid > *:hover img {
  transform: scale(1.035);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-line);
}

.stats__item,
.stat {
  padding: clamp(1.4rem, 3vw, 2.3rem);
  background: var(--color-white);
}

.stats__value,
.stat__value {
  display: block;
  color: var(--color-cyan-600);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.stats__label,
.stat__label {
  display: block;
  margin-top: 0.65rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  isolation: isolate;
  background: linear-gradient(120deg, var(--color-navy-950), var(--color-navy-700));
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.cta::after {
  position: absolute;
  z-index: -1;
  top: -7rem;
  right: -5rem;
  width: 22rem;
  height: 22rem;
  border: 3.2rem solid rgba(30, 120, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.cta h2,
.cta h3 {
  color: var(--color-white);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 3rem;
}

.cta__content {
  max-width: 46rem;
}

.button,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  min-height: 3rem;
  padding: 0.78rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 2px solid var(--color-cyan-600);
  border-radius: var(--radius-sm);
  background: var(--color-cyan-600);
  box-shadow: 0 8px 20px rgba(30, 120, 255, 0.25);
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease);
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  border-color: var(--color-cyan-700);
  background: var(--color-cyan-700);
  box-shadow: 0 11px 25px rgba(30, 120, 255, 0.32);
  color: var(--color-white);
  transform: translateY(-2px);
}

.button--secondary,
.button--ghost,
.button.is-style-outline,
.is-style-outline > .wp-element-button {
  border-color: currentColor;
  background: transparent;
  box-shadow: none;
  color: var(--color-cyan-700);
}

.hero .button--secondary,
.cta .button--secondary,
.section--dark .button--secondary,
.hero .button--ghost,
.cta .button--ghost,
.section--dark .button--ghost {
  color: var(--color-white);
}

.button--secondary:hover,
.button--ghost:hover,
.button.is-style-outline:hover,
.is-style-outline > .wp-element-button:hover {
  border-color: var(--color-cyan-600);
  background: var(--color-cyan-600);
  color: var(--color-white);
}

.button--light {
  border-color: var(--color-white);
  background: var(--color-white);
  box-shadow: none;
  color: var(--color-navy-900);
}

.button--light:hover {
  border-color: var(--color-cyan-100);
  background: var(--color-cyan-100);
  color: var(--color-navy-900);
}

/* Archive and content */

.breadcrumbs {
  padding-block: 1rem;
  color: var(--color-muted);
  font-size: 0.83rem;
}

.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.35rem;
  color: #97a6b2;
  content: "/";
}

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

.breadcrumbs a:hover {
  color: var(--color-cyan-700);
}

.archive-header {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.25rem, 7vw, 6rem);
  background: linear-gradient(120deg, var(--color-navy-950), var(--color-navy-700));
  color: rgba(255, 255, 255, 0.78);
}

.archive-header::after {
  position: absolute;
  top: 50%;
  right: max(-7rem, calc((100vw - var(--container)) / 2 - 4rem));
  width: 25rem;
  height: 25rem;
  border: 4.5rem solid rgba(30, 120, 255, 0.16);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.archive-header .container {
  position: relative;
  z-index: 1;
}

.archive-header h1 {
  max-width: 18ch;
  color: var(--color-white);
}

.archive-header p,
.archive-description {
  max-width: 48rem;
  font-size: 1.08rem;
}

.entry {
  min-width: 0;
}

.entry-header,
.entry-content,
.entry-footer,
.comments-area,
.post-navigation {
  width: min(calc(100% - 2rem), var(--reading));
  margin-inline: auto;
}

.entry-header {
  padding-top: clamp(2.5rem, 6vw, 5rem);
}

.entry-title {
  overflow-wrap: anywhere;
}

.entry-meta {
  display: flex;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.entry-meta a {
  color: inherit;
}

.entry-thumbnail,
.post-thumbnail {
  width: min(calc(100% - 2rem), var(--container));
  margin: clamp(1.5rem, 4vw, 3rem) auto;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.entry-content {
  padding-block: clamp(1.5rem, 4vw, 3.5rem);
  font-size: 1.06rem;
  overflow-wrap: break-word;
}

.entry-content > * {
  max-width: 100%;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.65em;
}

.entry-content :where(ul, ol) {
  padding-left: 1.35rem;
}

.entry-content li + li {
  margin-top: 0.4rem;
}

.entry-content blockquote,
blockquote.wp-block-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 0.3rem solid var(--color-cyan-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--color-cyan-100);
  color: var(--color-navy-900);
  font-size: 1.1rem;
}

.entry-content figcaption,
.wp-element-caption {
  margin-top: 0.55rem;
  color: var(--color-muted);
  font-size: 0.84rem;
  text-align: center;
}

.entry-content img {
  border-radius: var(--radius-md);
}

.entry-footer {
  padding-block: 1.5rem 3rem;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.pagination,
.nav-links {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.page-numbers {
  display: inline-grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.45rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  place-items: center;
  background: var(--color-white);
  color: var(--color-navy-900);
  font-weight: 750;
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--color-cyan-600);
  background: var(--color-cyan-600);
  color: var(--color-white);
}

/* Catalog */

.catalog-filter {
  display: grid;
  margin-bottom: 2rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.catalog-filter__field,
.form-field,
.field {
  display: grid;
  min-width: 0;
  gap: 0.35rem;
}

.catalog-filter label,
.form-field label,
.field label,
form label {
  color: var(--color-navy-900);
  font-size: 0.84rem;
  font-weight: 800;
}

.catalog-filter__actions {
  display: flex;
  gap: 0.5rem;
}

.variants-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-xs);
  -webkit-overflow-scrolling: touch;
}

.variants-table,
.variants-table-wrap table {
  width: 100%;
  min-width: 48rem;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  text-align: left;
}

.variants-table th,
.variants-table td,
.variants-table-wrap th,
.variants-table-wrap td {
  padding: 0.9rem 1rem;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  vertical-align: middle;
}

.variants-table th,
.variants-table-wrap th {
  position: sticky;
  z-index: 1;
  top: 0;
  background: var(--color-navy-900);
  color: var(--color-white);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.variants-table tbody tr:nth-child(even),
.variants-table-wrap tbody tr:nth-child(even) {
  background: var(--color-surface);
}

.variants-table tbody tr:hover,
.variants-table-wrap tbody tr:hover {
  background: var(--color-cyan-100);
}

.variants-table tbody tr:last-child td,
.variants-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.catalog-result-count {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
  font-size: 0.87rem;
  font-weight: 750;
}

.catalog-empty {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-cyan-100);
  color: var(--color-navy-900);
}

[hidden] {
  display: none !important;
}

.product-specs {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-line);
}

.product-specs > div {
  display: grid;
  padding: 1rem 1.2rem;
  grid-template-columns: minmax(8rem, 0.8fr) 1.2fr;
  gap: 0.75rem;
  background: var(--color-white);
}

.product-specs dt {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.product-specs dd {
  margin: 0;
  color: var(--color-navy-900);
  font-weight: 750;
}

/* Contacts, documents and projects */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.contact-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.contact-grid__details {
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.contact-card address {
  font-style: normal;
}

.contact-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.contact-list a {
  color: var(--color-navy-900);
  font-weight: 800;
  text-decoration: none;
}

.contact-list > div {
  display: grid;
  gap: 0.15rem;
}

.contact-list dt {
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--color-navy-900);
  font-weight: 700;
}

.contact-list address {
  font-style: normal;
}

.contact-list small {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-shell {
  position: relative;
  display: grid;
  min-height: 27rem;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  place-items: center;
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(135deg, #dcecf0, #c3dce4);
  background-size: 2.25rem 2.25rem, 2.25rem 2.25rem, auto;
}

.map-shell iframe {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-shell__consent {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 2rem), 30rem);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.map-shell__placeholder {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 2rem), 31rem);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  text-align: center;
  backdrop-filter: blur(10px);
}

.map-shell__placeholder .button {
  margin-top: 0.4rem;
}

.map-shell__privacy {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.map-pin {
  position: relative;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0 auto 1rem;
  border: 0.68rem solid var(--color-cyan-600);
  border-radius: 50% 50% 50% 0;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transform: rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  inset: 0.28rem;
  border-radius: 50%;
  background: var(--color-navy-950);
  content: "";
}

.document-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
  list-style: none;
}

.document-list li,
.document-list__item {
  display: flex;
  padding: 1rem 1.15rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.document-list a {
  color: var(--color-navy-900);
  font-weight: 800;
  text-decoration: none;
}

.document-list a:hover {
  color: var(--color-cyan-700);
}

.document-list__meta {
  flex: 0 0 auto;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.projects-grid a,
.project-card {
  display: grid;
  min-height: 7rem;
  padding: 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  place-items: center;
  background: var(--color-white);
  box-shadow: var(--shadow-xs);
  color: var(--color-navy-900);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: 0.2s var(--ease);
}

.projects-grid a:hover,
.project-card:hover {
  border-color: var(--color-cyan-500);
  box-shadow: var(--shadow-sm);
  color: var(--color-cyan-700);
  transform: translateY(-0.2rem);
}

.project-card {
  position: relative;
  align-content: center;
}

.project-card > span:not(.project-card__arrow) {
  display: block;
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.project-card__name {
  color: var(--color-navy-900) !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
}

.project-card__arrow {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  color: var(--color-cyan-600);
}

.empty-state,
.form-fallback {
  width: min(100%, 46rem);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  text-align: center;
}

.empty-state .eyebrow,
.form-fallback .eyebrow {
  justify-content: center;
}

.empty-state .button-row,
.form-fallback .button-row {
  justify-content: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(1.25rem);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

/* Forms and search */

form {
  min-width: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
select,
textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid #b9c9d4;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-navy-950);
  line-height: 1.35;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

:where(input, select, textarea):focus {
  border-color: var(--color-cyan-600);
  box-shadow: 0 0 0 3px rgba(30, 120, 255, 0.14);
}

input::placeholder,
textarea::placeholder {
  color: #5d6b76;
  opacity: 1;
}

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

.kormell-field {
  margin: 0 0 1rem;
}

.kormell-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-navy-900);
  font-size: 0.84rem;
  font-weight: 800;
}

.kormell-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-note,
.form-consent,
.kormell-consent {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.form-consent,
.kormell-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.form-consent input,
.kormell-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex: 0 0 auto;
  accent-color: var(--color-cyan-600);
}

.kormell-request__messengers {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-line);
}

.kormell-request__messengers > p {
  margin: 0 0 0.65rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 750;
}

.form-message,
.kormell-form-message,
.notice {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-left: 0.25rem solid var(--color-cyan-600);
  border-radius: var(--radius-sm);
  background: var(--color-cyan-100);
}

.form-message--success,
.kormell-form-message--success,
.notice--success {
  border-color: var(--color-success);
  background: #e3f6ee;
  color: #0d5d3e;
}

.form-message--error,
.kormell-form-message--error,
.notice--error {
  border-color: var(--color-red-600);
  background: #fff0f2;
  color: #9f1428;
}

.search-form {
  display: flex;
  width: min(100%, 38rem);
  gap: 0.5rem;
}

.search-form label {
  min-width: 0;
  flex: 1;
}

.search-form .search-field {
  height: 100%;
}

.search-form .search-submit {
  flex: 0 0 auto;
}

/* Footer */

.site-footer {
  overflow: hidden;
  background: var(--color-navy-950);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__main {
  display: grid;
  padding-block: clamp(3rem, 6vw, 5rem);
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 2rem;
}

.site-footer__grid {
  display: grid;
  padding-block: clamp(3rem, 6vw, 5rem);
  grid-template-columns: 1.45fr 0.8fr 1fr;
  gap: clamp(1.75rem, 4vw, 4rem);
}

.site-footer__accent {
  height: 0.25rem;
  background: linear-gradient(90deg, var(--color-cyan-600) 0 74%, var(--color-red-600) 74% 77%, transparent 77%);
}

.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-cyan-500);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.55rem;
}

.site-footer__brand {
  max-width: 22rem;
}

.site-footer__brand > p {
  margin-top: 1.25rem;
}

.site-footer__note {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.site-footer .brand {
  display: flex;
  width: fit-content;
  align-items: flex-start;
  flex-direction: column;
}

.site-footer .brand__logo-wrap {
  padding: 0;
  background: transparent;
}

.site-footer .brand__dealer {
  max-width: none;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__contacts {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.site-footer__contacts address,
.site-footer__contacts p {
  margin: 0;
  font-style: normal;
}

.footer-phone {
  font-size: 1.25rem;
  font-weight: 850;
}

.footer-menu,
.legal-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-link {
  font-weight: 800;
}

.site-footer__brand .site-title {
  color: var(--color-white);
}

.site-footer__bottom {
  padding-block: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.site-footer__bottom .container,
.site-footer__bottom.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
}

.site-footer__bottom > p,
.site-footer__bottom.container > p {
  margin: 0;
}

.legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

/* WordPress core alignment */

.wp-block-image,
.wp-block-gallery,
.wp-block-table,
.wp-block-columns,
.wp-block-buttons {
  margin-bottom: 1.5rem;
}

.wp-block-table {
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
  padding: 0.75rem;
  border: 1px solid var(--color-line);
}

.wp-block-separator {
  margin-block: 2.5rem;
  border: 0;
  border-top: 1px solid var(--color-line);
}

.wp-block-group.has-background {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.has-navy-background-color {
  background-color: var(--color-navy-900) !important;
}

.has-cyan-background-color {
  background-color: var(--color-cyan-500) !important;
}

.has-red-background-color {
  background-color: var(--color-red-600) !important;
}

.has-white-color {
  color: var(--color-white) !important;
}

/* KORMELL editorial layouts */

.container--narrow,
.container--article {
  max-width: var(--reading);
}

.overflow-hidden {
  overflow: hidden;
}

.section--ice,
.section--articles,
.section--projects {
  background: var(--color-surface);
}

.section--form {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(75, 149, 255, 0.22), transparent 27rem),
    linear-gradient(135deg, #eaf2ff, #f8fbff);
}

.section-heading {
  max-width: 54rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-heading > p,
.section-heading--split > p,
.section-heading--split > div > p:last-child {
  color: var(--color-muted);
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 5rem);
}

.section-heading--light h2,
.section-heading--light h3 {
  color: var(--color-white);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.7);
}

.hero--home {
  min-height: clamp(42rem, 82vh, 58rem);
  place-items: stretch;
}

.hero--home::before {
  z-index: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.78) 48%, rgba(17, 17, 17, 0.27) 100%);
}

.hero--home::after {
  z-index: 1;
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -1;
}

.hero__media img,
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  z-index: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.24), transparent 45%);
  pointer-events: none;
}

.hero--home .hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), var(--container));
  max-width: var(--container);
  margin-inline: auto;
  padding-block: clamp(6rem, 12vw, 10rem);
}

.hero--home .hero__content > * {
  max-width: 48rem;
}

.hero__kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-cyan-500) !important;
  font-size: 0.78rem !important;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__kicker::before {
  width: 2rem;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--color-red-500);
  content: "";
}

.hero__lead {
  font-size: clamp(1.08rem, 2vw, 1.3rem) !important;
}

.hero__facts {
  display: flex;
  margin-top: clamp(2.25rem, 5vw, 4rem);
  padding: 0;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
}

.hero__facts li {
  display: grid;
  min-width: 9rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(17, 17, 17, 0.35);
  backdrop-filter: blur(8px);
}

.hero__facts strong {
  color: var(--color-white);
  font-size: 1.15rem;
}

.hero__facts span,
.hero__disclaimer {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.72rem !important;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  right: max(1rem, calc((100vw - var(--container)) / 2));
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll i {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  place-items: center;
  font-style: normal;
}

.product-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.fact-card {
  display: grid;
  min-height: 10rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  align-content: center;
  gap: 0.65rem;
  background: var(--color-navy-950);
}

.fact-card strong {
  color: var(--color-white);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  letter-spacing: -0.045em;
}

.fact-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(16rem, 24vw);
  gap: 0.85rem;
}

.application-grid--three {
  grid-auto-rows: minmax(16rem, 25vw);
}

.photo-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  isolation: isolate;
  background: var(--color-navy-800);
  box-shadow: var(--shadow-sm);
}

.photo-card--large {
  grid-row: span 2;
}

.photo-card::after {
  position: absolute;
  z-index: -1;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(17, 17, 17, 0.9));
  content: "";
}

.photo-card__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.photo-card:hover .photo-card__image {
  transform: scale(1.04);
}

.photo-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.35rem;
}

.photo-card__body h3 {
  margin: 0;
  color: var(--color-white);
}

.split-feature,
.product-hero__grid,
.product-overview,
.scheme-feature,
.form-layout,
.contact-page-grid,
.document-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.split-feature__media {
  position: relative;
  min-height: clamp(22rem, 42vw, 38rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split-feature__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.76);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 800;
}

.feature-list,
.check-list {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  padding-block: 1rem;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--color-line);
}

.feature-list li > span {
  color: var(--color-cyan-600);
  font-weight: 900;
}

.feature-list p {
  margin: 0.25rem 0 0;
  color: var(--color-muted);
}

.responsibility-grid,
.scheme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.responsibility-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.responsibility-card--dealer {
  background: linear-gradient(135deg, var(--color-navy-950), var(--color-navy-700));
  color: rgba(255, 255, 255, 0.72);
}

.responsibility-card--dealer h3 {
  color: var(--color-white);
}

.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.65rem;
}

.check-list li::before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  color: var(--color-cyan-500);
  content: "✓";
  font-weight: 900;
}

.scheme-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.scheme-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--color-white);
}

.scheme-card figcaption {
  display: grid;
  padding: 1.15rem;
  gap: 0.2rem;
}

.scheme-card figcaption strong {
  color: var(--color-white);
}

.scheme-card figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(14rem, 22vw);
  gap: 0.8rem;
}

.photo-mosaic figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-navy-800);
}

.photo-mosaic__wide {
  grid-column: span 2;
}

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

.photo-mosaic figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(17, 17, 17, 0.74);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.business-banner {
  position: relative;
  min-height: clamp(26rem, 45vw, 38rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  isolation: isolate;
  box-shadow: var(--shadow-md);
}

.business-banner__media,
.business-banner__scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.business-banner__media img,
.business-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-banner__scrim {
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.48));
}

.business-banner__content {
  max-width: 48rem;
  padding: clamp(2rem, 7vw, 6rem);
  color: rgba(255, 255, 255, 0.78);
}

.business-banner__content h2 {
  color: var(--color-white);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  box-shadow: none;
  color: var(--color-white);
}

.button--outline-light:hover {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-navy-900);
}

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

.form-layout > div:last-child,
.legal-card,
.spec-card {
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.archive-header__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.45fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.archive-header__lead {
  color: rgba(255, 255, 255, 0.72);
}

.archive-header__mark {
  justify-self: end;
  color: rgba(255, 255, 255, 0.11);
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.product-hero {
  padding-block: clamp(3rem, 7vw, 6.5rem);
  background: linear-gradient(135deg, #f5f8fb, #eaf2ff);
}

.product-hero__grid {
  gap: clamp(2rem, 5vw, 5rem);
}

.product-hero__content {
  min-width: 0;
}

.product-hero__lead {
  max-width: 42rem;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.product-hero__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.product-hero__media img,
.product-hero__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-hero__media figcaption {
  padding: 0.75rem 1rem;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.spec-chips--large li {
  display: grid;
  min-width: 8rem;
  padding: 0.65rem 0.8rem;
}

.spec-chips--large span {
  color: var(--color-muted);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.price-note {
  margin-top: 0.8rem;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.product-overview,
.document-detail {
  align-items: start;
}

.product-overview .entry-content,
.document-detail .entry-content,
.contact-page-copy {
  width: auto;
  margin: 0;
  padding: 0;
}

.spec-card dl,
.legal-card dl {
  margin: 0;
}

.spec-card dl > div,
.legal-card dl > div {
  display: grid;
  padding-block: 0.85rem;
  grid-template-columns: minmax(7rem, 0.8fr) 1.2fr;
  gap: 1rem;
  border-bottom: 1px solid var(--color-line);
}

.spec-card dt,
.legal-card dt {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.spec-card dd,
.legal-card dd {
  margin: 0;
  color: var(--color-navy-900);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.spec-card__note {
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 0.8rem;
}

.filter-type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.filter-type-grid article {
  padding: 1.25rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-xs);
}

.filter-type-grid article > strong {
  color: var(--color-cyan-700);
  font-size: 0.8rem;
}

.filter-type-grid h3 {
  margin-top: 0.5rem;
  font-size: 1.08rem;
}

.filter-type-grid p {
  color: var(--color-muted);
  font-size: 0.84rem;
}

.scheme-feature {
  align-items: center;
}

.scheme-feature h2 {
  color: var(--color-white);
}

.scheme-feature__image {
  width: 100%;
  max-height: 28rem;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

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

.document-disclaimer {
  margin-top: 1.5rem;
}

.document-preview {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.document-preview img {
  width: 100%;
}

.contact-page-grid {
  align-items: start;
}

.not-found__grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.not-found__code {
  color: var(--color-cyan-100);
  font-size: clamp(7rem, 22vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.article-hero {
  padding-block: clamp(3rem, 7vw, 6rem);
  background: linear-gradient(135deg, var(--color-navy-950), var(--color-navy-700));
  color: rgba(255, 255, 255, 0.75);
}

.article-hero h1 {
  color: var(--color-white);
}

.article-hero__meta,
.tag-list {
  display: flex;
  margin: 0 0 1rem;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  list-style: none;
}

.article-hero__lead {
  font-size: 1.12rem;
}

/* Responsive */

@media (max-width: 68rem) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-header .nav,
  .js .site-header .primary-nav {
    position: fixed;
    z-index: 999;
    top: calc(var(--site-header-total) + var(--wp-admin--admin-bar--height, 0px));
    right: 0;
    bottom: 0;
    display: block;
    width: min(100%, 25rem);
    padding: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background: var(--color-white);
    box-shadow: -15px 20px 40px rgba(17, 17, 17, 0.18);
    opacity: 0;
    transform: translateX(100%);
    transition: 0.25s var(--ease);
  }

  body.nav-open .site-header .nav,
  body.nav-open .site-header .primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  body.nav-open::after {
    position: fixed;
    z-index: 900;
    inset: 0;
    background: rgba(17, 17, 17, 0.6);
    content: "";
  }

  html:not(.js) .site-header__inner {
    padding-block: 0.65rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  html:not(.js) .site-header .primary-nav {
    width: 100%;
    order: 3;
    overflow-x: auto;
  }

  .site-header .nav ul,
  .site-header .nav .menu,
  .site-header .primary-nav ul,
  .site-header .primary-nav .menu {
    display: grid;
    align-items: stretch;
  }

  .site-header .nav a,
  .site-header .primary-nav a {
    display: flex;
    width: 100%;
  }

  .site-header .nav .sub-menu,
  .site-header .primary-nav .sub-menu {
    position: static;
    display: grid;
    width: auto;
    margin-left: 0.75rem;
    padding: 0 0 0 0.75rem;
    visibility: visible;
    border: 0;
    border-left: 2px solid var(--color-line);
    border-radius: 0;
    opacity: 1;
    box-shadow: none;
    transform: none;
  }

  .grid--4 > *,
  .grid > * {
    grid-column: span 6;
  }

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

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

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

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

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

  .product-grid,
  .article-grid,
  .application-grid,
  .filter-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 48rem) {
  :root {
    --header-height: 4.35rem;
  }

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

  .topbar .container {
    padding-block: 0.45rem;
  }

  .topbar__links {
    display: none;
  }

  .topbar__dealer {
    font-size: 0.7rem;
  }

  .topbar__contacts span {
    display: none;
  }

  .header-actions .button,
  .header-phone,
  .brand__dealer {
    display: none;
  }

  .site-description {
    display: none;
  }

  .custom-logo {
    max-height: 2.55rem;
  }

  .hero {
    min-height: 31rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.68)),
      var(--hero-image, linear-gradient(135deg, var(--color-navy-800), var(--color-cyan-700)));
    background-position: center;
    background-size: cover;
  }

  .hero--home::before {
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.62));
  }

  .section__header,
  .cta__inner,
  .site-footer__bottom .container,
  .site-footer__bottom.container {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .grid > *,
  .grid--2 > *,
  .grid--4 > *,
  .photo-grid > *,
  .photo-grid > :first-child {
    grid-column: 1;
  }

  .photo-grid {
    grid-auto-rows: minmax(14rem, 62vw);
  }

  .photo-grid > :first-child {
    grid-row: auto;
  }

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

  .section-heading--split,
  .split-feature,
  .product-hero__grid,
  .product-overview,
  .scheme-feature,
  .form-layout,
  .contact-page-grid,
  .document-detail,
  .archive-header__grid,
  .responsibility-grid,
  .scheme-grid,
  .not-found__grid {
    grid-template-columns: 1fr;
  }

  .archive-header__mark {
    display: none;
  }

  .product-grid,
  .article-grid,
  .application-grid,
  .filter-type-grid,
  .document-list--archive,
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .application-grid,
  .application-grid--three,
  .photo-mosaic {
    grid-auto-rows: minmax(16rem, 64vw);
  }

  .photo-card--large,
  .photo-mosaic__wide {
    grid-row: auto;
    grid-column: auto;
  }

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

  .hero__scroll {
    display: none;
  }

  .catalog-filter,
  .form-grid,
  .kormell-form-grid,
  .product-specs {
    grid-template-columns: 1fr;
  }

  .product-specs > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .document-list li,
  .document-list__item {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .search-form {
    align-items: stretch;
    flex-direction: column;
  }

  .search-form .search-submit {
    width: 100%;
  }
}

@media (max-width: 32rem) {
  .container,
  .alignwide,
  .entry-header,
  .entry-content,
  .entry-footer,
  .comments-area,
  .post-navigation,
  .entry-thumbnail,
  .post-thumbnail {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero__inner {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .stats,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .button-row,
  .catalog-filter__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .button-row .button,
  .catalog-filter__actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    min-width: 0;
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
  }

  .topbar,
  .site-header,
  .site-footer,
  .nav,
  .nav-toggle,
  .button,
  button,
  form,
  .catalog-filter,
  .map-shell,
  .pagination,
  .post-navigation,
  .no-print {
    display: none !important;
  }

  .section,
  .archive-header,
  .entry-header,
  .entry-content {
    width: 100% !important;
    max-width: none !important;
    padding: 0.5rem 0 !important;
    background: #fff !important;
    color: #000 !important;
  }

  h1,
  h2,
  h3,
  h4,
  .archive-header h1 {
    color: #000 !important;
    break-after: avoid;
  }

  a,
  a:visited {
    color: #000 !important;
    text-decoration: underline;
  }

  .entry-content a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    overflow-wrap: anywhere;
  }

  img,
  table,
  blockquote,
  .card,
  .product-card {
    break-inside: avoid;
  }

  .entry-thumbnail,
  .post-thumbnail {
    width: 100%;
    max-height: 9cm;
  }

  .variants-table-wrap {
    overflow: visible;
    border-color: #777;
  }

  .variants-table,
  .variants-table-wrap table {
    min-width: 0;
    font-size: 8pt;
  }

  .variants-table th,
  .variants-table-wrap th {
    position: static;
    background: #eee !important;
    color: #000 !important;
  }
}
