/* ==========================================================================
   FIF website — components.css
   One block per component so sections can be edited independently.
   Order: utility bar · header · buttons · text links · hero · page hero ·
          tiles (ruled cards) · agenda · exhibition · pull-quote · note ·
          gallery · ecosystem · speakers · stories · FAQ · newsletter ·
          footer · motion
   Design language: square corners, hairline rules, uppercase bold buttons,
   short accent underlines, one easing curve (--ease) for every transition.
   ========================================================================== */

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -4rem;
  z-index: 100;
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
}
.skip-link:focus { top: var(--space-3); }

/* ---------- Eyebrow on dark grounds ---------- */
.section--green .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.section--green .eyebrow::before,
.page-hero .eyebrow::before,
.hero .eyebrow::before {
  content: "";
  width: 2rem;
  height: 3px;
  background: var(--fif-lime);
}

/* Short accent underline under section headings */
.section-head h2::after,
.split h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 3px;
  margin-top: var(--space-4);
  background: var(--accent);
}
.section-head--center h2::after { margin-inline: auto; }
.section--green h2::after,
.page-hero h1::after,
.section--magenta h2::after { background: var(--fif-lime); }
.section--lime h2::after { background: var(--ink); }
.visually-hidden + h2::after { display: none; }

/* ==========================================================================
   Utility bar (above the header)
   ========================================================================== */
.utility-bar {
  background: var(--fif-green);
  color: var(--white);
  font-size: var(--text-xs);
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 2.75rem;
}
.utility-bar__group { display: flex; align-items: center; gap: var(--space-4); }
.utility-bar__brand { display: flex; align-items: center; gap: var(--space-3); padding-right: var(--space-4); border-right: 1px solid rgba(255, 255, 255, 0.28); }
.utility-bar__brand span { color: var(--color-on-green-muted); }
.utility-bar__brand img { width: 3.75rem; height: auto; }
.social { display: flex; align-items: center; gap: var(--space-1); }
.social a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--white);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.25s var(--ease);
}
.social a:hover { background: var(--white); color: var(--fif-green); transform: translateY(-2px); }
.social svg { width: 1rem; height: 1rem; }
.utility-bar__contact { display: none; align-items: center; gap: var(--space-5); }
.utility-bar__contact a { display: inline-flex; align-items: center; gap: var(--space-2); color: var(--white); text-decoration: none; font-weight: 500; }
.utility-bar__contact a:hover { text-decoration: underline; text-underline-offset: 3px; }
.utility-bar__contact svg { width: 1rem; height: 1rem; }
@media (min-width: 900px) { .utility-bar__contact { display: flex; } }
@media (max-width: 480px) { .utility-bar__brand span { display: none; } }

/* ==========================================================================
   Header (white bar, animated underline nav, drop-down panels)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.brand-mark { display: block; flex: none; }
.brand-mark img { height: 3.75rem; width: auto; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }

.burger {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  border: 2px solid var(--fif-green);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}
.burger span, .burger span::before, .burger span::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--fif-green);
  transition: transform 0.25s var(--ease), background-color 0.2s var(--ease);
}
.burger span { position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.nav-toggle:focus-visible + .burger { outline: 3px solid var(--accent); outline-offset: 3px; }
.nav-toggle:checked + .burger { background: var(--fif-green); }
.nav-toggle:checked + .burger span { background: transparent; }
.nav-toggle:checked + .burger span::before { transform: translateY(6px) rotate(45deg); background: var(--white); }
.nav-toggle:checked + .burger span::after { transform: translateY(-6px) rotate(-45deg); background: var(--white); }

/* mobile drawer */
.nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  max-height: calc(100vh - 6.5rem);
  overflow-y: auto;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 26px 48px rgba(39, 40, 28, 0.18);
}
.nav-toggle:checked ~ .nav { display: block; }
.nav__list { padding: var(--space-3) var(--gutter) var(--space-5); }
.nav__item { border-bottom: 1px solid var(--line); }
.nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
}
.nav__link[aria-current="page"] { color: var(--fif-green); font-weight: 500; }
.nav__label { position: relative; display: inline-block; }
.nav__caret {
  display: none;
  margin: 0 0 0.2rem 0.55rem;
  padding: 0.16rem;
  border: solid;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.panel { padding: 0 0 var(--space-4); }
.panel__intro, .panel__trigger, .panel__content-head { display: none; }
.panel__groups, .panel__group { display: block; }
.panel__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0 var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: var(--gray);
  text-decoration: none;
}
.panel__links a:hover { color: var(--fif-green); }
.panel__links svg { flex: none; width: 1rem; height: 1rem; }

.header-actions { display: none; }

/* search (expands on focus) */
.search {
  display: flex;
  align-items: center;
  height: 2.75rem;
  border: 1px solid #b9c0c8;
  border-radius: var(--radius-btn);
  transition: border-color 0.2s var(--ease);
}
.search:focus-within { border-color: var(--fif-green); }
.search button {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.5rem;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.search svg { width: 1.1rem; height: 1.1rem; }
.search input {
  width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: var(--text-sm);
  transition: width 0.3s var(--ease), padding 0.3s var(--ease);
}
.search:focus-within input { width: 10rem; padding-right: var(--space-3); }

/* language switch */
.lang {
  display: inline-flex;
  align-items: stretch;
  height: 2.75rem;
  overflow: hidden;
  border-radius: var(--radius-btn);
  box-shadow: inset 0 0 0 1px #b9c0c8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lang__opt { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; color: var(--ink); }
.lang__opt.is-current { background: var(--fif-green); color: var(--white); }
.lang__opt[lang="bn"] { font-size: 0.85rem; letter-spacing: 0; font-weight: 600; }

@media (min-width: 1000px) {
  .burger { display: none; }
  .nav {
    position: static;
    display: flex;
    flex: 1 1 auto;
    align-self: stretch;
    max-height: none;
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav__list { display: flex; align-items: stretch; justify-content: center; margin-inline: auto; padding: 0; }
  .nav__item { display: flex; align-items: stretch; border: 0; }
  .nav__link { height: 100%; justify-content: center; padding: 0 var(--space-4); font-size: 1.0625rem; white-space: nowrap; }
  .nav__link:hover, .nav__item:focus-within > .nav__link { color: var(--fif-green); }
  .nav__label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.32rem;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s var(--ease);
  }
  .nav__item:hover > .nav__link .nav__label::after,
  .nav__item:focus-within > .nav__link .nav__label::after,
  .nav__link[aria-current="page"] .nav__label::after { transform: scaleX(1); }
  .nav__caret { display: inline-block; }
  .has-panel:hover .nav__caret,
  .has-panel:focus-within .nav__caret { transform: rotate(-135deg) translate(-0.1rem, -0.1rem); }

  .panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: minmax(0, 16rem) 1px minmax(0, 1fr);
    gap: 0 var(--space-6);
    padding: var(--space-6) max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))) var(--space-6);
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 26px 48px rgba(39, 40, 28, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.7rem);
    transition: opacity 0.2s var(--ease), transform 0.25s var(--ease), visibility 0.2s var(--ease);
  }
  .panel::before { content: ""; position: absolute; top: -1px; left: 0; width: 10rem; height: 3px; background: var(--accent); }
  .panel::after { content: ""; grid-column: 2; grid-row: 1; background: var(--line); }
  .has-panel:hover > .panel,
  .has-panel:focus-within > .panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }

  /* intro column */
  .panel__intro { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .panel__intro h2 { font-size: var(--text-2xl); line-height: 1.1; color: var(--fif-green); }
  .panel__intro p { font-size: var(--text-md); line-height: 1.55; color: var(--ink); }
  .panel__art { width: 7rem; height: auto; margin-top: var(--space-1); }

  /* group list + swapping content */
  .panel__groups { grid-column: 3; grid-row: 1; position: relative; display: grid; grid-template-columns: 13rem minmax(0, 1fr); gap: 0; align-content: start; min-height: 14rem; }
  .panel__group { display: contents; }
  .panel__trigger {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-4);
    border-bottom: 1px solid var(--line);
    font-size: var(--text-md);
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
  }
  .panel__trigger svg { width: 1rem; height: 1rem; flex: none; }
  .panel__content {
    grid-column: 2;
    grid-row: 1 / span 4;
    display: none;
    align-content: start;
    padding-left: var(--space-6);          /* spacing lives inside the hover area, so the pointer never crosses a dead gap */
  }
  .panel__content-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-5); margin-bottom: var(--space-4); }
  .panel__content-head h3 { font-size: var(--text-2xl); color: var(--fif-green); }
  .panel__content-head p { margin-top: var(--space-2); max-width: 32rem; color: var(--gray); }
  .panel__content-head img { width: 3.5rem; height: 3.5rem; flex: none; object-fit: contain; }

  /* first group is active until another one is hovered / focused */
  .panel__group:first-child .panel__trigger,
  .panel__group:hover .panel__trigger,
  .panel__group:focus-within .panel__trigger { background: var(--fif-green); color: var(--white); border-bottom-color: var(--fif-green); }
  .panel__group:first-child .panel__content,
  .panel__group:hover .panel__content,
  .panel__group:focus-within .panel__content { display: block; }
  .panel__groups:has(.panel__group:not(:first-child):hover) .panel__group:first-child:not(:hover) .panel__trigger,
  .panel__groups:has(.panel__group:not(:first-child):focus-within) .panel__group:first-child:not(:focus-within) .panel__trigger { background: transparent; color: var(--ink); border-bottom-color: var(--line); }
  .panel__groups:has(.panel__group:not(:first-child):hover) .panel__group:first-child:not(:hover) .panel__content,
  .panel__groups:has(.panel__group:not(:first-child):focus-within) .panel__group:first-child:not(:focus-within) .panel__content { display: none; }
  .panel__group:not(:first-child):hover .panel__content { display: block; }
  .panel__trigger:hover { background: var(--fif-green); color: var(--white); }

  /* link grid */
  .panel__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 var(--space-6); }
  .panel__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--line);
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1.35;
    color: var(--ink);
    transition: color 0.2s var(--ease), padding 0.25s var(--ease), border-color 0.2s var(--ease);
  }
  .panel__links a:hover { color: var(--accent); padding-left: var(--space-2); border-color: var(--accent); }
  .panel__links svg { flex: none; width: 1rem; height: 1rem; color: var(--ink); transition: transform 0.25s var(--ease), color 0.2s var(--ease); }
  .panel__links a:hover svg { color: var(--accent); transform: translateX(0.25rem); }

  .header-actions { display: flex; align-items: center; gap: var(--space-3); flex: none; }
  .site-header__inner { min-height: 5.1rem; }
  .brand-mark img { height: 4.2rem; }
}
.nav__mobile-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); padding: 0 var(--gutter) var(--space-5); }
@media (min-width: 1000px) { .nav__mobile-actions { display: none; } }

