@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Noto+Serif+KR:wght@300;400;600&display=swap');

:root {
  --navy: #0d4f7a;
  --navy-deep: #073550;
  --navy-mid: #0a6396;
  --cyan: #66dcff;
  --cyan-dim: rgba(102, 220, 255, 0.14);
  --gold: #ffe066;
  --white: #f4fbff;
  --text: #dceff8;
  --muted: #a8d4ef;
  --line: rgba(102, 220, 255, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: 'DM Sans', 'Noto Serif KR', sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem 5%;
  background: rgba(10, 60, 92, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; min-width: max-content; }
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.52rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
}
.logo-main span { color: var(--cyan); }
.brand-case { text-transform: none; }
.logo-sub {
  margin-top: 0.25rem;
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 1.25rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--cyan); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.lang-btn {
  border: 1px solid rgba(102, 220, 255, 0.38);
  color: var(--white);
  padding: 0.42rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--text); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 5% 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 34, 53, 0.96) 0%, rgba(8, 58, 88, 0.86) 40%, rgba(10, 74, 116, 0.34) 70%, rgba(7, 53, 80, 0.72) 100%),
    url('assets/hero-global-esg.png') center / cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(102, 220, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 220, 255, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; text-shadow: 0 2px 26px rgba(0, 0, 0, 0.34); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--cyan); }
