/* ============================================================
   CAYLTH MILLENNIUM (PTY) LTD
   Theme: Midnight & Brass
   ============================================================

   COLOR PALETTE — edit here to adjust the whole site:

   --navy:       #080E1A  — page background (darkest)
   --navy-2:     #0A1220  — hero / section dark bg
   --navy-3:     #0D1830  — card backgrounds (dark)
   --navy-4:     #111F38  — hover states / borders
   --brass:      #B8922A  — primary accent (buttons, numbers, chips)
   --brass-lt:   #D4B86A  — light brass (headings on dark, links)
   --brass-dim:  #8A6B1A  — muted brass
   --cream:      #F2EDE4  — light section backgrounds
   --cream-2:    #E8E2D8  — card backgrounds (light sections)
   --text-dark:  #0A1220  — body text on light backgrounds
   --text-light: #C8C0B4  — body text on dark backgrounds
   --text-muted: #556070  — muted / secondary text on dark
   --white:      #F8F4EE  — near-white
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:       #080E1A;
  --navy-2:     #0A1220;
  --navy-3:     #0D1830;
  --navy-4:     #111F38;
  --brass:      #B8922A;
  --brass-lt:   #D4B86A;
  --brass-dim:  #8A6B1A;
  --cream:      #F2EDE4;
  --cream-2:    #E8E2D8;
  --text-dark:  #0E1826;
  --text-mid:   #2A3848;
  --text-light: #C8C0B4;
  --text-muted: #556070;
  --white:      #F8F4EE;
  --border-dk:  rgba(184,146,42,0.15);
  --border-lt:  rgba(14,24,38,0.15);
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--navy);
  color: var(--text-light);
  overflow-x: hidden;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-3); }
::-webkit-scrollbar-thumb { background: var(--brass-dim); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(8,14,26,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dk);
}

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

.nav-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(184,146,42,0.5);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--brass-lt);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-brand small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(212,184,106,0.6);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brass-lt); }

/* Language Switcher — sits between links and CTA, self-contained */
.lang-switcher {
  display: flex;
  border: 1px solid rgba(184,146,42,0.3);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  color: var(--brass);
  border: none;
  border-right: 1px solid rgba(184,146,42,0.25);
  padding: 7px 13px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-btn:last-child { border-right: none; }
.lang-btn.active { background: var(--brass); color: var(--navy); }
.lang-btn:hover:not(.active) { background: rgba(184,146,42,0.12); }

.nav-cta {
  background: transparent !important;
  color: var(--brass) !important;
  padding: 10px 22px;
  border: 1px solid var(--brass) !important;
  border-radius: 1px;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s !important;
  white-space: nowrap;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
}
.nav-cta:hover {
  background: var(--brass) !important;
  color: var(--navy) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}



.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 60px 120px 80px;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--brass); }
.hero-eyebrow span {
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brass); font-weight: 500;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 300;
  color: var(--brass-lt);
  line-height: 1.05;
}
.hero h1 strong {
  font-weight: 700;
  color: var(--white);
  display: block;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(212,184,106,0.5);
}

.hero-sub {
  font-size: 15px; font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 460px;
  margin: 32px 0 48px;
  border-left: 2px solid rgba(184,146,42,0.4);
  padding-left: 20px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--brass);
  color: var(--navy);
  padding: 15px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700; border: none; cursor: pointer; border-radius: 1px;
  transition: background 0.2s, transform 0.15s;
}
.btn-hero-primary:hover { background: var(--brass-lt); transform: translateY(-1px); }

.btn-hero-ghost {
  background: transparent; color: var(--brass-lt);
  padding: 15px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 400;
  border: 1px solid rgba(184,146,42,0.4);
  cursor: pointer; border-radius: 1px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-hero-ghost:hover {
  border-color: var(--brass);
  background: rgba(184,146,42,0.08);
  color: var(--white);
}

.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 80px 60px;
}

.hero-logo-frame {
  position: relative; display: flex; align-items: center; justify-content: center;
}

