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

:root {
  --black: #1C1C1F;
  --charcoal: #2F2F33;
  --gold: #E5A84E;
  --gold-light: #F0BE6E;
  --gold-dark: #C88B34;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --grey-light: #F0EEEA;
  --grey-mid: #C8C4BC;
  --grey-dark: #888480;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-headline: 'Bebas Neue', 'Impact', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(28, 28, 31, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216,162,88,0.15);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark-img { height: 36px; width: auto; display: block; flex-shrink: 0; }
.footer-logo-mark-img { height: 42px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px; color: var(--black);
  flex-shrink: 0;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-main {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: var(--white); letter-spacing: 0.3px;
}
.nav-brand-sub {
  font-size: 9px; font-weight: 400;
  color: var(--gold); letter-spacing: 2.5px;
  text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none; letter-spacing: 0.5px;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: 9px 20px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.nav-cta.active { color: var(--black) !important; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: var(--gold); color: var(--black);
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(216,162,88,0.5); color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: var(--black); color: var(--white);
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }
.btn-dark-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  border: 1px solid rgba(28,28,31,0.4); color: var(--black);
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; transition: all 0.25s;
}
.btn-dark-outline:hover { background: rgba(28,28,31,0.08); }

/* ─── HOME HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  padding: 80px 48px 72px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, rgba(28,28,31,0.35) 0%, rgba(28,28,31,0.7) 60%, rgba(28,28,31,0.97) 100%),
    url('img/thane-town-park.jpg') center/cover no-repeat;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(216,162,88,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,162,88,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 48px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 11px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
}
.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.95; letter-spacing: 1px;
  color: var(--white); margin-bottom: 28px;
}
.hero-title em { font-style: normal; color: var(--gold); display: block; }
.hero-sub {
  font-size: 15px; font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 520px; margin-bottom: 44px; letter-spacing: 0.3px;
}
.hero-sub strong { color: rgba(255,255,255,0.95); font-weight: 500; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-credit {
  position: absolute; bottom: 18px; left: 48px; z-index: 2;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-scroll {
  position: absolute; bottom: 40px; right: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── SUBPAGE BANNER ─── */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--black);
  padding: 150px 48px 72px;
  border-bottom: 1px solid rgba(216,162,88,0.15);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(216,162,88,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,162,88,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero--image::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(120deg, rgba(28,28,31,0.96) 0%, rgba(28,28,31,0.78) 60%, rgba(28,28,31,0.55) 100%),
    var(--banner-img) center/cover no-repeat;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.page-hero .crumbs {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 18px;
}
.page-hero .crumbs a { color: var(--gold); text-decoration: none; }
.page-hero .crumbs a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(44px, 6vw, 78px); line-height: 0.95; letter-spacing: 1px;
  color: var(--white);
}
.page-hero p {
  margin-top: 18px; max-width: 600px;
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

/* ─── STATS BAND ─── */
.stats-band { background: var(--gold); padding: 0 48px; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(28,28,31,0.12);
}
.stat-item { padding: 36px 32px; border-right: 1px solid rgba(28,28,31,0.12); text-align: center; }
.stat-number {
  font-family: var(--font-headline);
  font-size: 48px; line-height: 1; color: var(--black); letter-spacing: 1px;
}
.stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(28,28,31,0.65); margin-top: 6px;
}

/* ─── SECTION BASE ─── */
section { padding: 96px 48px; }
.section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.section-eyebrow span {
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.15; color: var(--charcoal);
}
.section-title-dark { color: var(--white); }

/* ─── LEGACY / TIMELINE ─── */
.legacy-section { background: var(--off-white); }
.legacy-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.legacy-text .section-title { margin-bottom: 24px; }
.legacy-text p { font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 16px; }
.legacy-text p strong { color: var(--charcoal); font-weight: 600; }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 24px; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 1px; background: linear-gradient(to bottom, var(--gold), rgba(216,162,88,0.1));
}
.tl-item { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 32px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -21px; top: 4px;
  width: 13px; height: 13px; background: var(--gold); border-radius: 50%;
  border: 2px solid var(--off-white); flex-shrink: 0;
}
.tl-year { font-family: var(--font-headline); font-size: 22px; color: var(--gold); line-height: 1; min-width: 56px; }
.tl-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 3px; }
.tl-info span { font-size: 13px; color: #777; line-height: 1.5; }

/* ─── VALUES ─── */
.values-section { background: var(--white); }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--off-white); border-left: 3px solid var(--gold);
  padding: 36px 32px; transition: all 0.3s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.05); }
