:root {
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #B7D4C3;
  --green-pale: #F0F7F4;
  --gold: #B5862A;
  --gold-light: #F5E9C8;
  --ink: #1A1A18;
  --muted: #5C6760;
  --rule: #D8E4DF;
  --white: #FDFCFA;
  --earth: #2C4A2E;
  --earth-mid: #3D6B3F;
  --earth-pale: #E7F0E5;
  --amber: #C17C2A;
  --amber-pale: #FCF4E3;
  --sand: #F9F5EC;
  --border: #E2E0D4;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}
img { display: block; width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: #fff;
  padding: 100px 5vw 80px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 100%, rgba(45,106,79,.6) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.2rem;
  position: relative;
}
.hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  position: relative;
  max-width: 680px;
  margin: 0 auto 1.4rem;
}
.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.8rem;
  position: relative;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* Intro */
.intro-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 5vw;
  text-align: center;
}
.intro-section p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--muted);
}

/* Section Label */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 0 5vw;
}
.section-label span {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* Focus Blocks */
.focus-sections {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 5vw 100px;
}
.focus-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .8s ease, transform .8s ease;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.focus-block.visible {
  opacity: 1;
  transform: translateY(0);
}
.focus-block:nth-child(even) { direction: rtl; }
.focus-block:nth-child(even) > * { direction: ltr; }

.focus-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--green-light);
}
.focus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
  transform: scale(1.08);
}
.focus-block.visible .focus-img img { transform: scale(1); }

.focus-index {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.focus-content {
  background: var(--white);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.focus-tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease .1s, transform .5s ease .1s;
}
.focus-block.visible .focus-tag {
  opacity: 1;
  transform: translateY(0);
}
.focus-content h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease .2s, transform .55s ease .2s;
}
.focus-block.visible h3 {
  opacity: 1;
  transform: translateY(0);
}
.focus-content p.excerpt {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease .3s, transform .55s ease .3s;
}
.focus-block.visible p.excerpt {
  opacity: 1;
  transform: translateY(0);
}

.more-text {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s ease;
}
.more-text.open { max-height: 600px; }
.more-text p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.85;
  padding-top: 14px;
}
.more-text ul {
  margin: 12px 0 0 1.1rem;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.8;
}
.more-text li { margin-bottom: 4px; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0;
  transition: color .2s, gap .2s;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease .42s, transform .5s ease .42s, color .2s, gap .2s;
}
.focus-block.visible .read-more {
  opacity: 1;
  transform: translateY(0);
}
.read-more:hover { color: var(--green); gap: 10px; }
.read-more i { font-size: .75rem; }
.focus-block + .focus-block { margin-top: 28px; }

/* Page Hero (Alternate) */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-text {
  background: var(--earth);
  color: #fff;
  padding: clamp(60px, 10vw, 120px) clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.hero-text::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: var(--earth);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 3;
}
.hero-text .hero-eyebrow {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-text h1 em {
  font-style: italic;
  color: #A8D4AB;
}
.hero-stat-row {
  display: flex;
  gap: 36px;
  margin-top: 10px;
}
.hero-stat strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: #A8D4AB;
  line-height: 1;
}
.hero-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--earth-pale);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform 8s ease;
}
.hero-visual img.loaded { transform: scale(1.04); }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,74,46,.25) 0%, transparent 60%);
  z-index: 1;
}
.hero-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  z-index: 2;
  line-height: 1.3;
  font-weight: 600;
}
.hero-badge strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--ff-serif);
  letter-spacing: 0;
  line-height: 1;
}

