:root {
  /* Australian National Flag blue (Pantone 280 digital approximation). */
  --flag-blue: #012169;
  --brand-red: #ed1c2e;
  --brand-red-dark: #c81022;
  --charcoal: #1b1d20;
  --black: #0d0e10;
  --ink: #24272b;
  --steel: #62676f;
  --line: #d9dadd;
  --soft: #f5f5f3;
  --soft-strong: #e9e9e6;
  --white: #ffffff;
  --max: 1200px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, "Helvetica Neue", Arial, "Noto Sans", "Noto Sans Arabic", sans-serif;
  line-height: 1.55;
}

[dir="rtl"] body {
  text-align: right;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
  line-height: 1.3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 3.5vw, 54px);
  border-top: 4px solid var(--charcoal);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(13, 14, 16, 0.08);
  backdrop-filter: blur(12px);
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(18px, 3.5vw, 54px);
  width: 78px;
  height: 4px;
  background: var(--brand-red);
}

[dir="rtl"] .site-header::after {
  right: clamp(18px, 3.5vw, 54px);
  left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 88px;
  height: 48px;
  flex: 0 0 auto;
  background:
    linear-gradient(
      90deg,
      var(--flag-blue) 0 35%,
      var(--brand-red) 35% 65%,
      var(--flag-blue) 65% 100%
    );
  color: var(--white);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.08;
  white-space: nowrap;
}

.brand-text strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(11px, 1.3vw, 22px);
  min-width: 0;
  overflow-x: auto;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 750;
  scrollbar-width: none;
  white-space: nowrap;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: transparent;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--ink);
}

.primary-nav a[aria-current="page"]::after {
  background: var(--brand-red);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.language-switcher {
  position: relative;
  color: var(--steel);
  font-size: 0.86rem;
  white-space: nowrap;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::before {
  content: "A";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-red-dark);
  font-size: 0.68rem;
  font-weight: 900;
}

.language-switcher summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-switcher[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-switcher nav {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 40;
  display: grid;
  width: 190px;
  max-width: calc(100vw - 36px);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(13, 14, 16, 0.18);
}

.language-switcher nav a {
  display: block;
  padding: 9px 10px;
  border-radius: 3px;
}

.language-switcher nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

[dir="rtl"] .language-switcher nav {
  right: auto;
  left: 0;
}

.header-cta,
.button,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 850;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.header-cta,
.button.primary,
.inquiry-form button {
  background: var(--brand-red);
  color: var(--white);
}

.header-cta:hover,
.button.primary:hover,
.inquiry-form button:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--soft);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button.ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: min(760px, calc(100vh - var(--header-height)));
  padding: clamp(54px, 8vw, 112px) clamp(18px, 7vw, 104px);
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 12px;
  background: var(--brand-red);
}