.hero-logo-ring {
  position: absolute; width: 360px; height: 360px;
  border: 1px solid rgba(184,146,42,0.18);
  border-radius: 50%;
  animation: ringRotate 30s linear infinite;
}
.hero-logo-ring::before {
  content: '';
  position: absolute; top: -3px; left: 50%;
  width: 6px; height: 6px;
  background: var(--brass); border-radius: 50%;
  transform: translateX(-50%);
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

.hero-logo-ring-2 {
  position: absolute; width: 440px; height: 440px;
  border: 1px solid rgba(184,146,42,0.07);
  border-radius: 50%;
  animation: ringRotate 50s linear infinite reverse;
}

.hero-logo-img {
  width: 250px; height: 250px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(184,146,42,0.4);
  position: relative; z-index: 2;
  box-shadow: 0 0 60px rgba(8,14,26,0.8), 0 0 120px rgba(184,146,42,0.08);
}

/* Stats bar */
.hero-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(5,9,18,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(184,146,42,0.12);
  display: flex; grid-column: 1/-1;
}

.hero-stat {
  flex: 1; padding: 22px 28px;
  border-right: 1px solid rgba(184,146,42,0.08);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700;
  color: var(--brass-lt);
  line-height: 1; margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 400;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { padding: 100px 80px; }

.section-chip {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.section-chip-dot { width: 5px; height: 5px; background: var(--brass); border-radius: 50%; }
.section-chip span {
  font-size: 9px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--brass); font-weight: 700;
}

/* On dark backgrounds */
.section-chip.light .section-chip-dot { background: var(--brass); }
.section-chip.light span { color: var(--brass); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400; line-height: 1.1; margin-bottom: 16px;
}
.section-title strong { font-weight: 700; }
.section-title em { font-style: italic; }

/* Dark background titles */
.title-dark { color: var(--white); }
.title-dark strong { color: var(--brass-lt); }
.title-dark em { color: rgba(212,184,106,0.55); }

/* Light background titles */
.title-light { color: var(--text-dark); }
.title-light strong { color: var(--text-dark); }
.title-light em { color: var(--text-mid); }

.section-desc {
  font-size: 15px; font-weight: 300; line-height: 1.85; max-width: 560px;
}
.desc-dark { color: var(--text-light); }
.desc-light { color: var(--text-mid); }

/* ============================================================
   ABOUT  (light section)
   ============================================================ */
.about { background: var(--cream); }

.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-visual-wrap { position: relative; padding-bottom: 44px; padding-right: 32px; }

.about-card-main {
  background: var(--navy);
  padding: 52px 44px; border-radius: 2px;
  position: relative; overflow: hidden;
}
.about-card-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), transparent);
}


.about-card-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 700;
  color: rgba(184,146,42,0.08);
  line-height: 0.85; margin-bottom: 24px; letter-spacing: -4px;
}
.about-card-main p {
  font-size: 14px; font-weight: 300;
  line-height: 1.9; color: var(--text-light);
}

.about-float-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--brass); padding: 22px 28px;
  border-radius: 2px; text-align: center;
  box-shadow: 0 8px 32px rgba(8,14,26,0.3);
}
.about-float-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  color: var(--navy); display: block; line-height: 1;
}
.about-float-badge .lbl {
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy); opacity: 0.75; font-weight: 700;
  margin-top: 4px; display: block;
}

.about-values { margin-top: 40px; }

.value-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(14,24,38,0.12);
}
.value-row:last-child { border-bottom: none; }

.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 700;
  color: var(--brass); min-width: 28px; padding-top: 2px;
}
.value-row h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 5px;
}
.value-row p {
  font-size: 14px; font-weight: 300;
  color: var(--text-mid); line-height: 1.7;
}

/* ============================================================
   PRODUCTS  (light section)
   ============================================================ */
.products { background: var(--cream-2); }

.products-header {
  max-width: 1200px; margin: 0 auto 60px;
  display: flex; justify-content: space-between; align-items: flex-end;
}

.products-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid rgba(14,24,38,0.1);
}

.prod-card {
  background: var(--white);
  padding: 44px 36px 36px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: background 0.2s;
  border-right: 1px solid rgba(14,24,38,0.08);
}
.prod-card:last-child { border-right: none; }
.prod-card:hover { background: #FDFAF4; }

.prod-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--navy-3);
}
.prod-card:hover::before { background: var(--brass); transition: background 0.25s; }

.prod-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 700;
  color: rgba(14,24,38,0.08);
  line-height: 1; margin-bottom: 8px; letter-spacing: -2px;
}

.prod-icon {
  width: 48px; height: 48px;
  background: var(--cream); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(14,24,38,0.1);
}
.prod-icon svg {
  width: 22px; height: 22px;
  stroke: var(--navy); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.prod-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 12px; line-height: 1.1;
}
.prod-card > p {
  font-size: 14px; font-weight: 300;
  color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; flex-grow: 1;
}