/* Intro Strip */
.intro-strip {
  background: var(--sand);
  border-top: 3px solid var(--amber);
  padding: 60px clamp(24px,6vw,80px);
}
.intro-strip-inner {
  max-width: 900px;
  margin: 0 auto;
}
.intro-strip p {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.intro-strip p:last-child { margin-bottom: 0; }

/* SECTION */
.pull-quote-section {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 clamp(24px,6vw,80px);
}

/* GRID */
.pull-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE SIDE */
.quote-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* UNIQUE FRAME */
.quote-frame {
    width: 100%;
    max-width: 380px;
    height: 420px;

    /* Custom organic shape */
    border-radius: 60% 40% 55% 45% / 40% 60% 40% 60%;

    overflow: hidden;
    position: relative;
    z-index: 2;

    border: 2px solid var(--rule);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* IMAGE */
.quote-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.quote-frame:hover img {
    transform: scale(1.05);
}

/* DECORATIVE BACK SHAPE */
.quote-frame::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 60% 40% 55% 45% / 40% 60% 40% 60%;
    border: 1.5px dashed var(--gold);
    opacity: 0.25;
    z-index: -1;
}

/* QUOTE SIDE */
.pull-quote {
    max-width: 520px;
}

/* QUOTE TEXT */
.pull-quote blockquote {
    font-family: var(--ff-serif);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-style: italic;
    color: var(--earth);
    line-height: 1.6;
    position: relative;
}

/* LARGE QUOTE MARK */
.pull-quote blockquote::before {
    content: "“";
    position: absolute;
    left: -30px;
    top: -20px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: serif;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pull-quote-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .pull-quote blockquote::before {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }

    .quote-frame {
        height: 360px;
    }
}

/* Timeline Section */
.timeline-section {
  padding: 0 clamp(10px, 6vw, 80px) 100px;
  max-width: 1140px;
  margin: 0 auto;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}
.section-heading h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--earth);
  font-weight: 700;
}
.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.tl-item {
  position: relative;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .6s ease, transform .6s ease;
}
.tl-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.tl-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--earth-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-dot i { font-size: .58rem; color: var(--earth-mid); }
.tl-item.featured .tl-dot {
  background: var(--amber);
  border-color: var(--amber);
}
.tl-item.featured .tl-dot i { color: #fff; }
.tl-tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 8px;
}
.tl-item h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  color: var(--earth);
  margin-bottom: 10px;
  line-height: 1.3;
}
.tl-item p {
  font-size: .94rem;
  color: var(--muted);
  line-height: 1.85;
}

/* Initiatives Cards */
.initiatives-section {
  background: var(--earth);
  padding: 80px clamp(24px, 6vw, 80px);
}
.initiatives-section .section-heading h2 { color: #fff; }
.initiatives-section .section-heading::after { background: rgba(255,255,255,.15); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.init-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 32px 28px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease, background .3s;
}
.init-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.init-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-4px) !important;
}
.init-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(193,124,42,.25);
  border: 1px solid rgba(193,124,42,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1rem;
}
.init-card h4 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.init-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
}
.init-abbr {
  display: inline-block;
  margin-top: 16px;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F0C878;
  font-weight: 600;
}

/* Tagdev Feature */
.tagdev-section {
  max-width: 1140px;
  margin: 5px auto 80px;
  padding: 0 clamp(24px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.tagdev-left { position: relative; }
.tagdev-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.tagdev-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.tagdev-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44,74,46,.85) 0%, transparent 100%);
  padding: 28px 24px 20px;
}
.tagdev-img-overlay p {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  font-style: italic;
}
.partner-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--amber-pale);
  border: 1px solid var(--amber);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .72rem;
  color: var(--amber);
  text-align: center;
  font-weight: 600;
  letter-spacing: .04em;
  max-width: 130px;
  line-height: 1.4;
}
.tagdev-right .eyebrow {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 14px;
}
.tagdev-right h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--earth);
  line-height: 1.25;
  margin-bottom: 20px;
}
.tagdev-right p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.tagdev-pillars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.tagdev-pill {
  background: var(--earth-pale);
  color: var(--earth-mid);
  border: 1px solid #BDD9C0;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
}

/* New Hero (alternate style) */
.hero-alt {
  background: var(--green);
  position: relative;
  overflow: hidden;
  padding: 100px clamp(24px,8vw,120px) 90px;
}
.hero-alt::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero-alt::after {
  content: '';
  position: absolute;
  top: 40px; right: 40px;
  width: 280px; height: 280px;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-alt .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 22px;
}
.hero-alt .hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--green-light);
}
.hero-alt h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-alt h1 span { color: var(--green-light); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  max-width: 520px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 14px;
  overflow: hidden;
}
.stat-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 28px 24px;
  text-align: center;
  transition: background .3s;
}
.stat-box:hover { background: rgba(255,255,255,.1); }
.stat-box strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box span {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
  line-height: 1.4;
}

