/* ═══════════════════════════════════════════════════════════════════════════
   AI JAMAICA — Editorial design, Jamaican identity
   Inspired by Adrian Dunkley site design system
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --white:      #ffffff;
  --black:      #0a0a0a;
  --gold:       #FED100;
  --gold-dark:  #d4a800;
  --green:      #009B3A;
  --green-dark: #007A2E;
  --dark:       #111111;
  --dark-alt:   #1a1a1a;
  --grey:       #f5f5f5;
  --mid-grey:   #e0e0e0;
  --text:       #1a1a1a;
  --text-dim:   #555555;
  --text-light: #ffffff;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --container: 1200px;
  --gutter:    clamp(20px, 5vw, 72px);
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 60px; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--black); }

/* ─── CONTAINER ──────────────────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
.reveal--delay-5 { transition-delay: 0.40s; }
.reveal.in-view  { opacity: 1; transform: translateY(0); }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 11px 26px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.btn--gold   { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--gold:hover { background: transparent; color: var(--gold); }
.btn--dark   { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--dark:hover { background: transparent; color: var(--black); }
.btn--white  { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--white:hover { background: transparent; color: var(--white); }
.btn--green  { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--green:hover { background: transparent; color: var(--green); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--black); }

/* ──────────────────────────────────────────────────────────────────────────
   NAV
   ─────────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 60px;
  background: var(--white);
  border-bottom: 1px solid var(--mid-grey);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.12); }

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 6px 10px;
  white-space: nowrap;
  transition: background 0.22s;
}
.nav__logo:hover { background: var(--green); }
.nav__logo-ai { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.22s;
}
.nav__links a:hover    { color: var(--green); }
.nav__links a.active   { color: var(--gold-dark); }

.nav__cta {
  padding: 7px 16px !important;
  background: var(--gold) !important;
  color: var(--black) !important;
  border: none !important;
  font-weight: 600 !important;
  transition: background 0.22s !important;
}
.nav__cta:hover { background: var(--gold-dark) !important; color: var(--black) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ──────────────────────────────────────────────────────────────────────────
   HERO — index page
   ─────────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 60px;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
  z-index: 0;
}

.hero__display {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-55%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.5rem, 15vw, 18rem);
  color: var(--gold);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-align: center;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  opacity: 0.15;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 var(--gutter) 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 40px;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title span { color: var(--gold); }

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-end;
  padding-bottom: 8px;
}
.hero__stat { text-align: right; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ──────────────────────────────────────────────────────────────────────────
   SECTION COMMONS
   ─────────────────────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--grey { background: var(--grey); }
.section--black { background: var(--black); color: var(--white); }

.section__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}
.section--dark .section__eyebrow,
.section--black .section__eyebrow { color: var(--gold); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 20px;
}
.section--dark .section__title,
.section--black .section__title { color: var(--white); }

.section__title span { color: var(--gold-dark); }
.section--dark .section__title span { color: var(--gold); }

.section__subtitle {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.75;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.6); }

.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin-inline: auto; }

/* ──────────────────────────────────────────────────────────────────────────
   ABOUT SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--mid-grey);
  overflow: hidden;
}
.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__image-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.about__card {
  border: 1px solid var(--mid-grey);
  padding: 24px;
}
.about__card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.about__card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}
.about__card-text { font-size: 0.85rem; color: var(--text-dim); }

/* ──────────────────────────────────────────────────────────────────────────
   INITIATIVES / WHAT WE DO
   ─────────────────────────────────────────────────────────────────────────── */
.initiatives__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--mid-grey);
  border: 1px solid var(--mid-grey);
}

.initiative-card {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}
.initiative-card:hover { background: var(--grey); }

.initiative-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.initiative-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
}
.initiative-card__text { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }
.initiative-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.initiative-card__tag {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--mid-grey);
  color: var(--text-dim);
}

/* ──────────────────────────────────────────────────────────────────────────
   SECTORS GRID
   ─────────────────────────────────────────────────────────────────────────── */
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sector-card {
  border: 1px solid var(--mid-grey);
  padding: 36px 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.sector-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.sector-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--gold-dark);
}
.sector-card__icon svg { width: 100%; height: 100%; }

.sector-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 10px;
}
.sector-card__text { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; }