.prod-brands {
  font-size: 11px; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--text-mid); font-weight: 500;
  padding: 12px 16px;
  border: 1px solid rgba(14,24,38,0.12);
  border-radius: 1px; line-height: 1.8;
  background: var(--cream-2);
}

.prod-expand-btn {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; color: var(--brass-dim);
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: 'Jost', sans-serif;
  transition: color 0.2s;
}
.prod-expand-btn:hover { color: var(--navy); }
.prod-expand-btn svg {
  width: 14px; height: 14px; stroke: currentColor;
  fill: none; stroke-width: 2.5;
  transition: transform 0.2s;
}

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.prod-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,9,18,0.8);
  display: flex; align-items: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.prod-modal-overlay.open { opacity: 1; pointer-events: all; }

.prod-modal {
  width: 100%; max-height: 88vh;
  background: var(--white);
  border-radius: 4px 4px 0 0;
  overflow: hidden; display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
}
.prod-modal-overlay.open .prod-modal { transform: translateY(0); }

.prod-modal-header {
  background: var(--navy);
  padding: 32px 48px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--brass);
  flex-shrink: 0;
}
.prod-modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 700; color: var(--white);
}
.prod-modal-header p {
  font-size: 13px; font-weight: 300;
  color: var(--text-light); margin-top: 4px;
}

.prod-modal-close {
  background: rgba(184,146,42,0.1);
  border: 1px solid rgba(184,146,42,0.3);
  color: var(--brass-lt); width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.prod-modal-close:hover { background: rgba(184,146,42,0.25); }

.prod-modal-body { overflow-y: auto; padding: 40px 48px; flex: 1; }

.modal-search {
  width: 100%; padding: 13px 18px;
  background: var(--cream); border: 1px solid rgba(14,24,38,0.15);
  border-radius: 2px; font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 300; color: var(--text-dark);
  outline: none; margin-bottom: 24px;
  transition: border-color 0.2s;
}
.modal-search:focus { border-color: var(--brass); }
.modal-search::placeholder { color: #889; }

.chem-table { width: 100%; border-collapse: collapse; }
.chem-table thead tr { background: var(--navy); }
.chem-table thead th {
  padding: 14px 20px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--brass-lt); font-weight: 600; text-align: left;
}
.chem-table thead th:last-child { text-align: right; }
.chem-table tbody tr { border-bottom: 1px solid rgba(14,24,38,0.08); transition: background 0.12s; }
.chem-table tbody tr:hover { background: var(--cream); }
.chem-table tbody td { padding: 12px 20px; font-size: 13px; color: var(--text-mid); }
.chem-table tbody td:first-child { color: var(--text-dark); font-weight: 500; }
.chem-table tbody td:last-child { text-align: right; font-weight: 700; color: var(--brass-dim); }

.rail-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.rail-category {
  background: var(--cream); border: 1px solid rgba(14,24,38,0.1);
  border-radius: 2px; padding: 18px 20px;
  border-top: 2px solid var(--brass);
}
.rail-category h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px;
}
.rail-category p { font-size: 12px; color: var(--text-mid); line-height: 1.6; font-weight: 300; }
.rail-category .cat-count {
  display: inline-block; margin-top: 10px;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brass-dim); font-weight: 700;
}

.truck-brands-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-top: 8px;
}
.brand-pill {
  background: var(--cream); border: 1px solid rgba(14,24,38,0.12);
  border-radius: 2px; padding: 12px 14px; text-align: center;
  font-size: 12px; font-weight: 600; color: var(--text-dark); letter-spacing: 0.3px;
}

/* ============================================================
   INDUSTRIES  (dark section)
   ============================================================ */
.industries {
  background: var(--navy-3);
  padding: 100px 80px; position: relative; overflow: hidden;
}



.industries-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.industries-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 64px;
}

.industries-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}

.industry-tile {
  background: rgba(8,14,26,0.7);
  padding: 40px 32px;
  transition: background 0.2s;
  border-right: 1px solid rgba(184,146,42,0.1);
  position: relative;
}
.industry-tile:last-child { border-right: none; }
.industry-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.industry-tile:hover { background: rgba(13,24,48,0.9); }
.industry-tile:hover::before { transform: scaleX(1); }

