/*
Theme Name: GI Labs v2
Theme URI: https://gilabs.in
Author: Governance Innovation Labs
Description: Professional minimal theme for GI Labs
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: gilabs
*/

/* ── VARIABLES ─────────────────────────── */
:root {
  --red: #E8400C;
  --red2: #c93509;
  --black: #111111;
  --dark: #222222;
  --body: #333333;
  --muted: #555555;
  --light: #888888;
  --border: #DDDDDD;
  --bg: #FFFFFF;
  --bg2: #F7F7F7;
  --bg3: #F0F0F0;
  --font: 'Inter', sans-serif;
  --max: 1200px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --ease: 0.25s ease;
}

/* ── RESET ─────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  overflow-x: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

ul,
ol {
  list-style: none
}

button {
  cursor: pointer;
  font-family: var(--font)
}

/* ── TYPOGRAPHY ────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font);
  color: var(--black);
  line-height: 1.15;
  font-weight: 800
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem)
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700
}

h4 {
  font-size: 1rem;
  font-weight: 700
}

p {
  color: var(--body);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 400
}

strong {
  font-weight: 700;
  color: var(--dark)
}

/* ── UTILITIES ─────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad)
}

.section {
  padding: 5rem 0
}

.section-sm {
  padding: 3rem 0
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: #fff3ef;
  border: 1.5px solid #ffc9b8;
  padding: 0.3rem 0.8rem;
  border-radius: 2px
}

.tag-dark {
  background: var(--red);
  color: #fff;
  border-color: var(--red)
}

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red)
}

.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  transition: var(--ease);
  border: 2px solid transparent;
  cursor: pointer
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red)
}

.btn-red:hover {
  background: var(--red2);
  border-color: var(--red2)
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black)
}

.btn-outline:hover {
  background: var(--black);
  color: #fff
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red)
}

.btn-outline-red:hover {
  background: var(--red);
  color: #fff
}

.divider {
  height: 2px;
  background: var(--bg3);
  border: none;
  margin: 0
}

/* ── HEADER / NAV ──────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none
}

.logo-img-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  background: #E8400C
}

.logo-img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  display: block;
  margin: -10% 0 0 -10%
}

.logo-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1
}

.logo-name span {
  color: var(--red)
}

/* Nav */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111111;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  transition: var(--ease);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--red);
  background: rgba(232, 64, 12, 0.08)
}

.site-nav a.active,
.site-nav li.current-menu-item>a,
.site-nav li.current_page_item>a {
  color: #fff !important;
  background: var(--red);
  border-radius: 20px;
}

.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav li.current-menu-item>.nav-cta,
.site-nav li.current_page_item>.nav-cta {
  color: #fff !important;
  background: var(--red);
  padding: 0.45rem 1.1rem;
  margin-left: 0.5rem;
  border-radius: 20px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: var(--ease)
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* Mobile nav */
@media(max-width:900px) {
  .nav-toggle {
    display: flex
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 998;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--pad);
    border-top: 2px solid var(--red);
    overflow-y: auto;
  }

  .site-nav.open {
    display: flex
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%
  }

  .site-nav a {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eeeeee;
    display: block;
    width: 100%;
    border-radius: 0;
    color: #111111
  }

  .site-nav .nav-cta {
    margin: 1.5rem 0 0;
    display: inline-block;
    width: auto;
    border-radius: 20px;
    border-bottom: none;
  }
}

/* ── HOME HERO ─────────────────────────── */
.hero {
  background: #1a1a1a;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url(assets/images/projects/hero-parliament.jpg) center/cover no-repeat;
  opacity: 0.22;
  z-index: 0;
}

.hero-content-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem var(--pad) 6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.2rem;
  max-width: 100%;
  text-align: center;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: center;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0.8rem 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--ease);
  display: inline-block;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08)
}

@media(max-width:768px) {
  .hero-content-wrap {
    padding: 4rem var(--pad) 3rem
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem)
  }
}

@media(max-width:480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%
  }

  .hero-btns a {
    text-align: center;
    width: 100%
  }
}

/* ── HOME ABOUT STRIP ──────────────────── */
.home-about {
  background: var(--bg2);
  padding: 4rem 0;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border)
}

.home-about-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center
}

.home-about-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem
}

.home-about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem
}

.approach-box {
  padding: 1.5rem;
  background: #fff;
  border-left: 3px solid var(--red)
}

.approach-box h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem
}

.approach-box p {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.7
}

@media(max-width:768px) {
  .home-about-inner {
    grid-template-columns: 1fr
  }

  .home-about-right {
    grid-template-columns: 1fr
  }
}