/* ==========================================================================
   Buttons — square, uppercase, bold; arrow nudges on hover
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0 1.5rem;
  border: 2px solid var(--fif-green);
  border-radius: var(--radius-btn);
  background: var(--fif-green);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:hover { background: var(--white); border-color: var(--accent); color: var(--accent); }
.btn svg { width: 1rem; height: 1rem; flex: none; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(0.25rem); }

.btn--primary { background: var(--accent); border-color: var(--accent); }
.btn--light { background: var(--white); border-color: var(--white); color: var(--fif-green); }
.btn--light:hover { background: transparent; border-color: var(--white); color: var(--white); }
.btn--ghost { background: rgba(0, 0, 0, 0.3); border-color: rgba(255, 255, 255, 0.72); color: var(--white); }
.btn--ghost:hover { background: var(--white); border-color: var(--white); color: var(--fif-green); }
.btn--outline { background: transparent; border-color: currentColor; color: var(--fif-green); }
.btn--outline:hover { background: var(--fif-green); border-color: var(--fif-green); color: var(--white); }
.btn--ink { background: var(--ink); border-color: var(--ink); }
.btn--ink:hover { background: var(--white); border-color: var(--white); color: var(--accent); }
.btn--sm { min-height: 2.75rem; padding: 0 1.25rem; font-size: 0.75rem; }

/* Text link with accent underline — "VIEW ALL →" */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding-bottom: 0.3rem;
  border-bottom: 3px solid var(--accent);
  color: var(--fif-green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.link-arrow svg { width: 1rem; height: 1rem; transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover svg { transform: translateX(0.25rem); }

/* ==========================================================================
   Video card
   ========================================================================== */
.video-card { position: relative; display: block; overflow: hidden; background: var(--ink); }
.video-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.6s var(--ease), opacity 0.3s var(--ease); }
.video-card:hover img { transform: scale(1.04); opacity: 0.85; }
.video-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  background: var(--accent);
  color: var(--white);
  transition: transform 0.25s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.video-card:hover .video-card__play { transform: translate(-50%, -50%) scale(1.08); background: var(--white); color: var(--accent); }
.video-card__play svg { width: 1.75rem; height: 1.75rem; margin-left: 0.2rem; }
.video-card--sm .video-card__play { width: 3.25rem; height: 3.25rem; }
.video-card--sm .video-card__play svg { width: 1.25rem; height: 1.25rem; }

/* ==========================================================================
   Tiles — ruled card grids (hairline dividers, lift + accent bar on hover)
   ========================================================================== */
.ruled { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ruled--dark { background: rgba(255, 255, 255, 0.22); border-color: rgba(255, 255, 255, 0.22); }
.ruled > li, .ruled > article { background: var(--white); min-width: 0; }
.ruled--dark > li { background: var(--fif-green); }
.ruled--3, .ruled--4, .ruled--events { grid-template-columns: 1fr; }
@media (min-width: 640px) { .ruled--3, .ruled--4, .ruled--events { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ruled--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .ruled--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .ruled--events { grid-template-columns: repeat(4, 1fr); } }

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-5);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.tile::before {                 /* accent bar draws in from the left */
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.tile:hover { z-index: 1; transform: translateY(-0.35rem); box-shadow: inset 0 0 0 2px var(--fif-green), 0 12px 32px rgba(39, 40, 28, 0.1); }
.tile:hover::before { transform: scaleX(1); }
.tile__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); min-height: 3rem; }
.tile__num { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; color: var(--gray); }
.tile__icon { display: grid; place-items: center; width: 3.25rem; height: 3.25rem; transition: transform 0.25s var(--ease); }
.tile__icon img { width: 3rem; height: 3rem; object-fit: contain; }
.tile:hover .tile__icon { transform: translateY(-0.25rem); }
.tile h3 { font-size: var(--text-lg); line-height: 1.3; }
.tile p { color: var(--color-text-muted); font-size: var(--text-md); }

/* tiles that carry their own inner spacing */
.speaker, .story-card, .event { padding: 0; gap: 0; }

/* dark tile (conference components) */
.tile--dark { color: var(--white); min-height: 15rem; }
.tile--dark::before { background: var(--fif-lime); }
.tile--dark:hover { background: transparent; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65); }
.tile--dark .tile__num { font-size: var(--text-3xl); line-height: 0.9; letter-spacing: -0.04em; color: rgba(255, 255, 255, 0.42); font-weight: 500; }
.tile--dark h3 { font-size: var(--text-xl); color: var(--white); margin-top: auto; }
.tile--dark .tile__when { color: var(--white); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* theme row (icon set → thematic areas) */
.theme-row { margin-top: var(--space-8); }
.theme-row .tile { flex-direction: row; align-items: center; gap: var(--space-5); padding: var(--space-5); }
.theme-row .tile__icon { width: 4rem; height: 4rem; background: var(--lime-soft); }
.theme-row .tile h3 { font-size: var(--text-lg); }

/* Generic bordered card */
.card { display: flex; flex-direction: column; gap: var(--space-3); padding: var(--space-6); background: var(--white); border: 1px solid var(--line); }

/* Illustration frame */
.figure { position: relative; }
.figure img { width: 100%; height: auto; }
.figure--card { padding: var(--space-6); background: var(--white); border: 1px solid var(--line); }
.figure--tint { background: var(--green-tint); border-color: transparent; }
.figure--paper { background: var(--paper); border-color: transparent; }
.figure--frame { overflow: hidden; }
.figure--frame img { transition: transform 0.6s var(--ease); }
.figure--frame:hover img { transform: scale(1.03); }

/* ==========================================================================
   Agenda
   ========================================================================== */
.day { background: var(--white); border: 1px solid var(--line); }
.day__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--fif-green);
  color: var(--white);
  border-bottom: 3px solid var(--accent);
}
.day__head h3 { font-size: var(--text-2xl); }
.day__head p { margin-top: var(--space-1); color: var(--color-on-green-muted); font-size: var(--text-sm); }
.day__head img { width: 5.5rem; height: 5.5rem; object-fit: contain; flex: none; }

.timeline { position: relative; padding: var(--space-3) var(--space-5) var(--space-5); }
.timeline::before {
  content: "";
  position: absolute;
  left: calc(var(--space-5) + 0.375rem - 1px);
  top: 2.4rem;
  bottom: 2.4rem;
  width: 2px;
  background: var(--line);
}
.session {
  position: relative;
  display: grid;
  gap: var(--space-2);
  padding: var(--space-5) 0 var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--line);
}
.session:last-child { border-bottom: 0; }
.session::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.85rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--white);
  transition: transform 0.25s var(--ease);
}
.session:hover::before { transform: rotate(45deg) scale(1.2); }
.session__time { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fif-green); }
.session__title { font-size: var(--text-md); line-height: 1.45; }
.session__title strong { display: block; font-weight: 700; font-size: var(--text-lg); line-height: 1.3; }
.session__desc { margin-top: var(--space-2); font-size: var(--text-sm); line-height: 1.65; color: var(--color-text-muted); }
.session__desc + .session__desc { margin-top: var(--space-3); }
.session__desc b { color: var(--ink); font-weight: 500; }
.session__desc a { color: var(--fif-green); }
.session__strands { display: grid; gap: var(--space-3); margin-top: var(--space-2); }
.strand { padding: var(--space-3) var(--space-4); background: var(--paper); border-left: 3px solid var(--fif-lime); font-size: var(--text-sm); line-height: 1.5; }
.strand strong { display: block; font-weight: 700; color: var(--fif-green); }
.session--break .session__title { color: var(--color-text-muted); font-size: var(--text-sm); }
.session--break::before { background: var(--line); }
.session--exhibition::before { background: var(--fif-orange); }
@media (min-width: 640px) {
  .timeline { padding-inline: var(--space-6); }
  .timeline::before { left: calc(var(--space-6) + 0.375rem - 1px); }
}

/* ==========================================================================
   Exhibition
   ========================================================================== */
.exhibition__subhead,
.conference__subhead { margin: var(--space-8) 0 var(--space-5); font-size: var(--text-2xl); }
.conference__subhead { color: var(--white); }
.conference__art { width: min(100%, 30rem); justify-self: center; opacity: 0.95; }
.exhibitor { min-height: 14rem; }
.exhibitor .tile__num { color: var(--accent); }
.exhibitor-art { display: grid; place-items: center; padding: var(--space-5); }
.exhibitor-art img { width: 100%; max-width: 20rem; }

/* ==========================================================================
   Pull-quote, regions, audience, note
   ========================================================================== */
