/* ============================================================
   BENCHMARK ENGINEERING CO. LTD — MAIN STYLESHEET
   Brand: Navy #0B1F3A | Gold #C9A84C | White #FFFFFF
   Version: 1.0 | benchmarkengineering.co.tz
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --navy:       #0B1F3A;
  --navy-deep:  #071428;
  --gold:       #C9A84C;
  --gold-light: rgba(201,168,76,0.12);
  --gold-mid:   rgba(201,168,76,0.3);
  --white:      #FFFFFF;
  --grey-light: #F1F4F8;
  --grey-mid:   #E4E9F0;
  --text-dark:  #0F1923;
  --text-muted: rgba(15,25,35,0.55);
  --white-muted: rgba(255,255,255,0.72);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:  'DM Mono', 'Courier New', monospace;

  --section-pad: clamp(60px, 8vw, 96px);
  --container-max: 1240px;
  --container-pad: clamp(16px, 4vw, 32px);
  --nav-height: 76px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
  --transition-fast: 0.2s var(--ease);

  --shadow-sm:  0 2px 8px rgba(11,31,58,0.08);
  --shadow-md:  0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg:  0 24px 64px rgba(11,31,58,0.18);

  --radius: 3px;
  --radius-card: 4px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--font-sans);
  font-size: 16px;
  width: 100%;
  border: none;
  outline: none;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
h4 { font-size: clamp(17px, 2vw, 20px); font-weight: 600; }

.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.08;
}
.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}

p { line-height: 1.75; }
p + p { margin-top: 1em; }

.lead {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.7;
  color: var(--text-muted);
}
.lead--white { color: var(--white-muted); }

/* ── SECTION LABELS & RULES ─────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}
.section-rule--center { margin-left: auto; margin-right: auto; }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-heading--white { color: var(--white); }

.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section--navy   { background: var(--navy); }
.section--grey   { background: var(--grey-light); }
.section--white  { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: #d4b060;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-whatsapp {
  background: #25D366;
  color: white;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 4px;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--transparent { background: transparent; }
.nav--solid {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(11,31,58,0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Logo */
.logo { display: flex; flex-direction: column; gap: 2px; }
.logo__rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 6px;
  transition: width var(--transition);
}
.logo:hover .logo__rule { width: 56px; }
.logo__mark {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  transition: color var(--transition);
}
.logo__sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.nav--solid .logo__mark { color: var(--navy); }
.nav--solid .logo__sub  { color: rgba(11,31,58,0.5); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link:hover { color: var(--white); }

.nav--solid .nav__link { color: var(--text-dark); }
.nav--solid .nav__link:hover { color: var(--navy); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  border-radius: 0 0 var(--radius) var(--radius);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav__dropdown-item:hover { background: var(--grey-light); color: var(--navy); }

/* Portal button */
.nav__portal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  margin-left: 8px;
}
.nav__portal:hover {
  background: var(--gold);
  color: var(--navy);
}
.nav--solid .nav__portal { color: var(--gold); border-color: var(--gold); }

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  padding: 6px 10px;
  margin-left: 4px;
  cursor: pointer;
  transition: color var(--transition);
}
.lang-toggle:hover { color: var(--gold); }
.lang-toggle span.active { color: var(--gold); }
.nav--solid .lang-toggle { color: var(--text-muted); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav--solid .nav__hamburger span { background: var(--navy); }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 32px var(--container-pad);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.3s, transform 0.3s var(--ease);
  overflow-y: auto;
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.nav__mobile-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-portal {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 24px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.nav__mobile-contact {
  margin-top: 32px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 2;
}
.nav__mobile-contact a { color: var(--gold); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
  background-color: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--navy);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,31,58,0.55) 0%,
    rgba(11,31,58,0.4) 40%,
    rgba(11,31,58,0.82) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  padding: 0 var(--container-pad);
  margin: 0 auto;
  width: 100%;
}

.hero__pre {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__pre::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  color: var(--gold);
  max-width: 900px;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--white-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* Page hero (non-homepage) */
.page-hero {
  position: relative;
  height: clamp(320px, 40vw, 520px);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.85) 0%, rgba(11,31,58,0.6) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.page-hero__title {
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero__breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.page-hero__breadcrumb a { color: var(--gold); }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(201,168,76,0.2);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── SERVICES GRID ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-mid);
}
.service-tile {
  background: var(--white);
  padding: 40px 32px;
  transition: background var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width var(--transition);
}
.service-tile:hover::before { width: 100%; }
.service-tile:hover { background: var(--grey-light); }
.service-tile__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.service-tile__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-tile__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-tile__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-tile:hover .service-tile__link { gap: 10px; }

