﻿/* ============================================
   DAUTI KOMERC â€” SHARP INDUSTRIAL
   Zero radius. Red/Black/White. Bold.
   ============================================ */

/* â”€â”€â”€ HURME GEOMETRIC SANS 4 â”€â”€â”€ */
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Hairline.otf') format('opentype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Hairline Oblique.otf') format('opentype'); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Thin.otf') format('opentype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Thin Oblique.otf') format('opentype'); font-weight: 200; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Light Oblique.otf') format('opentype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Oblique.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 SemiBold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 SemiBold Oblique.otf') format('opentype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Bold Oblique.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Black.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Hurme Geometric Sans 4'; src: url('font/Hurme Geometric Sans 4 Black Oblique.otf') format('opentype'); font-weight: 900; font-style: italic; font-display: swap; }

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

:root {
  --red: #DD2827;
  --red-dark: #cc0002;
  --black: #000000;
  --off-black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f2f2f2;
  --gray-100: #e8e8e8;
  --gray-200: #d0d0d0;
  --gray-400: #888888;
  --gray-600: #555555;
  --gray-800: #222222;
  --wire-bg: #e0e0e0;
  --wire-border: #b0b0b0;
  --transition: .25s ease;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: clip;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* â”€â”€â”€ TYPOGRAPHY â”€â”€â”€ */
.eyebrow {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

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

.heading-xl {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.heading-lg {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

/* â”€â”€â”€ SCROLL REVEALS â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.stagger-children > * { transition-delay: calc(var(--i, 0) * .1s); }

/* â”€â”€â”€ PLACEHOLDER IMAGES â”€â”€â”€ */
.placeholder-img {
  background: var(--wire-bg);
  border: 2px dashed var(--wire-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(0,0,0,.03) 20px,
      rgba(0,0,0,.03) 21px
    );
}

.placeholder-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 24px;
}

.placeholder-label strong {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--white);
  padding: 4px 14px;
  font-weight: 700;
}

.placeholder-size {
  font-size: .58rem;
  font-weight: 600;
  color: var(--gray-600);
  font-family: monospace;
  background: var(--white);
  padding: 2px 8px;
}

.placeholder-desc {
  font-size: .55rem;
  color: var(--gray-600);
  max-width: 280px;
  line-height: 1.4;
}

.placeholder-img--hero { min-height: 100vh; width: 100%; border: none; }
.placeholder-img--video { aspect-ratio: 16/9; width: 100%; }
.placeholder-img--square { aspect-ratio: 4/3; width: 100%; }
.placeholder-img--card { aspect-ratio: 3/2; width: 100%; border-bottom: none; }
.placeholder-img--banner { aspect-ratio: 3/1; width: 100%; min-height: 400px; border: none; }

.section-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-photo--square {
  aspect-ratio: 4/3;
}

.section-photo--banner {
  aspect-ratio: 3/1;
  min-height: 400px;
}


.video-embed {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.about-video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-fallback-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
}

.video-fallback-link:hover {
  color: var(--black);
}

.video-fallback-note {
  margin-top: 10px;
  font-size: .78rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* â”€â”€â”€ TOP BAR â”€â”€â”€ */
.top-bar {
  background: var(--black);
  padding: 0;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.top-bar-right {
  gap: 10px;
}

.top-bar-link {
  color: rgba(255,255,255,.5);
  font-weight: 500;
  padding: 0 16px;
  height: 38px;
  display: flex;
  align-items: center;
  letter-spacing: .02em;
  transition: var(--transition);
  border-right: 1px solid rgba(255,255,255,.06);
}

.top-bar-left .top-bar-link:first-child { padding-left: 0; }
.top-bar-link:hover { color: var(--white); }

.top-bar-link--shop {
  color: var(--white);
  font-weight: 700;
  letter-spacing: .12em;
  border-right: none;
  gap: 10px;
  height: 30px;
  padding: 0 16px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  text-transform: uppercase;
  position: relative;
}

.top-bar-link--shop .icon-chevron {
  transition: transform .25s ease;
}

.top-bar-link--shop:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.top-bar-link--shop .icon-chevron {
  transform: rotate(45deg) translate(2px, -2px);
}

.top-bar-link--shop:hover .icon-chevron {
  transform: rotate(45deg) translate(2px, -2px);
}

.icon-chevron {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.icon-chevron--up {
  transform: rotate(-45deg);
}

.top-bar-link .icon-chevron {
  width: 7px;
  height: 7px;
  border-width: 1.5px;
}

.top-bar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.12);
}

.lang-switch {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 0 13px;
  min-width: 38px;
  font-size: .65rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  letter-spacing: .12em;
  height: 24px;
  border-left: none;
  border-radius: 999px;
}

.lang-btn:first-child { border-left: none; }
.lang-btn.active { background: var(--red); color: var(--white); }
.lang-btn:not(.active):hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.lang-btn[disabled] {
  cursor: default;
  pointer-events: none;
}

.lang-btn[disabled]:not(.active) {
  opacity: .45;
}

/* â”€â”€â”€ HEADER â”€â”€â”€ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .05em;
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-divider {
  width: 2px;
  height: 28px;
  background: var(--gray-200);
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  color: var(--black);
  letter-spacing: .06em;
  line-height: 1;
}
.logo-tagline {
  font-size: .55rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: .12em;
}

.main-nav { display: flex; gap: 0; }

.nav-link {
  padding: 0 14px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
  transition: var(--transition);
  height: 72px;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.nav-link:hover { color: var(--red); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--red); }
.nav-link.active::after { transform: scaleX(1); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 2px solid var(--black);
  cursor: pointer;
  padding: 10px;
  transition: var(--transition);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.burger:hover { background: var(--red); border-color: var(--red); }
.burger:hover span { background: var(--white); }

.burger span {
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  transform-origin: center;
}

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .placeholder-img--hero {
  animation: slowZoom 30s ease-in-out infinite alternate;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.8) 0%, rgba(0,0,0,.7) 40%, rgba(0,0,0,.4) 70%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 200px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-content-inner {
  max-width: 700px;
  margin-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.hero-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp .7s .1s both;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--white);
  display: block;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: .9;
  letter-spacing: -.04em;
  margin-bottom: 28px;
  animation: fadeUp .7s .2s both;
}

.hero-title-accent {
  color: var(--red);
  -webkit-text-stroke: 0;
}

.hero-sub {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.75;
  font-weight: 400;
  animation: fadeUp .7s .35s both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp .7s .5s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero bottom stat bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--red);
  animation: fadeUp .7s .7s both;
}

.hero-bottom-inner {
  display: flex;
  height: 80px;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-right: 1px solid rgba(255,255,255,.15);
  padding: 0 16px;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}

.hero-stat-label {
  font-size: .68rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .14em;
  font-weight: 600;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: .72rem;
  font-weight: 700;
  font-family: inherit;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--white);
  color: var(--red);
}

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover {
  background: var(--red);
  border-color: var(--red);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-outline-white {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn-outline-black {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}
.btn-outline-black:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-red {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

.btn-sm { padding: 12px 24px; font-size: .68rem; }

/* â”€â”€â”€ SECTIONS â”€â”€â”€ */
.section { padding: 100px 0; }
.section--white { background: var(--white); }
.section--off-white { background: var(--off-white); }
.section--black { background: var(--red); color: var(--white); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--black);
}

/* â”€â”€â”€ COMPANY INTRO â”€â”€â”€ */
.intro-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.intro-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 48px;
  border-top: 2px solid var(--gray-100);
}

.intro-text-col p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.intro-text-col p strong {
  color: var(--black);
  font-weight: 600;
}

/* â”€â”€â”€ PILLARS HEADER â”€â”€â”€ */
.pillars-head {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.pillars-head .heading-lg {
  margin-top: 8px;
  letter-spacing: -.02em;
}

/* â”€â”€â”€ BLOCK CARDS (4-up grid) â”€â”€â”€ */
.block-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.block-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.18);
  transition: var(--transition);
  position: relative;
}

