:root {
  --black: #050709;
  --ink: #111827;
  --muted: #5f6878;
  --white: #ffffff;
  --soft: #f5f7f6;
  --gold: #d9a928;
  --green: #28b73f;
  --blue: #0c5fba;
  --shadow: 0 24px 70px rgba(5, 7, 9, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; width: 240px; min-width: 240px; font-weight: 800; color: var(--black); }
.brand img { width: 240px; height: 160px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: clamp(12px, 1.7vw, 24px); font-size: 0.92rem; font-weight: 650; }
.nav-links a { color: #303848; transition: color 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  color: var(--white) !important;
  font-weight: 750;
  background: linear-gradient(135deg, var(--black), var(--blue) 48%, var(--green));
  box-shadow: 0 14px 32px rgba(40, 183, 63, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(12, 95, 186, 0.26); }
.btn.secondary { color: var(--ink) !important; background: var(--white); border: 1px solid rgba(17, 24, 39, 0.14); box-shadow: none; }
.btn.small { min-height: 40px; padding: 10px 16px; font-size: 0.9rem; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 6px; background: var(--black); }

.hero, .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 80px) clamp(42px, 7vw, 84px);
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 169, 40, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fbf7 55%, #eff8f1 100%);
}
.hero h1, .page-hero h1 { max-width: 820px; margin: 0; font-size: clamp(2.35rem, 5.4vw, 5.4rem); line-height: 0.98; color: var(--black); letter-spacing: 0; }
.hero p, .page-hero p { max-width: 680px; font-size: 1.12rem; color: var(--muted); }
.eyebrow { margin: 0 0 14px; color: var(--green) !important; font-size: 0.78rem !important; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-media img, .page-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.page-hero.compact { grid-template-columns: 1fr; padding-bottom: 34px; }

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 80px) clamp(42px, 6vw, 72px);
  background:
    radial-gradient(circle at 18% 28%, rgba(217, 169, 40, 0.14), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f5faf7 55%, #eaf7ee 100%);
}
.about-hero h1 { max-width: 850px; margin: 0; color: var(--black); font-size: clamp(2.3rem, 5vw, 5rem); line-height: 1; letter-spacing: 0; }
.about-hero p { max-width: 760px; color: var(--muted); font-size: 1.12rem; }
.about-hero-image {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(5, 7, 9, 0.9), rgba(40, 183, 63, 0.34));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 80px);
}
.about-intro p { color: var(--muted); }
.recognition-card {
  padding: 30px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.recognition-card img { width: 138px; height: 138px; object-fit: contain; margin-bottom: 18px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge-row span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.about-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.about-service-list article {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
}
.about-service-list article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--black), var(--green));
}
.about-service-list p { color: var(--muted); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.why-grid div {
  min-height: 96px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--black);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #f2fbf4);
  border: 1px solid rgba(40, 183, 63, 0.16);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 80px);
  background: var(--soft);
}
.vision-mission article {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.vision-mission p { color: var(--muted); }

.section, .split-section, .cta-band, .policy-content { padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 80px); }
.section.alt { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
h2 { margin: 0 0 14px; color: var(--black); font-size: clamp(1.75rem, 3vw, 3rem); line-height: 1.08; letter-spacing: 0; }
h3 { margin: 0 0 10px; color: var(--black); }
.grid { display: grid; gap: 22px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .service-card, .quote, .contact-panel {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}
.card, .quote { padding: 26px; }
.card { transition: transform 0.2s ease, border-color 0.2s ease; }
.card:hover { transform: translateY(-5px); border-color: rgba(40, 183, 63, 0.36); }

.split-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; align-items: start; }
.feature-list { display: grid; gap: 16px; }
.feature-list div { padding: 20px; border-left: 4px solid var(--green); background: #ffffff; box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07); }
.feature-list strong, .feature-list span { display: block; }
.feature-list span { color: var(--muted); }
.feature-list.wide { grid-template-columns: repeat(3, 1fr); }
.stats strong { display: block; color: var(--green); font-size: 3rem; line-height: 1; }

.portfolio-grid, .service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.project-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.3s ease; }
.project-card:hover img { transform: scale(1.04); }
.project-card h2, .project-card h3, .project-card p, .project-card a { margin-left: 22px; margin-right: 22px; }
.project-card h2, .project-card h3 { margin-top: 20px; font-size: 1.2rem; }
.project-card p { color: var(--muted); }
.project-card a { display: inline-block; margin-bottom: 22px; color: var(--green); font-weight: 800; }
.service-card { padding: 28px; }
.service-card ul { padding-left: 20px; color: var(--muted); }

.portfolio-live-intro .section-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.portfolio-live-intro .section-heading p:last-child {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
}
.live-projects-button {
  max-width: 100%;
  text-align: center;
  white-space: normal;
}
.portfolio-library {
  display: grid;
  gap: 24px;
}
.portfolio-list-card {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.portfolio-list-card:hover {
  transform: translateY(-5px);
  border-color: rgba(40, 183, 63, 0.36);
  box-shadow: var(--shadow);
}
.portfolio-list-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}
.portfolio-list-heading > span {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--black), var(--blue) 48%, var(--green));
  box-shadow: 0 12px 26px rgba(40, 183, 63, 0.22);
}
.portfolio-list-heading .eyebrow {
  margin-bottom: 8px;
}
.portfolio-list-heading h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.visual-link-grid,
.video-link-grid,
.publication-list.visual-publications {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.link-grid a,
.publication-list a,
.video-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(40, 183, 63, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.link-grid a:hover,
.publication-list a:hover,
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 183, 63, 0.38);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.1);
}
.visual-link-grid img,
.publication-list.visual-publications img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(180deg, #ffffff, #f2fbf4);
}
.video-link-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #07100b;
}
.publication-list.visual-publications {
  display: grid;
  gap: 14px;
}
.publication-list.visual-publications img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  padding: 16px;
}
.visual-link-grid span,
.video-link-grid span,
.publication-list.visual-publications strong,
.publication-list.visual-publications span {
  display: block;
  padding-left: 16px;
  padding-right: 16px;
}
.visual-link-grid span,
.video-link-grid span {
  padding-top: 14px;
  padding-bottom: 14px;
}
.publication-list.visual-publications strong {
  padding-top: 16px;
  color: var(--black);
}
.publication-list.visual-publications span {
  padding-bottom: 16px;
  color: var(--muted);
  font-weight: 650;
}
.poster-link-grid img {
  aspect-ratio: 2 / 3;
  object-fit: contain;
  padding: 10px;
}
.report-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.report-link-grid a {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 18px;
}
.report-preview {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 112px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #083d28 62%, var(--green));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
.report-preview strong {
  font-size: 1.45rem;
  letter-spacing: 0;
}
.report-preview em {
  margin-top: 6px;
  color: #c9f8d2;
  font-style: normal;
  font-weight: 900;
}

.quote { margin: 0; color: #303848; }
.quote cite { display: block; margin-top: 18px; color: var(--green); font-style: normal; font-weight: 800; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(40, 183, 63, 0.36);
}
.testimonial-card p {
  margin: 0 0 22px;
  color: #303848;
}
.testimonial-card strong,
.testimonial-card span {
  display: block;
}
.testimonial-card strong {
  color: var(--black);
  font-size: 1.02rem;
}
.testimonial-card span {
  margin-top: 4px;
  color: var(--green);
  font-weight: 800;
}
.testimonial-card em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 750;
}
.faq-list {
  display: grid;
  gap: 16px;
}
.faq-item {
  padding: 24px 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
}
.faq-item h2 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.28;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
}
.faq-item a {
  color: var(--green);
  font-weight: 800;
}
.cta-band { text-align: center; color: var(--white); background: linear-gradient(135deg, var(--black), #083d28 48%, var(--green)); }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.82); }

.contact-panel { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 28px; padding: 32px; }
.social-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.social-buttons a { padding: 14px; border-radius: var(--radius); background: var(--soft); font-weight: 800; text-align: center; }
.locations-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: 28px;
  align-items: stretch;
}
.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.location-list article {
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
}
.location-list strong,
.location-list span { display: block; }
.location-list strong { color: var(--green); font-size: 1.05rem; }
.location-list span { margin-top: 6px; color: var(--muted); font-size: 0.95rem; }
.service-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #edf7ff, #f3fff5);
  box-shadow: var(--shadow);
}
.service-map svg {
  width: 100%;
  height: 100%;
  min-height: 360px;
}
.service-map rect { fill: #eaf5ff; }
.service-map path {
  fill: rgba(40, 183, 63, 0.2);
  stroke: rgba(12, 95, 186, 0.32);
  stroke-width: 2;
}
.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 12px 28px rgba(12, 95, 186, 0.24);
}
.map-pin::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
}
.map-pin.canada { left: 18%; top: 21%; }
.map-pin.usa { left: 19%; top: 40%; }
.map-pin.uk { left: 45%; top: 25%; }
.map-pin.uae { left: 59%; top: 47%; }
.map-pin.india { left: 66%; top: 55%; }
.map-pin.australia { left: 72%; top: 75%; }
.policy-hero { padding: 72px clamp(18px, 5vw, 80px) 38px; background: linear-gradient(135deg, #ffffff, #f1f8f2); }
.policy-content { max-width: 920px; }
.policy-content p { color: var(--muted); }
.policy-content a { color: var(--green); font-weight: 800; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 54px clamp(18px, 5vw, 80px) 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
}
.site-footer img { width: 240px; margin-bottom: 12px; }
.site-footer h3 { color: var(--white); font-size: 1rem; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255, 255, 255, 0.82); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 18px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); }
.footer-bottom span:last-child { display: flex; flex-wrap: wrap; gap: 16px; }

