/* ═══════════════════════════════════════════
   CORELIX CATALYST GROUP — GLOBAL STYLESHEET
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-mid: #122040;
  --navy-light: #1a3055;
  --gold: #c8922a;
  --gold-light: #e8b05a;
  --white: #ffffff;
  --off-white: #f5f3ef;
  --gray-light: #e8e6e2;
  --gray-mid: #9a9590;
  --text-dark: #1a1a1a;
  --text-body: #3a3530;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.15; }
p { line-height: 1.85; font-size: 16px; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); color: var(--navy); }
.section-title.light { color: var(--white); }
.section-body { font-size: 17px; font-weight: 400; color: var(--text-body); margin-top: 16px; line-height: 1.85; }
.section-body.light { color: rgba(255,255,255,0.85); }
.divider { width: 48px; height: 2px; background: var(--gold); margin: 20px 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: var(--gold); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 30px;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5); cursor: pointer; text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 30px;
  background: transparent; color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--navy); cursor: pointer; text-decoration: none;
  transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  background: var(--white); color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  transition: var(--transition);
}
.btn-white:hover { background: var(--navy); color: var(--white); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  background: rgba(10,22,40,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,146,42,0.18);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(10,22,40,0.99); }
.navbar.solid { background: var(--navy); position: relative; }

.nav-left { display: flex; align-items: center; gap: 18px; }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; cursor: pointer;
  background: none; border: none; padding: 5px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: var(--transition); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 48px; width: auto; display: block;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.05);
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.04); }
.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--white);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.logo-sub { font-size: 9px; font-weight: 400; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; }

/* ── FOOTER LOGO ── */
.footer-logo-img {
  height: 52px; width: auto; display: block;
  mix-blend-mode: screen;
  filter: brightness(1.1);
  margin-bottom: 12px;
}

/* ── PRODUCT GALLERY GRID ── */
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 44px; }
.product-gallery-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.product-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.product-gallery-item:hover img { transform: scale(1.08); }
.product-gallery-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
.product-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 18px; opacity: 0; transition: opacity 0.4s;
}
.product-gallery-item:hover .product-gallery-overlay { opacity: 1; }
.product-gallery-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
}

/* ── MAP / GLOBAL REACH IMAGE SECTION ── */
.map-section { position: relative; overflow: hidden; }
.map-slider { display: flex; transition: transform 0.6s ease; }
.map-slide { min-width: 100%; height: 260px; object-fit: cover; flex-shrink: 0; }
.map-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 28px; }
.map-gallery img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform 0.5s; }
.map-gallery img:hover { transform: scale(1.04); }

/* ── STEEL / INDUSTRIAL STRIP ── */
.industrial-strip { display: grid; grid-template-columns: 1fr; gap: 0; }
.industrial-strip-item { position: relative; height: 200px; overflow: hidden; }
.industrial-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.industrial-strip-item:hover img { transform: scale(1.05); }
.industrial-strip-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.55);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  padding: 24px;
}
.industrial-strip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: var(--white);
  margin-bottom: 6px;
}
.industrial-strip-sub { font-size: 15px; color: rgba(255,255,255,0.82); font-weight: 400; }

/* ── CAREERS IMAGE GRID ── */
.careers-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 36px; }
.careers-img-grid img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.5s; }
.careers-img-grid img:hover { transform: scale(1.04); }

/* ── SUSTAINABILITY IMAGE ROW ── */
.sustain-img-row { display: grid; grid-template-columns: 1fr; gap: 4px; margin: 28px 0; }
.sustain-img-row img { width: 100%; height: 200px; object-fit: cover; display: block; }

@media (min-width: 600px) {
  .industrial-strip { grid-template-columns: 1fr 1fr; }
  .sustain-img-row { grid-template-columns: repeat(3, 1fr); }
  .careers-img-grid { grid-template-columns: repeat(4, 1fr); }
  .map-gallery { grid-template-columns: repeat(4, 1fr); }
  .product-gallery { grid-template-columns: repeat(4, 1fr); }
  .product-gallery-item.wide { grid-column: span 2; }
}
@media (min-width: 900px) {
  .product-gallery { grid-template-columns: repeat(4, 1fr); }
  .map-slide { height: 380px; }
  .industrial-strip { grid-template-columns: repeat(3, 1fr); }
  .industrial-strip-item { height: 280px; }
  .careers-img-grid img { height: 240px; }
}
@media (max-width: 599px) {
  .nav-logo-img { height: 38px; }
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-search {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px; padding: 6px 16px; gap: 8px;
}
.nav-search input {
  background: none; border: none; outline: none;
  color: var(--white); font-size: 12px; font-family: 'Barlow', sans-serif; width: 100px;
}
.nav-search input::placeholder { color: rgba(255,255,255,0.4); }
.nav-search svg { opacity: 0.5; flex-shrink: 0; }

/* ── SIDE MENU ── */
.side-menu {
  position: fixed; top: 0; left: 0; width: 340px; height: 100vh;
  background: var(--navy); z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto; display: flex; flex-direction: column;
  box-shadow: 4px 0 40px rgba(0,0,0,0.5);
}
.side-menu.open { transform: translateX(0); }

.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); z-index: 1999;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

.menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(200,146,42,0.2);
  flex-shrink: 0;
}
.menu-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); font-size: 20px;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.menu-close:hover { color: var(--white); }

.menu-section { border-bottom: 1px solid rgba(255,255,255,0.06); }
.menu-section-title {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 26px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); transition: background var(--transition);
}
.menu-section-title:hover { background: rgba(255,255,255,0.03); }
.menu-chevron { font-size: 9px; transition: transform 0.25s; opacity: 0.7; }
.menu-section.expanded .menu-chevron { transform: rotate(180deg); }

.menu-items { display: none; flex-direction: column; background: rgba(0,0,0,0.15); }
.menu-section.expanded .menu-items { display: flex; }

.menu-item {
  display: block; padding: 10px 26px 10px 38px;
  font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.82);
  text-decoration: none; cursor: pointer;
  border-left: 2px solid transparent;
  transition: var(--transition);
}
.menu-item.heading {
  font-weight: 600; color: var(--white);
  padding-left: 26px; border-left: none;
  font-size: 16px; padding-top: 13px;
}
.menu-item:hover { color: var(--white); background: rgba(200,146,42,0.07); border-left-color: var(--gold); }
.menu-item.heading:hover { background: rgba(200,146,42,0.07); }

.menu-footer {
  margin-top: auto; padding: 24px 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 12px;
}
.menu-footer-link {
  font-size: 12px; color: rgba(255,255,255,0.4); cursor: pointer;
  text-decoration: none; transition: color var(--transition);
}
.menu-footer-link:hover { color: var(--gold); }

/* ── PAGE HERO (non-homepage) ── */
.page-hero {
  position: relative; height: 380px;
  display: flex; align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  margin-top: 68px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.45) 70%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 0 32px;
}
.page-hero-breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 500;
  color: var(--white); line-height: 1.1;
}

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.78) 0%, rgba(10,22,40,0.38) 60%, rgba(10,22,40,0.52) 100%);
}
.hero-content {
  position: relative; z-index: 10; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 32px 80px; max-width: 740px;
}
.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 7vw, 62px); font-weight: 500; line-height: 1.1;
  color: var(--white); margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 17px; font-weight: 400; line-height: 1.82;
  color: rgba(255,255,255,0.84); max-width: 520px; margin-bottom: 38px;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0; animation: fadeUp 0.8s 1s forwards;
}
.hero-indicators {
  position: absolute; bottom: 34px; left: 32px;
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot { width: 28px; height: 2px; background: rgba(255,255,255,0.28); cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--gold); width: 48px; }
.hero-scroll {
  position: absolute; bottom: 28px; right: 32px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.4); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s infinite;
}

@keyframes fadeUp { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
@keyframes scrollAnim {
  0% { transform:scaleY(0); transform-origin:top; }
  50% { transform:scaleY(1); transform-origin:top; }
  50.01% { transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ── SECTIONS ── */
.section { padding: 90px 24px; }
.section-narrow { max-width: 780px; }
.section-bg-white { background: var(--white); }
.section-bg-off { background: var(--off-white); }
.section-bg-navy { background: var(--navy); }
.section-bg-navy-mid { background: var(--navy-mid); }

/* ── WHO WE ARE / SPLIT GRID ── */
.split-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 56px; margin-top: 44px; align-items: center;
}
.split-image-wrap { position: relative; overflow: hidden; }
.split-image-wrap img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.split-image-wrap:hover img { transform: scale(1.04); }
.image-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--gold); color: var(--white);
  padding: 12px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.stat-item { border-left: 2px solid var(--gold); padding-left: 16px; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 600; color: var(--navy); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 400; color: var(--gray-mid); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

/* ── CARDS GRID ── */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--gray-light); }
.card {
  background: var(--white); padding: 38px 30px;
  position: relative; overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.card:hover { background: rgba(200,146,42,0.03); }
.card:hover::after { transform: scaleX(1); }
.card.dark { background: var(--navy-mid); }
.card.dark:hover { background: rgba(200,146,42,0.07); }
.card-icon { width: 48px; height: 48px; margin-bottom: 22px; }
.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 12px;
}
.card.dark .card-title { color: var(--white); }
.card-body { font-size: 16px; font-weight: 400; line-height: 1.72; color: var(--text-body); margin-bottom: 22px; }
.card.dark .card-body { color: rgba(255,255,255,0.62); }