.block-card:last-child { border-right: none; }

.block-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.block-card:hover::before { transform: scaleX(1); }
.block-card:hover { background: rgba(255,255,255,.08); }

.block-number {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.34);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}

.block-card:hover .block-number { color: var(--white); }

.block-card h3 {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 16px;
  line-height: 1.3;
}

.block-line {
  width: 32px;
  height: 2px;
  background: var(--white);
  margin-bottom: 16px;
}

.block-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}

/* â”€â”€â”€ DISTRIBUTION BANNER â”€â”€â”€ */
.dc-banner {
  position: relative;
  overflow: hidden;
}

.dc-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
  z-index: 1;
  display: flex;
  align-items: center;
}

.dc-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 32px;
}

.dc-banner-content > * {
  max-width: 480px;
}

.dc-banner-content h2 {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: .95;
  margin-bottom: 16px;
  letter-spacing: -.03em;
}

.dc-banner-content p {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* â”€â”€â”€ SPLIT ROW â”€â”€â”€ */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-content .eyebrow { margin-bottom: 8px; }

.split-content .heading-lg {
  margin-bottom: 20px;
}

.split-line {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

.split-content p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.split-content p strong { color: var(--black); font-weight: 700; }

/* â”€â”€â”€ NEWS â”€â”€â”€ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  background: var(--white);
}

.news-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--red);
  transform: scaleX(.28);
  transform-origin: left center;
  opacity: .4;
  transition: transform .3s ease, opacity .3s ease;
}

.news-card:hover {
  border-color: rgba(221,40,39,.3);
  transform: translateY(-6px);
  z-index: 2;
}

.news-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.news-body { padding: 24px; }

.news-date {
  font-size: .6rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .12em;
  margin-bottom: 10px;
  display: block;
}

.news-body h3 {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-body p {
  font-size: .78rem;
  color: var(--gray-600);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* â”€â”€â”€ STATS â”€â”€â”€ */
.stats-bar {
  background: var(--black);
  padding: 72px 0;
  position: relative;
}

/* Hard grid lines */
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.08);
}

