/* style.css */
:root{
  --bg: #0b0d10;
  --bg2:#11151b;
  --card:#0f1318;
  --text:#e9edf3;
  --muted:#aab3c2;
  --line: rgba(255,255,255,.10);
  --gold:#d4af37;
  --gold2:#f1d36c;
  --white:#ffffff;
  --shadow: 0 22px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1140px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family:var(--font); color:var(--text); background: #07080a; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.muted{ color:var(--muted); }
.small{ font-size:.88rem; }
.dot{ opacity:.65; margin:0 10px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid var(--line);
  font-weight:600;
  letter-spacing:.2px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }
.btn--gold{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#1a1a1a;
  border-color: transparent;
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.btn--soft{
  background: rgba(212,175,55,.10);
  border-color: rgba(212,175,55,.30);
}
.btn--full{ width:100%; }

.topbar{
  background: rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:.9rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.topbar__left{ display:flex; align-items:center; flex-wrap:wrap; gap:8px; }
.topbar__right{ display:flex; gap:10px; }
.topbar__right a{
  width:30px; height:30px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background: rgba(0,0,0,.12);
  font-weight:800;
  opacity:.9;
}
.topbar__right a:hover{ border-color: rgba(212,175,55,.6); }

.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,8,10,.65);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo{
  width:100%; height:100px; 
  object-fit:contain;
  padding:6px;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{ font-weight:900; letter-spacing:.3px; }
.brand__sub{ opacity:.9; font-weight:700; color:var(--muted); font-size:.92rem; }

.nav{ display:flex; gap:18px; align-items:center; }
.nav a{
  font-weight:600;
  color: rgba(233,237,243,.92);
  opacity:.92;
  padding:10px 6px;
  border-bottom:2px solid transparent;
}
.nav a:hover{ border-bottom-color: rgba(212,175,55,.6); }

.nav__toggle{
  display:none;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding:10px 12px;
  font-weight:800;
}

.navdrawer{
  display:none;
  flex-direction:column;
  padding:14px 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.navdrawer a{
  padding:12px 0;
  font-weight:700;
  color: rgba(233,237,243,.92);
}

body.nav-open .navdrawer{ display:flex; }

.hero{
  position:relative;
  min-height: 76vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,8,10,.92) 0%, rgba(7,8,10,.75) 45%, rgba(7,8,10,.35) 100%),
    url("/img/bg_gold.webp") center/cover no-repeat;
  filter:saturate(1.05) contrast(1.05);
}
.hero__inner{ position:relative; padding:68px 0; }
.hero__content{ width:min(650px, 100%); }
.hero__eyebrow{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(212,175,55,.12);
  border:1px solid rgba(212,175,55,.26);
  color: var(--gold2);
  font-weight:700;
  font-size:.92rem;
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height:1.05;
  letter-spacing:-.6px;
}
.hero__lead{
  margin:0 0 18px;
  color: rgba(233,237,243,.86);
  font-size: 1.05rem;
  line-height:1.7;
}
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:22px; }
.hero__quicklinks{ display:flex; gap:10px; flex-wrap:wrap; }

.pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-weight:600;
  color: rgba(233,237,243,.92);
}
.pill__dot{
  width:10px; height:10px;
  border-radius:999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.18);
}

.strip{
  background: rgba(255,255,255,.03);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.strip__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
  flex-wrap:wrap;
}
.strip__logos{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.logo-chip{
  padding:10px 12px;
  border:1px dashed rgba(255,255,255,.18);
  border-radius:999px;
  color: rgba(233,237,243,.7);
  background: rgba(0,0,0,.12);
  font-weight:700;
  font-size:.9rem;
}

.section{ padding:72px 0; }
.section--muted{ background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00)); }
.section__kicker{
  margin:0 0 10px;
  color: var(--gold2);
  font-weight:800;
  letter-spacing:.35px;
  text-transform:uppercase;
  font-size:.82rem;
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
h2{
  margin:0 0 10px;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  line-height:1.15;
  letter-spacing:-.4px;
}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding:26px;
  box-shadow: var(--shadow);
}
.grid-2{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:22px;
  align-items:stretch;
}
.media{
  position:relative;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.media img{ width:100%; height:100%; min-height: 420px; object-fit:cover; }
.badge{
  position:absolute;
  bottom:18px;
  left:18px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 14px;
  border-radius: 16px;
  background: rgba(7,8,10,.82);
  border:1px solid rgba(255,255,255,.12);
  max-width: calc(100% - 36px);
}
.badge__icon{
  width:36px; height:36px;
  border-radius: 12px;
  background: rgba(212,175,55,.18);
  display:grid; place-items:center;
}

.checklist{ margin:16px 0 0; padding:0; list-style:none; display:grid; gap:10px; }
.checklist li{
  position:relative;
  padding-left:28px;
  color: rgba(233,237,243,.88);
  line-height:1.55;
}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:20px; height:20px;
  display:grid; place-items:center;
  border-radius:999px;
  background: rgba(212,175,55,.18);
  color: var(--gold2);
  font-weight:900;
  border:1px solid rgba(212,175,55,.35);
}
.about__actions{ margin-top:18px; display:flex; gap:12px; flex-wrap:wrap; }