[dir="rtl"] .hero::after {
  right: auto;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-red-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.hero-copy {
  max-width: 640px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.16rem;
}

.hero-copy.zh {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.heritage-badge {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 0 11px;
  width: fit-content;
  margin: 0 0 25px;
  padding: 14px 17px 14px 15px;
  border-left: 6px solid var(--brand-red);
  background: var(--white);
  color: var(--ink);
  box-shadow: 12px 12px 0 rgba(13, 14, 16, 0.3);
}

.heritage-badge strong {
  grid-row: span 2;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.8;
}

.heritage-badge span {
  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.heritage-badge em {
  max-width: 260px;
  color: var(--steel);
  font-size: 0.8rem;
  font-style: normal;
}

[dir="rtl"] .heritage-badge {
  padding-right: 15px;
  padding-left: 17px;
  border-right: 6px solid var(--brand-red);
  border-left: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.hero-layout-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: min(520px, 100%);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--black);
  box-shadow: 22px 22px 0 rgba(13, 14, 16, 0.28);
}

.image-slot {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: 18px;
  overflow: hidden;
  border: 2px dashed #b8b9bc;
  background: var(--soft-strong);
  color: var(--ink);
}

.image-slot.large {
  grid-column: 1 / -1;
  min-height: 320px;
}

.image-slot::after {
  content: "PHOTO";
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(36, 39, 43, 0.18);
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
}

[dir="rtl"] .image-slot::after {
  right: auto;
  left: 18px;
}

.image-slot b,
.image-slot span,
.image-slot strong {
  position: relative;
  z-index: 1;
}

.image-slot b {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  background: var(--brand-red);
  color: var(--white);
  font-size: 0.72rem;
}

[dir="rtl"] .image-slot b {
  right: 16px;
  left: auto;
}

.image-slot span {
  color: var(--brand-red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.image-slot strong {
  margin-top: 4px;
  font-size: 1.05rem;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
}

.capabilities article {
  min-height: 224px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capabilities article:first-child {
  border-left: 8px solid var(--brand-red);
}

[dir="rtl"] .capabilities article:first-child {
  border-right: 8px solid var(--brand-red);
  border-left: 1px solid var(--line);
}

.capabilities article:last-child {
  border-right: 0;
}

.capabilities span {
  color: var(--brand-red);
  font-weight: 900;
}

.capabilities h2 {
  margin-top: 26px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  text-transform: uppercase;
}

.capabilities p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--steel);
}

.section {
  padding: clamp(66px, 8vw, 116px) clamp(18px, 5vw, 68px);
}

.section-heading,
.two-column,
.product-grid,
.product-toolbar,
.catalogue-panel,
.split-band,
.solution-row,
.industry-toolbar,
.industry-results,
.article-grid,
.dealer-section,
.contact-section,
.site-footer {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 760px;
  color: inherit;
  opacity: 0.78;
}

.page-hero {
  position: relative;
  padding: clamp(68px, 8vw, 118px) clamp(18px, 7vw, 104px);
  overflow: hidden;
  border-bottom: 8px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22%;
  height: 8px;
  background: var(--brand-red);
}

[dir="rtl"] .page-hero::after {
  right: auto;
  left: 0;
}

.page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-era {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 0 10px;
  width: min-content;
  min-width: 210px;
  padding: 18px 20px;
  border-left: 5px solid var(--brand-red);
  background: var(--brand-red);
  color: var(--white);
}

.page-era strong {
  grid-row: span 2;
  font-size: clamp(3.8rem, 6vw, 6.3rem);
  line-height: 0.78;
}

.page-era span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-era small {
  min-width: 110px;
  font-size: 0.72rem;
  line-height: 1.25;
  opacity: 0.82;
}

[dir="rtl"] .page-era {
  border-right: 5px solid var(--brand-red);
  border-left: 0;
}

.about-section,
.knowledge-section {
  background: var(--soft);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  font-size: 1.08rem;
}

.two-column p {
  color: var(--steel);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 64px;
  padding: 18px 16px 18px 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 12px;
  height: 12px;
  border: 4px solid var(--soft-strong);
  background: var(--brand-red);
}

[dir="rtl"] .check-list li {
  padding-right: 46px;
  padding-left: 16px;
}

[dir="rtl"] .check-list li::before {
  right: 18px;
  left: auto;
}

.heritage-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  width: min(var(--max), 100%);
  margin: clamp(36px, 5vw, 64px) auto 0;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--line);
  border-left: 8px solid var(--brand-red);
  background: var(--soft);
}

.heritage-number {
  display: grid;
  min-width: 150px;
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.heritage-number strong {
  color: var(--ink);
  font-size: clamp(4.5rem, 7vw, 7rem);
  line-height: 0.8;
}

.heritage-number span {
  color: var(--brand-red-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.heritage-panel h3 {
  color: var(--ink);
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
}

.heritage-panel p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--steel);
}

[dir="rtl"] .heritage-panel {
  border-right: 8px solid var(--brand-red);
  border-left: 1px solid var(--line);
}

[dir="rtl"] .heritage-number {
  padding-right: 0;
  padding-left: 30px;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.product-section {
  background: var(--soft);
}

.product-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.product-toolbar p {
  margin: 0;
  color: var(--steel);
}

.product-filter-buttons,
.filter-tags,
.spec-list,
.solution-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.product-filter-buttons {
  display: grid;
  gap: 14px;
}

.product-filter-level {
  display: grid;
  gap: 8px;
}

.product-filter-label {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.product-filter-buttons button {
  min-height: 39px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.product-filter-buttons button:hover,
.product-filter-buttons button.is-active {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: var(--white);
}

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

.product-card {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 5px solid var(--charcoal);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(13, 14, 16, 0.07);
}

.product-card-live {
  min-height: 0;
}

.product-card h3,
.product-card p,
.product-card ul {
  padding-inline: 22px;
}

.product-card h3 {
  color: var(--ink);
}

.product-card .product-category-path {
  margin-bottom: 8px;
  color: var(--brand-red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card p,
.product-card ul {
  color: var(--steel);
}

.product-card ul {
  margin: 20px 0 26px;
  font-size: 0.93rem;
}

.product-visual,
.product-image-slot {
  position: relative;
  display: grid;
  place-items: center;
  height: 194px;
  margin-bottom: 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.product-visual::before {
  content: "PRODUCT IMAGE";
  color: rgba(36, 39, 43, 0.38);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.product-visual::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 6px;
  background: var(--brand-red);
}

[dir="rtl"] .product-visual::after {
  right: auto;
  left: 18px;
}

.product-image-slot img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  background: var(--white);
}

.product-image-slot span {
  padding: 10px 14px;
  color: var(--brand-red-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.product-meta {
  display: grid;
  gap: 9px;
  padding: 0 22px 24px;
  margin: 0;
}

.product-meta div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.product-meta dt {
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.catalogue-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 30px;
  margin-top: 24px;
  padding: 30px;
  border-left: 7px solid var(--brand-red);
  background: var(--charcoal);
  color: var(--white);
}

.catalogue-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.catalogue-panel .filter-tags {
  align-content: center;
}

.filter-tags span,
.spec-list span,
.solution-row span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.split-band > div:first-child p {
  max-width: 720px;
  color: var(--steel);
}

.spec-box {
  padding: 30px;
  border-left: 7px solid var(--brand-red);
  background: var(--charcoal);
  color: var(--white);
}

[dir="rtl"] .spec-box,
[dir="rtl"] .catalogue-panel {
  border-right: 7px solid var(--brand-red);
  border-left: 0;
}

.solutions-section {
  background: var(--black);
  color: var(--white);
}

.solutions-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.solution-row {
  justify-content: flex-start;
}

.solution-row span {
  min-height: 56px;
  padding: 16px 18px;
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--charcoal);
}

.home-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.home-links a {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 185px;
  align-content: end;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 5px solid #55585d;
  background: var(--charcoal);
}

.home-links a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border-top: 8px solid var(--brand-red);
  border-right: 8px solid var(--brand-red);
}

[dir="rtl"] .home-links a::after {
  right: auto;
  left: 0;
  border-right: 0;
  border-left: 8px solid var(--brand-red);
}

.home-links a:hover {
  border-bottom-color: var(--brand-red);
  background: #292b2f;
}

.home-links span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-links strong {
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.28;
}

.industries-section {
  background: var(--soft);
}

.industry-toolbar {
  display: grid;
  gap: 24px;
}

.industry-toolbar > p {
  min-height: 24px;
  margin: 0;
  color: var(--steel);
}

.industry-tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.industry-tag-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 172px;
  align-items: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-bottom: 5px solid var(--charcoal);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: start;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.industry-tag-card:hover {
  border-color: #aeb0b4;
  transform: translateY(-2px);
}

.industry-tag-card.is-active {
  border-bottom-color: var(--brand-red);
  box-shadow: 0 12px 28px rgba(13, 14, 16, 0.1);
}

.industry-tag-marker {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 34px;
  height: 6px;
  background: var(--charcoal);
}

[dir="rtl"] .industry-tag-marker {
  right: 22px;
  left: auto;
}

.industry-tag-card.is-active .industry-tag-marker {
  background: var(--brand-red);
}

.industry-tag-card strong {
  font-size: 1.08rem;
  font-weight: 850;
}

.industry-tag-card small {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 750;
}

.industry-results {
  padding-top: clamp(42px, 6vw, 72px);
  margin-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.industry-results[hidden] {
  display: none;
}

.industry-results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.industry-results-heading h2,
.industry-results-heading p {
  margin-bottom: 0;
}

.industry-results-heading > p {
  color: var(--steel);
  font-weight: 800;
  white-space: nowrap;
}

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

.article-grid a {
  display: block;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--charcoal);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(13, 14, 16, 0.06);
}

.article-grid a:nth-child(2) {
  border-top-color: var(--brand-red);
}

.article-grid a:hover {
  border-color: #aeb0b4;
}

.article-grid span {
  color: var(--brand-red-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-grid h3 {
  margin-top: 28px;
  color: var(--ink);
}

.article-grid p {
  color: var(--steel);
}

.dealer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 76px);
}

.dealer-section > div p:not(.eyebrow) {
  color: var(--steel);
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 27px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--charcoal);
  background: var(--soft);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.inquiry-form .full,
.inquiry-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 45px;
  padding: 10px 12px;
  border: 1px solid #b9bbbf;
  border-radius: 3px;
  outline: none;
  background: var(--white);
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(237, 28, 46, 0.14);
}

textarea {
  resize: vertical;
}

.contact-section {
  display: grid;
  gap: 28px;
  align-items: start;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-details article {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--charcoal);
  background: var(--white);
}

.contact-details article:nth-child(2),
.contact-details article:nth-child(6) {
  border-top-color: var(--brand-red);
}

.contact-details article.wide {
  grid-column: span 2;
}

.contact-details span {
  color: var(--brand-red-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
}

.contact-details small {
  color: var(--steel);
  font-size: 0.86rem;
  line-height: 1.45;
}

.contact-details a {
  overflow-wrap: anywhere;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.contact-actions a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-weight: 800;
}

.contact-actions a:hover {
  border-color: var(--brand-red);
  background: var(--soft);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding: 44px clamp(18px, 5vw, 68px);
  border-top: 8px solid var(--brand-red);
  background: var(--black);
  color: rgba(255, 255, 255, 0.68);
}

.footer-identity {
  display: grid;
  gap: 16px;
}

.footer-brand .brand-text strong,
.footer-brand .brand-text small {
  color: var(--white);
}

.site-footer p {
  max-width: 640px;
  margin-bottom: 0;
}

.site-footer > p {
  align-self: end;
  text-align: right;
}

[dir="rtl"] .site-footer > p {
  text-align: left;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 20px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
  }

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

  .home-links,
  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 118px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-layout-preview {
    width: 100%;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-era {
    min-width: 190px;
  }

  .two-column,
  .catalogue-panel,
  .split-band,
  .dealer-section {
    grid-template-columns: 1fr;
  }

  .industry-tag-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    display: grid;
  }

  .site-footer > p,
  [dir="rtl"] .site-footer > p {
    text-align: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 11px 16px 9px;
  }

  .site-header::after {
    left: 16px;
    width: 64px;
  }

  [dir="rtl"] .site-header::after {
    right: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 70px;
    height: 40px;
    font-size: 1.25rem;
  }

  .brand-text strong {
    font-size: 0.8rem;
  }

  .brand-text small {
    font-size: 0.57rem;
  }

  .header-cta {
    display: none;
  }

  .language-switcher summary {
    min-height: 38px;
    padding: 0 10px;
  }

  .language-switcher summary::before {
    display: none;
  }

  .language-switcher nav {
    right: 0;
    left: auto;
  }

  [dir="rtl"] .language-switcher nav {
    right: auto;
    left: 0;
  }

  .hero {
    gap: 42px;
    padding: 54px 18px 68px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .heritage-badge {
    max-width: 100%;
  }

  .heritage-badge strong {
    font-size: 3.6rem;
  }

  .hero-layout-preview {
    grid-template-columns: 1fr;
    padding: 9px;
    box-shadow: 12px 12px 0 rgba(13, 14, 16, 0.25);
  }

  .image-slot.large {
    grid-column: auto;
    min-height: 240px;
  }

  .image-slot {
    min-height: 132px;
  }

  .image-slot::after {
    font-size: 2.3rem;
  }

  .capabilities,
  .product-grid,
  .home-links,
  .industry-tag-grid,
  .article-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .industry-results-heading {
    display: grid;
  }

  .industry-results-heading > p {
    white-space: normal;
  }

  .capabilities article {
    border-right: 0;
  }

  .capabilities article:first-child {
    border-left-width: 6px;
  }

  [dir="rtl"] .capabilities article:first-child {
    border-right-width: 6px;
  }

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

  .heritage-panel {
    grid-template-columns: 1fr;
  }

  .heritage-number {
    padding-right: 0;
    padding-bottom: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  [dir="rtl"] .heritage-number {
    padding-left: 0;
    border-left: 0;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .contact-details article.wide {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

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