.stat:last-child::after { display: none; }

.stat-num {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
}

.stat-label {
  font-size: .6rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  letter-spacing: .15em;
  font-weight: 600;
}

/* â”€â”€â”€ BRANDS MARQUEE â”€â”€â”€ */
.about-brands {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}

.about-brands-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.about-brands-head .eyebrow {
  margin-bottom: 0;
}

.about-brands-head p {
  font-size: .66rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-brands .brands-track {
  padding-bottom: 8px;
}

.brands-track--white::before,
.brands-track--white::after {
  display: none;
}

.brands-scroll--color {
  animation-duration: 34s;
}

.brand-logo-card {
  min-width: 184px;
  height: 96px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-right: none;
  background: #ffffff;
  transition: transform .25s ease, background var(--transition);
}

.brand-logo-card:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.brand-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 132px;
  max-height: 54px;
  object-fit: contain;
}
.brands-bar {
  background: var(--off-white);
  padding: 0;
  overflow: hidden;
  border-top: 2px solid var(--gray-100);
  border-bottom: 2px solid var(--gray-100);
}

.brands-bar-head {
  text-align: center;
  padding: 28px 0 20px;
}

.brands-bar-head span {
  font-size: .6rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .2em;
}

.brands-track {
  overflow: hidden;
  position: relative;
  padding-bottom: 32px;
}