.pullquote {
  margin-top: var(--space-6);
  padding: var(--space-6) var(--space-6) var(--space-6) var(--space-7);
  background: var(--lime-soft);
  border-left: 8px solid var(--fif-lime);
  font-size: var(--text-xl);
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
}
.realities__body { max-width: 46rem; margin-top: var(--space-6); }
.region { padding: var(--space-6); gap: var(--space-4); }
.region__icons { display: flex; gap: var(--space-4); align-items: center; }
.region__icons img { height: 3.5rem; width: auto; max-width: 5rem; object-fit: contain; }
.region__art { margin-top: auto; padding-top: var(--space-4); width: 100%; height: 15rem; object-fit: contain; object-position: center bottom; }

.audience { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-5) var(--space-6); background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--fif-lime); transition: transform 0.2s var(--ease), border-color 0.2s var(--ease); }
.audience:hover { transform: translateX(0.25rem); border-left-color: var(--accent); }
.audience h4 { color: var(--fif-green); font-size: var(--text-lg); font-weight: 700; }
.audience p { color: var(--color-text-muted); }
.footnote { font-size: var(--text-sm); color: var(--color-text-muted); }

.note { display: grid; gap: var(--space-5); align-items: center; }
.note__art { width: 12rem; }
.note h2 { font-size: var(--text-2xl); }
.note p { font-size: var(--text-lg); }
@media (min-width: 720px) {
  .note { grid-template-columns: 16rem minmax(0, 1fr); gap: var(--space-7); }
  .note__art { width: 16rem; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, 1fr); }
.gallery__item { overflow: hidden; background: var(--ink); }
.gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.6s var(--ease), opacity 0.3s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); opacity: 0.9; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Ecosystem (Forum / Challenge / Fellowship / events)
   ========================================================================== */
.pillar { padding: var(--space-6); gap: var(--space-4); }
.pillar__art { height: 8rem; width: auto; max-width: 100%; object-fit: contain; object-position: left; }
.pillar__tag { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.pillar p { color: var(--color-text-muted); }
.milestones { display: grid; gap: var(--space-3); margin-top: var(--space-2); counter-reset: ms; }
.milestones li { position: relative; padding-left: 2.5rem; font-size: var(--text-sm); line-height: 1.55; color: var(--ink); counter-increment: ms; }
.milestones li::before {
  content: counter(ms);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--fif-lime);
  font-size: var(--text-xs);
  font-weight: 700;
}
.article-card { display: grid; overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease); }
.article-card:hover { transform: translateY(-0.35rem); box-shadow: inset 0 0 0 2px var(--fif-green), 0 12px 32px rgba(39, 40, 28, 0.1); }
.article-card__media { overflow: hidden; }
.article-card img { width: 100%; height: 100%; min-height: 14rem; object-fit: cover; transition: transform 0.6s var(--ease); }
.article-card:hover img { transform: scale(1.04); }
.article-card__body { display: flex; flex-direction: column; gap: var(--space-4); padding: var(--space-6); justify-content: center; align-items: flex-start; }
.article-card__body p { color: var(--color-text-muted); }
@media (min-width: 800px) { .article-card { grid-template-columns: 5fr 7fr; } }

.event { display: flex; flex-direction: column; overflow: hidden; }
.event__media { overflow: hidden; }
.event img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.6s var(--ease); }
.event:hover img { transform: scale(1.05); }
.event__body { padding: var(--space-5); }
.event__body h3 { font-size: var(--text-lg); }
.event__date { margin-top: var(--space-2); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fif-green); }
.event--current .event__date { color: var(--accent); }

/* ==========================================================================
   Speakers
   ========================================================================== */
.speaker { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.speaker__photo { background: var(--green-tint); padding-top: var(--space-4); }
.speaker__photo img { width: 100%; max-width: 15rem; margin-inline: auto; aspect-ratio: 1; object-fit: cover; transition: transform 0.4s var(--ease); }
.speaker:hover .speaker__photo img { transform: scale(1.04); }
.speaker__body { display: flex; flex: 1; flex-direction: column; gap: var(--space-1); padding: var(--space-5); }
.speaker__name { font-size: var(--text-lg); line-height: 1.25; }
.speaker__role { font-size: var(--text-sm); line-height: 1.5; color: var(--color-text-muted); }
.speaker__org {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--fif-green);
  text-decoration: none;
}
.speaker__org svg { flex: none; width: 1em; height: 1em; margin-top: 0.05em; color: var(--accent); transition: transform 0.25s var(--ease); }
.speaker__org:hover { color: var(--accent); }
.speaker__org:hover svg { transform: translate(0.15rem, -0.15rem); }
.speaker__org::after { content: ""; position: absolute; inset: 0; }   /* whole card is the link target */

.coming-soon { display: grid; gap: var(--space-4); justify-items: center; text-align: center; padding: var(--space-8) var(--space-6); background: var(--green-tint); border-top: 3px solid var(--accent); }
.coming-soon__dots { display: flex; gap: var(--space-2); }
.coming-soon__dots span { width: 0.6rem; height: 0.6rem; background: var(--fif-green); }
.coming-soon__dots span:nth-child(2) { background: var(--fif-lime); }
.coming-soon__dots span:nth-child(3) { background: var(--fif-orange); }

/* ==========================================================================
   Stories
   ========================================================================== */
.story { display: flex; flex-direction: column; gap: var(--space-3); }
.story h3 { font-size: var(--text-md); line-height: 1.4; }
.story-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.story-card__media { overflow: hidden; }
.story-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.6s var(--ease); }
.story-card:hover img { transform: scale(1.05); }
.story-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; gap: var(--space-3); padding: var(--space-5); }
.story-card__tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.tag { padding: 0.15rem 0.7rem; background: var(--lime-soft); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.story-card h3 { font-size: var(--text-lg); line-height: 1.3; }
.story-card .link-arrow { margin-top: auto; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-group + .faq-group { margin-top: var(--space-8); }
.faq-item { scroll-margin-top: 7rem; }
.faq-group > h2 { margin-bottom: var(--space-5); font-size: var(--text-2xl); color: var(--fif-green); scroll-margin-top: 7rem; }
.faq-group > h2::after { content: ""; display: block; width: 4rem; height: 3px; margin-top: var(--space-3); background: var(--accent); }
.faq-item { border: 1px solid var(--line); background: var(--white); transition: border-color 0.2s var(--ease); }
.faq-item + .faq-item { margin-top: -1px; }
.faq-item:hover { border-color: var(--fif-green); position: relative; z-index: 1; }
.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -0.1rem;
  background:
    linear-gradient(var(--white), var(--white)) center / 0.7rem 2px no-repeat,
    linear-gradient(var(--white), var(--white)) center / 2px 0.7rem no-repeat,
    var(--fif-green);
  transition: background-color 0.2s var(--ease);
}
.faq-item[open] summary { color: var(--fif-green); box-shadow: inset 4px 0 0 var(--accent); }
.faq-item[open] summary::after { background: linear-gradient(var(--white), var(--white)) center / 0.7rem 2px no-repeat, var(--accent); }
.faq-item__body { padding: 0 var(--space-5) var(--space-5); color: var(--color-text-muted); }
.faq-item__body ul { margin-top: var(--space-3); display: grid; gap: var(--space-2); }
.faq-item__body li { position: relative; padding-left: var(--space-5); }
.faq-item__body li::before { content: ""; position: absolute; left: 0.2rem; top: 0.7em; width: 0.45rem; height: 0.45rem; background: var(--accent); }
.faq-item__body a { color: var(--fif-green); font-weight: 500; }

/* ==========================================================================
   Hero — tinted photo, FIF lockup + tagline on the left, the ring stays clear on the right
   ========================================================================== */
.hero { position: relative; background: var(--green-deep); color: var(--white); }
.hero__stage { position: relative; }
.hero__media { position: relative; height: 21rem; background: var(--green-deep); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 88% 30%; }
.hero__arc { display: none; }
.hero__inner { padding-block: var(--space-7) var(--space-7); background: var(--fif-green); }
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-5); }
.hero__logo { width: 6.5rem; height: auto; }
.hero__title { max-width: 14ch; font-size: clamp(2.35rem, 1.15rem + 2.8vw, 3.75rem); line-height: 0.98; letter-spacing: -0.03em; }
.hero__title-accent { display: inline-block; white-space: nowrap; background: linear-gradient(to bottom, transparent 0, transparent calc(100% - 0.3em), var(--brac-magenta) calc(100% - 0.3em), var(--brac-magenta) 100%); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero__actions .btn { min-height: 2.75rem; padding-inline: 1.25rem; font-size: 0.75rem; }
.hero__rail { background: var(--green-deep); border-top: 1px solid rgba(255, 255, 255, 0.18); }
.hero__facts { display: grid; grid-template-columns: 1fr; margin: 0 auto; padding-inline: var(--gutter); list-style: none; }
.hero__facts li { padding: var(--space-4) 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.hero__facts li:last-child { border-bottom: 0; }
.hero__facts small { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-on-green-muted); }
.hero__facts strong { display: block; margin-top: 2px; font-size: var(--text-lg); font-weight: 700; }

@media (min-width: 900px) {
  /* stage = photo + copy, sized to the photo's own proportions so the whole ring is visible; the facts rail sits below it, never on top of it */
  .hero__stage { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; min-height: clamp(34rem, 45.4vw, 46rem); }
  .hero__media { position: absolute; inset: 0; z-index: -3; height: auto; }
  .hero__media img { object-position: 100% 50%; }
  /* the grey side of the photo is dyed FIF green (multiply keeps the texture); the ring side keeps its natural colour */
  .hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #005247 0%, #007161 30%, rgba(0, 113, 97, 0) 45%);
    mix-blend-mode: multiply;
  }
  .hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 62, 54, 0.55) 0%, rgba(0, 62, 54, 0.2) 30%, rgba(0, 62, 54, 0) 44%);
    pointer-events: none;
  }
  .hero__arc { display: block; position: absolute; z-index: -2; left: -9rem; bottom: -11rem; width: 34rem; height: auto; opacity: 0.16; pointer-events: none; }
  .hero__inner { display: flex; align-items: center; width: 100%; padding-block: var(--space-8); background: transparent; }
  .hero__copy { gap: var(--space-6); max-width: 44rem; }
  .hero__logo { width: clamp(7rem, 9vw, 9rem); }
  .hero__rail { background: var(--green-deep); }
  .hero__facts { grid-template-columns: repeat(3, auto); justify-content: start; width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); }
  .hero__facts li { padding: var(--space-4) var(--space-7) var(--space-4) 0; border-bottom: 0; }
  .hero__facts li + li { padding-left: var(--space-7); border-left: 1px solid rgba(255, 255, 255, 0.18); }
}

