/* =====================================================================
   Bismillah Holdings Limited — Corporate Stylesheet
   ===================================================================== */
:root {
  --green-900: #0b3d2e;
  --green-800: #10553f;
  --green-700: #15704f;
  --green-600: #1c8a63;
  --green-500: #22a06b;
  --gold-600: #b8860b;
  --gold-500: #d4a017;
  --gold-400: #e6b93c;
  --ink: #16211d;
  --slate: #5a6b64;
  --line: #e4ebe7;
  --bg: #ffffff;
  --bg-soft: #f4f8f6;
  --bg-dark: #08271d;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(11, 61, 46, 0.06);
  --shadow: 0 12px 40px rgba(11, 61, 46, 0.12);
  --shadow-lg: 0 24px 70px rgba(11, 61, 46, 0.18);
  --maxw: 1200px;
  --header-h: 76px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.18; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.serif { font-family: var(--serif); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-600);
  background: var(--bg-soft); padding: 7px 14px; border-radius: 100px;
  border: 1px solid var(--line);
}
.eyebrow.on-dark { color: var(--gold-400); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.lead { font-size: 1.12rem; color: var(--slate); max-width: 720px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.text-gradient {
  background: linear-gradient(100deg, var(--green-600), var(--gold-500));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.98rem; padding: 14px 26px;
  border-radius: 100px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(100deg, var(--green-600), var(--green-800)); color: #fff; box-shadow: 0 10px 26px rgba(28,138,99,0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(28,138,99,0.45); }
.btn-gold { background: linear-gradient(100deg, var(--gold-500), var(--gold-600)); color: #2a1f00; box-shadow: 0 10px 26px rgba(212,160,23,0.35); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(212,160,23,0.45); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--green-600); color: var(--green-700); transform: translateY(-3px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s;
}
.site-header.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; padding: 0; border-radius: 0; transition: none; }
.brand-logo { height: 46px; width: auto; display: block; }
.site-header:not(.scrolled) .on-hero .brand-logo { filter: brightness(0) invert(1); }
.brand-logo-wrap { display: inline-block; margin-bottom: 18px; }
.footer-brand .brand-logo { height: 44px; filter: brightness(0) invert(1); }
@media (max-width: 520px) { .brand-logo { height: 38px; } }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: #fff; font-family: var(--serif);
  font-weight: 700; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-900));
  box-shadow: 0 6px 18px rgba(11,61,46,0.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text b { font-size: 1.02rem; letter-spacing: -0.01em; color: var(--ink); }
.brand-text span { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; }
.site-header:not(.scrolled) .on-hero .brand-text b { color: #fff; }
.site-header:not(.scrolled) .on-hero .brand-text span { color: var(--gold-400); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > .btn { display: none; }
.nav a {
  position: relative; padding: 9px 14px; border-radius: 100px; font-weight: 500;
  font-size: 0.95rem; color: var(--ink); transition: color .2s, background .2s;
}
.nav a:hover { color: var(--green-700); background: var(--bg-soft); }
.nav a.active { color: var(--green-700); font-weight: 600; }
.nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500)); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 12px; }
.site-header:not(.scrolled) .on-hero .nav a { color: rgba(255,255,255,0.9); }
.site-header:not(.scrolled) .on-hero .nav a:hover,
.site-header:not(.scrolled) .on-hero .nav a.active { color: #fff; background: rgba(255,255,255,0.12); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }
.site-header:not(.scrolled) .on-hero .nav-toggle { color: #fff; }

/* Nav dropdown (Projects) */
.nav-drop { position: relative; display: inline-flex; align-items: center; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-drop .chev { display: inline-flex; transition: transform .25s; }
.nav-drop .chev svg { width: 14px; height: 14px; }
.nav-drop:hover .chev { transform: rotate(180deg); }
.drop {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(12px);
  width: min(720px, 92vw); background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 18px; opacity: 0; visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s; z-index: 1200;
}
.nav-drop::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }
.nav-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(8px); }
.drop a { padding: 0; border-radius: 14px; }
.drop a:hover { background: transparent; }
.drop-hd { display: flex; justify-content: space-between; align-items: center; padding: 2px 6px 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.drop-hd > span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-600); }
.drop-hd a { font-size: 0.82rem; color: var(--green-700); font-weight: 600; }
.drop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.drop-card { display: flex; flex-direction: column; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.drop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.dc-thumb { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.dc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.drop-card:hover .dc-thumb img { transform: scale(1.07); }
.dc-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 3px; }
.dc-tag { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-600); }
.dc-name { font-weight: 700; color: var(--ink); font-size: 0.92rem; line-height: 1.2; }
.dc-loc { font-size: 0.78rem; color: var(--slate); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; padding-top: var(--header-h); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(6,32,23,0.92) 0%, rgba(8,39,29,0.78) 45%, rgba(11,61,46,0.45) 100%);
}
.hero-inner { max-width: 760px; padding: 60px 0; }
.hero h1 { color: #fff; margin: 18px 0 20px; }
.hero h1 .text-gradient { background: linear-gradient(100deg, #7ee0b0, var(--gold-400)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.18rem; color: rgba(255,255,255,0.86); max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.hero-badges span {
  font-size: 0.82rem; font-weight: 500; padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(6px);
}
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue .dot { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px; position: relative; }
.scroll-cue .dot::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #fff; border-radius: 4px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  position: relative; padding: calc(var(--header-h) + 70px) 0 70px; color: #fff; overflow: hidden;
}
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(6,32,23,0.94), rgba(11,61,46,0.7)); }
.page-banner h1 { color: #fff; }
.page-banner p { color: rgba(255,255,255,0.85); max-width: 640px; margin-top: 14px; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- Stats ---------- */
.stats-band { background: var(--bg-dark); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 20px; }
.stat .num { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; font-family: var(--serif); background: linear-gradient(100deg, #7ee0b0, var(--gold-400)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .lbl { font-size: 0.92rem; color: rgba(255,255,255,0.72); margin-top: 6px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-media img { transform: scale(1.08); }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body p { color: var(--slate); font-size: 0.95rem; }

/* icon chip */
.icon-chip {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-900)); color: #fff; flex: none;
  box-shadow: 0 8px 20px rgba(28,138,99,0.3);
}
.icon-chip svg { width: 26px; height: 26px; }
.icon-chip.gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); box-shadow: 0 8px 20px rgba(212,160,23,0.3); }