/* ── PROJECTS HOME STRIP ───────────────── */
.home-projects {
  padding: 5rem 0
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem
}

.project-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}

.project-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px)
}

.project-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--bg3)
}

.project-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg3), var(--border));
  display: flex;
  align-items: center;
  justify-content: center
}

.project-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1
}

.project-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light)
}

.project-card h3 {
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 800;
  line-height: 1.3
}

.project-card p {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.7;
  flex: 1
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  transition: gap var(--ease);
}

.project-card:hover .project-card-link {
  gap: 10px
}

.project-card-link::after {
  content: '→'
}

@media(max-width:900px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .projects-grid {
    grid-template-columns: 1fr
  }
}

/* ── SINGLE PROJECT PAGE ───────────────── */
.project-hero {
  background: #E8400C;
  padding: 4rem 0;
  border-bottom: none
}

.project-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.project-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 6px
}

.project-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.project-hero-content h1 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.8rem)
}

.project-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 600
}

.project-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem var(--pad)
}

.project-body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--black);
  font-weight: 800;
  border-left: 4px solid var(--red);
  padding-left: 1rem
}

.project-body p {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 1rem
}

.project-body figure {
  margin: 2rem 0
}

.project-body figure img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
  border: 1.5px solid var(--border)
}

.project-body figcaption {
  font-size: 0.8rem;
  color: var(--light);
  margin-top: 0.5rem;
  font-style: italic;
  text-align: center
}

@media(max-width:768px) {
  .project-hero-inner {
    grid-template-columns: 1fr
  }

  .project-hero-img {
    height: 240px
  }

  .project-hero {
    padding: 2rem 0
  }
}

/* ── PAGE HEROES → ORANGE ──────────────── */
.page-hero {
  background: #E8400C;
  padding: 3.5rem 0;
  border-bottom: none
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3rem)
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin-top: 0.8rem;
  line-height: 1.7;
  max-width: 60ch
}

.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  font-weight: 600
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--ease)
}

.breadcrumb a:hover {
  color: #ffffff
}

.breadcrumb span {
  color: #ffffff;
  font-weight: 800
}

.about-hero {
  background: #E8400C;
  padding: 4rem 0;
  border-bottom: none
}

.about-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.2rem)
}

.about-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 60ch;
  line-height: 1.8
}

/* ── FELLOWSHIPS ───────────────────────── */
.fellowships-hero {
  background: #E8400C;
  padding: 3rem 0;
  border-bottom: none
}

.fellowships-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  direction: rtl
}

.fellowships-intro>* {
  direction: ltr
}

.resist-big {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  font-style: italic
}

.fellowships-intro-text h2 {
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem
}

.fellowships-intro-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.8
}

.series-section {
  padding: 5rem 0;
  border-bottom: 2px solid var(--border)
}

.series-header {
  margin-bottom: 3rem
}

.series-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--black)
}

.series-header p {
  font-size: 1rem;
  color: var(--body);
  margin-top: 0.8rem;
  max-width: 65ch
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.story-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--ease), transform var(--ease)
}

.story-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px)
}

.story-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--bg3)
}

.story-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #fff3ef, #ffc9b8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red)
}

.story-body {
  padding: 1.5rem
}

.story-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.4rem
}

.story-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.3rem;
  line-height: 1.3
}

.story-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem
}

.story-desc {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 1rem
}

.story-read {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--ease)
}

.story-card:hover .story-read {
  gap: 9px
}

.story-read::after {
  content: '→'
}

/* Story Modal */
.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow-y: auto;
  padding: 2rem 1rem
}

.modal-bg.open {
  display: flex;
  align-items: flex-start;
  justify-content: center
}

.modal-box {
  background: #fff;
  max-width: 720px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin: auto
}

.modal-head {
  background: var(--black);
  padding: 2.5rem;
  position: relative
}

.modal-head h2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.4rem
}

.modal-head .sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red)
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  line-height: 1;
  transition: color var(--ease)
}

.modal-close:hover {
  color: #fff
}

.modal-body {
  padding: 2.5rem
}

.modal-art {
  width: 100%;
  max-width: 320px;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  border: 1.5px solid var(--border)
}

.modal-credit {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 1.5rem
}

.modal-text p {
  font-size: 0.97rem;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 1rem
}

@media(max-width:600px) {
  .stories-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .stories-grid {
    grid-template-columns: 1fr
  }

  .fellowships-intro {
    grid-template-columns: 1fr
  }
}

/* ── VIDEOS ────────────────────────────── */
.videos-section {
  padding: 5rem 0;
  background: var(--bg2)
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem
}

