:root {
  --brand-primary: #00467a;
  --brand-dark: #002d52;
  --heading-blue: #004080;
  --soft-bg: #f2f6f9;
  --text-dark: #152536;
  --text-muted: #667085;
  --brand-accent: #c8a867;
  --white: #ffffff;
  --container: 1140px;
  --wide-container: 1360px;
  --shadow-soft: 0 20px 60px rgba(20, 44, 66, 0.12);
  --shadow-card: 0 16px 36px rgba(21, 37, 54, 0.1);
  --transition: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--white);
  font-family: "Manrope", "Noto Kufi Arabic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body,
html[lang="ku"] body {
  font-family: "Noto Kufi Arabic", "Manrope", Arial, sans-serif;
  line-height: 1.9;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

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

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

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", "Noto Kufi Arabic", "Manrope", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ku"] h1,
html[lang="ku"] h2,
html[lang="ku"] h3 {
  font-family: "Noto Kufi Arabic", "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0;
  line-height: 1.35;
}

::selection {
  color: var(--white);
  background: var(--brand-primary);
}

:focus-visible {
  outline: 3px solid #ffca3a;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(15, 35, 53, 0.92);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 18px;
  color: var(--brand-primary);
  background: var(--white);
  border: 2px solid var(--brand-primary);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

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

.wide-container {
  width: min(calc(100% - 40px), var(--wide-container));
}

.section-padding {
  padding-block: 110px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading h2,
.about-preview-copy h2,
.story-card h2,
.map-copy h2 {
  margin-bottom: 22px;
  color: var(--heading-blue);
  font-size: clamp(2.15rem, 4vw, 3.75rem);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.03rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 24px;
  color: var(--brand-primary);
  background: var(--white);
  border: 2px solid var(--brand-primary);
  border-radius: 36px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
  color: var(--white);
  background: var(--brand-primary);
  box-shadow: 0 10px 24px rgba(0, 70, 122, 0.2);
  transform: translateY(-2px);
}

.button-arrow {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  line-height: 1;
}

.button--light {
  color: var(--brand-primary);
  background: var(--white);
  border-color: var(--white);
}

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

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

.button--ghost:hover {
  color: var(--brand-primary);
  background: var(--white);
  border-color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

.page-loading {
  display: grid;
  min-height: 60vh;
  place-items: center;
  color: var(--brand-primary);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.noscript {
  margin: 0;
  padding: 20px;
  color: var(--white);
  background: #8a1824;
  text-align: center;
}

/* Header */
.site-header {
  position: relative;
  z-index: 80;
  background: var(--white);
}

.utility-bar {
  display: grid;
  min-height: 106px;
  align-items: center;
  gap: 40px;
  grid-template-columns: minmax(250px, 1fr) minmax(320px, 470px) minmax(240px, 1fr);
}

.logo-lockup,
.mobile-menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.logo-lockup img,
.mobile-menu-brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.logo-lockup span,
.mobile-menu-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-lockup strong,
.mobile-menu-brand strong {
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", "Noto Kufi Arabic", sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.logo-lockup small,
.mobile-menu-brand small {
  max-width: 210px;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-search {
  position: relative;
  width: 100%;
}

.site-search input {
  width: 100%;
  height: 50px;
  padding-inline: 50px 22px;
  color: var(--text-dark);
  background: #f6f8fa;
  border: 1px solid #dfe5ea;
  border-radius: 999px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-search input:focus {
  background: var(--white);
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(0, 70, 122, 0.1);
}

.search-icon {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 19px;
  z-index: 1;
  color: var(--brand-primary);
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(-50%);
}

.search-results {
  position: absolute;
  inset-block-start: calc(100% + 10px);
  inset-inline: 0;
  z-index: 90;
  max-height: 430px;
  padding: 8px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid #e0e6eb;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 31, 56, 0.18);
}

.search-results a {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 12px;
  transition: background var(--transition), color var(--transition);
}

.search-results a:hover,
.search-results a:focus-visible,
.search-results a.is-active {
  color: var(--white);
  background: var(--brand-primary);
}

.search-results strong {
  font-size: 0.9rem;
}

.search-results span {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-results a:hover span,
.search-results a:focus-visible span,
.search-results a.is-active span {
  color: rgba(255, 255, 255, 0.8);
}

.search-results > p {
  margin: 0;
  padding: 15px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.phone-action {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.phone-action > span:last-child {
  display: flex;
  flex-direction: column;
}

.phone-action small {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-action bdi {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 800;
}

.round-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: color var(--transition), background var(--transition);
}

.phone-action:hover .round-icon {
  color: var(--white);
  background: var(--brand-primary);
}

.floating-nav {
  position: absolute;
  inset-block-end: -36px;
  inset-inline: 0;
  display: grid;
  min-height: 72px;
  align-items: center;
  padding: 9px 14px;
  color: var(--white);
  background: var(--brand-primary);
  border-radius: 55px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
  grid-template-columns: 150px 1fr 112px;
}

.nav-social,
.mobile-social {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-social a,
.mobile-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 800;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.nav-social a:hover,
.mobile-social a:hover {
  color: var(--brand-primary);
  background: var(--white);
  border-color: var(--white);
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.desktop-nav-links > a,
.nav-details > summary,
.language-details > summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 19px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.desktop-nav-links > a:hover,
.desktop-nav-links > a.is-active,
.nav-details:hover > summary,
.nav-details[open] > summary,
.nav-details[data-current] > summary,
.language-details:hover > summary,
.language-details[open] > summary {
  color: var(--brand-primary);
  background: var(--white);
}

summary::-webkit-details-marker {
  display: none;
}

.nav-details,
.language-details {
  position: relative;
}

.dropdown-menu,
.language-options {
  position: absolute;
  inset-block-start: calc(100% + 11px);
  inset-inline-start: 0;
  display: grid;
  min-width: 285px;
  padding: 10px;
  background: var(--brand-primary);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: 0 22px 46px rgba(0, 35, 63, 0.3);
}

.nav-details:not([open]) .dropdown-menu,
.language-details:not([open]) .language-options {
  display: none;
  pointer-events: none;
}

.dropdown-menu a,
.language-option {
  display: flex;
  min-height: 45px;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: var(--white);
  background: transparent;
  border-radius: 12px;
  text-align: start;
  transition: color var(--transition), background var(--transition);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a[aria-current="page"],
.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  color: var(--brand-primary);
  background: var(--white);
}

.language-details {
  justify-self: end;
}

.language-details > summary {
  min-width: 88px;
  padding-inline: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.language-options {
  inset-inline: auto 0;
  min-width: 190px;
}

.language-option {
  width: 100%;
  cursor: pointer;
}

.language-flag {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
}

.mobile-header {
  display: none;
}

/* Hero */
.hero-carousel {
  position: relative;
  height: 850px;
  overflow: hidden;
  color: var(--white);
  background: var(--brand-dark);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero-slide.is-active > img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 27, 49, 0.56), rgba(0, 25, 47, 0.72)), linear-gradient(90deg, rgba(0, 24, 45, 0.25), rgba(0, 46, 79, 0.32));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  max-width: 980px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 80px 120px;
  text-align: center;
}

.hero-kicker {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

html[dir="rtl"] .hero-kicker {
  letter-spacing: 0;
}

.hero-content h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(4rem, 8vw, 7.5rem);
  letter-spacing: -0.06em;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

html[dir="rtl"] .hero-content h1 {
  letter-spacing: 0;
}

.hero-content > p:not(.hero-kicker) {
  max-width: 710px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.hero-slide.is-active .hero-kicker,
.hero-slide.is-active .hero-content h1,
.hero-slide.is-active .hero-content > p,
.hero-slide.is-active .hero-actions {
  animation: hero-copy-in 1s both;
}

.hero-slide.is-active .hero-content h1 {
  animation-delay: 100ms;
}

.hero-slide.is-active .hero-content > p {
  animation-delay: 190ms;
}

.hero-slide.is-active .hero-actions {
  animation-delay: 270ms;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-controls {
  position: absolute;
  inset-block-end: 44px;
  inset-inline: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.hero-arrow,
.carousel-arrow,
.lightbox-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--brand-primary);
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.hero-arrow:hover {
  color: var(--white);
  background: transparent;
  transform: scale(1.05);
}

.hero-dots,
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-dots button,
.carousel-dots button {
  position: relative;
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hero-dots button::before,
.carousel-dots button::before {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  content: "";
  transition: width var(--transition), background var(--transition);
}

.hero-dots button.is-active::before {
  width: 22px;
  background: var(--white);
}

.hero-toggle,
.carousel-toggle {
  font-size: 0.82rem;
}

.hero-progress {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 4;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
}

html[dir="rtl"] .hero-progress span {
  transform-origin: right;
}

/* Category overview */
.category-overview {
  background: var(--soft-bg);
}

.category-overview-grid {
  display: grid;
  gap: 58px 34px;
  grid-template-columns: repeat(12, 1fr);
}

.category-tile {
  display: flex;
  align-items: center;
  flex-direction: column;
  grid-column: span 4;
  text-align: center;
}

.category-tile--wide {
  grid-column: span 6;
}

.category-tile h3 {
  min-height: 56px;
  margin-bottom: 19px;
  color: var(--heading-blue);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.category-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 0.9;
  background: #dce5eb;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 44, 66, 0.08);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.category-image--product {
  background: linear-gradient(145deg, #ffffff, #e7edf1);
}

.category-image--product img {
  padding: 28px;
  object-fit: contain;
}

.category-image > span,
.gallery-slide > span,
.representative-image > span,
.product-image > span {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand-primary);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  line-height: 1;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.category-image:hover img {
  transform: scale(1.045);
}

.category-image:hover > span,
.gallery-slide:hover > span,
.representative-image:hover > span,
.product-image:hover > span {
  color: var(--white);
  background: var(--brand-primary);
  transform: rotate(12deg);
}

.category-tile > p {
  max-width: 440px;
  min-height: 58px;
  margin: 22px auto 22px;
  color: var(--text-muted);
}

/* About preview and brands */
.about-preview-grid {
  display: grid;
  align-items: center;
  gap: 74px;
  grid-template-columns: 1.05fr 0.95fr;
}

.about-preview-media {
  position: relative;
}

.about-preview-media img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: 72% center;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.media-index {
  position: absolute;
  inset-block-end: -28px;
  inset-inline-start: 28px;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--white);
  background: var(--brand-primary);
  border: 8px solid var(--white);
  border-radius: 50%;
  font-weight: 800;
}

.about-preview-copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: 1.04rem;
}

.about-profile-placeholders {
  display: grid;
  gap: 8px;
  margin: -8px 0 30px;
}

.about-profile-placeholders > div {
  display: grid;
  gap: 3px;
  padding: 10px 14px;
  background: var(--soft-bg);
  border-inline-start: 3px solid var(--brand-primary);
  border-radius: 7px;
}

.about-profile-placeholders span {
  color: var(--brand-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-profile-placeholders strong {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.brands-preview {
  background: var(--soft-bg);
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 24px;
}

.brand-slide {
  position: relative;
  min-height: 330px;
  flex: 0 0 calc((100% - 24px) / 2);
  padding: 42px 30px 30px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--brand-primary);
  border-radius: 15px;
  scroll-snap-align: start;
  text-align: center;
}

.brand-slide img {
  width: 100%;
  height: 135px;
  margin-bottom: 24px;
  object-fit: contain;
}

.brand-slide h3 {
  margin-bottom: 10px;
  color: var(--heading-blue);
  font-size: 1.35rem;
}

.brand-slide p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.brand-number {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-end: 17px;
  color: rgba(0, 70, 122, 0.3);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}

.carousel-arrow {
  color: var(--brand-primary);
  background: var(--white);
  border-color: var(--brand-primary);
}

.carousel-arrow:hover {
  color: var(--white);
  background: var(--brand-primary);
}

.carousel-dots button::before {
  background: rgba(0, 70, 122, 0.25);
}

.carousel-dots button.is-active::before {
  width: 22px;
  background: var(--brand-primary);
}

/* Subhero */
.subhero {
  position: relative;
  height: 345px;
  overflow: hidden;
  color: var(--white);
  background: var(--brand-dark);
}

.subhero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subhero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 73, 124, 0.58), rgba(0, 21, 41, 0.9));
}

.subhero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  max-width: 920px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 40px 66px;
  text-align: center;
}

.subhero h1 {
  max-width: 900px;
  margin-bottom: 15px;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.subhero-content > p:last-child:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.wave-divider {
  position: absolute;
  inset-inline: -5%;
  inset-block-end: -2px;
  z-index: 3;
  height: 60px;
  overflow: hidden;
}

.wave-divider span {
  position: absolute;
  inset-inline-start: -10%;
  width: 120%;
  height: 85px;
  border-radius: 50% 50% 0 0;
}

.wave-divider span:nth-child(1) {
  inset-block-start: 25px;
  background: rgba(210, 223, 232, 0.6);
  transform: rotate(-1deg);
}

.wave-divider span:nth-child(2) {
  inset-block-start: 35px;
  background: rgba(235, 241, 245, 0.8);
  transform: rotate(1deg);
}

.wave-divider span:nth-child(3) {
  inset-block-start: 45px;
  background: var(--white);
}

/* About page */
.statement-section {
  padding-block: 88px 110px;
  color: var(--white);
  background: var(--brand-primary);
}

.ruled-title {
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: 1fr minmax(260px, 680px) 1fr;
  text-align: center;
}

.ruled-title span {
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.ruled-title h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.statement-card {
  max-width: 990px;
  margin: 46px auto -160px;
  padding: 46px 54px;
  color: var(--text-dark);
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 28px 70px rgba(0, 24, 45, 0.24);
  text-align: center;
}

.statement-card > p {
  max-width: 800px;
  margin-inline: auto;
  color: var(--text-muted);
}

.split-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.split-actions > span {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: lowercase;
}

.story-section {
  padding-block-start: 190px;
  background: var(--white);
}

.story-composition {
  display: grid;
  align-items: center;
  grid-template-columns: 57% 43%;
}

.story-image img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.story-card {
  position: relative;
  z-index: 2;
  margin-inline-start: -92px;
  padding: 52px 54px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 24px 70px rgba(15, 45, 68, 0.18);
}

.story-card > p:not(.eyebrow) {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.story-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.story-points > div {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 16px;
  padding-block: 12px;
  border-top: 1px solid #e4e9ed;
}

.story-points strong {
  color: var(--brand-primary);
  font-size: 1.35rem;
}

.story-points span {
  display: flex;
  flex-direction: column;
}

.story-points b {
  color: var(--text-dark);
}

.story-points small {
  color: var(--text-muted);
}

.about-gallery {
  background: #f0f2f4;
}

.gallery-slide {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1 / 0.9;
  background: #dce3e8;
  border-radius: 12px;
  cursor: pointer;
  scroll-snap-align: start;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-slide:hover img {
  transform: scale(1.04);
}

.contact-callout {
  background: #e9f0f5;
}

.callout-grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 1fr 2fr;
}

.callout-grid h2 {
  margin: 0;
  color: var(--heading-blue);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.callout-grid p {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

/* Product and brand hubs */
.catalogue-note {
  background: var(--white);
}

.catalogue-note-card,
.partner-placeholder {
  display: grid;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  background: var(--soft-bg);
  border: 1px solid #d9e3ea;
  border-radius: 20px;
  grid-template-columns: auto 1fr auto;
}

.catalogue-note-card > span,
.partner-placeholder > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--brand-primary);
  border-radius: 50%;
  font-weight: 800;
}

.catalogue-note-card h2,
.partner-placeholder h2 {
  margin-bottom: 5px;
  color: var(--heading-blue);
  font-size: 1.3rem;
}

.catalogue-note-card p,
.partner-placeholder p {
  margin: 0;
  color: var(--text-muted);
}

.brands-page {
  background: var(--white);
}

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

.brand-profile {
  position: relative;
  padding: 24px 24px 34px;
  background: var(--white);
  border: 2px solid var(--brand-primary);
  border-radius: 15px;
  box-shadow: 0 13px 30px rgba(0, 70, 122, 0.08);
}

.brand-logo-frame {
  display: grid;
  height: 230px;
  margin-bottom: 28px;
  padding: 22px;
  place-items: center;
  background: #f7f9fa;
  border-radius: 10px;
}

.brand-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-profile h2 {
  margin-bottom: 13px;
  color: var(--heading-blue);
  font-size: 1.65rem;
}

.brand-profile > p:last-child {
  margin: 0;
  color: var(--text-muted);
}

.partner-placeholder {
  margin-top: 42px;
  grid-template-columns: auto 1fr;
}

/* Category pages */
.category-intro {
  padding-block-start: 125px;
  background: var(--white);
}

.category-intro-inner {
  max-width: 900px;
  margin-bottom: 54px;
  text-align: center;
}

.category-intro-inner h1 {
  margin-bottom: 24px;
  color: var(--heading-blue);
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.category-intro-inner > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.08rem;
}

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

.representative-image {
  position: relative;
  height: 520px;
  padding: 0;
  overflow: hidden;
  background: #dfe7ec;
  border-radius: 15px;
  cursor: pointer;
}

.representative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.representative-image--product {
  background: linear-gradient(145deg, #f8fafb, #dce5eb);
}

.representative-image--product img {
  padding: 34px;
  object-fit: contain;
}

.representative-image:hover img {
  transform: scale(1.035);
}

.category-gallery-section {
  background: #eef2f5;
}

.gallery-panel {
  padding: 38px 30px 42px;
  background: #f4f5f6;
  border: 1px solid rgba(0, 64, 128, 0.08);
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(17, 40, 60, 0.12);
}

.gallery-panel .section-heading {
  margin-bottom: 38px;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dde5ea;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(21, 37, 54, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  border-color: rgba(0, 70, 122, 0.35);
  box-shadow: 0 16px 34px rgba(21, 37, 54, 0.12);
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  overflow: hidden;
  aspect-ratio: 0.68 / 1;
  background: linear-gradient(145deg, #f8fafb, #e4eaee);
  cursor: pointer;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms ease;
}

.product-image:hover img {
  transform: scale(1.045);
}

.product-image > span {
  inset-block-start: 10px;
  inset-inline-end: 10px;
  width: 34px;
  height: 34px;
}

.product-card-body {
  padding: 16px 17px 18px;
}

.product-card-body > span {
  display: block;
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-body h3 {
  margin-bottom: 10px;
  color: var(--heading-blue);
  font-size: 1.12rem;
}

.product-card-body a {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 800;
}

.catalogue-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid #d9e1e7;
}

.catalogue-progress p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.system-gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #dfe5e9;
  border-radius: 12px;
  cursor: pointer;
}

.system-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.system-gallery-item:hover img {
  transform: scale(1.04);
}

.system-gallery-item span {
  position: absolute;
  inset-block-end: 10px;
  inset-inline-start: 10px;
  display: grid;
  min-width: 38px;
  min-height: 38px;
  padding: 8px 11px;
  place-items: center;
  color: var(--white);
  background: rgba(0, 45, 82, 0.86);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-grid--swatch-codes .product-card-body h3 {
  letter-spacing: 0;
}

.system-gallery-grid--captioned-media .system-gallery-item span {
  max-width: calc(100% - 20px);
  height: auto;
  line-height: 1.35;
}

.category-contact {
  padding-block: 50px;
  color: var(--white);
  background: var(--brand-primary);
}

.category-contact .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.category-contact p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

/* Contact */
.contact-zone {
  position: relative;
  min-height: 1080px;
  padding-block: 100px 170px;
  overflow: hidden;
  color: var(--white);
  background: var(--brand-dark);
}

.contact-zone-bg,
.contact-zone-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-zone-bg {
  object-fit: cover;
}

.contact-zone-overlay {
  background: linear-gradient(135deg, rgba(0, 32, 59, 0.94), rgba(0, 70, 122, 0.84));
}

.contact-zone-heading {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-bottom: 50px;
  text-align: center;
}

.contact-zone-heading h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
}

.contact-zone-heading > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: stretch;
  gap: 28px;
  grid-template-columns: 0.82fr 1.18fr;
}

.contact-support-image {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.contact-support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-support-image > span {
  position: absolute;
  inset-block-end: 18px;
  inset-inline-start: 18px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(0, 38, 68, 0.82);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.form-panel {
  padding: 42px 42px 38px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 15px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.form-panel > h2 {
  margin-bottom: 12px;
  color: var(--heading-blue);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.form-panel > p {
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

.form-field {
  min-width: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field label span {
  color: #b42318;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 20px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid #cfd7de;
  border-radius: 5px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(0, 70, 122, 0.09);
}

.form-field [aria-invalid="true"] {
  border-color: #b42318;
}

.field-error {
  display: block;
  min-height: 20px;
  margin-top: 5px;
  color: #b42318;
  font-size: 0.73rem;
}

.honeypot {
  position: absolute !important;
  inset-inline-start: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-submit .button {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  cursor: pointer;
}

.form-submit .button:hover {
  color: var(--brand-primary);
  background: var(--white);
}

.form-submit .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  margin: 0;
  color: var(--brand-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.wave-divider--contact span:nth-child(3) {
  background: var(--white);
}

.contact-details {
  background: var(--white);
}

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

.contact-detail-card {
  padding: 10px 24px 28px;
  text-align: center;
}

.contact-detail-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--white);
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 70, 122, 0.22);
  font-size: 1.5rem;
}

.contact-detail-card h3 {
  margin-bottom: 10px;
  color: var(--heading-blue);
  font-size: 1.3rem;
}

.contact-detail-card p,
.contact-detail-card a {
  margin: 0;
  color: var(--text-muted);
}

.contact-detail-links {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.contact-detail-card a:hover {
  color: var(--brand-primary);
}

.map-section {
  padding-block: 20px 110px;
  background: var(--white);
}

.map-grid {
  display: grid;
  align-items: center;
  gap: 50px;
  grid-template-columns: 0.8fr 1.2fr;
}

.map-copy p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--text-muted);
}

.map-frame {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0;
}

/* Footer and back-to-top */
.site-footer {
  position: relative;
  display: grid;
  min-height: 138px;
  place-items: center;
  padding: 35px 20px;
  color: var(--white);
  background: var(--brand-primary);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer > span {
  position: absolute;
  inset-block-end: 16px;
  width: min(calc(100% - 40px), var(--container));
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
}

.back-to-top {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  z-index: 60;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--brand-primary);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 31, 56, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-dark);
}

/* Lightbox */
.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: rgba(0, 15, 28, 0.97);
  border: 0;
}

.lightbox::backdrop {
  background: rgba(0, 15, 28, 0.8);
  backdrop-filter: blur(8px);
}

.lightbox-shell {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.lightbox-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 13px 22px;
  background: rgba(0, 26, 48, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lightbox-topbar p,
.lightbox-topbar span {
  margin: 0;
}

.lightbox-topbar p {
  font-weight: 700;
}

.lightbox-topbar > div:first-child > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.lightbox-tools {
  display: flex;
  gap: 7px;
}

.lightbox-tools button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: color var(--transition), background var(--transition);
}

.lightbox-tools button:hover {
  color: var(--brand-primary);
  background: var(--white);
}

.lightbox-stage {
  display: grid;
  min-height: 0;
  align-items: center;
  gap: 16px;
  padding: 24px;
  grid-template-columns: auto 1fr auto;
}

.lightbox-image-wrap {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  overflow: auto;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  transform-origin: center;
  transition: transform var(--transition);
}

.lightbox-image-wrap.is-zoomed img {
  transform: scale(1.7);
}

.lightbox-arrow {
  color: var(--white);
  background: rgba(0, 70, 122, 0.76);
  border-color: rgba(255, 255, 255, 0.45);
}

.lightbox-arrow:hover {
  color: var(--brand-primary);
  background: var(--white);
}

/* Responsive */
@media (max-width: 1180px) {
  .floating-nav {
    grid-template-columns: 110px 1fr 94px;
  }

  .desktop-nav-links > a,
  .nav-details > summary {
    padding-inline: 13px;
    font-size: 0.84rem;
  }

  .nav-social a {
    width: 34px;
    height: 34px;
  }

  .language-details > summary {
    min-width: 80px;
  }
}

@media (max-width: 1024px) {
  .section-padding {
    padding-block: 90px;
  }

  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .site-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(17, 40, 60, 0.08);
  }

  .mobile-bar {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-inline: 22px;
    background: var(--white);
  }

  .mobile-logo {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
    color: var(--text-dark);
  }

  .mobile-logo img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
  }

  .mobile-logo strong {
    overflow: hidden;
    font-size: 0.94rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-actions {
    display: flex;
    gap: 8px;
  }

  .mobile-round-button,
  .mobile-close {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    color: var(--white);
    background: var(--brand-primary);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle {
    align-content: center;
    gap: 4px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    padding: 20px 24px 28px;
    color: var(--white);
    background: linear-gradient(145deg, var(--brand-primary), var(--brand-dark));
    opacity: 1;
    transform: translateX(0);
    transition: opacity 300ms ease, transform 380ms cubic-bezier(0.2, 0.65, 0.3, 1), visibility 300ms;
  }

  .mobile-menu[aria-hidden="true"] {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
  }

  html[dir="rtl"] .mobile-menu[aria-hidden="true"] {
    transform: translateX(-100%);
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .mobile-search {
    flex: 0 0 auto;
    margin-top: 18px;
  }

  .mobile-menu-brand strong,
  .mobile-menu-brand small {
    color: var(--white);
  }

  .mobile-menu-brand small {
    opacity: 0.65;
  }

  .mobile-menu-brand img {
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-close {
    color: var(--brand-primary);
    background: var(--white);
    font-size: 1.7rem;
  }

  .mobile-nav {
    display: grid;
    margin-top: 22px;
  }

  .mobile-nav > a,
  .mobile-nav > details > summary {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 11px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 1.04rem;
    font-weight: 700;
    list-style: none;
  }

  .mobile-nav > a.is-active {
    padding-inline: 16px;
    color: var(--brand-primary);
    background: var(--white);
    border-radius: 14px;
  }

  .mobile-category-links {
    display: grid;
    padding: 7px 0 12px;
  }

  .mobile-category-links a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding-inline: 22px;
    color: rgba(255, 255, 255, 0.78);
    border-inline-start: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
  }

  .mobile-category-links a[aria-current="page"] {
    color: var(--white);
    font-weight: 800;
  }

  .mobile-language {
    margin-top: 25px;
  }

  .mobile-language > p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-language-options {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-language-options .language-option {
    min-height: 48px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.26);
  }

  .mobile-language-options .language-option.is-active,
  .mobile-language-options .language-option:hover {
    color: var(--brand-primary);
    background: var(--white);
  }

  .mobile-contact {
    display: grid;
    gap: 8px;
    margin-top: 24px;
  }

  .mobile-contact a {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
  }

  .mobile-contact a > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
  }

  .mobile-social {
    margin-top: 20px;
  }

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

  .mobile-copyright {
    margin: auto 0 0;
    padding-top: 28px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
  }

  .hero-carousel {
    height: 768px;
  }

  .hero-content h1 {
    font-size: clamp(4rem, 10vw, 6.5rem);
  }

  .category-overview-grid {
    gap: 52px 24px;
  }

  .category-tile,
  .category-tile--wide {
    grid-column: span 6;
  }

  .category-tile:last-child {
    grid-column: 4 / span 6;
  }

  .about-preview-grid {
    gap: 48px;
  }

  .about-preview-media img {
    height: 500px;
  }

  .gallery-slide {
    flex-basis: calc((100% - 24px) / 2);
  }

  .story-composition {
    display: block;
  }

  .story-image {
    width: 78%;
  }

  .story-image img {
    height: 650px;
  }

  .story-card {
    width: 72%;
    margin-block-start: -210px;
    margin-inline: auto 0;
  }

  .story-section.section-padding {
    padding-block-start: 190px;
  }

  html[dir="rtl"] .story-card {
    margin-inline: 0 auto;
  }

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

  .brand-profile:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 14px);
    justify-self: center;
  }

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

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

  .contact-support-image {
    min-height: 520px;
    max-height: 620px;
  }

  .form-panel {
    padding-inline: 30px;
  }
}

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

  .section-padding {
    padding-block: 74px;
  }

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

  .section-heading h2,
  .about-preview-copy h2,
  .story-card h2,
  .map-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .button {
    min-height: 50px;
    padding-inline: 20px;
  }

  .mobile-bar {
    padding-inline: 14px;
  }

  .mobile-logo strong {
    max-width: 145px;
  }

  .mobile-menu {
    padding-inline: 18px;
  }

  .hero-carousel {
    height: 740px;
  }

  .hero-content {
    padding-block: 60px 125px;
  }

  .hero-content h1 {
    font-size: clamp(3.1rem, 17vw, 5.3rem);
  }

  .hero-content > p:not(.hero-kicker) {
    font-size: 0.96rem;
  }

  .hero-kicker {
    font-size: 0.68rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    min-width: min(100%, 260px);
  }

  .hero-controls {
    inset-block-end: 36px;
    gap: 14px;
  }

  .hero-arrow,
  .carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .carousel-controls {
    flex-wrap: wrap;
  }

  .carousel-controls .carousel-dots {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 5px;
  }

  .category-overview-grid {
    display: block;
  }

  .category-tile,
  .category-tile--wide,
  .category-tile:last-child {
    margin-bottom: 58px;
  }

  .category-tile:last-child {
    margin-bottom: 0;
  }

  .category-tile h3,
  .category-tile > p {
    min-height: auto;
  }

  .category-image {
    aspect-ratio: 1 / 0.9;
  }

  .about-preview-grid {
    display: flex;
    flex-direction: column;
  }

  .about-preview-media,
  .about-preview-copy {
    width: 100%;
  }

  .about-preview-media img {
    height: 430px;
  }

  .brand-slide,
  .gallery-slide {
    flex-basis: 100%;
  }

  .subhero {
    height: 345px;
  }

  .subhero-content {
    padding-inline: 12px;
  }

  .subhero h1 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  .statement-section {
    padding-block: 68px 90px;
  }

  .ruled-title {
    gap: 14px;
    grid-template-columns: 26px 1fr 26px;
  }

  .statement-card {
    margin-bottom: -140px;
    padding: 32px 22px;
  }

  .split-actions {
    flex-direction: column;
  }

  .story-section.section-padding {
    padding-block-start: 175px;
  }

  .story-image {
    width: 100%;
  }

  .story-image img {
    height: 540px;
  }

  .story-card,
  html[dir="rtl"] .story-card {
    width: calc(100% - 20px);
    margin-block-start: -110px;
    margin-inline: auto;
    padding: 34px 25px;
  }

  .callout-grid,
  .catalogue-note-card,
  .partner-placeholder {
    grid-template-columns: 1fr;
  }

  .catalogue-note-card,
  .partner-placeholder {
    justify-items: start;
  }

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

  .brand-profile:last-child {
    width: 100%;
    grid-column: auto;
  }

  .category-intro {
    padding-block-start: 82px;
  }

  .category-intro-inner h1 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

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

  .representative-image {
    height: 430px;
  }

  .gallery-panel {
    width: min(calc(100% - 18px), var(--container));
    padding: 28px 12px 32px;
    border-radius: 22px;
  }

  .product-grid {
    gap: 12px;
  }

  .product-card-body {
    padding: 12px 11px 14px;
  }

  .product-card-body > span {
    font-size: 0.58rem;
  }

  .product-card-body h3 {
    font-size: 0.96rem;
  }

  .product-card-body a {
    font-size: 0.65rem;
  }

  .catalogue-progress {
    align-items: stretch;
    flex-direction: column;
  }

  .catalogue-progress .button {
    width: 100%;
  }

  .system-gallery-grid {
    grid-template-columns: 1fr;
  }

  .category-contact .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-zone {
    padding-block: 76px 140px;
  }

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

  .contact-support-image {
    min-height: 470px;
  }

  .form-panel {
    padding: 32px 20px 28px;
  }

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

  .form-field--full {
    grid-column: auto;
  }

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

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

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

  .contact-details-grid {
    gap: 18px;
  }

  .map-copy {
    padding-bottom: 12px;
  }

  .map-frame iframe {
    height: 380px;
  }

  .lightbox-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding: 10px 13px;
  }

  .lightbox-tools {
    align-self: stretch;
    justify-content: flex-end;
  }

  .lightbox-stage {
    gap: 6px;
    padding: 10px 6px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .lightbox-image-wrap img {
    max-height: calc(100vh - 170px);
  }
}

@media (max-width: 390px) {
  .mobile-logo strong {
    max-width: 110px;
    font-size: 0.8rem;
  }

  .mobile-round-button {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero-content h1 {
    font-size: 3.1rem;
  }

  .product-image {
    padding: 8px;
  }

  .product-card-body a span:last-child {
    display: none;
  }

  .lightbox-tools button {
    width: 42px;
    height: 42px;
  }
}

@media (hover: hover) and (min-width: 1025px) {
  .nav-details::after,
  .language-details::after {
    position: absolute;
    inset-block-start: 100%;
    inset-inline: 0;
    height: 12px;
    content: "";
  }

  .nav-details:hover .dropdown-menu,
  .language-details:hover .language-options {
    display: grid;
    pointer-events: auto;
  }
}

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

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

  .hero-slide > img,
  .hero-slide.is-active > img {
    transform: none;
  }
}