.read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); background: none; border: none; cursor: pointer;
  padding: 0; text-decoration: none; transition: gap var(--transition);
}
.read-more:hover { gap: 14px; }

/* ── INDUSTRY CARDS ── */
.industry-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 44px; }
.industry-card { position: relative; height: 220px; overflow: hidden; cursor: pointer; }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.industry-card:hover img { transform: scale(1.07); }
.industry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.18) 65%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 22px;
}
.industry-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px;
}
.industry-desc { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.55; margin-bottom: 12px; opacity: 0; transform: translateY(8px); transition: var(--transition); }
.industry-card:hover .industry-desc { opacity: 1; transform: translateY(0); }

/* ── REACH STATS ── */
.reach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
.reach-stat { border: 1px solid rgba(200,146,42,0.22); padding: 30px 20px; text-align: center; }
.reach-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 500; color: var(--gold); line-height: 1; }
.reach-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ── MISSION / VISION BOX ── */
.mv-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 44px; }
.mv-card { border: 1px solid rgba(200,146,42,0.28); padding: 36px 30px; }
.mv-icon { font-size: 30px; margin-bottom: 18px; }
.mv-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.mv-text { font-size: 16px; font-weight: 400; line-height: 1.75; color: rgba(255,255,255,0.7); }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 44px; }
.value-item { display: flex; gap: 20px; padding: 28px; background: var(--white); transition: var(--transition); }
.value-item:hover { box-shadow: 0 8px 32px rgba(10,22,40,0.08); transform: translateY(-2px); }
.value-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 500; color: var(--gold); line-height: 1; flex-shrink: 0; width: 48px; }
.value-title { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.value-text { font-size: 16px; font-weight: 400; color: var(--text-body); line-height: 1.7; }

/* ── TIMELINE ── */
.timeline { margin-top: 50px; position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(200,146,42,0.1)); }
.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-item::before { content: ''; position: absolute; left: -37px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--gold); }
.timeline-year { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 6px; }
.timeline-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.timeline-text { font-size: 16px; font-weight: 400; color: var(--text-body); line-height: 1.7; }

/* ── LEADERSHIP TEAM ── */
.team-tabs { display: flex; border-bottom: 2px solid var(--gray-light); margin-bottom: 44px; gap: 0; }
.tab-btn {
  padding: 13px 26px; background: none; border: none;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-mid); cursor: pointer; transition: var(--transition);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-btn:hover { color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.team-card {
  background: var(--white); overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,22,40,0.07);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,22,40,0.13); }
.team-photo { width: 100%; height: 260px; object-fit: cover; object-position: center 15%; display: block; border-bottom: 3px solid var(--gold); }
.team-info { padding: 20px 22px; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.team-role { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.team-bio-short { font-size: 15px; font-weight: 400; color: var(--gray-mid); line-height: 1.65; margin-bottom: 14px; }
.team-bio-full { font-size: 15px; font-weight: 400; color: var(--text-body); line-height: 1.65; margin-bottom: 14px; display: none; }
.team-card.expanded .team-bio-short { display: none; }
.team-card.expanded .team-bio-full { display: block; }
.team-toggle {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  background: none; border: none; cursor: pointer; padding: 0;
}

/* ── PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 44px; }
.product-card { display: grid; grid-template-columns: 1fr; overflow: hidden; box-shadow: 0 2px 20px rgba(10,22,40,0.08); transition: var(--transition); }
.product-card:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(10,22,40,0.13); }
.product-card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.product-card-body { padding: 30px; border-top: 3px solid var(--gold); }
.product-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.product-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.product-body { font-size: 16px; font-weight: 400; color: var(--text-body); line-height: 1.72; margin-bottom: 18px; }
.product-features { list-style: none; margin-bottom: 22px; }
.product-features li { font-size: 15px; font-weight: 400; color: var(--text-body); padding: 6px 0; border-bottom: 1px solid var(--gray-light); display: flex; gap: 10px; }
.product-features li::before { content: '◆'; color: var(--gold); font-size: 8px; flex-shrink: 0; margin-top: 3px; }

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 44px; }
.news-card { background: var(--white); overflow: hidden; transition: var(--transition); box-shadow: 0 2px 14px rgba(10,22,40,0.07); }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(10,22,40,0.12); }
.news-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s; }
.news-card:hover .news-img { transform: scale(1.04); }
.news-body { padding: 22px; }
.news-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.news-tag-pill { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); background: var(--gold); padding: 3px 10px; }
.news-date { font-size: 11px; color: var(--gray-mid); }
.news-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.news-excerpt { font-size: 15px; font-weight: 400; color: var(--gray-mid); line-height: 1.65; margin-bottom: 16px; }

/* ── SUSTAIN ── */
.sustain-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 44px; }
.sustain-item { display: flex; gap: 20px; padding: 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(200,146,42,0.18); }
.sustain-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500; color: var(--gold); line-height: 1; flex-shrink: 0; width: 40px; }
.sustain-title { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.sustain-text { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.6); line-height: 1.68; }