/* entrance: the photo settles, the copy rises in sequence (only when motion is allowed) */
@keyframes heroSettle { from { transform: scale(1.07); } to { transform: scale(1); } }
@keyframes heroRise { from { opacity: 0; transform: translateY(1.5rem); } to { opacity: 1; transform: none; } }
.motion-ready .hero__media img { animation: heroSettle 1.8s var(--ease) both; }
.motion-ready .hero__copy > * { animation: heroRise 0.8s var(--ease) both; }
.motion-ready .hero__copy > :nth-child(1) { animation-delay: 0.1s; }
.motion-ready .hero__copy > :nth-child(2) { animation-delay: 0.22s; }
.motion-ready .hero__copy > :nth-child(3) { animation-delay: 0.34s; }
.motion-ready .hero__rail { animation: heroRise 0.8s var(--ease) 0.5s both; }

/* floating "Get in touch" (WhatsApp), as on the live site */
.whatsapp-float {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.4rem 1.1rem 0.4rem 0.4rem;
  background: var(--white);
  color: var(--fif-green);
  border-radius: var(--radius-btn);
  box-shadow: 0 8px 24px rgba(0, 40, 35, 0.28);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 40, 35, 0.34); }
.whatsapp-float__icon { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 4px; background: var(--fif-green); color: var(--white); }
.whatsapp-float__icon svg { width: 1.4rem; height: 1.4rem; }
@media (max-width: 639px) {
  .whatsapp-float { padding: 0.3rem; }
  .whatsapp-float__text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

/* ==========================================================================
   Page hero (inner pages) + breadcrumb
   ========================================================================== */
.page-hero { position: relative; overflow: hidden; background: var(--fif-green); color: var(--white); padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.page-hero__inner { position: relative; z-index: 1; display: grid; gap: var(--space-6); align-items: center; }
.page-hero h1 { font-size: var(--text-3xl); max-width: 18ch; }
.page-hero h1::after { content: ""; display: block; width: 4rem; height: 3px; margin-top: var(--space-4); }
.page-hero__art { max-width: 13rem; opacity: 0.95; }
.page-hero__leaf { position: absolute; right: -4rem; bottom: -5rem; width: 22rem; opacity: 0.16; pointer-events: none; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); margin-bottom: var(--space-5); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.crumbs a { color: var(--color-on-green-muted); text-decoration: none; }
.crumbs a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.crumbs li + li::before { content: "/"; margin-right: var(--space-2); color: var(--fif-lime); }
.crumbs { list-style: none; }
.crumbs li { display: inline-flex; }
@media (min-width: 900px) {
  .page-hero__inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
  .page-hero__art { justify-self: end; max-width: 26rem; }
}

/* ==========================================================================
   Intro (home) and spotlight panel that straddles into the next band
   ========================================================================== */
.intro .lead { font-size: clamp(1.2rem, 1rem + 0.9vw, 1.6rem); line-height: 1.5; color: var(--fif-green); }
.intro .lead strong { color: var(--ink); font-weight: 700; }
.spotlight {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
  margin-bottom: -6rem;
  padding: var(--space-6);
  background: var(--fif-green);
  color: var(--white);
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 24px 48px rgba(0, 40, 35, 0.28);
}
.spotlight h2 { font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem); line-height: 1.15; }
.spotlight h2::after { display: none; }
.spotlight__eyebrow { margin-bottom: var(--space-3); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); }
.spotlight__eyebrow::before { content: ""; display: inline-block; width: 2rem; height: 3px; margin-right: var(--space-3); vertical-align: middle; background: var(--fif-lime); }
.spotlight__body { display: grid; gap: var(--space-3); align-content: center; }
.spotlight__facts { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
.fact { padding: var(--space-3) var(--space-4); background: var(--green-deep); border: 1px solid rgba(255, 255, 255, 0.22); }
.fact small { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-on-green-muted); }
.fact strong { display: block; margin-top: 2px; font-size: var(--text-lg); font-weight: 700; }
@media (min-width: 640px) { .spotlight__facts { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) {
  .spotlight { grid-template-columns: 1.15fr 1fr; align-items: center; gap: var(--space-8); padding: var(--space-7) var(--space-8); }
}

/* Green band with big numbered columns */
.band { padding-top: calc(6rem + var(--space-7)); padding-bottom: var(--space-9); background: var(--fif-green); color: var(--white); }
.band + .section { padding-top: var(--section-y); }

/* ==========================================================================
   Tiles v2 — larger editorial type, big numerals
   ========================================================================== */
.tile h3 { font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem); font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; color: var(--fif-green); }
.tile--dark h3 { color: var(--white); font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); }
.tile--num .tile__num { font-size: var(--text-3xl); line-height: 0.9; font-weight: 500; letter-spacing: -0.04em; color: #c5cbc0; }
.tile__arrow { width: 1.25rem; height: 1.25rem; margin-top: auto; color: var(--accent); transition: transform 0.25s var(--ease); }
.tile--dark .tile__arrow { color: var(--fif-lime); }
.tile:hover .tile__arrow { transform: translateX(0.3rem); }
.tile--dark .tile__icon img { width: 3rem; height: 3rem; opacity: 0.85; }
.tile--dark:hover .tile__icon img { opacity: 1; }
.tile__meta { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.tile__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fif-green); text-align: right; }

/* ==========================================================================
   Rows (list with numerals + arrow) — participants
   ========================================================================== */
.rows { border-top: 1px solid var(--line); }
.rows li { position: relative; display: grid; grid-template-columns: 3.5rem 1fr auto; gap: var(--space-4); align-items: center; padding: var(--space-5) var(--space-3); border-bottom: 1px solid var(--line); transition: background-color 0.2s var(--ease), padding 0.25s var(--ease); }
.rows li:hover { background: var(--green-tint); padding-left: var(--space-5); }
.rows__num { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; color: var(--accent); }
.rows h3, .rows h4 { font-size: clamp(1.2rem, 1rem + 0.7vw, 1.6rem); font-weight: 500; line-height: 1.25; color: var(--fif-green); }
.rows p { margin-top: var(--space-1); color: var(--color-text-muted); }
.rows svg { width: 1.25rem; height: 1.25rem; color: var(--accent); transition: transform 0.25s var(--ease); }
.rows li:hover svg { transform: translateX(0.3rem); }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: 1fr; background: var(--line); gap: 1px; border: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-6) var(--space-5); background: var(--white); transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease); }
.stat:hover { z-index: 1; transform: translateY(-0.35rem); box-shadow: inset 0 0 0 2px var(--fif-green), 0 12px 32px rgba(39, 40, 28, 0.1); }
.stat__num { font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem); font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--fif-green); }
.stat__label { font-size: var(--text-md); font-weight: 500; }
.stat__note { font-size: var(--text-xs); color: var(--color-text-muted); }
@media (min-width: 640px) { .stats { grid-template-columns: 1fr 1fr; } }
.stats--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .stats--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .stats--4 { grid-template-columns: repeat(4, 1fr); } }
.tile__label { text-transform: uppercase; }
.figure--caption { position: relative; overflow: hidden; }
.figure--caption img { width: 100%; height: 100%; min-height: 20rem; object-fit: cover; }
.figure--caption figcaption { position: absolute; inset: auto 0 0 0; padding: var(--space-8) var(--space-5) var(--space-5); background: linear-gradient(0deg, rgba(0, 40, 35, 0.9), rgba(0, 40, 35, 0)); color: var(--white); font-size: var(--text-sm); }
.figure--caption figcaption strong { display: block; margin-bottom: var(--space-1); font-size: var(--text-lg); font-weight: 700; }

/* ==========================================================================
   Editorial cards (stories / articles): colour rule on top, meta row, title, link
   ========================================================================== */
.story-card { border-top: 4px solid var(--fif-green); }
.ruled > li:nth-child(3n + 2) .story-card { border-top-color: var(--accent); }
.ruled > li:nth-child(3n) .story-card { border-top-color: var(--fif-orange); }
.story-card__body { padding: var(--space-5); gap: var(--space-4); }
.story-card h3 { font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.5rem); }
.event h3 { font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.5rem); }
.speaker__name { font-weight: 500; color: var(--fif-green); font-size: 1.3rem; }

/* ==========================================================================
   Footer — newsletter strip · sitemap columns · contacts · legal bar
   ========================================================================== */
.site-footer { color: var(--white); border-top: 4px solid var(--fif-lime); }
.site-footer a { text-decoration: none; }
/* icon ribbon: the very top of the footer */
.footer__ribbon { background: var(--fif-green); border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.footer__ribbon-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-4) var(--space-6); padding-block: var(--space-6); }
.footer__ribbon img { width: 3rem; height: 3rem; object-fit: contain; opacity: 0.9; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease); }
.footer__ribbon img:hover { transform: translateY(-0.3rem); opacity: 1; }
@media (min-width: 900px) { .footer__ribbon-inner { justify-content: space-between; } .footer__ribbon img { width: 3.5rem; height: 3.5rem; } }