.brands-track::before,
.brands-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brands-track::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.brands-track::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.brands-scroll {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 40s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brands-scroll:hover { animation-play-state: paused; }

.brand-logo-sm {
  border-right: 1px solid var(--gray-200);
  padding: 16px 40px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.brand-logo-sm:hover { background: var(--white); }

.brand-logo-sm strong {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .1em;
  transition: var(--transition);
}

.brand-logo-sm:hover strong { color: var(--black); }

/* â”€â”€â”€ CTA â”€â”€â”€ */
.cta-section {
  padding: 100px 0;
  background: var(--off-white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-right p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-red-line {
  height: 4px;
  background: var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0;
}

.footer-col--main { padding-right: 32px; }

.footer-logo .logo-mark { background: var(--red); color: var(--white); }
.footer-logo .logo-img { height: 40px; width: auto; border-radius: 6px; overflow: hidden; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-tagline { color: rgba(255,255,255,.5); }
.footer-logo .logo-divider { background: rgba(255,255,255,.15); }

.footer-desc {
  margin-top: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-col a {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  padding: 5px 0;
  transition: var(--transition);
  letter-spacing: .02em;
}

.footer-col a:hover { color: var(--red); }

.footer-col p {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  font-size: .6rem;
  font-weight: 700;
  color: rgba(255,255,255,.72);
  transition: var(--transition);
  letter-spacing: .05em;
  margin-right: 4px;
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  z-index: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .65rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
}

.wireframe-badge {
  background: transparent;
  padding: 0;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--red);
  font-size: .58rem;
}

/* â”€â”€â”€ PAGE HEADER (inner pages) â”€â”€â”€ */
.page-header {
  padding: 140px 0 64px;
  background: var(--red);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--white);
}

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

.page-header h1 {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: .95;
  text-transform: uppercase;
}

.page-header p {
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 16px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: .68rem;
  color: rgba(255,255,255,.2);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: .06em;
}

.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { opacity: .3; }

/* â”€â”€â”€ DIVISIONS â”€â”€â”€ */
.division-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 2px solid var(--gray-100);
}

.division-detail:last-child { border-bottom: none; }
.division-detail:nth-child(even) > :first-child { order: 1; }

.division-detail h3 {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.feature-list { list-style: none; margin-top: 20px; }

.feature-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: .86rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.feature-list li:last-child { border-bottom: none; }
.feature-list li:hover { color: var(--black); padding-left: 28px; }

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 3px;
  background: var(--red);
  transform: translateY(-50%);
}

/* â”€â”€â”€ BRAND PAGE â”€â”€â”€ */
.brands-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand-card {
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}

.brand-card:hover {
  z-index: 1;
  box-shadow: 0 0 0 2px var(--red);
}

.brand-card-logo {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card-body { padding: 24px; }

.brand-card-body h3 {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.brand-card-body p {
  font-size: .78rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.brand-card-tag {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  margin-top: 12px;
  letter-spacing: .08em;
  border-radius: 6px;
}

/* â”€â”€â”€ INFRA â”€â”€â”€ */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.infra-card {
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}

.infra-card:hover {
  z-index: 1;
  box-shadow: 0 0 0 2px var(--red);
}

.infra-card-body { padding: 28px; }

.infra-card-body h3 {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.infra-meta {
  font-size: .68rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .08em;
  margin: 4px 0 12px;
}

.infra-card-body p {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* â”€â”€â”€ CONTACT â”€â”€â”€ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: .86rem;
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
  outline: none;
  color: var(--black);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--red);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--gray-400);
}

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

.contact-info-card {
  background: var(--black);
  padding: 48px;
  color: var(--white);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.contact-info-card h3 {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 32px;
}

.contact-info-item { margin-bottom: 24px; }

.contact-info-item label {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.25);
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-info-item p { font-size: .88rem; color: rgba(255,255,255,.65); }

/* â”€â”€â”€ CAREERS â”€â”€â”€ */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gray-200);
  padding: 28px 32px;
  transition: var(--transition);
  position: relative;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}

.job-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transition: transform .25s ease;
}

.job-card:hover {
  z-index: 1;
  box-shadow: 0 0 0 2px var(--red);
}

.job-card:hover::before { transform: scaleY(1); }

.job-card h3 {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.job-card p { font-size: .8rem; color: var(--gray-600); }

.job-tags { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }

.job-tag {
  font-size: .58rem;
  font-weight: 700;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  padding: 3px 10px;
  color: var(--gray-600);
  letter-spacing: .06em;
  border-radius: 6px;
}

/* â”€â”€â”€ GALLERY â”€â”€â”€ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid .placeholder-img {
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.gallery-grid .placeholder-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.gallery-grid .placeholder-img:hover::after { opacity: .8; }

.gallery-item { position: relative; }
.gallery-item::before {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.6);
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  z-index: 3;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.gallery-item:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* â”€â”€â”€ MILESTONE â”€â”€â”€ */
.milestone-year {
  font-family: 'Hurme Geometric Sans 4', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

/* â”€â”€â”€ BACK TO TOP â”€â”€â”€ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
}

.back-to-top .icon-chevron {
  width: 10px;
  height: 10px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--black);
  transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE â€” SYSTEMS APPROACH
   Breakpoints: 1024 â†’ 768 â†’ 480 â†’ 360
   ============================================ */

/* â”€â”€ TABLET LANDSCAPE (1024px) â”€â”€ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  /* Grids â†’ 2 columns */
  .block-grid { grid-template-columns: repeat(2, 1fr); }
  .block-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .block-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .block-card:nth-child(even) { border-right: none; }

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

  .infra-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA â†’ stack */
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Footer â†’ 2-col */
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-col--main { grid-column: span 2; padding-right: 0; }

  /* Nav link spacing */
  .nav-link { padding: 0 10px; font-size: .68rem; }
}

/* â”€â”€ TABLET PORTRAIT (768px) â”€â”€ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }

  /* Top bar hidden */
  .top-bar { display: none; }

  /* Header */
  .header-inner { height: 64px; }
  .logo-mark { width: 38px; height: 38px; font-size: .8rem; }
  .logo-img { height: 30px; width: auto; }
  .logo-name { font-size: .78rem; }

  /* Mobile nav â€” full-screen black takeover */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--black);
    flex-direction: column;
    padding: 90px 32px 32px;
    transition: right .35s ease;
    z-index: 999;
    gap: 0;
    overflow-y: auto;
  }

  .main-nav.open { right: 0; }

  .main-nav .nav-link {
    font-size: 1.1rem;
    font-family: 'Hurme Geometric Sans 4', sans-serif;
    font-weight: 700;
    padding: 16px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.06);
    height: auto;
    letter-spacing: .08em;
  }

  .main-nav .nav-link::after { display: none; }
  .main-nav .nav-link.active { color: var(--red); }
  .main-nav .nav-link:hover { color: var(--red); }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav-overlay.active { opacity: 1; visibility: visible; }

  .burger { display: flex; }

  .burger.active { background: var(--red); border-color: var(--red); z-index: 1001; }
  .burger.active span { background: var(--white); }
  .burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Sections â€” tighter padding */
  .section { padding: 72px 0; }

  /* Hero */
  .hero {
    min-height: calc(100vh - 64px);
    min-height: calc(100dvh - 64px);
  }
  .hero-bg,
  .hero-overlay { inset: 0; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.46) 42%, rgba(0,0,0,.72) 100%);
  }
  .hero-content {
    min-height: calc(100vh - 64px);
    min-height: calc(100dvh - 64px);
    padding: 24px 0 176px;
    max-width: 100%;
    display: flex;
    align-items: stretch;
  }
  .hero-content-inner {
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto auto auto minmax(0, 1fr) auto;
    align-content: stretch;
  }
  .hero-eyebrow {
    grid-row: 2;
    justify-content: center;
    text-align: center;
  }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-title {
    grid-row: 3;
    text-align: center;
    margin-bottom: 18px;
  }
  .hero-sub {
    grid-row: 4;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-eyebrow { font-size: .6rem; letter-spacing: .15em; }
  .hero-actions {
    grid-row: 6;
    margin-top: 0;
    align-self: end;
  }

  /* Hero bottom bar â†’ 2x2 grid */
  .hero-bottom-inner { flex-wrap: wrap; height: auto; }
  .hero-stat {
    flex: 1 1 50%;
    padding: 14px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-bottom: none; }

  /* All 2-col grids â†’ 1 col */
  .intro-row,
  .intro-text-row,
  .split-row,
  .contact-grid,
  .division-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .division-detail:nth-child(even) > :first-child { order: 0; }

  /* Pillars â†’ 1 col */
  .block-grid { grid-template-columns: 1fr; }
  .block-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 32px 24px;
  }
  .block-card:nth-child(odd) { border-right: none; }
  .block-card:last-child { border-bottom: none; }

  /* News â†’ 1 col */
  .news-grid { grid-template-columns: 1fr; }
  .news-card { border: 1px solid var(--gray-200); }
  .about-brands {
    margin-top: 40px;
    padding-top: 24px;
  }

  .about-brands-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .brand-logo-card {
    min-width: 150px;
    height: 84px;
    padding: 14px 22px;
  }

  .brand-logo-img {
    max-width: 108px;
    max-height: 44px;
  }

  /* Other grids â†’ 1 col */
  .brands-page-grid { grid-template-columns: 1fr; }
  .infra-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* DC banner */
  .dc-banner-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.66) 100%);
  }
  .dc-banner-content { padding: 48px 24px; max-width: var(--container); }
  .placeholder-img--banner { min-height: 320px; }

  /* Stats â€” wrap */
  .stats-bar { padding: 56px 0; }
  .stats-grid { flex-wrap: wrap; gap: 32px 0; }
  .stat { flex: 1 1 33%; min-width: 100px; }
  .stat::after { display: none; }

  /* CTA */
  .cta-section { padding: 72px 0; }
  .cta-inner { gap: 32px; }

  /* Section head */
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--main { grid-column: span 2; padding-right: 0; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Jobs */
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }

  /* Brands marquee */
  .brands-scroll { gap: 0; }
  .brand-logo-sm { padding: 12px 28px; min-width: auto; }
}