/* Sector card */
.sector-card .card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,32,23,0.75), rgba(6,32,23,0) 55%);
}
.sector-card .sector-tag {
  position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff;
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem;
}
.sector-card .sector-tag .icon-chip { width: 40px; height: 40px; border-radius: 10px; }
.sector-card .sector-tag .icon-chip svg { width: 20px; height: 20px; }
.sector-card .tagline { font-weight: 600; color: var(--green-700); font-size: 0.9rem; margin-bottom: 8px; }
.card-link { margin-top: auto; padding-top: 16px; font-weight: 600; color: var(--green-700); display: inline-flex; align-items: center; gap: 8px; }
.card-link svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .card-link svg { transform: translateX(5px); }

/* feature (why) card */
.feature { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature h3 { margin: 18px 0 10px; }
.feature p { color: var(--slate); font-size: 0.95rem; }

/* split / alternating content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.bg-soft { background: var(--bg-soft); }

/* check list */
.check-list li { display: flex; gap: 12px; margin-bottom: 14px; color: var(--slate); }
.check-list li svg { width: 22px; height: 22px; color: var(--green-600); flex: none; margin-top: 2px; }
.check-list li b { color: var(--ink); }

/* PNG sector cards */
.png-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; box-shadow: var(--shadow-sm); }
.png-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.png-card:hover img { transform: scale(1.08); }
.png-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,32,23,0.92), rgba(6,32,23,0.1)); }
.png-card .png-body { position: relative; z-index: 2; padding: 26px; color: #fff; }
.png-card .png-body h3 { color: #fff; margin-bottom: 8px; }
.png-card .png-body p { color: rgba(255,255,255,0.85); font-size: 0.92rem; }

/* ---------- Flagship projects ---------- */
.flagship-section {
  position: relative;
  background:
    radial-gradient(1200px 480px at 50% -10%, rgba(212,160,23,0.10), transparent 60%),
    linear-gradient(180deg, #fbfdfc, var(--bg-soft));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.flagship-section .eyebrow.gold { color: var(--gold-600); background: rgba(212,160,23,0.10); border-color: rgba(212,160,23,0.25); }
.flagship-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.flagship-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
}
.flagship-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
}
.flagship-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }

.flagship-media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--bg-soft); }
.flagship-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.flagship-card:hover .flagship-media img { transform: scale(1.09); }
.flagship-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,32,23,0.78), rgba(6,32,23,0) 58%);
}
.flagship-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #2a1f00; background: linear-gradient(100deg, var(--gold-400), var(--gold-600));
  padding: 6px 12px; border-radius: 100px; box-shadow: 0 6px 16px rgba(212,160,23,0.4);
}
.flagship-badge svg { width: 14px; height: 14px; fill: #2a1f00; stroke: #2a1f00; }
.flagship-cat {
  position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff;
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.95rem;
}
.flagship-cat .icon-chip { width: 40px; height: 40px; border-radius: 10px; }
.flagship-cat .icon-chip svg { width: 20px; height: 20px; }

.flagship-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.flagship-loc { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 600; color: var(--gold-600); margin-bottom: 8px; }
.flagship-loc svg { width: 15px; height: 15px; }
.flagship-body h3 { font-size: 1.28rem; line-height: 1.2; margin-bottom: 8px; }
.flagship-tag { font-family: var(--serif); font-size: 1.02rem; color: var(--green-700); font-weight: 600; margin-bottom: 12px; }
.flagship-desc { color: var(--slate); font-size: 0.94rem; }
.flagship-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line);
}
.flagship-stats div { text-align: center; }
.flagship-stats b { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 800; color: var(--green-800); line-height: 1.1; }
.flagship-stats span { display: block; font-size: 0.68rem; color: var(--slate); margin-top: 5px; line-height: 1.25; }