/* ── PROJECT CARDS ──────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-card__image {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: var(--navy);
}
.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.project-card:hover .project-card__image img { transform: scale(1.06); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-card__overlay { opacity: 1; }

.project-card__tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 6px;
}

.project-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-card__location {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.project-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.project-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.project-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey-mid);
  padding-top: 16px;
}
.project-card__year {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}
.project-card__arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-mid);
  border-radius: 50%;
  color: var(--gold);
  font-size: 16px;
  transition: var(--transition);
}
.project-card:hover .project-card__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag--completed { background: rgba(34,197,94,0.15); color: #16a34a; }
.tag--ongoing   { background: rgba(201,168,76,0.2);  color: #92650a; }
.tag--govt      { background: rgba(59,130,246,0.12); color: #1d4ed8; }
.tag--residential { background: rgba(168,85,247,0.12); color: #7c3aed; }
.tag--commercial  { background: rgba(249,115,22,0.12); color: #c2410c; }
.tag--healthcare  { background: rgba(20,184,166,0.12); color: #0f766e; }

/* ── PILLAR SECTION (WHY BENCHMARK) ─────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.pillar { position: relative; }
.pillar__num {
  font-family: var(--font-mono);
  font-size: 72px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}
.pillar__rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}
.pillar__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.pillar__body {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ── DIGITAL STRIP ──────────────────────────────────────────── */
.digital-strip {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 64px 0;
}
.digital-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.digital-strip__quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.7;
  margin-bottom: 16px;
  display: block;
}
.digital-strip__text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  max-width: 680px;
}
.digital-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

/* ── ENQUIRY STRIP ──────────────────────────────────────────── */
.enquiry {
  background: var(--grey-light);
  padding: var(--section-pad) 0;
}
.enquiry__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.enquiry__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-control {
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-group--full { grid-column: 1 / -1; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand .logo__mark { color: var(--white); font-size: 20px; }
.footer__brand .logo__sub  { color: rgba(255,255,255,0.4); }
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 24px;
}
.footer__contact-item span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer__contact-item a, .footer__contact-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: var(--gold); }

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--white); }

.footer__creds {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__cred {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid var(--gold-mid);
}
.footer__cred strong { color: rgba(255,255,255,0.8); display: block; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer__built {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.director-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 200px 1fr;
}
.director-card__photo {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.director-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.director-card__photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
}
.director-card__body { padding: 32px; }
.director-card__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.director-card__name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.director-card__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.credential-tag {
  padding: 4px 10px;
  background: var(--gold-light);
  border: 1px solid var(--gold-mid);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.director-card__bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.director-card__projects {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-mid);
}
.director-card__projects-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.director-card__project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-mid), transparent);
}
.timeline-item { position: relative; padding: 0 0 40px 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item__year {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.timeline-item__event {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-item__detail {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
}
.value-card__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.value-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── DIGITAL PAGE EXTRAS ────────────────────────────────────── */
.digital-problem-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.problem-stat {
  padding: 28px 24px;
  background: var(--grey-light);
  border-radius: var(--radius-card);
  border-left: 4px solid var(--grey-mid);
}
.problem-stat--gold { border-left-color: var(--gold); background: var(--gold-light); }
.problem-stat__pct {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.problem-stat--gold .problem-stat__pct { color: var(--gold); }
.problem-stat__label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── DIGITAL PAGE ────────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-card);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.feature-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: var(--radius);
  font-size: 22px;
}
.feature-item__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-item__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--gold);
}
.comparison-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--grey-mid);
  color: var(--text-dark);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { color: var(--text-muted); font-weight: 500; }
.comparison-table .check { color: #16a34a; font-weight: 700; font-size: 18px; }
.comparison-table .cross { color: #dc2626; font-size: 18px; }
.comparison-table .highlight td { background: var(--gold-light); }

/* ── PLANT PAGE ─────────────────────────────────────────────── */
.plant-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.plant-table thead { background: var(--navy); }
.plant-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.plant-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--grey-light);
}
.plant-table tr:last-child td { border-bottom: none; }
.plant-table tr:hover td { background: var(--grey-light); }
.plant-table td:nth-child(2) {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}
.plant-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
}
.plant-badge--new    { background: rgba(34,197,94,0.1); color: #16a34a; }
.plant-badge--good   { background: rgba(59,130,246,0.1); color: #1d4ed8; }
.plant-badge--owned  { background: var(--gold-light); color: #92650a; }

/* ── ROLES LIST (CAREERS) ────────────────────────────────────── */
.roles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
.role-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}
.role-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.role-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.role-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.role-card__level {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.role-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.role-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-mid);
}
.role-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-right: 16px;
}