/* ──────────────────────────────────────────────────────────────────────────
   EDUCATION SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.education__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.education__features { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }

.edu-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--mid-grey);
}
.edu-feature:last-child { border-bottom: none; padding-bottom: 0; }

.edu-feature__icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.edu-feature__icon svg { width: 18px; height: 18px; color: var(--black); }

.edu-feature__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.edu-feature__text { font-size: 0.875rem; color: var(--text-dim); }
.section--dark .edu-feature__text { color: rgba(255,255,255,0.6); }

.education__visual {
  background: var(--dark);
  padding: 48px;
  color: var(--white);
}

.edu-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.edu-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.edu-stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ──────────────────────────────────────────────────────────────────────────
   COMMUNITY SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.community__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.community-card {
  padding: 40px;
  border: 1px solid var(--mid-grey);
  background: var(--white);
  transition: border-color 0.25s;
}
.community-card:hover { border-color: var(--gold); }
.community-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.community-card__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 16px;
}

.community-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.community-card__text { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }
.community-card--featured .community-card__text { color: rgba(255,255,255,0.65); }

.community-card__meta {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.community-card__meta span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.community-card--featured .community-card__meta span { color: rgba(255,255,255,0.5); }

.community-card__image {
  aspect-ratio: 4/3;
  background: var(--dark-alt);
  overflow: hidden;
}
.community-card__image img { width: 100%; height: 100%; object-fit: cover; }

/* ──────────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ─────────────────────────────────────────────────────────────────────────── */
.testimonials__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.testimonial { display: none; }
.testimonial.active { display: block; }

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 24px;
}

.testimonial blockquote::before { content: '\201C'; }
.testimonial blockquote::after  { content: '\201D'; }

.testimonial__author strong {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.testimonial__author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.testimonial-dots button {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}
.testimonial-dots button.active { background: var(--gold); width: 24px; }

/* ──────────────────────────────────────────────────────────────────────────
   STARAPPLE STRIP
   ─────────────────────────────────────────────────────────────────────────── */
.starapple-strip {
  background: var(--gold);
  padding: 80px 0;
}
.starapple-strip .section__eyebrow { color: var(--black); opacity: 0.6; }
.starapple-strip .section__title { color: var(--black); }
.starapple-strip .section__title span { color: var(--green); }
.starapple-strip .section__subtitle { color: rgba(0,0,0,0.65); }

/* ──────────────────────────────────────────────────────────────────────────
   CONTACT SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info-items { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact__info-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.contact__info-item svg { flex-shrink: 0; color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select { appearance: none; }
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ──────────────────────────────────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.85rem;
  margin-top: 16px;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
  line-height: 1.7;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.22s;
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy { font-size: 0.8rem; }

.footer__flag {
  display: flex;
  gap: 4px;
  align-items: center;
}
.footer__flag-bar {
  height: 14px;
  width: 4px;
  display: inline-block;
}
.footer__flag-bar--black { background: #000; }
.footer__flag-bar--gold  { background: var(--gold); }
.footer__flag-bar--green { background: var(--green); }

/* ──────────────────────────────────────────────────────────────────────────
   PAGE HERO (subpages)
   ─────────────────────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero__title span { color: var(--gold); }
.page-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.75;
}

/* ──────────────────────────────────────────────────────────────────────────
   BLOG HERO
   ─────────────────────────────────────────────────────────────────────────── */
.blog-hero {
  background: var(--dark);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}
.blog-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  z-index: 0;
}
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 20px;
}
.blog-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.75;
}

/* ──────────────────────────────────────────────────────────────────────────
   BLOG FEATURED POST
   ─────────────────────────────────────────────────────────────────────────── */
.blog-featured { padding: 64px 0; border-bottom: 1px solid var(--mid-grey); }
.blog-featured__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
}
.blog-featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.blog-featured__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 16px;
}
.blog-featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 12px;
}
.blog-featured__meta {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.blog-featured__excerpt { font-size: 0.95rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 28px; }
.blog-featured__image {
  aspect-ratio: 4/3;
  background: var(--mid-grey);
  overflow: hidden;
}
.blog-featured__image img { width: 100%; height: 100%; object-fit: cover; }

/* ──────────────────────────────────────────────────────────────────────────
   BLOG LISTING / GRID
   ─────────────────────────────────────────────────────────────────────────── */
.blog-listing { padding: 64px 0 96px; }
.blog-listing__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 16px;
}
.blog-listing__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.blog-listing__count {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Blog category filters */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.blog-filter {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(0,0,0,0.2);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}
.blog-filter:hover {
  background: var(--grey);
  color: var(--black);
  border-color: var(--black);
}
.blog-filter.active {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mid-grey);
  border: 1px solid var(--mid-grey);
}