.industry-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700;
  color: rgba(184,146,42,0.15);
  line-height: 1; margin-bottom: 20px;
}
.industry-tile h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.industry-tile p {
  font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.75;
}
.ind-tag {
  display: inline-block; margin-top: 16px;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brass); border-bottom: 1px solid rgba(184,146,42,0.35);
  padding-bottom: 2px; font-weight: 600;
}

/* ============================================================
   PROCESS  (dark section)
   ============================================================ */
.process { background: var(--navy-2); padding: 100px 80px; }
.process-inner { max-width: 1200px; margin: 0 auto; }

.process-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; margin-top: 60px;
  border: 1px solid rgba(184,146,42,0.12);
}

.step {
  padding: 48px 40px;
  border-right: 1px solid rgba(184,146,42,0.1);
  position: relative;
}
.step:last-child { border-right: none; }

.step-arrow {
  position: absolute; top: 50%; right: -17px;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  background: var(--brass); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; z-index: 2; font-size: 14px; font-weight: 700;
}
.step:last-child .step-arrow { display: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 700;
  color: rgba(184,146,42,0.12);
  line-height: 1; margin-bottom: 16px;
}
.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.step p { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.8; }

/* ============================================================
   CONTACT  (light section)
   ============================================================ */
.contact { background: var(--cream); padding: 100px 80px; }

.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.contact-info-block {
  margin-bottom: 28px; display: flex; gap: 18px; align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center; border-radius: 2px;
}
.contact-icon svg {
  width: 18px; height: 18px; stroke: var(--brass-lt); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.contact-info-block h5 {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--brass-dim); font-weight: 700; margin-bottom: 5px;
}
.contact-info-block p {
  font-size: 14px; font-weight: 400; color: var(--text-mid); line-height: 1.6;
}

.vision-box {
  margin-top: 40px; padding: 32px;
  border-left: 3px solid var(--brass);
  background: var(--navy);
}
.vision-box blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  font-weight: 400; color: var(--brass-lt); line-height: 1.75;
}

.contact-form-wrap {
  background: var(--white); padding: 48px 44px;
  border: 1px solid rgba(14,24,38,0.12); border-radius: 2px;
  border-top: 3px solid var(--navy);
}
.form-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: var(--text-dark); margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-mid); font-weight: 600; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--cream); border: 1px solid rgba(14,24,38,0.15);
  border-radius: 1px; font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 300; color: var(--text-dark);
  outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brass); }
.form-group textarea { min-height: 100px; resize: vertical; }

.btn-submit {
  width: 100%; background: var(--navy); color: var(--brass-lt);
  padding: 16px; font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; border: none; cursor: pointer; border-radius: 1px;
  transition: background 0.2s, color 0.2s; margin-top: 4px;
}
.btn-submit:hover { background: var(--navy-4); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #040810;
  padding: 48px 80px;
  border-top: 1px solid rgba(184,146,42,0.12);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; }
.footer-logo-wrap img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(184,146,42,0.35); opacity: 0.9;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 600;
  color: rgba(212,184,106,0.8); letter-spacing: 0.5px;
}
.footer-brand small {
  display: block; font-family: 'Jost', sans-serif;
  font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 300; margin-top: 2px;
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(184,146,42,0.4); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--brass-lt); }
.footer-copy { font-size: 10px; font-weight: 300; color: rgba(184,146,42,0.25); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow  { animation-delay: 0.1s; }
.hero h1       { animation-delay: 0.25s; }
.hero-sub      { animation-delay: 0.4s; }
.hero-actions  { animation-delay: 0.55s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .nav-right { gap: 16px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right { gap: 12px; }
  section { padding: 64px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 24px 48px; }
  .hero-right { padding: 40px 24px 100px; }
  .hero-logo-ring, .hero-logo-ring-2 { display: none; }
  .hero-logo-img { width: 180px; height: 180px; }
  .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual-wrap { padding-bottom: 60px; padding-right: 20px; }
  .products-grid, .industries-grid, .process-steps { grid-template-columns: 1fr; }
  .industries-header { grid-template-columns: 1fr; gap: 24px; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rail-grid { grid-template-columns: 1fr 1fr; }
  .truck-brands-grid { grid-template-columns: repeat(3,1fr); }
  footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .prod-modal-body { padding: 24px; }
  .prod-modal-header { padding: 24px; }
  .rail-grid { grid-template-columns: 1fr; }
}