/* ── CAREERS PAGE ────────────────────────────────────────────── */
.pathway-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.pathway-steps::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-mid));
}
.pathway-step {
  text-align: center;
  padding: 24px 12px;
  position: relative;
  z-index: 1;
}
.pathway-step__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.pathway-step__title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.pathway-step__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── CASE STUDY PAGE ────────────────────────────────────────── */
.case-hero { min-height: 70vh; }
.project-stats-bar {
  background: var(--navy);
  padding: 32px 0;
}
.project-stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.project-stat {
  padding: 16px 24px;
  border-right: 1px solid rgba(201,168,76,0.2);
}
.project-stat:last-child { border-right: none; }
.project-stat__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.project-stat__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.case-section { padding: clamp(48px, 6vw, 80px) 0; }
.case-content { max-width: 760px; }

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--grey-light);
  border-radius: var(--radius);
}
.deliverable-item::before {
  content: '✓';
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}
.gallery-grid__main { grid-row: span 2; }
.gallery-img {
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-img:hover img { transform: scale(1.05); }
.gallery-grid__main { height: 480px; }
.gallery-grid > *:not(.gallery-grid__main) { height: 228px; }

/* ── PROJECT FILTER ─────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-mid);
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--grey-mid);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.filter-btn.active { color: var(--gold); }

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── GOVERNMENT / SERVICES PAGE ─────────────────────────────── */
/* .gov-project__text is the copy column inside .gov-project     */
.gov-project__text { display: flex; flex-direction: column; }
.gov-project__text .section__title { margin-top: 8px; }

/* Service scope list */
.service-scope { margin-top: 24px; }
.service-scope__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-scope__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-scope__list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-scope__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* ── GOVERNMENT PAGE ────────────────────────────────────────── */
.gov-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--grey-mid);
}
.gov-project:last-child { border-bottom: none; }
.gov-project--reverse { direction: rtl; }
.gov-project--reverse > * { direction: ltr; }

.gov-project__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 360px;
}
.gov-project__image img { width: 100%; height: 100%; object-fit: cover; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  text-align: center;
}
.trust-card__icon { font-size: 32px; margin-bottom: 16px; }
.trust-card__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.trust-card__body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-mid);
}
.contact-info-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-info-item__value {
  font-size: 16px;
  color: var(--text-dark);
}
.contact-info-item__value a { color: var(--navy); }
.contact-info-item__value a:hover { color: var(--gold); }

.map-placeholder {
  height: 300px;
  background: var(--grey-light);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--grey-mid);
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

/* ── SECTION SHORTHAND ALIASES ──────────────────────────────── */
/* These allow pages to use .section__label / .section__title   */
/* instead of .section-label / .section-heading                 */
.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__label--gold { color: var(--gold); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.section__title--white { color: var(--white); }

.section__sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.text-center .section__sub { margin-left: auto; margin-right: auto; }

/* ── BUTTON ALIASES ─────────────────────────────────────────── */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn--gold:hover {
  background: #d4b060;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── NAV LOGO ALIASES ───────────────────────────────────────── */
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  padding-top: 8px;
}
.nav__logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__logo:hover::before { width: 56px; }
.nav__logo-mark {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  transition: color var(--transition);
}
.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.nav--solid .nav__logo-mark { color: var(--navy); }
.nav--solid .nav__logo-sub  { color: rgba(11,31,58,0.5); }

/* Portal btn alias */
.nav__portal-btn {
  display: flex;
  align-items: center;
  padding: 9px 18px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__portal-btn:hover { background: var(--gold); color: var(--navy); }

/* Active nav link */
.nav__link--active { color: var(--gold) !important; }
.nav__link--active::after { transform: scaleX(1) !important; }

/* Mobile nav sub-classes */
.nav__mobile-links { display: flex; flex-direction: column; }
.nav__mobile-link--portal { color: var(--gold) !important; border-bottom: none; margin-top: 8px; }
.nav__mobile-lang { margin-top: 24px; }

/* ── NAV CONTROLS GROUP ─────────────────────────────────────── */
.nav__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── PAGE HERO EXTRAS ───────────────────────────────────────── */
.page-hero__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero__label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.page-hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.7;
}

/* ── STORY SECTION (ABOUT) ──────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.story-stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-mid);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.story-stat:last-of-type { border-bottom: none; }
.story-stat__num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.story-stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.story-creds {
  margin-top: 8px;
  padding: 20px;
  background: var(--grey-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.story-creds__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.story-creds__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.story-creds__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
}
.story-creds__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 16px;
  line-height: 1.1;
}

/* ── TIMELINE (ABOUT PAGE) ──────────────────────────────────── */
/* Note: .timeline and .timeline-item exist for other uses.     */
/* These .timeline__item variants are for the about page.       */
.timeline { position: relative; padding-left: 40px; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.2));
}
.timeline__item {
  position: relative;
  padding-bottom: 40px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline__content {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.timeline__item:hover .timeline__content {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.timeline__year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}
.timeline__heading {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── DIRECTORS GRID (ABOUT) ─────────────────────────────────── */
.directors-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}
.director-card__avatar {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.director-card__avatar span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  border: 2px solid rgba(201,168,76,0.3);
}
.director-card__bio p + p { margin-top: 12px; }
.credential-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-light);
  border: 1px solid var(--gold-mid);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
}