.blog-card {
  display: block;
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.22s;
}
.blog-card:hover { background: var(--grey); }

.blog-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 14px;
  background: var(--gold);
  color: var(--black);
}
.blog-card__tag--green { background: var(--green); color: var(--white); }
.blog-card__tag--dark  { background: var(--dark); color: var(--white); }

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 8px;
}
.blog-card__meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.blog-card__excerpt { font-size: 0.85rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 16px; }
.blog-card__read {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ──────────────────────────────────────────────────────────────────────────
   BLOG SUBSCRIBE
   ─────────────────────────────────────────────────────────────────────────── */
.blog-subscribe {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.blog-subscribe__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.blog-subscribe__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.blog-subscribe__form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin-inline: auto;
}
.blog-subscribe__form input[type="email"] {
  flex: 1;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  outline: none;
}
.blog-subscribe__form input::placeholder { color: rgba(255,255,255,0.35); }
.blog-subscribe__form button {
  padding: 13px 24px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.25s;
}
.blog-subscribe__form button:hover { background: var(--gold-dark); }

/* ──────────────────────────────────────────────────────────────────────────
   BLOG POST ARTICLE
   ─────────────────────────────────────────────────────────────────────────── */
.post-hero {
  background: var(--dark);
  padding: 140px 0 64px;
}
.post-hero__back {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: inline-block;
  margin-bottom: 24px;
  transition: color 0.22s;
}
.post-hero__back:hover { color: var(--gold); }
.post-hero__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 16px;
}
.post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 20px;
}
.post-hero__meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.post-hero__meta span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.post-hero__author { color: var(--gold) !important; }

.post-body { padding: 64px 0 96px; }
.post-body__inner {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.post-body__inner h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin: 48px 0 16px;
  padding-top: 8px;
  border-top: 2px solid var(--gold);
}
.post-body__inner h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin: 32px 0 12px;
}
.post-body__inner p { margin-bottom: 20px; }
.post-body__inner ul,
.post-body__inner ol {
  margin: 0 0 20px 24px;
  list-style: initial;
}
.post-body__inner li { margin-bottom: 8px; }
.post-body__inner a { color: var(--gold-dark); text-decoration: underline; }
.post-body__inner blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-dim);
}

/* ──────────────────────────────────────────────────────────────────────────
   PLAYBOOK PAGE
   ─────────────────────────────────────────────────────────────────────────── */
.playbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.playbook-card {
  border: 1px solid var(--mid-grey);
  padding: 32px 24px;
  transition: border-color 0.25s;
}
.playbook-card:hover { border-color: var(--gold); }
.playbook-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 8px;
}
.playbook-card__text { font-size: 0.875rem; color: var(--text-dim); margin-bottom: 16px; }

/* ──────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 199; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.2rem; }
  .nav__toggle { display: flex; }

  .hero__content { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; margin-top: 32px; }
  .hero__stat { text-align: left; }

  .about__layout { grid-template-columns: 1fr; gap: 40px; }
  .about__cards { grid-template-columns: 1fr; }

  .initiatives__grid { grid-template-columns: 1fr; }

  .sectors__grid { grid-template-columns: repeat(2, 1fr); }

  .education__layout { grid-template-columns: 1fr; gap: 40px; }

  .community__grid { grid-template-columns: 1fr; }
  .community-card--featured { grid-column: 1; grid-template-columns: 1fr; gap: 24px; }

  .contact__layout { grid-template-columns: 1fr; gap: 48px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .blog-featured__inner { grid-template-columns: 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .playbook-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .sectors__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .playbook-grid { grid-template-columns: 1fr; }
  .edu-stat-grid { grid-template-columns: 1fr; }
  .blog-subscribe__form { flex-direction: column; }
  .blog-subscribe__form input[type="email"] { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }
  .hero__title { font-size: clamp(2.2rem, 10vw, 4rem); }
}