h1, h2, h3 { color: var(--white); font-family: 'Cormorant Garamond', serif; font-weight: 300; }
h1 { font-size: clamp(3rem, 6.2vw, 5.9rem); line-height: 1.04; margin-bottom: 1rem; }
h1 span, h2 em { color: var(--cyan); font-style: italic; }
.hero-motto {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-lead { max-width: 660px; color: var(--text); font-size: 1.02rem; line-height: 1.85; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }
.btn {
  display: inline-block;
  padding: 0.88rem 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.btn.primary { background: var(--cyan); color: var(--navy-deep); border-color: var(--cyan); font-weight: 600; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.stat { background: #0a5a8a; padding: 2.5rem 5%; text-align: center; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease; }
.stat:hover { background: #0b669d; transform: translateY(-2px); }
.stat-num { font-family: 'Cormorant Garamond', serif; color: var(--cyan); font-size: 2.35rem; line-height: 1; }
.stat-label { margin-top: 0.55rem; color: var(--muted); font-size: 0.76rem; letter-spacing: 0.05em; }

section { padding: 6rem 5%; }
.section-head { max-width: 820px; margin-bottom: 3rem; }
.section-title { font-size: clamp(2.2rem, 4.6vw, 4rem); line-height: 1.12; margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 0.95rem; line-height: 1.85; }
.band-blue { background: #0a5a8a; }
.band-deep { background: var(--navy-deep); }

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 4rem;
  align-items: center;
}
.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.image-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.image-frame.tall { aspect-ratio: 4 / 5; }
.image-frame.wide { aspect-ratio: 16 / 7; margin-top: 2.4rem; }

.prose p { color: var(--text); font-size: 0.92rem; line-height: 1.9; margin-bottom: 1.15rem; }
.approach-copy, .why-copy { max-width: 920px; margin: 2.4rem 0; }
.quote-line {
  margin-top: 2rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.founder-panel {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(13, 79, 122, 0.5);
}
.founder-photo { aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); background: #f4f8fb; }
.founder-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.role { color: var(--gold); font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.8rem; }
.founder-name { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-bottom: 0.8rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.chips span { border: 1px solid rgba(102, 220, 255, 0.24); border-radius: 20px; padding: 0.32rem 0.72rem; color: var(--cyan); font-size: 0.68rem; letter-spacing: 0.05em; }

.mission-grid, .values-grid, .expertise-grid, .initiative-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.mission-grid { grid-template-columns: repeat(2, 1fr); }
.values-grid { grid-template-columns: repeat(5, 1fr); }
.approach-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1px; }
.focus-grid { margin-top: 2.5rem; }
.expertise-grid { grid-template-columns: repeat(3, 1fr); margin-top: 2.5rem; }
.initiative-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  min-height: 100%;
  background: rgba(7, 53, 80, 0.92);
  padding: 2rem;
}
.card h3 { font-size: 1.45rem; margin-bottom: 0.8rem; }
.card p { color: var(--muted); font-size: 0.86rem; line-height: 1.75; }
.card-num { color: rgba(102, 220, 255, 0.18); font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; line-height: 1; margin-bottom: 1rem; }
.focus-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.4rem;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.65;
}
.work-hero { min-height: 62vh; }
.work-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.work-nav a {
  display: block;
  padding: 1.2rem 5%;
  background: #073550;
  color: var(--cyan);
  text-align: center;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.work-nav a:hover { background: #0a5a8a; }
.work-detail {
  scroll-margin-top: 92px;
  border-top: 1px solid var(--line);
}
.work-detail:nth-of-type(even) { background: var(--navy-deep); }
.detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) 1.28fr;
  gap: 3rem;
  align-items: start;
}
.detail-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.detail-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.detail-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.5rem;
  padding: 1.4rem;
  background: rgba(7, 53, 80, 0.9);
}
.detail-row h3 {
  color: var(--cyan);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.detail-row p, .detail-row li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.detail-row ul { padding-left: 1.1rem; }
.featured-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
  align-items: start;
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(13, 79, 122, 0.34);
}
.partnership-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin: 2rem 0;
  padding: 1.4rem;
  border: 1px solid rgba(255, 224, 102, 0.34);
  background: rgba(255, 224, 102, 0.08);
}
.partnership-callout p {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.75;
}
.partnership-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.card-kicker {
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.featured-card {
  display: grid;
  gap: 1.5rem;
  background: rgba(7, 53, 80, 0.92);
  padding: 1.6rem;
}
.featured-card h3 { font-size: 1.65rem; margin-bottom: 0.75rem; }
.featured-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1rem; }
.feature-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
}
.tag-list li {
  border: 1px solid rgba(102, 220, 255, 0.28);
  color: var(--cyan);
  padding: 0.45rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.feature-cta { margin-top: 1.6rem; }
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.project-card {
  background: rgba(7, 53, 80, 0.92);
  padding: 2rem;
  min-height: 100%;
}
a.project-card { text-decoration: none; transition: background 0.2s ease, transform 0.2s ease; }
a.project-card:hover { background: rgba(9, 71, 108, 0.96); transform: translateY(-2px); }
.project-card h3 { font-size: 1.65rem; margin-bottom: 0.75rem; }
.project-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; }
.solution-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: rgba(7, 53, 80, 0.92);
  border: 1px solid var(--line);
}
.solution-card .image-frame { box-shadow: none; }
.download-link { color: var(--cyan); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.insight-feature {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(7, 53, 80, 0.92);
}
.insight-feature h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-bottom: 0.8rem; }
.insight-feature p { color: var(--muted); font-size: 0.92rem; line-height: 1.8; }
.archive-stats { margin: 0 -5% -6rem; }
.archive-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  border: 1px solid rgba(102, 220, 255, 0.28);
  background: transparent;
  color: var(--cyan);
  padding: 0.5rem 0.78rem;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: rgba(102, 220, 255, 0.12); }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.archive-item { background: rgba(7, 53, 80, 0.92); padding: 1.6rem; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease; }
.archive-item:hover { background: rgba(9, 71, 108, 0.96); transform: translateY(-2px); }
.archive-meta {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.archive-item h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.archive-item p { color: var(--muted); font-size: 0.86rem; line-height: 1.75; }
.archive-item a { color: var(--cyan); text-decoration: none; }
.entry-panel {
  max-width: 980px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(7, 53, 80, 0.92);
}
.entry-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 2rem 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.entry-meta-grid div { background: rgba(13, 79, 122, 0.62); padding: 1rem; }
.entry-meta-grid strong { display: block; color: var(--cyan); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.35rem; }

.contact-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }
.contact-list { display: grid; gap: 1.4rem; }
.contact-item h3 {
  color: var(--cyan);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.contact-item p, .contact-item a { color: var(--muted); font-size: 0.9rem; line-height: 1.7; text-decoration: none; }
.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: grid; gap: 0.4rem; }
.form-group label { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0a5a8a;
  color: var(--white);
  padding: 0.85rem 1rem;
  font: inherit;
  outline: none;
}
.form-group textarea { min-height: 130px; resize: vertical; }
button.btn { cursor: pointer; width: max-content; font-family: inherit; }

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 3rem 5%;
  background: #062d44;
  border-top: 1px solid var(--line);
}
.footer-copy, .footer-links a { color: var(--muted); font-size: 0.75rem; text-decoration: none; }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