@media (max-width: 900px) { .flagship-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.flagship-btn { margin-top: 20px; align-self: flex-start; }

/* ---------- Flagship project detail ---------- */
.media-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 26px 18px 12px; color: #fff; font-size: 0.82rem; font-weight: 500;
  background: linear-gradient(to top, rgba(6,32,23,0.85), transparent);
}
#project-detail .split-media img { aspect-ratio: auto; object-fit: contain; }

/* Map embed */
.map-wrap {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); background: var(--bg-soft);
}
.map-wrap iframe { display: block; width: 100%; height: 440px; border: 0; }
.map-caption { text-align: center; color: var(--slate); font-size: 0.9rem; margin-top: 16px; }
.map-caption a { color: var(--green-700); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.map-caption a svg { width: 15px; height: 15px; }

/* Steps / zones grid */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card {
  position: relative; padding: 26px 24px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold-500);
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-tag {
  display: inline-flex; align-items: center; font-family: var(--serif); font-weight: 800;
  font-size: 0.95rem; color: var(--green-700); background: var(--bg-soft);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.step-card h4 { font-size: 1.08rem; margin-bottom: 8px; }
.step-card p { color: var(--slate); font-size: 0.92rem; }

/* Feature big figure + fine note */
.feature-big { font-family: var(--serif); font-size: 1.5rem; font-weight: 800; color: var(--gold-600); margin-bottom: 10px; }
.fine-note { margin-top: 26px; font-size: 0.82rem; color: var(--slate); font-style: italic; max-width: 820px; }

/* Percentage bars */
.bars { max-width: 820px; display: flex; flex-direction: column; gap: 16px; }
.bar-row { display: grid; grid-template-columns: 190px 1fr 56px; align-items: center; gap: 16px; }
.bar-label { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.bar-track { height: 12px; border-radius: 100px; background: var(--bg-soft); border: 1px solid var(--line); overflow: hidden; }
.bar-fill { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--green-600), var(--gold-500)); }
.bar-val { text-align: right; font-weight: 700; color: var(--green-700); font-size: 0.9rem; }

/* Timeline / roadmap */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.tl-item {
  position: relative; padding: 26px 20px 22px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.tl-item.done { border-color: var(--green-500); box-shadow: 0 10px 30px rgba(34,160,107,0.16); }
.tl-dot {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-family: var(--serif); color: #fff;
  background: linear-gradient(135deg, var(--green-600), var(--green-900)); margin-bottom: 14px;
}
.tl-item.done .tl-dot { background: linear-gradient(135deg, var(--green-500), var(--green-700)); }
.tl-dot svg { width: 20px; height: 20px; }
.tl-stage { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-600); }
.tl-item h4 { font-size: 1.02rem; margin: 6px 0 8px; }
.tl-item p { color: var(--slate); font-size: 0.88rem; margin-bottom: 12px; }
.tl-when { font-size: 0.8rem; font-weight: 600; color: var(--green-700); }

/* Stakeholder columns */
.col-card .check-list li { font-size: 0.92rem; }

/* Document chips */
.doc-list { display: flex; flex-direction: column; gap: 12px; }
.doc-chip {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-sm); font-weight: 600; color: var(--ink); font-size: 0.94rem;
}
.doc-chip svg { width: 20px; height: 20px; color: var(--gold-600); flex: none; }