.video-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  position: relative;
  cursor: pointer;
  overflow: hidden
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: background var(--ease)
}

.video-thumb:hover .video-overlay {
  background: rgba(232, 64, 12, 0.55)
}

.play-icon {
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.play-icon::after {
  content: '';
  border-left: 14px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px
}

.video-info {
  padding: 1rem
}

.video-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 0.4rem
}

.video-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5
}

@media(max-width:900px) {
  .videos-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .videos-grid {
    grid-template-columns: 1fr
  }
}

/* ── IMPACT ────────────────────────────── */
.impact-section {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border)
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 2.5rem 0
}

.impact-stat {
  background: #ffffff;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background var(--ease)
}

.impact-stat:hover {
  background: var(--bg2)
}

.impact-n {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.35rem
}

.impact-l {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted)
}

.impact-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem
}

.outcome-box {
  background: var(--bg2);
  padding: 2rem;
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0
}

.outcome-box h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.6rem
}

.outcome-box p {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.7
}

@media(max-width:768px) {
  .impact-stats {
    grid-template-columns: 1fr 1fr
  }

  .impact-outcomes {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .impact-stats {
    grid-template-columns: 1fr 1fr
  }
}

/* ── MEDIA COVERAGE ────────────────────── */
.media-section {
  padding: 5rem 0
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem
}

.media-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: box-shadow var(--ease)
}

.media-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1)
}

.media-source {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red)
}

.media-type {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light)
}

.media-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  flex: 1
}

.media-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.5rem;
  align-self: flex-start;
  transition: gap var(--ease)
}

.media-link::after {
  content: '↗'
}

.media-card:hover .media-link {
  gap: 9px
}

@media(max-width:768px) {
  .media-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .media-grid {
    grid-template-columns: 1fr
  }
}

/* ── CONTACT ───────────────────────────── */
.contact-section {
  padding: 5rem 0;
  background: var(--bg2)
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem)
}

.ci-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem
}

.ci-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red)
}

.ci-val {
  font-size: 1rem;
  color: var(--black);
  font-weight: 600
}

.social-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap
}

.social-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1.5px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  transition: var(--ease)
}

.social-btn:hover {
  border-color: var(--red);
  color: var(--red)
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 6px;
  border: 1.5px solid var(--border)
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--black)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem
}

.form-field {
  margin-bottom: 1rem
}

.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  outline: none;
  transition: border-color var(--ease);
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--red);
  background: #fff
}

.form-field textarea {
  height: 120px;
  resize: vertical
}

.form-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--ease);
}

.form-submit:hover {
  background: var(--red2)
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
  padding: 1rem;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem
}

@media(max-width:768px) {
  .contact-inner {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

/* ── ABOUT PAGE ────────────────────────── */
.about-content {
  padding: 5rem 0
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start
}

.about-text p {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 1.2rem
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem
}

.about-quote {
  border-left: 4px solid var(--red);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: var(--bg2);
  border-radius: 0 4px 4px 0
}

.about-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.6
}

.approach-section {
  padding: 4rem 0;
  background: var(--bg2)
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem
}

.approach-card {
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--red)
}

.approach-card h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem
}

.approach-card p {
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.7
}

@media(max-width:768px) {
  .about-grid {
    grid-template-columns: 1fr
  }

  .approach-cards {
    grid-template-columns: 1fr
  }
}

/* ── RESPONSIVE HELPERS ────────────────── */
@media(max-width:600px) {
  .section {
    padding: 3rem 0
  }

  h1 {
    font-size: 2rem
  }

  h2 {
    font-size: 1.5rem
  }
}

/* ── FOOTER — compact dark navy ────────── */
#site-footer {
  background: #0d1b2a;
  color: #fff;
  padding: 2.5rem 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-top: 0.8rem;
  max-width: 26ch
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem
}

.footer-logo-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red)
}

.footer-logo-name span {
  color: var(--red)
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem
}

.footer-col ul li {
  margin-bottom: 0.45rem
}

.footer-col a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--ease)
}

.footer-col a:hover {
  color: #fff
}

.footer-bar {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35)
}

.footer-legal {
  display: flex;
  gap: 1.2rem
}

.footer-legal a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--ease)
}

.footer-legal a:hover {
  color: #fff
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bar {
    flex-direction: column;
    text-align: center
  }
}

/* ── Footer logo ───────────────────────── */
.footer-logo .logo-img-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #E8400C;
}

.footer-logo .logo-img-wrap img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  margin: -10% 0 0 -10%;
}

/* ── Fellowship home preview ───────────── */
.home-fellowship-section {
  background: var(--bg2);
  padding: 5rem 0
}