/* â”€â”€ MOBILE (480px) â”€â”€ */
@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .dc-banner-content { padding: 48px 20px; }

  /* Typography scale down */
  .heading-xl { font-size: clamp(1.8rem, 8vw, 2.4rem); line-height: .92; }
  .heading-lg { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .eyebrow { font-size: .6rem; letter-spacing: .15em; }

  /* Hero */
  .hero-content { padding: 20px 0 170px; }
  .hero-content-inner {
    margin: 0 auto;
    padding: 0 12px;
    text-align: center;
  }
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); margin-bottom: 20px; }
  .hero-sub {
    font-size: .88rem;
    margin: 0 auto;
  }
  .hero-eyebrow {
    font-size: .55rem;
    gap: 10px;
    margin-bottom: 18px;
    justify-content: center;
  }
  .hero-eyebrow-line { width: 24px; }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-stat-label { font-size: .5rem; letter-spacing: .08em; }

  /* Stats */
  .stats-bar { padding: 48px 0; }
  .stats-grid { flex-direction: column; gap: 28px; }
  .stat {
    flex: 1 1 100%;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .stat-num { font-size: 2.2rem; }
  .stat-label { text-align: left; }

  /* Intro */
  .intro-row { gap: 32px; margin-bottom: 40px; }
  .intro-text-row { gap: 24px; padding-top: 32px; }

  /* Split */
  .split-content .heading-lg { margin-bottom: 16px; }
  .split-line { margin-bottom: 20px; }
  .split-content p { margin-bottom: 24px; }

  /* Pillars */
  .pillars-head { margin-bottom: 36px; padding-bottom: 24px; }
  .block-number { font-size: 2rem; margin-bottom: 14px; }

  /* News */
  .news-body { padding: 18px 20px; }
  .brand-logo-card {
    min-width: 132px;
    height: 74px;
    padding: 12px 18px;
  }

  .brand-logo-img {
    max-width: 92px;
    max-height: 38px;
  }

  /* Gallery â†’ still 2-col on phones for visual density */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer â†’ single column */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col--main { grid-column: span 1; }
  .footer-grid { padding: 48px 0; }

  /* Page header */
  .page-header { padding: 100px 0 40px; }

  /* CTA */
  .cta-actions { flex-direction: column; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-right p { font-size: .86rem; margin-bottom: 24px; }

  /* Buttons â€” slightly smaller on mobile */
  .btn { padding: 14px 24px; font-size: .68rem; }
  .btn-sm { padding: 11px 20px; font-size: .64rem; }

  /* DC banner */
  .dc-banner-content h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .placeholder-img--banner { min-height: 280px; }
}

/* â”€â”€ SMALL MOBILE (360px) â”€â”€ */
@media (max-width: 360px) {
  .container { padding: 0 16px; }

  .dc-banner-content { padding: 48px 16px; }
  .hero-title { font-size: 1.8rem; }
  .hero-content { padding: 80px 0 120px; }
  .hero-stat { padding: 10px 8px; }
  .hero-stat-num { font-size: 1rem; }
  .section { padding: 56px 0; }
  .heading-xl { font-size: 1.6rem; }
  .heading-lg { font-size: 1.2rem; }
  .footer-grid { padding: 36px 0; }
  .main-nav { padding: 80px 20px 20px; }
  .main-nav .nav-link { font-size: .95rem; padding: 14px 0; }
  .lang-switch { display: none; }
}