/* Project CTA strip */
.project-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding: clamp(30px, 4vw, 48px); border-radius: var(--radius);
  background: linear-gradient(120deg, var(--green-800), var(--green-900)); color: #fff;
  box-shadow: var(--shadow-lg);
}
.project-cta h2 { color: #fff; margin-bottom: 10px; }
.project-cta p { color: rgba(255,255,255,0.85); max-width: 620px; }

/* Metric band (project at-a-glance) */
.metric-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.metric-box { background: #fff; padding: 26px 18px; text-align: center; }
.metric-box .mv { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--green-800); line-height: 1.1; }
.metric-box .ml { font-size: 0.78rem; color: var(--slate); margin-top: 8px; }

/* Emoji cards (threats / marketplace) */
.emoji-card { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold-500); transition: transform .3s, box-shadow .3s; }
.emoji-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.emoji-ico { font-size: 2rem; line-height: 1; display: block; margin-bottom: 14px; }
.emoji-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.emoji-card p { color: var(--slate); font-size: 0.92rem; }

/* ROI scenario cards */
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.scenario-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.scenario-card.featured { border-color: var(--green-600); box-shadow: var(--shadow); transform: translateY(-6px); }
.scenario-card.featured:hover, .scenario-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.scenario-flag { position: absolute; top: 14px; right: 14px; z-index: 2; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #2a1f00; background: linear-gradient(100deg, var(--gold-400), var(--gold-600)); padding: 5px 11px; border-radius: 100px; }
.scenario-head { padding: 26px 24px 22px; color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-900)); }
.scenario-card.featured .scenario-head { background: linear-gradient(135deg, var(--green-600), var(--green-800)); }
.scenario-head h4 { color: #fff; font-size: 1.15rem; }
.scenario-price { font-family: var(--serif); font-size: 1.9rem; font-weight: 800; color: var(--gold-400); margin: 6px 0 4px; }
.scenario-sub { font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.scenario-rows { padding: 8px 24px 22px; }
.srow { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.srow:last-child { border-bottom: none; }
.srow span { color: var(--slate); }
.srow b { color: var(--ink); text-align: right; }

/* Data table (species / volume) */
.data-table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; box-shadow: var(--shadow-sm); }
.data-table { min-width: 460px; }
.data-table { width: 100%; border-collapse: collapse; background: #fff; }
.data-table th, .data-table td { padding: 14px 20px; text-align: left; font-size: 0.94rem; }
.data-table th { background: var(--bg-dark); color: #fff; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }
.data-table td.num, .data-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.data-table tbody tr { border-top: 1px solid var(--line); }
.data-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.data-table tbody td:first-child { font-weight: 600; color: var(--ink); }
.data-table tfoot td { border-top: 2px solid var(--green-600); font-weight: 800; color: var(--green-800); background: #fff; font-family: var(--serif); }

/* Featured video */
.video-wrap { max-width: 960px; margin: 0 auto; }
.video-player { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg-dark); }
.video-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; cursor: pointer; background-size: cover; background-position: center; display: grid; place-items: center; padding: 0; }
.video-facade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,61,46,0.35), rgba(8,39,29,0.35)); transition: background .3s; }
.video-facade:hover::after { background: linear-gradient(120deg, rgba(11,61,46,0.2), rgba(8,39,29,0.2)); }
.video-play { position: relative; z-index: 2; width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--green-600), var(--green-800)); box-shadow: 0 14px 40px rgba(0,0,0,0.4); transition: transform .3s; }
.video-facade:hover .video-play { transform: scale(1.08); }
.video-play svg { width: 38px; height: 38px; margin-left: 4px; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .metric-band { grid-template-columns: repeat(2, 1fr); }
  .scenario-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .scenario-card.featured { transform: none; }
  .emoji-card { padding: 22px; }
}
@media (max-width: 560px) {
  .steps-grid, .timeline { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 120px 1fr 48px; gap: 10px; }
  .bar-label { font-size: 0.82rem; }
  .map-wrap iframe { height: 320px; }
  .project-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- Sector detail ---------- */
.sector-hero-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.opps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.opp {
  display: grid; grid-template-columns: 150px 1fr; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.opp:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.opp img { width: 100%; height: 100%; object-fit: cover; min-height: 150px; }
.opp-body { padding: 18px 20px; }
.opp-body h4 { font-size: 1.05rem; margin-bottom: 8px; }
.opp-body p { color: var(--slate); font-size: 0.9rem; }
.clients-box { background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--gold-500); border-radius: var(--radius-sm); padding: 26px 30px; }
.clients-box h4 { color: var(--green-800); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.clients-box h4 svg { width: 22px; height: 22px; color: var(--gold-600); }

/* sector side nav pills */
.sector-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.sector-pills a {
  font-size: 0.85rem; font-weight: 500; padding: 8px 16px; border-radius: 100px;
  background: #fff; border: 1px solid var(--line); color: var(--slate); transition: all .2s;
}
.sector-pills a:hover, .sector-pills a.active { background: var(--green-700); color: #fff; border-color: var(--green-700); }

/* ---------- Chairman ---------- */
.chairman { display: grid; grid-template-columns: 340px 1fr; gap: 50px; align-items: start; }
.chairman-photo { position: relative; }
.chairman-photo img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.chairman-photo .sig { margin-top: 18px; }
.chairman-photo .sig b { display: block; font-size: 1.1rem; color: var(--ink); }
.chairman-photo .sig span { color: var(--gold-600); font-size: 0.9rem; font-weight: 600; }
.chairman-quote { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.4; color: var(--green-800); position: relative; padding-left: 30px; margin-bottom: 26px; }
.chairman-quote::before { content: "\201C"; position: absolute; left: -6px; top: -18px; font-size: 5rem; color: var(--gold-400); font-family: var(--serif); line-height: 1; }
.chairman-body p { color: var(--slate); margin-bottom: 16px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(11,61,46,0.95), rgba(8,39,29,0.85)); }
.cta-band h2 { color: #fff; max-width: 720px; margin: 0 auto 18px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .info-item .icon-chip { width: 46px; height: 46px; border-radius: 12px; }
.contact-info .info-item h4 { font-size: 1.02rem; margin-bottom: 3px; }
.contact-info .info-item p { color: var(--slate); font-size: 0.95rem; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: var(--bg-soft); transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(34,160,107,0.12); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--slate); margin-top: 12px; }
.form-success { display: none; padding: 14px 16px; border-radius: var(--radius-sm); background: #e8f7ef; color: var(--green-800); border: 1px solid #bfe8d2; font-weight: 500; margin-bottom: 18px; }
.form-success.show { display: block; }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-top: 40px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.72); padding-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand-mark { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; margin-bottom: 20px; }
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col a { display: block; color: rgba(255,255,255,0.68); font-size: 0.92rem; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold-400); padding-left: 5px; }
.footer-contact li { display: flex; gap: 10px; font-size: 0.9rem; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green-500); flex: none; margin-top: 3px; }
.footer-contact a { display: inline; padding: 0; color: inherit; transition: color .2s; }
.footer-contact a:hover { color: var(--gold-400); padding-left: 0; }
.social { display: flex; gap: 10px; margin-top: 6px; }
.social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: #fff; transition: background .2s, transform .2s; }
.social a:hover { background: var(--green-600); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-700); color: #fff; display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow); border: none; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s; z-index: 900;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--green-800); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px; gap: 4px; box-shadow: var(--shadow); border-top: 1px solid var(--line);
    transform: translateY(-140%); transition: transform .35s ease; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: none; }
  .nav a { padding: 13px 16px; color: var(--ink) !important; }
  .nav a.active::after { display: none; }
  .nav a.active { background: var(--bg-soft) !important; }
  .nav > .btn { display: inline-flex; margin-top: 8px; justify-content: center; }
  .nav-drop { display: block; }
  .nav-drop > a { padding: 13px 16px; color: var(--ink) !important; justify-content: space-between; }
  .drop {
    position: static; transform: none; opacity: 1; visibility: visible; width: 100%;
    box-shadow: none; border: none; border-radius: 0; padding: 6px 6px 10px;
  }
  .nav-drop::after { display: none; }
  .drop-grid { grid-template-columns: 1fr; }
  .drop-card { flex-direction: row; align-items: center; }
  .dc-thumb { width: 92px; flex: none; aspect-ratio: 1/1; }
  .nav-toggle { display: block; }
  .header-cta .btn:not(.nav-toggle) { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .opps-grid { grid-template-columns: 1fr; }
  .chairman { grid-template-columns: 1fr; }
  .chairman-photo { max-width: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .grid-2 { grid-template-columns: 1fr; }
  .opp { grid-template-columns: 1fr; }
  .opp img { min-height: 180px; aspect-ratio: 16/9; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