/* newsletter: its own section, above the footer */
.newsletter { position: relative; overflow: hidden; background: var(--brac-magenta); color: var(--white); }
.newsletter__art { position: absolute; right: -3rem; top: 50%; width: 24rem; height: auto; transform: translateY(-50%); opacity: 0.12; pointer-events: none; filter: brightness(0) invert(1); }
.newsletter__inner { position: relative; display: grid; gap: var(--space-6); align-items: center; padding-block: var(--space-8); scroll-margin-top: 7rem; }
.newsletter__copy { display: flex; align-items: center; gap: var(--space-5); }
.newsletter__icon { display: none; place-items: center; flex: none; width: 4.5rem; height: 4.5rem; background: var(--fif-lime); color: var(--ink); }
.newsletter__icon svg { width: 2rem; height: 2rem; }
.newsletter__eyebrow { margin-bottom: var(--space-2); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); }
.newsletter__title { max-width: 27ch; text-wrap: pretty; font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem); line-height: 1.12; }
.subscribe__field { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-btn); box-shadow: 0 10px 30px rgba(90, 0, 48, 0.35); overflow: hidden; }
.subscribe__icon { display: none; place-items: center; flex: none; width: 3.5rem; color: var(--brac-magenta); }
.subscribe__icon svg { width: 1.35rem; height: 1.35rem; }
.subscribe__field input { flex: 1; min-width: 0; min-height: 3.75rem; padding: 0 var(--space-5); border: 0; border-radius: 0; background: transparent; color: var(--ink); font-size: var(--text-md); }
.subscribe__field input::placeholder { color: var(--gray); opacity: 1; }
.subscribe__field input:focus-visible { outline: none; }
.subscribe__field:focus-within { box-shadow: 0 0 0 3px var(--fif-lime), 0 10px 30px rgba(90, 0, 48, 0.35); }
.subscribe__field .btn { min-height: 3.75rem; border-radius: 0; }
.subscribe__field .btn:hover { background: var(--fif-green); border-color: var(--fif-green); color: var(--white); }
@media (min-width: 560px) {
  .subscribe__field { flex-direction: row; align-items: stretch; }
  .subscribe__icon { display: grid; }
  .subscribe__field input { padding-left: 0; }
  .newsletter__icon { display: grid; }
}
@media (min-width: 1000px) { .newsletter__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 34rem); gap: var(--space-8); } }

.footer__main { background: var(--fif-green); padding-block: var(--space-8) var(--space-5); }
.footer__grid { display: grid; gap: var(--space-7) var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.3fr repeat(3, 1fr) 1.5fr; } }
.footer__label { position: relative; margin-bottom: var(--space-5); padding-bottom: var(--space-3); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); }
.footer__label::after { content: ""; position: absolute; left: 0; bottom: 0; width: 2rem; height: 2px; background: var(--fif-lime); }
.footer__brand { display: flex; flex-direction: column; gap: var(--space-2); align-items: flex-start; }
.footer__brand .fif-logo { width: 8rem; margin-bottom: var(--space-3); }
.footer__name { font-size: var(--text-lg); font-weight: 700; }
.footer__tag { color: var(--color-on-green-muted); font-size: var(--text-sm); }
.footer__initiative { display: flex; align-items: center; gap: var(--space-3); width: 100%; margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid rgba(255, 255, 255, 0.22); }
.footer__initiative p { font-size: var(--text-sm); color: var(--color-on-green-muted); }
.footer__initiative img { width: 5rem; height: auto; }
.footer__list { display: grid; gap: var(--space-1); }
.footer__list a { display: inline-block; padding: var(--space-1) 0; font-size: var(--text-md); transition: transform 0.25s var(--ease), color 0.2s var(--ease); }
.footer__list a:hover { color: var(--fif-lime); transform: translateX(0.25rem); }
.footer__contact { display: grid; gap: var(--space-4); }
.footer__contact li { display: grid; grid-template-columns: 1.25rem 1fr; gap: var(--space-3); align-items: start; font-size: var(--text-md); line-height: 1.45; }
.footer__contact svg { width: 1.25rem; height: 1.25rem; margin-top: 0.15rem; color: var(--fif-lime); }
.footer__contact a { font-weight: 500; overflow-wrap: anywhere; }
.footer__contact a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer__social { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-6); }
.footer__social a { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border: 1px solid rgba(255, 255, 255, 0.45); border-radius: var(--radius-btn); transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.25s var(--ease); }
.footer__social a:hover { background: var(--white); color: var(--fif-green); transform: translateY(-2px); }
.footer__social svg { width: 1.1rem; height: 1.1rem; }
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-3) var(--space-6); padding-top: var(--space-5); font-size: var(--text-sm); color: var(--color-on-green-muted); }
.footer__legal ul { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); }
.footer__legal a { color: var(--white); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(255, 255, 255, 0.45); }
.footer__legal a:hover { text-decoration-color: var(--fif-lime); }
.footer__legal .ico { margin-left: var(--space-1); }

/* ==========================================================================
   Motion — scroll reveal (added by js/motion.js; opt-in via .motion-ready)
   Elements are fully visible without JS, with ?static, and in print.
   ========================================================================== */
.motion-ready .motion-reveal {
  --motion-x: 0;
  --motion-y: 1.4rem;
  opacity: 0;
  translate: var(--motion-x) var(--motion-y);
  transition: opacity 0.62s var(--ease), translate 0.62s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.motion-ready .motion-from-left { --motion-x: -1.35rem; --motion-y: 0; }
.motion-ready .motion-from-right { --motion-x: 1.35rem; --motion-y: 0; }
.motion-ready .motion-reveal.is-visible { opacity: 1; translate: 0 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .motion-ready .motion-reveal { opacity: 1 !important; translate: none !important; }
}
@media print {
  .motion-ready .motion-reveal { opacity: 1 !important; translate: none !important; }
}

/* refinements */
.region p { font-size: var(--text-lg); line-height: 1.55; }
.figure--card { display: grid; place-items: center; }
.figure--card img { max-width: 24rem; }

/* ==========================================================================
   Ecosystem pages (home, fellowship, challenge)
   ========================================================================== */
.page-hero__sub { margin-top: var(--space-4); max-width: 34rem; font-size: var(--text-lg); line-height: 1.5; color: var(--color-on-green-muted); }
.tile__link { color: inherit; text-decoration: none; }
.tile__link::after { content: ""; position: absolute; inset: 0; }
.tile--dark p:not(.tile__when) { color: var(--color-on-green-muted); font-size: var(--text-md); }
.tile__eg { font-size: var(--text-sm); line-height: 1.6; color: var(--color-text-muted); }
.band__note { margin-top: var(--space-6); max-width: 46rem; font-size: var(--text-lg); line-height: 1.5; color: var(--color-on-green-muted); }
.band .section-head h2::after { background: var(--fif-lime); }
.band .eyebrow { color: var(--white); display: inline-flex; align-items: center; gap: var(--space-3); }
.band .eyebrow::before { content: ""; width: 2rem; height: 3px; background: var(--fif-lime); }
.band .section-head h2 { color: var(--white); }
.spotlight--solo { display: block; margin: 0; box-shadow: none; }
.list { display: grid; gap: var(--space-2); margin-top: var(--space-2); }
.list li { position: relative; padding-left: var(--space-5); }
.list li::before { content: ""; position: absolute; left: 0.2rem; top: 0.7em; width: 0.45rem; height: 0.45rem; background: var(--accent); }
.qlist { margin-top: var(--space-3); color: var(--color-text-muted); font-size: var(--text-md); }
.qlist li { line-height: 1.55; }
.tile--num .tile__num + * { margin-top: 0; }
.section--green .ruled--dark .tile h3 { color: var(--white); }
.section--green .lead { color: var(--color-on-green-muted); }
.section--green .eyebrow { text-transform: uppercase; }
.card p + p { margin-top: var(--space-3); }
.card h3 { color: var(--fif-green); }

/* header at laptop widths: keep every control on one row */
@media (min-width: 1000px) and (max-width: 1279px) {
  .search { display: none; }
  .nav__link { padding: 0 0.7rem; font-size: 1rem; }
  .site-header__inner { gap: var(--space-4); }
  .brand-mark img { height: 4rem; }
}
.tile--dark .tile__num--accent { color: var(--fif-lime); }

/* ==========================================================================
   Bridge — connects the previous FIF focus with the current one
   ========================================================================== */
.bridge { display: grid; gap: var(--space-4); margin-bottom: var(--space-7); }
.bridge__card { position: relative; display: flex; flex-direction: column; gap: var(--space-3); padding: var(--space-6); border: 1px solid var(--line); background: var(--white); }
.bridge__card--now { background: var(--fif-green); border-color: var(--fif-green); color: var(--white); }
.bridge__tag { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.bridge__card--now .bridge__tag { color: var(--white); }
.bridge__card h3 { font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.6rem); font-weight: 500; line-height: 1.25; color: var(--fif-green); }
.bridge__card--now h3 { color: var(--white); }
.bridge__card .link-arrow { margin-top: auto; align-self: flex-start; }
.bridge__card--now .link-arrow { color: var(--white); }
.bridge__card--now .link-arrow:hover { color: var(--fif-lime); }
.bridge__link { display: grid; place-items: center; }
.bridge__link span { display: grid; place-items: center; width: 3rem; height: 3rem; background: var(--accent); color: var(--white); transform: rotate(90deg); }
.bridge__link svg { width: 1.25rem; height: 1.25rem; }
@media (min-width: 900px) {
  .bridge { grid-template-columns: 1fr auto 1fr; align-items: stretch; }
  .bridge__link span { transform: none; }
}

/* tablet / small laptop: narrower headline so it stays clear of the ring */
@media (min-width: 900px) and (max-width: 1199px) {
  .hero__title { max-width: 9.5ch; font-size: clamp(2.75rem, 1rem + 4.2vw, 3.75rem); }
}

/* ==========================================================================
   Balanced section heads, attached band, light fact cells
   ========================================================================== */
.section-head--split { max-width: none; display: grid; gap: var(--space-4) var(--space-8); align-items: end; }
.section-head--split > p { margin: 0; max-width: 36rem; padding-bottom: 0.35rem; font-size: var(--text-lg); line-height: 1.55; }
.section-head--split h2 { max-width: 22ch; }
@media (min-width: 900px) { .section-head--split { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); } }

