:root{
  --bg:#0b1510;
  --ink:#0f1110;
  --muted:#5b5f5c;
  --brand:#123a2a;
  --brand2:#0c2b1f;
  --card:#ffffff;
  --line:#e8e8e8;
  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --shadow2: 0 10px 24px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.55;
}
a{color:inherit}
.container{max-width:1140px;margin:0 auto;padding:0 20px}
.small{font-size:.95rem;color:var(--muted)}
.kicker{
  font-weight:900; text-transform:uppercase; letter-spacing:.09em;
  color:#2f7a58; font-size:.78rem; margin:0 0 10px;
}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; gap:18px;
}
.brand a{display:flex; align-items:center; gap:14px; text-decoration:none}
.brand img{height:92px;width:auto;display:block}
.nav{display:flex; gap:14px; align-items:center; font-weight:800}
.nav a{
  text-decoration:none; padding:10px 12px; border-radius:12px;
}
.nav a:hover{background:#f2f4f3}
.nav a[aria-current="page"]{background:#eaf2ee}

.hero{
  position:relative;
  color:#fff;
  padding:72px 0 56px;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(90deg, rgba(18,58,42,.94), rgba(12,43,31,.70)),
    url('/images/photos/country-sunrise.jpg') center/cover no-repeat;
}
.hero-grid{
  display:grid; gap:28px; align-items:center;
  grid-template-columns: 1.1fr .9fr;
}
.hero h1{
  margin:0 0 12px;
  font-size:clamp(32px,4.2vw,54px);
  line-height:1.05;
  letter-spacing:-0.02em;
}
.hero p{margin:0 0 18px; max-width:720px; font-size:1.1rem; color:rgba(255,255,255,.92)}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  font-weight:900; text-decoration:none;
  border:2px solid rgba(255,255,255,.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  user-select:none;
}
.btn.primary{background:#fff;color:#0d2218;border-color:#fff}
.btn.secondary{background:transparent;color:#fff}
.btn:hover{transform: translateY(-2px); box-shadow: var(--shadow2)}
.badges{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;
}
.pill{
  display:inline-flex; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.12);
  font-weight:800;
  color:rgba(255,255,255,.92);
  font-size:.92rem;
}
.hero-card{
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  box-shadow: var(--shadow);
}
.hero-card img{width:100%; height:auto; display:block}
.hero-quote{
  padding:14px 16px;
  font-weight:800;
  color:rgba(255,255,255,.92);
  border-top:1px solid rgba(255,255,255,.12);
}

.scroll-cue{
  margin-top:18px;
  display:inline-flex; align-items:center; gap:10px;
  color:rgba(255,255,255,.88); font-weight:800;
}
.scroll-dot{
  width:10px;height:10px;border-radius:999px;background:#fff;
  animation: pulse 1.35s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(.9); opacity:.65}
  50%{transform:scale(1.25); opacity:1}
}

.section{padding:60px 0;border-bottom:1px solid var(--line)}
.section h2{margin:0 0 12px;font-size:2rem; letter-spacing:-.01em}
.section p{margin:0 0 14px;color:var(--muted)}

.grid{display:grid; gap:16px}
.grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{transform: translateY(-4px); box-shadow: var(--shadow2); border-color:#d9e3dd}
.card-body{padding:18px}
.card h3{margin:0 0 8px}
.card-media img{width:100%; height:210px; object-fit:cover; display:block}
.list{margin:0; padding-left:18px; color:var(--muted)}

.process{
  display:grid; gap:18px;
  grid-template-columns: .9fr 1.1fr;
  align-items:stretch;
}
.process .figure{
  border-radius:18px; overflow:hidden; border:1px solid var(--line);
}
.process .figure img{width:100%; height:100%; object-fit:cover; display:block}
.timeline{
  display:grid; gap:12px;
}
.step{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  background:#fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.step:hover{transform: translateY(-3px); box-shadow: var(--shadow2)}
.step b{display:block; margin-bottom:4px}
.step span{color:var(--muted)}

.split{
  display:grid; gap:22px; align-items:center;
  grid-template-columns: 1.05fr .95fr;
}
.figure{
  border-radius:18px; overflow:hidden; border:1px solid var(--line);
}
.figure img{width:100%; height:auto; display:block}

.cred-strip{display:flex; gap:16px; align-items:center; flex-wrap:wrap}
.cred-strip img{height:90px;width:auto;display:block}
.affil{
  display:flex; gap:14px; align-items:center; flex-wrap:wrap;
}
.affil img{height:70px;width:auto;display:block; opacity:.95}

.footer{
  background:#f6f6f6;
  padding:34px 0;
}
.footer .cols{
  display:grid; gap:18px;
  grid-template-columns: 1.2fr .9fr .9fr;
}
.footer a{text-decoration:none}
.footer a:hover{text-decoration:underline}

.form{display:grid; gap:12px; max-width:740px}
label{font-weight:900}
input,textarea,select{
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  font:inherit;
}
textarea{min-height:150px}
button{cursor:pointer}

.reveal{opacity:0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease}
.reveal.show{opacity:1; transform:none}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-2{grid-template-columns:1fr}
  .process{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .footer .cols{grid-template-columns:1fr}
  .brand img{height:74px}
  .cred-strip img{height:78px}
}

/* Image gallery strip */
.gallery{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top:18px;
}
.gallery .shot{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.gallery .shot:hover{transform: translateY(-4px); box-shadow: var(--shadow2);}
.gallery img{width:100%; height:220px; object-fit:cover; display:block;}
.gallery .cap{padding:12px 14px; font-weight:900; font-size:.98rem;}
@media (max-width: 980px){
  .gallery{grid-template-columns:1fr;}
  .gallery img{height:240px;}
}

/* Founder two-image layout */
.founder-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.founder-grid .figure img{
  height:100%;
  object-fit:cover;
}
@media (max-width: 980px){
  .founder-grid{
    grid-template-columns:1fr;
  }
}