@media (max-width: 1000px) {
  .values-grid, .initiative-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  nav { align-items: flex-start; }
  .nav-links { display: none; }
  .nav-links.open {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 5%;
    background: #0a5a8a;
    border-bottom: 1px solid var(--line);
  }
  .hamburger { display: flex; }
  .hero { min-height: 92vh; padding-top: 7.5rem; }
  h1 { font-size: clamp(2.6rem, 14vw, 4.2rem); }
  .split, .founder-panel, .mission-grid, .contact-wrap { grid-template-columns: 1fr; }
  .stats-bar, .work-nav, .expertise-grid, .values-grid, .initiative-grid, .detail-grid, .detail-row, .featured-panel, .partnership-callout, .featured-grid, .project-grid, .solution-card, .archive-grid, .entry-meta-grid { grid-template-columns: 1fr; }
  .partnership-actions { justify-content: flex-start; }
  .insight-feature { align-items: flex-start; flex-direction: column; }
  .founder-panel, .card { padding: 1.6rem; }
  .founder-photo { max-width: 130px; }
  .form-row { grid-template-columns: 1fr; }
  footer { align-items: flex-start; flex-direction: column; }
}

/* Navigation and structure refinements */
.nav-links a.active { color: var(--white); border-bottom: 1px solid var(--cyan); padding-bottom: 0.25rem; }
.sub-nav {
  position: sticky;
  top: 73px;
  z-index: 90;
  display: flex;
  gap: 1px;
  overflow-x: auto;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.sub-nav a {
  flex: 1 0 auto;
  min-width: max-content;
  padding: 0.9rem 1rem;
  background: rgba(7, 53, 80, 0.96);
  color: var(--cyan);
  text-align: center;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sub-nav a:hover { background: #0a5a8a; }
.three-grid { grid-template-columns: repeat(3, 1fr); }
.four-grid { grid-template-columns: repeat(4, 1fr); }
.single-feature { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
.archive-search { margin-bottom: 2rem; }
.archive-search input {
  width: 100%;
  border: 1px solid var(--line);
  background: #073550;
  color: var(--white);
  padding: 1rem;
  margin-bottom: 1rem;
  font: inherit;
  outline: none;
}
.archive-search input::placeholder { color: var(--muted); }
@media (max-width: 820px) {
  .three-grid, .four-grid, .single-feature { grid-template-columns: 1fr; }
  .sub-nav { top: 73px; }
}

.initiative-media-grid { grid-template-columns: repeat(3, 1fr); }
a.featured-card { color: inherit; text-decoration: none; transition: background 0.2s ease, transform 0.2s ease; }
a.featured-card:hover { background: rgba(9, 71, 108, 0.96); transform: translateY(-2px); }
.visual-strip { padding-block: 4rem; }
.visual-strip .feature-media { aspect-ratio: 4 / 3; }
.visual-strip .feature-media img { object-position: center top; }
@media (max-width: 1000px) { .initiative-media-grid { grid-template-columns: 1fr; } }

@media (max-width: 820px) {
  nav { align-items: center; padding: 0.95rem 5%; }
  .logo-main { font-size: 1.25rem; }
  .logo-sub { letter-spacing: 0.18em; }
  .nav-actions .lang-btn { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: 100%; }
  h1 { font-size: clamp(2.25rem, 10.5vw, 3.35rem); overflow-wrap: break-word; }
  .hero-lead { font-size: 0.96rem; }
}

@media (max-width: 820px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  nav { width: 100%; max-width: 100vw; }
  .hamburger { display: flex !important; position: absolute; right: 5%; top: 1.35rem; }
  .hero { width: 100%; max-width: 100vw; }
  .hero-content { width: 100%; max-width: 100%; }
  .hero-lead { max-width: 100%; overflow-wrap: break-word; }
  .hero-actions { max-width: 100%; }
}

@media (max-width: 820px) {
  .hamburger { width: 28px; height: 22px; z-index: 200; }
  .hamburger span { display: block; width: 28px; height: 2px; background: #ffffff !important; opacity: 1; }
}

@media (max-width: 820px) {
  .hamburger { right: 5%; }
  .section-head { max-width: 100%; }
  .section-title { max-width: 100%; font-size: 2.15rem; line-height: 1.08; overflow-wrap: anywhere; }
  .section-title em { display: block; overflow-wrap: anywhere; }
}

.newsletter-hub { border-top: 1px solid var(--line); }
.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.newsletter-card {
  min-height: 220px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(7, 53, 80, 0.96), rgba(10, 90, 138, 0.86));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.newsletter-card h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.newsletter-card p { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 820px) { .newsletter-grid { grid-template-columns: 1fr; } }
.metric-band { padding: 0; background: #073550; border-block: 1px solid var(--line); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.metric-item { background: rgba(10, 90, 138, 0.72); padding: 2rem 5%; text-align: center; }
.metric-item strong { display: block; color: var(--cyan); font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1; }
.metric-item span { display: block; margin-top: 0.5rem; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.article-card { display: grid; grid-template-columns: minmax(220px, 0.45fr) 1fr; gap: 2rem; align-items: center; padding: 1.6rem; border: 1px solid var(--line); background: rgba(7, 53, 80, 0.92); }
.article-thumb { aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,0.04); }
.article-thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block; background: #e8f0f4; }
.article-card h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-bottom: 0.8rem; }
.article-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.8; }
.africa-map-panel { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center; margin-top: 2rem; padding: 2rem; border: 1px solid var(--line); background: rgba(7, 53, 80, 0.72); }
.africa-map-visual { min-height: 420px; background: radial-gradient(circle at 55% 45%, rgba(102,220,255,0.14), transparent 56%), rgba(4, 33, 51, 0.72); border: 1px solid var(--line); }
.africa-map-visual svg { width: 100%; height: 100%; min-height: 420px; }
.africa-shape { fill: rgba(102,220,255,0.13); stroke: rgba(102,220,255,0.58); stroke-width: 2; }
.map-marker circle { fill: var(--gold); stroke: var(--navy-deep); stroke-width: 2; }
.map-marker text { fill: var(--white); font-size: 13px; letter-spacing: 0.04em; }
.map-marker:hover circle, .map-marker:focus circle { fill: var(--cyan); }
.project-visual { margin-bottom: 2rem; }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.timeline-item { background: rgba(7, 53, 80, 0.92); padding: 1.4rem; }
.timeline-year { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; margin-bottom: 1rem; }
.timeline-photo { aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line); margin-bottom: 1rem; }
.timeline-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.timeline-item h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.timeline-item p { color: var(--muted); font-size: 0.86rem; line-height: 1.7; }
.video-card { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center; padding: 1.6rem; border: 1px solid var(--line); background: rgba(7, 53, 80, 0.92); }
.video-frame { aspect-ratio: 16 / 9; border: 1px solid var(--line); overflow: hidden; background: #031f30; }
.video-frame iframe { width: 100%; height: 100%; display: block; }
.newsletter-cover-esg { background: linear-gradient(135deg, rgba(7,53,80,0.78), rgba(10,90,138,0.92)), url('assets/carbon-neutrality.png') center / cover; }
.newsletter-cover-aiss { background: linear-gradient(135deg, rgba(7,53,80,0.78), rgba(10,90,138,0.92)), url('assets/global-partnership.png') center / cover; }
@media (max-width: 1000px) { .timeline-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .metric-grid, .article-card, .africa-map-panel, .video-card, .timeline-grid { grid-template-columns: 1fr; } .africa-map-visual, .africa-map-visual svg { min-height: 320px; } }
/* Founder Archive Phase I cards */
.founder-archive-preview .section-actions,
.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.archive-card-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.archive-card-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-card-v2 {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(22, 49, 74, .12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(12, 31, 48, .08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.archive-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d9e3e8;
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.archive-card-v2:hover .archive-card-image img {
  transform: scale(1.035);
}

.archive-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  flex: 1;
}

.archive-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  color: #5d6f7c;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.archive-card-meta span {
  color: #0d5665;
  font-weight: 700;
}

.archive-card-body h3 {
  color: #123146;
  font-size: 1.08rem;
  line-height: 1.35;
  margin: 0;
}

.archive-card-body p {
  color: #405563;
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

.archive-why {
  border-left: 3px solid #0d5665;
  padding-left: .75rem;
  background: rgba(13, 86, 101, .05);
  padding-top: .65rem;
  padding-bottom: .65rem;
}

.archive-why strong {
  display: block;
  color: #123146;
  margin-bottom: .25rem;
}

.archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
}

.archive-tags span {
  border: 1px solid rgba(13, 86, 101, .18);
  background: rgba(13, 86, 101, .07);
  color: #174a55;
  border-radius: 999px;
  padding: .32rem .58rem;
  font-size: .75rem;
  line-height: 1;
  white-space: nowrap;
}

.archive-card-link {
  align-self: flex-start;
  padding: .65rem .95rem;
  margin-top: .15rem;
  color: #073550;
  background: rgba(102, 220, 255, .28);
  border-color: rgba(13, 86, 101, .24);
  font-weight: 700;
}
.archive-card-link:hover {
  background: rgba(102, 220, 255, .46);
  color: #052235;
}

.archive-video-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.archive-video-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  min-height: 100%;
}

.archive-video-label {
  color: #8fd8dc;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.archive-video-item h3 {
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

.archive-video-item p {
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  margin: 0;
}

.archive-video-item .archive-tags span {
  color: #e9fbfc;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
}

@media (max-width: 980px) {
  .archive-card-grid,
  .archive-card-grid.compact,
  .archive-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .archive-card-grid,
  .archive-card-grid.compact,
  .archive-video-grid {
    grid-template-columns: 1fr;
  }
  .archive-card-body {
    padding: 1rem;
  }
  .archive-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }
}

/* Tighter interior hero for archive usability */
.work-hero { min-height: 48vh; }
@media (max-width: 640px) { .work-hero { min-height: 42vh; } }


/* QA-only focused screenshots; activated only by ?focus=preview/public/media */
body.archive-focus-preview main > section:not(#founder-archive-preview),
body.archive-focus-public main > section:not(#public-cards),
body.archive-focus-media main > section:not(#media-video) {
  display: none !important;
}
body.archive-focus-preview #founder-archive-preview,
body.archive-focus-public #public-cards,
body.archive-focus-media #media-video {
  padding-top: 7rem;
}

.archive-video-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  margin-bottom: .35rem;
}
.archive-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}





.africa-coast-line {
  fill: none;
  stroke: rgba(102, 220, 255, 0.24);
  stroke-width: 1.2;
  stroke-linecap: round;
}
.country-list-block { margin-top: 1.25rem; }
.first-phase-label { margin: 0 0 .85rem; }
.country-list-block .tag-list { margin-top: 0; }
.map-copy .tag-list { margin-top: 1.35rem; }
.public-engagement-record .feature-media {
  background: #e8f0f4;
}
.public-engagement-record .feature-media img {
  object-fit: contain;
  object-position: center center;
  background: #e8f0f4;
}
.insight-feature .hero-actions {
  margin-top: 0;
  align-items: center;
}
@media (max-width: 820px) {
  .map-marker text { font-size: 11px; letter-spacing: 0; }
  .africa-map-panel { padding: 1rem; }
  .insight-feature .hero-actions { width: 100%; }
}

body.qa-focus-map main > section:not(#aeei-map),
body.qa-focus-newsletter main > section:not(#newsletter-hub),
body.qa-focus-engagement main > section:not(#public-engagement),
body.qa-focus-policy main > section:not(#articles) {
  display: none !important;
}
body.qa-focus-map #aeei-map,
body.qa-focus-newsletter #newsletter-hub,
body.qa-focus-engagement #public-engagement,
body.qa-focus-policy #articles {
  padding-top: 7rem;
  min-height: 100vh;
}

.africa-real-map {
  position: relative;
  min-height: 560px;
  padding: 1.2rem;
  background: #eef3f5;
  overflow: hidden;
}
.africa-real-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(.9) contrast(.98);
}
.map-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .22rem .42rem;
  border-radius: 999px;
  border: 1px solid rgba(5, 34, 53, .22);
  background: rgba(255, 224, 102, .94);
  color: #052235;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
  white-space: nowrap;
}
.map-dot::before {
  content: '';
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #052235;
}
.map-source {
  margin-top: 1rem;
  color: rgba(214, 242, 247, .62);
  font-size: .76rem;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .africa-real-map { min-height: 430px; padding: .6rem; }
  .map-dot { font-size: .52rem; padding: .16rem .28rem; }
  .map-dot::before { width: .34rem; height: .34rem; }
}