/* the three components sit directly under the hero */
.band--attached { padding-top: var(--space-7); padding-bottom: var(--space-8); border-top: 1px solid rgba(255, 255, 255, 0.2); }
.band--attached .section-head { margin-bottom: var(--space-6); }

.facts { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
@media (min-width: 560px) { .facts { grid-template-columns: 1fr 1fr; } }
.fact--light { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--accent); }
.fact--light small { color: var(--color-text-muted); }
.fact--light strong { color: var(--fif-green); }

/* polish: consistent title position across columns; numerals that meet 3:1 */
.tile--dark h3 { margin-top: var(--space-5); }
.tile--dark .tile__top { min-height: 3.25rem; }
.tile--num .tile__num { color: #7f877b; }

/* ==========================================================================
   Intro (What is FIF?) — copy left, photo fills the column, offset frame
   ========================================================================== */
.intro__grid { display: grid; gap: var(--space-7); align-items: stretch; }
.intro__media { position: relative; margin: 0; min-height: 22rem; isolation: isolate; }
.intro__media img { width: 100%; height: 100%; min-height: 22rem; object-fit: cover; }
.intro__media::before { content: ""; position: absolute; inset: var(--space-5) calc(var(--space-5) * -1) calc(var(--space-5) * -1) var(--space-5); border: 3px solid var(--fif-lime); z-index: -1; display: none; }
.intro__badge { position: absolute; left: 0; bottom: 0; display: grid; gap: 2px; padding: var(--space-4) var(--space-5); background: var(--fif-green); color: var(--white); border-top: 3px solid var(--accent); }
.intro__badge strong { font-size: var(--text-xl); font-weight: 700; line-height: 1.1; }
.intro__badge span { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-on-green-muted); }
.intro .stats { margin-top: var(--space-8); }
.stats--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .stats--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) {
  .intro__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--space-9); }
  .intro__media::before { display: block; }
}

/* ==========================================================================
   Icon tiles (Challenge at a glance)
   ========================================================================== */
.ruled--2 { grid-template-columns: 1fr; }
@media (min-width: 560px) { .ruled--2 { grid-template-columns: repeat(2, 1fr); } }
.icon-tiles .tile { gap: var(--space-2); padding: var(--space-6); min-height: 13rem; }
.icon-tile__icon { display: grid; place-items: center; width: 4rem; height: 4rem; margin-bottom: var(--space-4); background: var(--lime-soft); color: var(--fif-green); transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.25s var(--ease); }
.icon-tile__icon svg { width: 2rem; height: 2rem; }
.icon-tiles .tile:hover .icon-tile__icon { background: var(--fif-green); color: var(--white); transform: translateY(-0.25rem); }
.icon-tiles .tile h3 { font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.65rem); }
.icon-tiles .tile p { font-size: var(--text-md); }
.rows__check { width: 1.4rem; height: 1.4rem; color: var(--fif-green); }
.rows li:hover .rows__check { color: var(--accent); }

/* ==========================================================================
   Consistency pass: FAQ layout, chip, "next edition" tile
   ========================================================================== */
.chip { display: inline-flex; align-items: center; padding: 0.45rem 1rem; background: var(--fif-lime); color: var(--ink); font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.03em; }

.faq-layout { display: grid; gap: var(--space-6); }
.faq-nav .eyebrow { margin-bottom: var(--space-3); }
.faq-nav ul { display: flex; gap: var(--space-2); overflow-x: auto; padding-bottom: var(--space-2); }
.faq-nav a { display: block; padding: 0.55rem 1rem; border: 1px solid var(--line); background: var(--white); font-size: var(--text-sm); font-weight: 500; color: var(--ink); text-decoration: none; white-space: nowrap; transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease); }
.faq-nav a:hover { background: var(--fif-green); border-color: var(--fif-green); color: var(--white); }
.faq-body { min-width: 0; }
.faq-body .faq-group:first-child > h2 { margin-top: 0; }
@media (min-width: 1000px) {
  .faq-layout { grid-template-columns: 16rem minmax(0, 1fr); gap: var(--space-8); align-items: start; }
  .faq-nav { position: sticky; top: 8rem; }
  .faq-nav ul { flex-direction: column; gap: 0; overflow: visible; border-left: 2px solid var(--line); padding: 0; }
  .faq-nav a { padding: 0.75rem 1rem; border: 0; margin-left: -2px; border-left: 2px solid transparent; background: transparent; white-space: normal; }
  .faq-nav a:hover { background: var(--green-tint); color: var(--fif-green); border-left-color: var(--accent); }
}
.ruled > li.event--next { background: var(--fif-green); color: var(--white); }
.event--next .event__body { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: var(--space-3); height: 100%; padding: var(--space-6); }
.event--next h3 { color: var(--white); }
.event--next p { color: var(--color-on-green-muted); }
.event--next .event__date { color: var(--white); }
.event--next .link-arrow { color: var(--white); margin-top: var(--space-2); }
.event--next .link-arrow:hover { color: var(--fif-lime); }
.event--next::before { background: var(--fif-lime); }

/* FAQ layout: never let the chip row widen the page on small screens */
.faq-layout { grid-template-columns: minmax(0, 1fr); }
.faq-layout > * { min-width: 0; }
@media (min-width: 1000px) { .faq-layout { grid-template-columns: 16rem minmax(0, 1fr); } }

/* ==========================================================================
   The three components: each column takes one brand colour on hover
   (text colours are chosen per background: white on magenta, ink on orange and lime)
   ========================================================================== */
.tile--dark { transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease); }
.tile--dark .tile__num, .tile--dark h3, .tile--dark p, .tile--dark .tile__arrow, .tile--dark .tile__icon img { transition: color 0.25s var(--ease), filter 0.25s var(--ease), opacity 0.25s var(--ease); }

.tile--dark.tile--magenta:hover { background: var(--brac-magenta); box-shadow: inset 0 0 0 2px var(--brac-magenta), 0 14px 34px rgba(90, 0, 48, 0.35); color: var(--white); }
.tile--dark.tile--magenta:hover::before { background: var(--white); }
.tile--dark.tile--magenta:hover .tile__num { color: rgba(255, 255, 255, 0.8); }
.tile--dark.tile--magenta:hover h3, .tile--dark.tile--magenta:hover p { color: var(--white); }
.tile--dark.tile--magenta:hover .tile__arrow { color: var(--white); }

.tile--dark.tile--orange:hover { background: var(--fif-orange); box-shadow: inset 0 0 0 2px var(--fif-orange), 0 14px 34px rgba(90, 50, 0, 0.3); color: var(--ink); }
.tile--dark.tile--lime:hover { background: var(--fif-lime); box-shadow: inset 0 0 0 2px var(--fif-lime), 0 14px 34px rgba(50, 60, 0, 0.3); color: var(--ink); }
.tile--dark.tile--orange:hover::before, .tile--dark.tile--lime:hover::before { background: var(--ink); }
.tile--dark.tile--orange:hover .tile__num, .tile--dark.tile--lime:hover .tile__num { color: rgba(39, 40, 28, 0.72); }
.tile--dark.tile--orange:hover h3, .tile--dark.tile--orange:hover p,
.tile--dark.tile--lime:hover h3, .tile--dark.tile--lime:hover p { color: var(--ink); }
.tile--dark.tile--orange:hover .tile__arrow, .tile--dark.tile--lime:hover .tile__arrow { color: var(--ink); }
.tile--dark.tile--orange:hover .tile__icon img, .tile--dark.tile--lime:hover .tile__icon img { filter: brightness(0); opacity: 0.9; }

/* newsletter on a light ground: separates cleanly from lime bands above and the green footer below */
.newsletter { background: var(--paper); color: var(--ink); border-top: 1px solid var(--line); }
.newsletter__art { filter: none; opacity: 0.1; }
.newsletter__eyebrow { color: var(--brac-magenta); }
.newsletter__title { color: var(--fif-green); }
.newsletter__icon { background: var(--fif-green); color: var(--white); }
.subscribe__field { background: var(--white); box-shadow: inset 0 0 0 2px var(--fif-green); }
.subscribe__field:focus-within { box-shadow: inset 0 0 0 2px var(--fif-green), 0 0 0 3px var(--fif-lime); }
.subscribe__icon { color: var(--fif-green); }
.subscribe__field .btn { background: var(--brac-magenta); border-color: var(--brac-magenta); color: var(--white); }
.subscribe__field .btn:hover { background: var(--fif-green); border-color: var(--fif-green); color: var(--white); }

/* ==========================================================================
   Home: roadmap, per-component sections, faces, years strip
   ========================================================================== */
.eyebrow__num { display: inline-grid; place-items: center; min-width: 1.9rem; height: 1.9rem; margin-right: var(--space-2); background: var(--accent); color: var(--white); font-size: var(--text-xs); letter-spacing: 0; }
.for { padding-left: var(--space-4); border-left: 4px solid var(--fif-lime); font-size: var(--text-md); color: var(--color-text-muted); }
.for strong { display: block; margin-bottom: 2px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fif-green); }
.for--light { margin-top: var(--space-6); color: var(--color-on-green-muted); }
.for--light strong { color: var(--white); }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3) var(--space-5); }