.value-num { font-family: var(--font-headline); font-size: 16px; letter-spacing: 3px; color: rgba(216,162,88,0.7); margin-bottom: 12px; }
.value-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.value-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ─── SERVICES ─── */
.services-section { background: var(--charcoal); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.services-header .section-title { color: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(216,162,88,0.08);
  padding: 44px 36px; transition: all 0.3s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { background: rgba(216,162,88,0.06); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-number { font-family: var(--font-headline); font-size: 11px; letter-spacing: 3px; color: rgba(216,162,88,0.4); margin-bottom: 12px; }
.service-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.25; }
.service-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.service-tag { font-size: 10px; padding: 4px 10px; border: 1px solid rgba(216,162,88,0.25); color: rgba(216,162,88,0.7); letter-spacing: 0.5px; }

/* ─── WHY / FOUR TESTS ─── */
.why-section { background: var(--off-white); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { margin-bottom: 56px; max-width: 620px; }
.why-header .section-title { margin-bottom: 16px; }
.why-header p { font-size: 16px; color: #666; line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--white); border-top: 3px solid var(--gold); padding: 32px 28px; transition: all 0.3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.why-num { font-family: var(--font-headline); font-size: 14px; letter-spacing: 3px; color: rgba(216,162,88,0.6); margin-bottom: 14px; }
.why-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.why-q { font-size: 12px; font-weight: 600; color: var(--gold); margin-bottom: 14px; }
.why-card p { font-size: 13px; color: #777; line-height: 1.7; }

/* ─── PROJECTS ─── */
.projects-section { background: var(--white); }
.projects-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 12px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.projects-filters {
  display: flex; gap: 0; margin-bottom: 48px; flex-wrap: wrap;
  border-bottom: 1px solid var(--grey-light);
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.filter-btn {
  padding: 12px 24px; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; background: none; cursor: pointer;
  color: var(--grey-dark); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.project-card { background: var(--off-white); overflow: hidden; position: relative; transition: transform 0.3s; }
.project-card:hover { transform: translateY(-4px); }
.project-card:hover .project-img, .project-card:hover .project-img-placeholder { transform: scale(1.05); }
.project-card--large { grid-column: span 7; }
.project-card--med { grid-column: span 5; }
.project-card--sm { grid-column: span 4; }
.project-img-wrap { overflow: hidden; }
.project-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block; transition: transform 0.6s; background: var(--grey-light);
}
.project-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc6 100%); transition: transform 0.6s;
}
.project-img-placeholder svg { width: 40px; height: 40px; stroke: rgba(28,28,31,0.2); fill: none; }
.project-img-placeholder span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(28,28,31,0.3); font-weight: 500; }
.project-info { padding: 24px 24px 28px; }
.project-category { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.project-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; line-height: 1.2; }
.project-card--large .project-name { font-size: 24px; }
.project-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.project-value { font-family: var(--font-headline); font-size: 20px; color: var(--gold); letter-spacing: 0.5px; }
.project-client { font-size: 12px; color: var(--grey-dark); }
.project-status { margin-left: auto; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #4CAF50; }
.project-status.ongoing { color: var(--gold-dark); }

/* ─── AUTHORITIES ─── */
.authorities-section { background: var(--black); }
.authorities-section .section-title { color: var(--white); margin-bottom: 16px; }
.authorities-section .section-eyebrow-line { background: var(--gold); }
.authorities-inner { max-width: 1200px; margin: 0 auto; }
.authorities-sub { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 56px; max-width: 520px; line-height: 1.6; }
.authorities-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05);
}
.authority-cell {
  background: var(--black); padding: 32px 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center; transition: background 0.2s; border: 1px solid rgba(216,162,88,0);
}
.authority-cell:hover { background: rgba(216,162,88,0.06); border-color: rgba(216,162,88,0.15); }
.authority-abbr { font-family: var(--font-headline); font-size: 28px; color: var(--gold); letter-spacing: 1px; }
.authority-name { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; line-height: 1.4; }

/* ─── INNOVATION ─── */
.innovation-section { background: var(--off-white); }
.innovation-inner { max-width: 1200px; margin: 0 auto; }
.innovation-header { margin-bottom: 56px; }
.innovation-header .section-title { margin-bottom: 16px; }
.innovation-header p { font-size: 16px; color: #666; max-width: 600px; line-height: 1.7; }
.innovation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.innovation-card { background: var(--white); border-left: 3px solid var(--gold); padding: 36px 32px; transition: all 0.3s; }
.innovation-card:hover { transform: translateX(4px); box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.inno-badge { display: inline-block; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 4px 10px; margin-bottom: 20px; }
.inno-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; line-height: 1.3; }
.inno-desc { font-size: 13px; color: #777; line-height: 1.7; }

/* ─── LEADERSHIP ─── */
.leadership-section { background: var(--charcoal); }
.leadership-section .section-title { color: var(--white); margin-bottom: 16px; }
.leadership-section .leadership-sub { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 56px; max-width: 520px; line-height: 1.6; }
.leadership-inner { max-width: 1200px; margin: 0 auto; }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.leader-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(216,162,88,0.1); overflow: hidden; transition: all 0.3s; }
.leader-card:hover { border-color: rgba(216,162,88,0.35); background: rgba(255,255,255,0.06); }
.leader-img {
  width: 100%; aspect-ratio: 3/2;
  background: linear-gradient(135deg, #3a3a3e 0%, #2a2a2e 100%);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.leader-initials { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(216,162,88,0.25); }
.leader-info { padding: 28px; }
.leader-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.leader-title { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.leader-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.leader-desc strong { color: rgba(255,255,255,0.7); font-weight: 600; }

/* ─── PARTNERS ─── */
.partners-section { background: var(--off-white); }
.partners-inner { max-width: 1200px; margin: 0 auto; }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.partner-card { background: var(--white); padding: 32px; border: 1px solid var(--grey-light); transition: all 0.3s; }
.partner-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.partner-card h4 { font-family: var(--font-display); font-size: 18px; color: var(--charcoal); margin-bottom: 10px; }
.partner-card p { font-size: 13px; color: #777; line-height: 1.6; }

/* ─── CTA ─── */
.cta-section { background: var(--gold); padding: 96px 48px; text-align: center; }
.cta-label { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(28,28,31,0.5); margin-bottom: 20px; }
.cta-title { font-family: var(--font-headline); font-size: clamp(48px, 6vw, 88px); line-height: 0.95; letter-spacing: 1px; color: var(--black); margin-bottom: 24px; }
.cta-sub { font-size: 16px; color: rgba(28,28,31,0.65); margin-bottom: 44px; line-height: 1.6; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ─── CONTACT PAGE ─── */
.contact-section { background: var(--white); }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-details h2 { font-family: var(--font-display); font-size: 34px; color: var(--charcoal); margin-bottom: 24px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--grey-light); }
.contact-row svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.7; flex-shrink: 0; margin-top: 2px; }
.contact-row .clabel { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-dark); margin-bottom: 4px; }
.contact-row .cval { font-size: 16px; color: var(--charcoal); text-decoration: none; line-height: 1.5; }
.contact-row a.cval:hover { color: var(--gold); }
.contact-card-dark { background: var(--charcoal); padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.contact-card-dark .logo-on-dark { width: 200px; margin-bottom: 28px; }
.contact-card-dark h3 { font-family: var(--font-display); color: var(--white); font-size: 24px; margin-bottom: 14px; }
.contact-card-dark p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.8; margin-bottom: 28px; }
.map-embed { width: 100%; border: 0; aspect-ratio: 16/7; filter: grayscale(0.3) contrast(1.05); }

/* ─── FOOTER ─── */
footer { background: #111113; color: rgba(255,255,255,0.5); padding: 64px 48px 32px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px;
}
.footer-brand .nav-brand-main { color: var(--white); font-size: 20px; margin-bottom: 4px; }
.footer-brand .nav-brand-sub { font-size: 9px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-about { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-address { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.35); }
.footer-col h5 { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ─── MOBILE MENU ─── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .legacy-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .authorities-grid { grid-template-columns: repeat(4, 1fr); }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .project-card--large { grid-column: span 12; }
  .project-card--med { grid-column: span 6; }
  .project-card--sm { grid-column: span 4; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 80px 24px 60px; }
  .hero-credit { left: 24px; }
  .page-hero { padding: 120px 24px 56px; }
  section { padding: 64px 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .authorities-grid { grid-template-columns: repeat(3, 1fr); }
  .innovation-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--large, .project-card--med, .project-card--sm { grid-column: span 1; }
  .services-header, .projects-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-section { padding: 64px 24px; }
  footer { padding: 48px 24px 24px; }
  .hero-scroll { display: none; }
}