/* ── WHY CHOOSE ── */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
.why-item { padding: 28px 28px 28px 24px; border-left: 3px solid var(--gold); background: var(--white); transition: var(--transition); }
.why-item:hover { transform: translateX(4px); box-shadow: 0 4px 22px rgba(10,22,40,0.09); }
.why-title { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.why-text { font-size: 16px; font-weight: 400; color: var(--text-body); line-height: 1.68; }

/* ── CTA BAND ── */
.cta-band { padding: 80px 24px; text-align: center; }
.cta-band.gold { background: var(--gold); }
.cta-band.navy { background: var(--navy); }
.cta-band .section-title { color: var(--white); margin-bottom: 16px; }
.cta-band p { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.88); max-width: 520px; margin: 0 auto 32px; line-height: 1.75; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 52px; margin-top: 44px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon-box {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(200,146,42,0.14);
  border: 1px solid rgba(200,146,42,0.28);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.contact-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-value { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.6; }

.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 14px 16px;
  font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 400;
  outline: none; transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.32); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* ── INVESTORS ── */
.investor-cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
.investor-card { padding: 30px; border: 1px solid var(--gray-light); background: var(--white); transition: var(--transition); display: flex; gap: 20px; align-items: flex-start; }
.investor-card:hover { border-color: var(--gold); box-shadow: 0 4px 24px rgba(10,22,40,0.08); }
.investor-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.investor-title { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.investor-text { font-size: 15px; font-weight: 400; color: var(--text-body); line-height: 1.68; }

/* ── CAREERS ── */
.job-listing { border: 1px solid var(--gray-light); padding: 28px; margin-bottom: 20px; background: var(--white); transition: var(--transition); }
.job-listing:hover { border-color: var(--gold); box-shadow: 0 4px 24px rgba(10,22,40,0.08); }
.job-dept { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.job-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.job-tag { font-size: 12px; color: var(--gray-mid); display: flex; gap: 5px; align-items: center; }
.job-desc { font-size: 15px; font-weight: 400; color: var(--text-body); line-height: 1.68; }

/* ── FOOTER ── */
.footer { background: #060e1c; }
.footer-main { padding: 60px 24px 40px; display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer-brand-text { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.42); line-height: 1.75; margin-top: 14px; max-width: 280px; }
.footer-group h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-group a { display: block; font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.48); text-decoration: none; margin-bottom: 10px; transition: color var(--transition); }
.footer-group a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.22); }

/* ── COOKIE ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy-mid); border-top: 1px solid rgba(200,146,42,0.3);
  padding: 18px 24px; z-index: 3000;
  display: none; flex-direction: column; gap: 14px;
  animation: slideUpBar 0.4s ease;
}
.cookie-bar.show { display: flex; }
@keyframes slideUpBar { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.6; }
.cookie-text a { color: var(--gold); text-decoration: none; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept { padding: 9px 22px; background: var(--gold); color: var(--white); border: none; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.cookie-accept:hover { background: var(--gold-light); }
.cookie-manage { padding: 8px 22px; background: transparent; color: rgba(255,255,255,0.58); border: 1px solid rgba(255,255,255,0.18); font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.cookie-manage:hover { border-color: var(--gold); color: var(--gold); }

/* ══ RESPONSIVE ══ */
@media (min-width: 600px) {
  .split-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .sustain-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .reach-grid { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .investor-cards { grid-template-columns: 1fr 1fr; }
  .cookie-bar { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 900px) {
  .section { padding: 110px 64px; }
  .page-hero { height: 420px; }
  .page-hero-content { padding: 0 64px; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(5, 1fr); }
  .industry-card { height: 290px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.6fr 1fr 1fr 1fr; padding: 70px 64px 44px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; padding: 22px 64px; }
  .footer-legal { justify-content: flex-start; }
  .cta-band { padding: 100px 64px; }
  .hero-content { padding: 120px 64px 100px; }
  .navbar { padding: 0 64px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card { grid-template-columns: 1fr; }
  .page-hero { padding-bottom: 70px; }
}
@media (min-width: 1200px) {
  .split-grid { gap: 80px; }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ══ ADDITIONAL FIXES & POLISH ══ */

/* Ensure body never overflows on mobile */
html, body { max-width: 100%; overflow-x: hidden; }

/* Smooth image loading */
img { max-width: 100%; height: auto; display: block; }

/* Fix nav overlap on ALL pages */
body > section:first-of-type,
.page-hero { margin-top: 68px; }
.hero { margin-top: 0 !important; }

/* Better mobile padding */
@media (max-width: 599px) {
  .section { padding: 60px 20px; }
  .page-hero { height: 300px; padding-bottom: 40px; }
  .page-hero-title { font-size: 28px; }
  .hero-content { padding: 80px 20px 60px; }
  .hero-headline { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .btn-primary, .btn-outline, .btn-white, .btn-outline-dark { padding: 11px 22px; font-size: 12px; }
  .side-menu { width: 100vw; max-width: 340px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-photo { height: 160px; }
  .team-info { padding: 12px 14px; }
  .team-name { font-size: 16px; }
  .team-role { font-size: 9px; }
  .team-bio-short { display: none; }
  .reach-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
  .nav-search input { width: 60px; }
  .footer-main { padding: 44px 20px 32px; }
  .footer-bottom { padding: 16px 20px; }
  .cta-band { padding: 60px 20px; }
  .split-grid { gap: 32px; }
  .cards-grid { gap: 0; }
  .card { padding: 28px 22px; }
  .timeline { padding-left: 24px; }
}

/* PC / Desktop large screens */
@media (min-width: 1400px) {
  .section { padding: 120px 100px; }
  .navbar { padding: 0 100px; }
  .footer-main { padding: 80px 100px 50px; }
  .footer-bottom { padding: 24px 100px; }
  .hero-content { padding: 120px 100px 100px; max-width: 860px; }
  .page-hero-content { padding: 0 100px; }
  .cta-band { padding: 110px 100px; }
}

/* Fix split-grid image height on desktop */
@media (min-width: 900px) {
  .split-image-wrap img { min-height: 420px; }
  .split-image-wrap { aspect-ratio: auto; }
}

/* Active menu item highlight */
.menu-item.active-page { color: var(--gold) !important; border-left-color: var(--gold) !important; }

/* Tab buttons responsive */
@media (max-width: 599px) {
  .tab-btn { padding: 11px 14px; font-size: 11px; letter-spacing: 0.06em; }
  .team-tabs { overflow-x: auto; }
}

/* Ensure form inputs look right on iOS */
input, textarea, select { -webkit-appearance: none; border-radius: 0; }

/* Fix card grid gaps */
.cards-grid { border: 1px solid var(--gray-light); }

/* Job listings */
.job-listing + .job-listing { margin-top: 16px; }

/* News card image container overflow fix */
.news-card { overflow: hidden; }

/* Product features spacing */
.product-features li + li { margin-top: 0; }

/* Smooth scroll offset for anchor links (accounts for fixed nav) */
[id] { scroll-margin-top: 88px; }

/* Footer brand logo spacing fix */
.footer-brand { display: flex; flex-direction: column; gap: 0; }

/* Better button focus states for accessibility */
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Page transition feel */
main { animation: pageFadeIn 0.4s ease; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Investor cards full height */
.investor-card { align-items: flex-start; }
.investor-card > div:last-child { flex: 1; }

/* Print styles */
@media print {
  .navbar, .side-menu, .menu-overlay, .cookie-bar, .hamburger { display: none !important; }
  .page-hero { height: auto; padding: 40px 0; }
  body { font-size: 12px; }
}
