/* ==========================================================================
   Dibwe Mining & Construction Ltd — Global Stylesheet
   Brand: Navy #0A1F44 | Gold #C9A84C | White #FFFFFF | Deep Dark #1A1A2E
   ========================================================================== */

:root {
  --navy: #0A1F44;
  --navy-soft: #10294f;
  --navy-deep: #071633;
  --dark: #1A1A2E;
  --gold: #C9A84C;
  --gold-light: #E3C878;
  --gold-dark: #A8873A;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --grey-100: #EEF1F6;
  --grey-400: #8B93A7;
  --text: #2A3242;
  --text-light: #5A6478;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 10px 30px rgba(10, 31, 68, 0.10);
  --shadow-lg: 0 18px 50px rgba(10, 31, 68, 0.18);
  --font-head: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--navy); }

ul { list-style: none; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.container-narrow { width: min(860px, 92%); margin: 0 auto; }

section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

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

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

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

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

.site-header.solid,
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }

.brand-mark {
  width: 42px; height: 42px;
  flex: 0 0 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
}

.brand-text { line-height: 1.15; }
.brand-text .brand-name { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 1rem; letter-spacing: 0.03em; white-space: nowrap; }
.brand-text .brand-sub { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; padding: 0.3rem 0; position: relative; white-space: nowrap; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: var(--gold); transition: width 0.25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; padding: 0.6rem 1.3rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero (homepage)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201,168,76,0.14), transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(201,168,76,0.08), transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 90px),
    repeating-linear-gradient(-65deg, rgba(201,168,76,0.05) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px; height: 34vh;
  background:
    linear-gradient(115deg, transparent 46%, rgba(201,168,76,0.10) 46.2%, transparent 60%),
    linear-gradient(245deg, transparent 40%, rgba(7,22,51,0.9) 40.2%),
    linear-gradient(120deg, transparent 30%, rgba(7,22,51,0.85) 30.2%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; width: min(880px, 92%); }

.hero-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 100px;
  padding: 0.45rem 1.3rem;
  margin-bottom: 1.6rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.3rem; }
.hero h1 .gold { color: var(--gold); }

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 700px;
  margin: 0 auto 2.3rem;
}

.hero .btn-group { justify-content: center; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 2;
}
.hero-scroll::after {
  content: ""; display: block; width: 1px; height: 34px;
  background: linear-gradient(var(--gold), transparent);
  margin: 0.5rem auto 0;
}

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4.5rem) 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(201,168,76,0.16), transparent 55%),
    linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 60%, var(--dark) 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 90px);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.page-hero .tagline {
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.page-hero .lede { color: rgba(255,255,255,0.82); max-width: 800px; }

.breadcrumb { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-family: var(--font-head); }

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}
.kicker::before { content: "— "; color: var(--gold); }

.section-head p { color: var(--text-light); margin-top: 0.9rem; }

.on-dark .kicker { color: var(--gold-light); }
.on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark p { color: rgba(255,255,255,0.8); }

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */
.stats-strip { background: var(--navy); padding: 3.2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat .stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat .stat-number .suffix { font-size: 0.6em; }
.stat .stat-label { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-top: 0.6rem; }

/* --------------------------------------------------------------------------
   Feature band / tagline band
   -------------------------------------------------------------------------- */
.feature-band { background: var(--off-white); }
.feature-band blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 1.6rem;
  margin-bottom: 1.6rem;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card-grid { display: grid; gap: 1.6rem; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-100);
  border-bottom: 3px solid var(--gold);
  padding: 2rem 1.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.3));
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  color: var(--gold-dark);
}
.card-icon svg { width: 28px; height: 28px; }