.back-top { position: fixed; right: 18px; bottom: 18px; display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; color: var(--white); background: var(--green); box-shadow: var(--shadow); cursor: pointer; }
.back-top.show { display: block; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.founder-page { background: #fbfcfb; }
.founder-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}
.founder-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 18% 22%, rgba(217, 169, 40, 0.15), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #f4fbf6 55%, #e9f7ec 100%);
}
.founder-hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.5rem, 6vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}
.founder-hero h1.founder-name {
  font-size: clamp(2.15rem, 4.4vw, 4.8rem);
  line-height: 1.04;
  max-width: 760px;
}
.founder-subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.founder-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.founder-stats div {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}
.founder-stats strong, .founder-stats span { display: block; }
.founder-stats strong { color: var(--green); font-size: 1.55rem; line-height: 1; }
.founder-stats span { margin-top: 8px; color: var(--muted); font-weight: 700; }

.founder-overview,
.founder-feature-band,
.founder-impact,
.founder-publishing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}
.founder-overview,
.founder-feature-band,
.founder-impact,
.founder-section,
.founder-gallery,
.founder-final {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 80px);
}
.founder-overview p,
.founder-feature-band p,
.founder-impact p,
.founder-section p,
.founder-final p { color: var(--muted); }
.founder-overview img,
.founder-feature-band img,
.founder-impact img,
.founder-publishing img,
.founder-wide-image img,
.founder-card img,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.founder-overview img,
.founder-feature-band img,
.founder-impact img,
.founder-publishing img { aspect-ratio: 4 / 3; }
.founder-feature-band.reverse { grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr); }
.founder-feature-band.reverse img { order: 2; }
.founder-feature-band.reverse div { order: 1; }
.founder-section.alt,
.founder-gallery { background: var(--soft); }
.founder-two-col,
.founder-three-col {
  display: grid;
  gap: 22px;
}
.founder-two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.founder-three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.founder-card {
  padding: 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
}
.founder-card img {
  aspect-ratio: 4 / 3;
  margin: -8px 0 22px;
  box-shadow: none;
}
.founder-wide-image { margin: 28px 0 0; }
.founder-wide-image img { aspect-ratio: 16 / 7; }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.expertise-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(40, 183, 63, 0.18);
  border-radius: var(--radius);
  color: var(--black);
  font-weight: 850;
  background: linear-gradient(135deg, #ffffff, #f2fbf4);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-grid img { aspect-ratio: 1 / 1; }
.founder-final {
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #083d28 52%, var(--green));
}
.founder-final h2 { color: var(--white); }
.founder-final p { max-width: 900px; margin-left: auto; margin-right: auto; color: rgba(255, 255, 255, 0.82); }

.director-page {
  background: #fffdf8;
}
.director-hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(217, 169, 40, 0.18), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #fff8e8 48%, #edf8ef 100%);
}
.director-hero-image img {
  object-position: center center;
}
.director-expertise span {
  border-color: rgba(217, 169, 40, 0.22);
  background: linear-gradient(135deg, #ffffff, #fff8e8);
}
.director-impact {
  background:
    radial-gradient(circle at 80% 18%, rgba(217, 169, 40, 0.12), transparent 24%),
    #ffffff;
}
.director-final {
  background: linear-gradient(135deg, var(--black), #5b4708 48%, var(--green));
}
.ebook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.ebook-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ebook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}
.ebook-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: linear-gradient(135deg, #f5f7f6, #fff8e8);
}
.ebook-card h3 {
  flex: 1;
  margin: 18px 18px 12px;
  font-size: 1rem;
  line-height: 1.25;
}
.ebook-card span {
  margin: 0 18px 18px;
  color: var(--green);
  font-weight: 850;
}

.blog-index {
  background: var(--white);
}
.blog-hero.reveal,
.blog-index.reveal,
.blog-card.reveal,
.blog-article.reveal {
  opacity: 1;
  transform: none;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  width: 100%;
}
.blog-card {
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}
.blog-card a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.blog-card h2 {
  margin: 18px 18px 10px;
  color: var(--black);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.32;
  overflow-wrap: anywhere;
}
.blog-card .blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 0 18px 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.35;
}
.blog-card .blog-meta span + span::before {
  content: "By ";
  color: var(--muted);
  font-weight: 650;
}
.blog-card .blog-meta .blog-author::before {
  content: none;
}
.blog-card .blog-intro {
  margin: 0 18px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.blog-card .blog-category {
  margin: 0 18px 18px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}
.blog-card .read-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: auto 18px 20px;
  padding: 10px 16px;
  align-self: flex-start;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--black), var(--blue) 52%, var(--green));
  box-shadow: 0 12px 28px rgba(40, 183, 63, 0.2);
}
.blog-article {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 80px);
}
.article-header,
.article-content {
  max-width: 980px;
  margin: 0 auto;
}
.article-header h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.article-meta {
  margin: 18px 0 28px;
  color: var(--muted);
  font-weight: 700;
}
.article-header img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article-content {
  padding-top: clamp(28px, 5vw, 54px);
}
.article-content .lead {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 650;
}
.article-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}
.article-content p {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; inset: calc(100% + 8px) 16px auto; display: none; flex-direction: column; align-items: stretch; padding: 18px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero, .page-hero, .about-hero, .about-intro, .split-section, .contact-panel, .locations-layout { grid-template-columns: 1fr; }
  .grid.three, .portfolio-grid, .portfolio-grid.six, .service-grid, .feature-list.wide, .why-grid, .testimonial-grid, .visual-link-grid, .video-link-grid, .publication-list.visual-publications { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .founder-hero,
  .founder-overview,
  .founder-feature-band,
  .founder-feature-band.reverse,
  .founder-impact,
  .founder-publishing { grid-template-columns: 1fr; }
  .founder-feature-band.reverse img,
  .founder-feature-band.reverse div { order: initial; }
  .founder-three-col,
  .expertise-grid,
  .gallery-grid,
  .ebook-grid,
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .blog-index { padding-left: clamp(16px, 4vw, 32px); padding-right: clamp(16px, 4vw, 32px); }
  .blog-grid { gap: 18px; }
  .blog-card h2 { margin: 16px 16px 10px; }
  .blog-card .blog-meta { margin: 0 16px 12px; }
  .blog-card .blog-intro { margin: 0 16px 14px; }
  .blog-card .blog-category { margin: 0 16px 16px; }
  .blog-card .read-link { margin: auto 16px 18px; }
}

@media (max-width: 640px) {
  .site-header { min-height: 180px; }
  .brand { width: 240px; min-width: 240px; }
  .brand img { width: 240px; height: 160px; }
  .site-footer img { width: 240px; }
  .hero, .page-hero { padding-top: 44px; }
  .about-hero-image { min-height: 240px; }
  .grid.three, .portfolio-grid, .portfolio-grid.six, .service-grid, .about-service-list, .feature-list.wide, .why-grid, .vision-mission, .social-buttons, .location-list, .testimonial-grid, .link-grid, .visual-link-grid, .video-link-grid, .publication-list.visual-publications, .site-footer { grid-template-columns: 1fr; }
  .portfolio-list-heading { flex-direction: column; }
  .report-link-grid a { grid-template-columns: 1fr; }
  .service-map, .service-map svg { min-height: 300px; }
  .map-pin { font-size: 0.68rem; padding: 6px 8px; }
  .footer-bottom { flex-direction: column; }
  .founder-header { align-items: flex-start; flex-direction: column; gap: 12px; padding-bottom: 18px; }
  .blog-grid,
  .founder-stats,
  .founder-two-col,
  .founder-three-col,
  .expertise-grid,
  .gallery-grid,
  .ebook-grid { grid-template-columns: 1fr; }
  .blog-card img { aspect-ratio: 4 / 3; }
  .blog-card h2 { font-size: 1rem; line-height: 1.35; }
  .blog-card .read-link { width: calc(100% - 32px); }
  .founder-wide-image img { aspect-ratio: 4 / 3; }
}