/* Activities Strip */
.activities-strip {
  background: var(--gold);
  padding: 18px clamp(24px,8vw,120px);
}
.activities-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.act-label {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  white-space: nowrap;
  margin-right: 8px;
}
.act-pill {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .75rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Page Body */
.page-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px clamp(24px,6vw,80px) 0;
}

/* Section Label */
.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.sec-label h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem,2.2vw,1.7rem);
  color: var(--green);
  white-space: nowrap;
  font-weight: 700;
}
.sec-label::after {
  content: ''; flex: 1;
  height: 1px; background: var(--rule);
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.pillar {
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.pillar.visible { opacity: 1; transform: translateY(0); }
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.pillar-num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 700;
}
.pillar h3 {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.35;
}
.pillar p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* AU Section */
.au-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(24px,6vw,80px);
  margin-bottom: 80px;
}
.au-section {
  background: var(--earth-mid);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
}
.au-left {
  background: var(--green-mid);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.au-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .7rem;
  color: var(--green-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}
.au-left h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}
.au-left p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
}
.au-right { padding: 52px 44px; }
.au-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.au-item.visible { opacity: 1; transform: translateX(0); }
.au-item:last-child { border-bottom: none; }
.au-item-tag {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.au-item h4 {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}
.au-item p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}
.au-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: .75rem;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .04em;
  transition: gap .2s;
}
.au-item a:hover { gap: 10px; }
.card-video {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.card-video iframe {
    width: 100%;
    height: 200px;
    display: block;
    border: none;
}
/* Communiqués */
.ministerial-section { margin-bottom: 80px; }
.communique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 14px;
}
.communique-card {
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease, border-color .25s, background .25s;
}
.communique-card.visible { opacity: 1; transform: translateY(0); }
.communique-card:hover {
  border-color: var(--gold);
  background: var(--gold-light);
  transform: translateY(-2px) !important;
}
.cq-year {
  min-width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: .82rem;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.cq-body h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 3px;
  line-height: 1.3;
}
.cq-body p {
  font-size: .78rem;
  color: var(--muted);
}

/* UN Food Systems */
.un-section {
  background: var(--sand);
  border-radius: 16px;
  padding: 52px 48px;
  margin-bottom: 100px;
}
.un-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}
.un-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.un-header-text h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 6px;
}
.un-header-text p { font-size: .85rem; color: var(--muted); }
/* ── UN DOC — with image ── */
.un-doc {
    background: var(--white);
    border: 1px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s, box-shadow 0.25s;
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity .55s ease, transform .55s ease, border-color .25s, box-shadow .25s;
}

.un-doc.visible {
    opacity: 1;
    transform: translateX(0);
}

.un-doc:hover {
    border-color: var(--green);
    box-shadow: 0 8px 28px rgba(27, 67, 50, 0.1);
}

/* Event image at the top of each card */
.un-doc-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.un-doc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.un-doc:hover .un-doc-img img {
    transform: scale(1.04);
}

/* Bottom body row: icon + text + download */
.un-doc-body {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 20px 10px;
    flex: 1;
}

.un-doc-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--gold-light);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.un-doc-body h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 5px;
    line-height: 1.35;
}

.un-doc-body p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
}

.un-doc-dl {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 20px 16px auto;
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.04em;
    align-self: flex-end;
}

/* Make the un-docs a 2-column grid */
.un-docs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 640px) {
    .un-docs {
        grid-template-columns: 1fr;
    }
}/* Responsive */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { min-height: 60vw; }
  .hero-text::after { display: none; }
  .hero-visual { min-height: 260px; }
  .tagdev-section { grid-template-columns: 1fr; gap: 40px; }
  .partner-badge { top: 12px; right: 12px; }
  .pillars { grid-template-columns: 1fr; }
  .au-section { grid-template-columns: 1fr; }
  .au-left { padding: 36px 28px; }
  .au-right { padding: 28px 28px 40px; }
  .un-section { padding: 36px 28px; }
}
@media (max-width: 768px) {
  .focus-block,
  .focus-block:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .focus-img { min-height: 220px; }
  .focus-content { padding: 32px 24px; }
  .focus-block:nth-child(even) .focus-img { order: -1; }
  .hero { padding: 70px 5vw 60px; }
}
@media (max-width: 560px) {
  .hero-stat-row { gap: 20px; }
  .timeline { padding-left: 28px; }
  .timeline::before { left: 8px; }
  .tl-dot { left: -28px; width: 18px; height: 18px; }
  .communique-grid { grid-template-columns: 1fr; }
  .un-doc-dl { display: none; }
}
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--green);
}