/* ── MISSION / VISION / VALUES GRID ─────────────────────────── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.mvv-card {
  padding: 32px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  transition: var(--transition);
}
.mvv-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.25);
}
.mvv-card__icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.mvv-card__heading {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.mvv-card__body {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── CREDENTIALS GRID (ABOUT) ───────────────────────────────── */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cred-item {
  background: var(--grey-light);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.cred-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cred-item__icon { font-size: 28px; margin-bottom: 16px; display: block; }
.cred-item__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cred-item__ref {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.cred-item__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA STRIP ──────────────────────────────────────────────── */
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
}
.cta-strip__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cta-strip__sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}
.cta-strip__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── FOOTER ALIASES ─────────────────────────────────────────── */
.footer__logo { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.footer__logo-mark {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.footer__logo-sub {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer__motto {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__contact li a,
.footer__contact li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__contact li a:hover { color: var(--gold); }
.footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__creds {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__creds li {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  padding-left: 10px;
  border-left: 2px solid rgba(201,168,76,0.3);
}
.footer__portal-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 16px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.footer__portal-link:hover { background: var(--gold); color: var(--navy); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* ── UTILITY CLASSES ────────────────────────────────────────── */
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex  { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Hidden before JS loads */
.js-hidden { opacity: 0; transform: translateY(24px); }
.js-visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .stat:last-child { border-bottom: none; }
  .pillars-grid { gap: 40px; }
  .pathway-steps { grid-template-columns: repeat(3, 1fr); }
  .pathway-steps::after { display: none; }
  .project-stats-bar__inner { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-stats { position: static; }
  .mvv-grid { grid-template-columns: repeat(2, 1fr); }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip { flex-direction: column; text-align: center; }
  .cta-strip__actions { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .nav__links  { display: none; }
  .nav__portal { display: none; }
  .lang-toggle { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: 90vh; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }

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

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

  .projects-grid { grid-template-columns: 1fr; }
  .projects-full-grid { grid-template-columns: 1fr; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  .pillars-grid { grid-template-columns: 1fr; gap: 32px; }

  .digital-strip__inner { grid-template-columns: 1fr; }

  .enquiry__inner { grid-template-columns: 1fr; }
  .enquiry__form-row { grid-template-columns: 1fr; }

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

  .director-card { grid-template-columns: 1fr; }
  .director-card__photo { min-height: 200px; }
  .director-card__avatar { min-height: 180px; }
  .directors-grid { gap: 32px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }

  .gov-project { grid-template-columns: 1fr; }
  .gov-project--reverse { direction: ltr; }

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

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

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid__main { height: 280px; grid-row: span 1; }
  .gallery-grid > *:not(.gallery-grid__main) { height: 200px; }

  .pathway-steps { grid-template-columns: 1fr 1fr; }

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

  .project-stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .project-stat { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }

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

  .comparison-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  :root { --section-pad: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .pathway-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .project-stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .btn { padding: 12px 20px; font-size: 13px; }
  .whatsapp-fab { width: 50px; height: 50px; bottom: 20px; right: 20px; }
}

/* Print styles */
@media print {
  .nav, .whatsapp-fab, .hero__scroll { display: none; }
  .hero { min-height: auto; }
  * { box-shadow: none !important; }
}