/* fellowship photo */
.intro__media--left::before { inset: var(--space-5) var(--space-5) calc(var(--space-5) * -1) calc(var(--space-5) * -1); }
@media (min-width: 900px) { .intro__media--left::before { display: block; } }
.checklist { display: grid; gap: var(--space-3); }
.checklist li { display: grid; grid-template-columns: 2rem 1fr; gap: var(--space-3); align-items: start; font-size: var(--text-md); line-height: 1.5; }
.checklist span { display: grid; place-items: center; width: 1.75rem; height: 1.75rem; background: var(--fif-lime); font-size: var(--text-xs); font-weight: 700; }

/* conference (green) */
.conf-grid { display: grid; gap: var(--space-6); align-items: stretch; }
.conf-photos { display: grid; gap: var(--space-3); grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
.conf-photos img { width: 100%; height: 100%; object-fit: cover; min-height: 10rem; }
.conf-photos img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
.conf-facts { display: grid; gap: 1px; background: rgba(255, 255, 255, 0.22); border: 1px solid rgba(255, 255, 255, 0.22); }
.conf-facts li { display: flex; flex-direction: column; justify-content: center; gap: var(--space-1); padding: var(--space-5) var(--space-6); background: var(--fif-green); transition: background-color 0.2s var(--ease); }
.conf-facts li:hover { background: var(--green-deep); }
.conf-facts strong { font-size: clamp(2rem, 1.4rem + 2vw, 3.25rem); font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--fif-lime); }
.conf-facts span { color: var(--color-on-green-muted); font-size: var(--text-md); }
@media (min-width: 900px) { .conf-grid { grid-template-columns: 1.3fr 1fr; } }
.conf-subhead { margin: var(--space-8) 0 var(--space-5); font-size: var(--text-lg); font-weight: 500; color: var(--white); }
.faces { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5) var(--space-4); margin-bottom: var(--space-7); }
.face { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); text-align: center; }
.face img { width: 100%; max-width: 9rem; aspect-ratio: 1; object-fit: cover; background: var(--green-deep); border-radius: 50%; transition: transform 0.3s var(--ease); }
.face:hover img { transform: translateY(-0.35rem); }
.face span { font-size: var(--text-sm); font-weight: 500; line-height: 1.3; }
@media (min-width: 640px) { .faces { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .faces { grid-template-columns: repeat(8, 1fr); } }



/* ==========================================================================
   Type scale — one size per role (overrides earlier one-off sizes)
   display (hero) · h1 (page title) · h2 (section) · h3 (card / item) · h4 (compact) · lead
   ========================================================================== */
.hero__title { font-size: var(--fs-display); }
.page-hero h1 { font-size: var(--fs-h1); }

/* section titles */
.section-head h2, .split h2, .intro h2, .note h2, .spotlight h2, .newsletter__title, .footer__cta-title,
.faq-group > h2, .year--next .year__body h3, .panel__intro h2 { font-size: var(--fs-h2); line-height: 1.15; }
.panel__intro h2 { font-size: 1.75rem; }
.conference__subhead, .exhibition__subhead { font-size: var(--fs-h3); font-weight: 700; line-height: 1.25; }

/* card / item titles */
.tile h3, .tile--dark h3, .icon-tiles .tile h3, .bridge__card h3, .rows h3, .rows h4, .roadmap h3, .card h3, .article-card h3, .day__head h3,
.panel__content-head h3, .pillar h3, .card--flat h3 { font-size: var(--fs-h3); line-height: 1.25; }
.icon-tiles .tile h3, .tile--dark h3 { font-size: var(--fs-h3); }

/* compact titles */
.event h3, .story-card h3, .story h3, .year__body h3, .speaker__name, .audience h3, .footer__name { font-size: var(--fs-h4); line-height: 1.3; }
.speaker__name { font-size: 1.125rem; }

/* lead paragraphs */
.intro .lead, .section-head p, .section-head--split > p, .section-head .lead, .page-hero__sub, .note p, .lead { font-size: var(--fs-lead); line-height: 1.55; }
.page-hero p { font-size: var(--fs-lead); }
.band__note { font-size: var(--fs-lead); }
.pullquote { font-size: var(--fs-h3); }

@media (min-width: 900px) and (max-width: 1199px) { .hero__title { font-size: clamp(2.5rem, 1rem + 3.6vw, 3.25rem); } }


/* ==========================================================================
   Home sections v2 — each with its own composition
   ========================================================================== */
.eyebrow__num--orange { background: var(--fif-orange); color: var(--ink); }
.eyebrow__num--lime { background: var(--fif-lime); color: var(--ink); }
.for--light { border-left-color: var(--fif-lime); color: var(--color-on-green-muted); }
.for--light strong { color: var(--white); }
.for--orange { border-left-color: var(--fif-orange); }
.ghost-num { position: absolute; right: var(--space-5); top: -0.15em; font-size: clamp(7rem, 5rem + 9vw, 13rem); font-weight: 700; line-height: 1; letter-spacing: -0.06em; color: rgba(255, 255, 255, 0.08); pointer-events: none; user-select: none; }
.ghost-num--orange { color: rgba(255, 161, 0, 0.16); }
/* decorative numerals are generated content, so they are not read or contrast-checked as text */
[data-num]::before { content: attr(data-num); position: absolute; right: var(--space-5); top: -0.15em; font-size: clamp(7rem, 5rem + 9vw, 13rem); font-weight: 700; line-height: 1; letter-spacing: -0.06em; color: rgba(255, 255, 255, 0.08); pointer-events: none; }
.fullsplit__inner[data-num]::before { top: -0.6em; right: 0; color: rgba(255, 161, 0, 0.18); }

/* ---- road ahead: chevron process bar ---- */
.track { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
.track__chev { display: flex; flex-direction: column; justify-content: center; gap: 2px; min-height: 5.5rem; padding: var(--space-4) var(--space-6); color: var(--white); transition: transform 0.25s var(--ease); }
.track__num { font-size: 2.25rem; font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.track__chev small { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.track__step--magenta .track__chev { background: var(--brac-magenta); }
.track__step--orange .track__chev { background: var(--fif-orange); color: var(--ink); }
.track__step--lime .track__chev { background: var(--fif-lime); color: var(--ink); }
.track__step--green .track__chev { background: var(--fif-green); }
.track__step:hover .track__chev { transform: translateY(-0.3rem); }
.track__step h3 { margin-top: var(--space-4); color: var(--fif-green); }
.track__step p { margin-top: var(--space-2); color: var(--color-text-muted); font-size: var(--text-md); }
@media (min-width: 900px) {
  .track { grid-template-columns: repeat(4, 1fr); gap: 0 var(--space-2); }
  .track__chev { min-height: 6.5rem; padding-inline: calc(var(--space-6) + 0.6rem) var(--space-5); clip-path: polygon(0 0, calc(100% - 1.4rem) 0, 100% 50%, calc(100% - 1.4rem) 100%, 0 100%, 1.4rem 50%); }
  .track__step:first-child .track__chev { clip-path: polygon(0 0, calc(100% - 1.4rem) 0, 100% 50%, calc(100% - 1.4rem) 100%, 0 100%); padding-left: var(--space-6); }
  .track__step:last-child .track__chev { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 1.4rem 50%); }
  .track__step h3, .track__step p { padding-inline: var(--space-3); }
}

/* ---- 01 challenge: bold panel + coloured icon tiles ---- */
.feature { display: grid; gap: var(--space-4); }
.feature__main { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-5); padding: var(--space-7) var(--space-6); background: var(--fif-green); color: var(--white); border-bottom: 4px solid var(--accent); }
.feature__main > * { position: relative; }
.feature__main .ghost-num { position: absolute; }
.feature__main h2 { max-width: 16ch; }
.feature__main .eyebrow { color: var(--white); }
.feature__tiles { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
.ftile { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-6); border: 1px solid transparent; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.ftile:hover { transform: translateY(-0.4rem); box-shadow: 0 16px 34px rgba(39, 40, 28, 0.18); }
.ftile__icon { display: grid; place-items: center; width: 3.75rem; height: 3.75rem; margin-bottom: var(--space-4); background: rgba(255, 255, 255, 0.35); }
.ftile__icon svg { width: 2rem; height: 2rem; }
.ftile h3 { font-size: var(--fs-h3); }
.ftile p { font-size: var(--text-md); }
.ftile--lime { background: var(--fif-lime); color: var(--ink); }
.ftile--orange { background: var(--fif-orange); color: var(--ink); }
.ftile--magenta { background: var(--brac-magenta); color: var(--white); }
.ftile--magenta .ftile__icon { background: rgba(255, 255, 255, 0.2); }
.ftile--green { background: var(--white); color: var(--ink); border-color: var(--line); }
.ftile--green .ftile__icon { background: var(--fif-green); color: var(--white); }
.ftile--green h3 { color: var(--fif-green); }
@media (min-width: 560px) { .feature__tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) {
  .feature { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: var(--space-5); }
  .feature__main { padding: var(--space-8) var(--space-7); }
  .feature__tiles { align-content: stretch; }
}

/* ---- 02 fellowship: photo + text, inside the page width ---- */
.fullsplit { display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: stretch; }
.fullsplit__media { position: relative; margin: 0; min-height: 22rem; overflow: hidden; }
.fullsplit__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fullsplit__badge { position: absolute; left: 0; bottom: 0; display: grid; gap: 2px; padding: var(--space-4) var(--space-6); background: var(--fif-orange); color: var(--ink); }
.fullsplit__badge strong { font-size: 3rem; line-height: 1; font-weight: 700; letter-spacing: -0.04em; }
.fullsplit__badge span { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.fullsplit__body { position: relative; display: flex; align-items: center; overflow: hidden; }
.fullsplit__inner { position: relative; width: 100%; padding: var(--space-2) 0; }
.checklist--orange span { background: var(--fif-orange); }
@media (min-width: 900px) {
  .fullsplit { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .fullsplit__media { min-height: 32rem; }
}

/* ---- 03 conference ---- */
.conf { position: relative; overflow: hidden; background: var(--fif-green); color: var(--white); padding-block: var(--space-8); }
.conf::before { content: ""; position: absolute; right: -8rem; bottom: -10rem; width: 30rem; height: 30rem; border: 3px solid rgba(201, 214, 0, 0.35); border-radius: 50%; pointer-events: none; }
.conf .container { position: relative; }
.conf__grid { display: grid; gap: var(--space-7); align-items: center; }
.conf__copy { position: relative; }
.conf__copy > * { position: relative; }
.conf__copy h2 { max-width: 18ch; }
.conf__copy .eyebrow { color: var(--white); }
.conf__copy[data-num]::before { left: -0.4rem; right: auto; top: -0.35em; z-index: 0; color: rgba(255, 255, 255, 0.07); }
.conf__chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.conf__chips li { padding: 0.4rem 1rem; border: 1px solid rgba(255, 255, 255, 0.5); font-size: var(--text-sm); font-weight: 500; }
.conf__media { position: relative; margin: 0 0 var(--space-6) 0; }
.conf__main { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; box-shadow: 0 18px 40px rgba(0, 35, 30, 0.35); }
.conf__small { position: absolute; left: var(--space-4); bottom: calc(var(--space-6) * -1); width: 42%; aspect-ratio: 4 / 3; object-fit: cover; border: 6px solid var(--fif-green); box-shadow: 0 14px 30px rgba(0, 35, 30, 0.4); }
.conf__badge { position: absolute; right: var(--space-4); top: calc(var(--space-4) * -1); display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3) var(--space-5); background: var(--fif-lime); color: var(--ink); box-shadow: 0 10px 24px rgba(0, 35, 30, 0.3); }
.conf__badge strong { font-size: 2.75rem; line-height: 1; font-weight: 700; letter-spacing: -0.05em; }
.conf__badge span { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; line-height: 1.3; text-transform: uppercase; }

.conf__strip { display: grid; margin-top: var(--space-8); border: 1px solid rgba(255, 255, 255, 0.28); background: rgba(0, 45, 39, 0.35); }
.conf__cell { display: flex; flex-direction: column; justify-content: center; gap: var(--space-1); padding: var(--space-5) var(--space-6); border-bottom: 1px solid rgba(255, 255, 255, 0.28); transition: background-color 0.2s var(--ease); }
.conf__cell:last-child { border-bottom: 0; }
.conf__cell:hover { background: rgba(0, 45, 39, 0.6); }
.conf__cell strong { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem); line-height: 1.05; font-weight: 700; letter-spacing: -0.03em; color: var(--fif-lime); }
.conf__cell span { font-size: var(--text-sm); color: var(--color-on-green-muted); line-height: 1.45; }
.conf__cell--people { flex-direction: row; flex-wrap: wrap; align-items: center; gap: var(--space-3) var(--space-4); }
.conf__cell--people > span { flex: 1; min-width: 12rem; color: var(--color-on-green-muted); }
.conf__cell--people b { display: block; color: var(--white); font-size: var(--text-md); font-weight: 700; }
.avatars { display: flex; }
.avatars li { margin-left: -0.7rem; }
.avatars li:first-child { margin-left: 0; }
.avatars img { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; background: var(--green-deep); border: 3px solid var(--fif-green); transition: transform 0.25s var(--ease); }
.avatars li:hover img { transform: translateY(-0.35rem); position: relative; z-index: 1; }
.conf .link-arrow { color: var(--white); }
.conf .link-arrow:hover { color: var(--fif-lime); }
@media (min-width: 900px) {
  .conf__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .conf__strip { grid-template-columns: 1fr 1.1fr 1.9fr; }
  .conf__cell { border-bottom: 0; border-right: 1px solid rgba(255, 255, 255, 0.28); }
  .conf__cell:last-child { border-right: 0; }
}


/* ---- stories: bento ---- */
.bento { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
.bento__card { position: relative; display: block; min-height: 16rem; overflow: hidden; background: var(--ink); color: var(--white); text-decoration: none; }
.bento__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.bento__card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 35, 30, 0.9) 0%, rgba(0, 35, 30, 0.25) 60%, rgba(0, 35, 30, 0) 100%); }
.bento__card:hover img { transform: scale(1.06); }
.bento__tag { position: absolute; z-index: 1; left: 0; top: var(--space-4); padding: 0.3rem 0.8rem; background: var(--accent); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.bento__card:nth-child(2) .bento__tag { background: var(--fif-orange); color: var(--ink); }
.bento__card:nth-child(3) .bento__tag { background: var(--fif-lime); color: var(--ink); }
.bento__body { position: absolute; z-index: 1; inset: auto 0 0 0; display: grid; gap: var(--space-2); padding: var(--space-5); }
.bento__num { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; color: var(--fif-lime); }
.bento__card h3 { font-size: var(--fs-h3); color: var(--white); line-height: 1.2; }
.bento__more { display: inline-flex; align-items: center; gap: var(--space-2); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.bento__more svg { width: 1rem; height: 1rem; transition: transform 0.25s var(--ease); }
.bento__card:hover .bento__more svg { transform: translateX(0.3rem); }
@media (min-width: 900px) {
  .bento { grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; min-height: 32rem; }
  .bento__card--lead { grid-row: 1 / span 2; }
  .bento__card--lead h3 { font-size: var(--fs-h2); max-width: 22ch; }
  .bento__card--lead .bento__body { padding: var(--space-6); }
}

/* section-to-section colour rhythm: the newsletter is its own tint; footer ribbon is a deeper green than the sitemap */
.newsletter { background: var(--green-tint); border-top: 0; }
.footer__ribbon { background: var(--green-deep); border-bottom: 0; }

/* decorative numerals: fully inside their block, never clipped */
[data-num]::before { top: 0.05em; right: var(--space-4); font-size: clamp(6rem, 4rem + 7vw, 10rem); line-height: 0.9; }
.fullsplit__body { overflow: visible; }
.fullsplit__inner[data-num]::before { top: -0.1em; right: 0; }
.fullsplit__inner > * { position: relative; }
.fullsplit__inner[data-num]::before { z-index: 0; }
.feature__main[data-num]::before { z-index: 0; }

/* conference: tighter height */
.conf { padding-block: var(--space-7); }
.conf__main { aspect-ratio: 16 / 9; }
.conf__media { margin-bottom: var(--space-5); }
.conf__strip { margin-top: var(--space-7); }
.conf__cell { padding: var(--space-4) var(--space-5); }
.conf__copy[data-num]::before { top: -0.02em; font-size: clamp(5rem, 3.5rem + 5vw, 8rem); }
@media (min-width: 900px) { .conf__copy h2 { max-width: 20ch; } }


/* ---- FIF through the years: two-row grid, small minimal cards ---- */
.years { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.year { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.year:hover { transform: translateY(-0.3rem); box-shadow: inset 0 0 0 2px var(--fif-green), 0 10px 26px rgba(39, 40, 28, 0.1); }
.year__media { position: relative; overflow: hidden; }
.year__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.6s var(--ease); }
.year:hover .year__media img { transform: scale(1.05); }
.year__label { position: absolute; left: 0; top: 0; padding: 0.2rem 0.7rem; background: var(--fif-green); color: var(--white); font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.04em; }
.year__body { padding: var(--space-3) var(--space-4) var(--space-4); }
.year__body h3 { font-size: 0.9375rem; font-weight: 700; line-height: 1.3; color: var(--fif-green); }
.year__body p { margin-top: 2px; font-size: var(--text-xs); color: var(--color-text-muted); }
.year--next { justify-content: flex-end; background: var(--accent); border-color: var(--accent); color: var(--white); }
.year--next .year__label { position: static; align-self: flex-start; margin: var(--space-4) 0 0 var(--space-4); background: var(--white); color: var(--accent); }
.year--next .year__body { padding-top: var(--space-6); }
.year--next .year__body h3 { font-size: var(--fs-h3); color: var(--white); }
.year--next .year__body p { color: var(--white); font-size: var(--text-sm); }
.year--next:hover { box-shadow: inset 0 0 0 2px var(--white), 0 10px 26px rgba(90, 0, 48, 0.3); }
@media (min-width: 900px) { .years { grid-template-columns: repeat(4, 1fr); } }


/* conference photos: one large + two small, side by side (no overlap) */
.conf__media { display: grid; grid-template-columns: 1fr; gap: var(--space-3); margin: 0; }
.conf__media img { width: 100%; height: 100%; object-fit: cover; box-shadow: none; border: 0; position: static; }
.conf__main { aspect-ratio: 16 / 10; }
.conf__side { aspect-ratio: 16 / 10; }
.conf__media .conf__badge { position: absolute; left: 0; top: var(--space-4); right: auto; box-shadow: none; padding: var(--space-2) var(--space-4); }
.conf__badge strong { font-size: 2.25rem; }
@media (min-width: 560px) {
  .conf__media { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
  .conf__main { grid-row: 1 / span 2; aspect-ratio: auto; min-height: 20rem; }
  .conf__side { aspect-ratio: auto; min-height: 9.5rem; }
}
@media (max-width: 559px) {
  .conf__media { grid-template-columns: 1fr 1fr; }
  .conf__main { grid-column: 1 / -1; }
}

/* conference: narrower text column, wider photo block */
@media (min-width: 900px) {
  .conf__grid { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr); gap: var(--space-7); }
  .conf__copy h2 { max-width: 16ch; }
  .conf__media { height: clamp(21rem, 27vw, 25rem); }
  .conf__main { min-height: 0; }
  .conf__side { min-height: 0; }
}
@media (min-width: 900px) {
  .conf__grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); }
  .conf__copy h2 { max-width: none; }
  .conf__media { height: clamp(20rem, 25vw, 23rem); }
}