.card h3 { margin-bottom: 0.7rem; font-size: 1.15rem; }
.card p { color: var(--text-light); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Project cards
   -------------------------------------------------------------------------- */
.project-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.ph {
  height: 190px;
  position: relative;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.08) 40.5%, transparent 55%),
    linear-gradient(245deg, transparent 55%, rgba(0,0,0,0.18) 55.5%),
    linear-gradient(25deg, transparent 70%, rgba(255,255,255,0.07) 70.5%);
}
.ph-aqua { background: linear-gradient(135deg, #1d5f74, #3fa0b5 60%, #7fd0dd); }
.ph-amethyst { background: linear-gradient(135deg, #3d2a63, #6b4d9e 60%, #a68cd4); }
.ph-calcite { background: linear-gradient(135deg, #8a8073, #b3a989 60%, #ded4c0); }
.ph-gold { background: linear-gradient(135deg, #6e5416, #a8873a 55%, #d9bc6a); }
.ph-copper { background: linear-gradient(135deg, #5f3220, #9c5a34 55%, #cf8f5c); }
.ph-multi { background: linear-gradient(135deg, #143a5c, #2c6f78 45%, #6b4d9e 80%); }
.ph-navy { background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft) 60%, #24406e); }

.project-body { padding: 1.6rem 1.5rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.badge-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.9rem; }

.badge {
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.badge-gold { background: rgba(201,168,76,0.16); color: var(--gold-dark); }
.badge-navy { background: rgba(10,31,68,0.08); color: var(--navy); }
.badge-green { background: rgba(28,138,88,0.12); color: #1c8a58; }
.badge-amber { background: rgba(197,124,20,0.13); color: #c57c14; }
.badge-blue { background: rgba(33,104,183,0.12); color: #2168b7; }

.project-body h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.project-body .meta { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }

.project-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem;
  padding: 0.9rem 0; margin-bottom: 1.1rem;
  border-top: 1px solid var(--grey-100); border-bottom: 1px solid var(--grey-100);
}
.project-stats div { font-size: 0.8rem; color: var(--text-light); }
.project-stats strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 0.95rem; }

.card-link { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--gold-dark); margin-top: auto; }
.card-link:hover { color: var(--navy); }
.card-link::after { content: " →"; }

/* Filter tabs */
.filter-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.filter-tab {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--grey-100);
  background: var(--white);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-tab:hover { border-color: var(--gold); color: var(--navy); }
.filter-tab.active { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }

/* --------------------------------------------------------------------------
   Spec tables (project details)
   -------------------------------------------------------------------------- */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.spec-table th, .spec-table td { text-align: left; padding: 0.75rem 1rem; border-bottom: 1px solid var(--grey-100); vertical-align: top; }
.spec-table th { font-family: var(--font-head); color: var(--navy); white-space: nowrap; width: 220px; font-weight: 700; }
.spec-table td { color: var(--text-light); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

.project-detail {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 2.4rem;
  margin-bottom: 2.5rem;
}
.project-detail .project-no {
  font-family: var(--font-head); font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.24em; color: var(--gold-dark); text-transform: uppercase;
}
.project-detail h3 { font-size: 1.45rem; margin: 0.4rem 0 1.2rem; }
.project-detail .desc { color: var(--text-light); margin-top: 1.4rem; }

.roi-highlight {
  display: inline-block;
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-weight: 800;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.9rem;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Timeline
   -------------------------------------------------------------------------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(var(--gold), rgba(201,168,76,0.15));
  transform: translateX(-50%);
}
.tl-item { position: relative; width: 50%; padding: 0 2.6rem 2.8rem; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-item::before {
  content: ""; position: absolute; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--gold);
}
.tl-item:nth-child(odd)::before { right: -7px; }
.tl-item:nth-child(even)::before { left: -7px; }
.tl-item .tl-date { font-family: var(--font-head); font-weight: 800; color: var(--gold-dark); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
.tl-item h3 { font-size: 1.1rem; margin: 0.3rem 0 0.5rem; }
.tl-item p { font-size: 0.92rem; color: var(--text-light); }

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; counter-reset: step; }
.step { text-align: center; padding: 0 0.4rem; position: relative; }
.step-num {
  counter-increment: step;
  width: 58px; height: 58px; margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(201,168,76,0.35);
}
.step-num::before { content: counter(step); }
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--text-light); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 29px; left: calc(50% + 40px); right: calc(-50% + 40px);
  height: 2px; background: repeating-linear-gradient(90deg, rgba(201,168,76,0.5) 0 6px, transparent 6px 12px);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(ellipse 60% 100% at 80% 0%, rgba(201,168,76,0.18), transparent 60%),
    linear-gradient(140deg, var(--navy-deep), var(--navy) 70%);
  text-align: center;
  color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 720px; margin: 0 auto 2.2rem; }
.cta-band .btn-group { justify-content: center; }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.team-card { text-align: center; }
.avatar {
  width: 110px; height: 110px; margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  border: 3px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--gold);
}
.team-card .role { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.7rem; }
.team-card h3 { margin-bottom: 0.2rem; font-size: 1.1rem; }
.team-card p { font-size: 0.88rem; }

/* --------------------------------------------------------------------------
   Values list
   -------------------------------------------------------------------------- */
.value-list { display: grid; gap: 1rem; }
.value-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--grey-100); border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm); padding: 1.2rem 1.4rem;
}
.value-item strong { font-family: var(--font-head); color: var(--navy); }
.value-item p { font-size: 0.93rem; color: var(--text-light); }

/* --------------------------------------------------------------------------
   Capital structure bars
   -------------------------------------------------------------------------- */
.capital-bar { display: flex; height: 46px; border-radius: var(--radius); overflow: hidden; margin: 2rem 0 1.4rem; box-shadow: var(--shadow); }
.capital-bar div { display: grid; place-items: center; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; }
.cb-1 { background: #2c6f78; }
.cb-2 { background: #3fa0b5; }
.cb-3 { background: #6b4d9e; }
.cb-4 { background: var(--gold-dark); }

.capital-legend { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem 2rem; }
.capital-legend li { display: flex; gap: 0.8rem; align-items: baseline; font-size: 0.93rem; color: var(--text-light); }
.capital-legend .dot { width: 12px; height: 12px; border-radius: 3px; flex: 0 0 12px; transform: translateY(1px); }
.capital-legend strong { color: var(--navy); font-family: var(--font-head); }

/* --------------------------------------------------------------------------
   Pathways (investors)
   -------------------------------------------------------------------------- */
.pathway { position: relative; display: flex; flex-direction: column; }
.pathway.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-lg); }
.pathway .flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-family: var(--font-head); font-weight: 800; font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 100px; white-space: nowrap;
}
.pathway .pathway-no { font-family: var(--font-head); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem; }
.pathway ul { margin: 1.1rem 0 1.4rem; display: grid; gap: 0.65rem; }
.pathway ul li { font-size: 0.9rem; color: var(--text-light); padding-left: 1.5rem; position: relative; }
.pathway ul li::before { content: "◆"; color: var(--gold); position: absolute; left: 0; font-size: 0.7rem; top: 0.25rem; }
.pathway ul li strong { color: var(--navy); }
.pathway .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   Reasons (why invest)
   -------------------------------------------------------------------------- */
.reason-row {
  display: flex; gap: 1.6rem; align-items: flex-start;
  padding: 1.7rem 0; border-bottom: 1px solid var(--grey-100);
}
.reason-row:last-child { border-bottom: none; }
.reason-num {
  flex: 0 0 52px; width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--gold); color: var(--gold-dark);
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  display: grid; place-items: center;
}
.reason-row h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.reason-row p { color: var(--text-light); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Partners
   -------------------------------------------------------------------------- */
.partner-logo {
  height: 86px; border-radius: var(--radius-sm);
  background: var(--off-white); border: 1px dashed rgba(201,168,76,0.5);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.05rem;
  margin-bottom: 1.2rem; text-align: center; padding: 0 1rem;
}

/* --------------------------------------------------------------------------
   News / blog cards
   -------------------------------------------------------------------------- */
.article-card .ph { height: 170px; font-size: 1.6rem; }
.article-card .date { font-size: 0.78rem; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; font-family: var(--font-head); }
.article-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
.article-featured .ph { height: 100%; min-height: 260px; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: start; }

.form-card { background: var(--white); border: 1px solid var(--grey-100); border-top: 4px solid var(--gold); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 2.2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 600; font-size: 0.83rem; color: var(--navy); }
.form-field label .req { color: var(--gold-dark); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  padding: 0.75rem 0.9rem;
  border: 1px solid #D8DEE9; border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}
.form-note { font-size: 0.8rem; color: var(--grey-400); margin-top: 1rem; }
.form-success {
  display: none;
  background: rgba(28,138,88,0.1); border: 1px solid rgba(28,138,88,0.35); color: #14683f;
  padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-top: 1.2rem; font-size: 0.92rem;
}
.form-success.show { display: block; }

.contact-info-card { background: var(--navy); color: var(--white); border-radius: var(--radius-sm); padding: 2.2rem; }
.contact-info-card h3 { color: var(--white); margin-bottom: 1.4rem; }
.contact-line { display: flex; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.09); font-size: 0.92rem; }
.contact-line:last-child { border-bottom: none; }
.contact-line .ci { color: var(--gold); flex: 0 0 22px; }
.contact-line .label { display: block; font-family: var(--font-head); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.15rem; }
.contact-line a { color: rgba(255,255,255,0.88); }
.contact-line a:hover { color: var(--gold-light); }

.map-ph {
  margin-top: 1.6rem; height: 200px; border-radius: var(--radius-sm);
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  display: grid; place-items: center;
  color: rgba(255,255,255,0.55); font-size: 0.85rem; text-align: center;
}

.socials { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  display: grid; place-items: center; color: var(--gold-light);
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  transition: all 0.2s;
}
.socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 4.5rem 0 0; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-grid h4 {
  color: var(--gold); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-grid ul { display: grid; gap: 0.55rem; }
.footer-grid a { color: rgba(255,255,255,0.72); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand p { margin-top: 1rem; font-size: 0.88rem; }
.footer-reg { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.8rem; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 1.4rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 1.4rem 0 1.6rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--gold); color: var(--navy); padding: 0.7rem 1.2rem; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 2.4rem; }
  .step:nth-child(3n)::after { display: none; }
}

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column; align-items: flex-start;
    padding: 1.6rem 6%; gap: 1.1rem;
    transform: translateY(-130%);
    transition: transform 0.32s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { font-size: 1rem; }
  .nav-cta { margin-left: 0; }
  .site-header { background: var(--navy); }
}

@media (max-width: 900px) {
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-featured { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .step::after { display: none !important; }

  .timeline::before { left: 8px; }
  .tl-item, .tl-item:nth-child(odd), .tl-item:nth-child(even) { width: 100%; left: 0; text-align: left; padding: 0 0 2.4rem 2.4rem; }
  .tl-item:nth-child(odd)::before, .tl-item:nth-child(even)::before { left: 1px; right: auto; }

  .project-detail { padding: 1.6rem 1.3rem; }
  .spec-table th { width: 140px; white-space: normal; }
  .capital-legend { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .capital-bar { flex-direction: column; height: auto; }
  .capital-bar div { padding: 0.7rem; }
  .btn { width: 100%; }
  .btn-group { flex-direction: column; }
}