.hero-image {
    background-image: url('../img/focus/slider1.png');
}

.sikt-hero {
    background-image: url('../img/focus/digital.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.hero-content p {
    margin-top: 10px;
    opacity: 0.8;
}

.page-body {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}
/* ══════════════════════════════════════════════════════
   SIKT — ZIGZAG S LAYOUT WITH SNAKE ANIMATION
══════════════════════════════════════════════════════ */

/* ── WRAPPER ── */
.sikt-sections {
    max-width: 1080px;
    margin: 80px auto 100px;
    padding: 0 clamp(24px, 6vw, 80px);
    position: relative;
}

/* ── ANIMATED CENTER LINE (drawn by JS as you scroll) ── */
.sikt-line-animated {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0%;
    background: linear-gradient(to bottom, var(--gold), var(--rule));
    transform: translateX(-50%);
    z-index: 0;
    transition: height 0.12s linear;
    pointer-events: none;
}

/* ── EACH BLOCK ── */
.sikt-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    padding: 60px 0;
    z-index: 1;
}

/* ── CENTER DOT ── */
.sikt-block::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold);
    z-index: 3;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* ── HORIZONTAL CONNECTOR (left block → dot) ── */
.sikt-block:not(.sikt-block--reverse)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% - 60px);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold));
    opacity: 0.4;
    transform: translateY(-50%);
    z-index: 2;
}

/* ── HORIZONTAL CONNECTOR (dot → right block) ── */
.sikt-block--reverse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0.4;
    transform: translateY(-50%);
    z-index: 2;
}

/* ── IMAGE ── */
.sikt-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin: 0 40px;
    box-shadow: 0 20px 50px rgba(27, 67, 50, 0.12);
    z-index: 1;
}

.sikt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.sikt-block:hover .sikt-img img {
    transform: scale(1.04);
}

/* ── NUMBER BADGE ON IMAGE ── */
.sikt-index {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* ── TEXT CONTENT ── */
.sikt-content {
    padding: 0 40px;
    z-index: 1;
}

.sikt-tag {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.sikt-content h3 {
    font-family: var(--ff-serif);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    color: var(--green);
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 16px;
}

.sikt-content > p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

/* ── BULLET LIST ── */
.sikt-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sikt-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
}

.sikt-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── REVERSE: flip image to right, text to left ── */
.sikt-block--reverse {
    direction: rtl;
}

.sikt-block--reverse > * {
    direction: ltr;
}

.sikt-img,
.sikt-content {
    will-change: opacity, transform;
}

/* ══ RESPONSIVE ════════════════════════════════════ */
@media (max-width: 768px) {
    .sikt-line-animated { display: none; }

    .sikt-block,
    .sikt-block--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 28px;
        padding: 40px 0;
    }

    /* Hide center dot and connectors on mobile */
    .sikt-block::before,
    .sikt-block::after,
    .sikt-block--reverse::after {
        display: none;
    }

    /* Always show image on top */
    .sikt-block--reverse .sikt-img {
        order: -1;
    }

    .sikt-img {
        margin: 0;
        aspect-ratio: 16 / 9;
    }

    .sikt-content {
        padding: 0;
    }
}

.sec-label {
    margin-bottom: 30px;
}

.sec-label h2 {
    font-family: var(--ff-serif);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    color: var(--green);
    font-weight: 700;
}