.world{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:center;
}
.world__map{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.world__map img{ width:100%; height: 360px; object-fit:cover; }
.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin:18px 0 14px;
}
.stat{
  padding:16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.stat__num{ font-size:1.6rem; font-weight:900; letter-spacing:-.4px; color: var(--gold2); }
.stat__label{ margin-top:6px; font-weight:600; color: rgba(233,237,243,.78); font-size:.92rem; line-height:1.35; }

.chips{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  padding:10px 12px;
  border-radius:999px;
  border: 1px solid rgba(212,175,55,.26);
  background: rgba(212,175,55,.10);
  color: rgba(233,237,243,.92);
  font-weight:700;
  font-size:.92rem;
}

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top: 18px;
}
.service, .person{
  padding:22px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.service h3, .person h3{ margin:0 0 8px; font-size:1.1rem; letter-spacing:-.2px; }

.banner{
  position:relative;
  padding: 0;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.banner__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,8,10,.90) 0%, rgba(7,8,10,.70) 55%, rgba(7,8,10,.40) 100%),
    url("assets/plant-kano.jpg") center/cover no-repeat;
}
.banner__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  padding:78px 0;
  align-items:start;
}
.banner__kicker{
  margin:0 0 10px;
  font-weight:900;
  color: var(--gold2);
  text-transform:uppercase;
  font-size:.82rem;
  letter-spacing:.35px;
}
.banner__text{ color: rgba(233,237,243,.86); line-height:1.7; margin:0 0 16px; }
.bullets{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding:20px;
  box-shadow: var(--shadow);
}
.bullets li strong{ display:block; margin-bottom:4px; }
.bullets li span{ display:block; }

.callout{
  margin-top:16px;
  padding:16px;
  border-radius: 18px;
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.28);
}

.list{ margin:14px 0 0; padding:0; list-style:none; display:grid; gap:10px; }
.list li{ display:flex; align-items:flex-start; gap:10px; line-height:1.5; color: rgba(233,237,243,.88); }
.bullet{
  width:10px; height:10px; border-radius:999px;
  margin-top:6px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.18);
}

.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.contact__cards{
  margin-top:16px;
  display:grid;
  gap:12px;
}
.mini{
  padding:16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.mini strong{ display:block; margin-bottom:6px; }

.contact__form{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding:22px;
  box-shadow: var(--shadow);
  display:grid;
  gap:12px;
}
label{ font-weight:700; display:grid; gap:8px; color: rgba(233,237,243,.90); }
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 0 0 4px rgba(212,175,55,.14);
}

.footer{
  background: rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
}
.footer__inner{
  padding:30px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:12px;
  max-width: 460px;
}
.footer__logo{
  width:60%; height:50%;
  display:grid; place-items:center;
}
.footer__cols{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}
.footer__cols strong{ display:block; margin-bottom:10px; }
.footer__cols a, .footer__cols span{
  display:block;
  color: rgba(233,237,243,.78);
  margin:8px 0;
  font-weight:600;
}
.footer__cols a:hover{ color: var(--gold2); }

.footer__bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:14px 0;
}
.footer__bottomInner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color: rgba(233,237,243,.72);
  font-weight:600;
}

/* Responsive */
@media (max-width: 980px){
  .grid-2, .world, .banner__inner, .contact{ grid-template-columns: 1fr; }
  .media img{ min-height: 320px; }
  .cards-3{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .nav__toggle{ display:inline-flex; }
}