.simple-au {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.au-card {
    background: var(--earth-mid);
    color: white;
    padding: 25px;
    border-radius: 12px;
}

.au-card h3 {
    font-family: var(--ff-serif);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.au-card p {
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 16px;
}

.au-card a {
    color: var(--gold-light);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
}

.communique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin-bottom: 60px;
}

.communique-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.cq-dl-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 0.75rem;
    color: var(--muted);
    opacity: 0;
    transition: opacity 0.2s;
}

.communique-card:hover .cq-dl-icon {
    opacity: 1;
}

/* Language badge for EN/FR cards */
.cq-lang {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--green-pale);
    color: var(--green);
    padding: 3px 8px;
    border-radius: 4px;
}

.cq-lang-fr {
    background: var(--amber-pale);
    color: var(--amber);
}
.communique-card:hover {
    background: var(--gold-light);
    border-color: var(--gold);
}

.un-section {
    display: grid;
    gap: 20px;
    margin-bottom: 60px;
}

.un-doc {
    border: 1px solid var(--rule);
    padding: 20px;
    border-radius: 10px;
    transition: border-color 0.3s;
}

.un-doc:hover {
    border-color: var(--green);
}

.un-doc h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 8px;
}

.un-doc p {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.un-doc a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    font-size: .8rem;
}

.feature-block {
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: var(--muted);
}

.feature-list {
    margin-top: 15px;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
}

.feature-list li::marker {
    color: var(--gold);
}
/* SECTION CONTAINER */
.intro-feature {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-feature-text {
    max-width: 520px;
}

.intro-eyebrow {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 25px;
}

.intro-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--muted);
}

.intro-feature-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* HORIZONTAL OVAL */
.intro-ring {
    width: 420px;
    height: 260px;
    border-radius: 50% / 40%; /* THIS makes it horizontal */
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 3px solid var(--rule);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* IMAGE */
.intro-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

/* HOVER (premium feel) */
.intro-ring:hover img {
    transform: scale(1.05);
}

/* DECORATIVE RING */
.intro-ring-deco {
    position: absolute;
    width: 460px;
    height: 300px;
    border-radius: 50% / 40%;
    border: 1.5px dashed var(--gold);
    opacity: 0.25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .intro-feature {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .intro-feature-text {
        max-width: 100%;
    }

    .intro-feature-visual {
        justify-content: center;
    }
}
.read1-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    margin-top: 5px;
    color: #fff;
    background: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 5;
    position: relative;
}

.read1-more:hover {
    background: var(--earth-mid);
    color: #000;
}
/* ── PARTNERSHIPS FEATURE ── */
.partnerships-feature {
    max-width: 1080px;
    margin: 80px auto;
    padding: 0 clamp(24px, 6vw, 80px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;  /* text wider on left, image on right */
    gap: 80px;
    align-items: center;
}

.pf-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);              /* uses your --gold: #B5862A */
    font-weight: 700;
    margin-bottom: 14px;
}

/* ── LEFT: VISUAL STACK ── */
.pf-visual {
    position: relative;
    height: 440px;
    flex-shrink: 0;
}

.pf-img-main {
    width: 78%;
    height: 100%;
    border-radius: 120px 24px 120px 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(27, 67, 50, 0.15);
}

.pf-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Floating stat cards */
.pf-stat-card,
.pf-year-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 3px solid var(--gold);
}

.pf-stat-card {
    bottom: 40px;
    right: 0;
    min-width: 130px;
}

.pf-year-card {
    top: 30px;
    right: 10px;
    min-width: 100px;
}

.pf-stat-card strong,
.pf-year-card strong {
    display: block;
    font-family: var(--ff-serif);
    font-size: 2rem;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
}

.pf-stat-card span,
.pf-year-card span {
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.pf-title {
    font-family: var(--ff-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    color: var(--earth);
    line-height: 1.25;
    margin-bottom: 24px;
    font-weight: 700;
}

.pf-text p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 14px;
}

/* Partner tags */
.pf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.pf-tags span {
    background: var(--earth-pale);
    color: var(--earth-mid);
    border: 1px solid #BDD9C0;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .partnerships-feature {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .pf-visual {
        height: 360px;
    }
    .pf-img-main {
        width: 85%;
    }
}

.focus-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.focus-learn-more:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.focus-learn-more i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.focus-learn-more:hover i {
    transform: translateX(3px);
}