:root {
    --teal:       #1A4FA8;
    --teal-dark:  #0E2F6B;
    --teal-light: #D5E4F5;
    --gold:       #C8952A;
    --gold-light: #F5E6C8;
    --ink:        #0A1628;
    --mist:       #EEF4FB;
    --grey:       #4A6080;
    --white:      #FFFFFF;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,149,42,0.2);
  }

  .nav-brand {
    display: flex; align-items: center; gap: 14px; text-decoration: none;
  }

  .nav-logo {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--gold);
  }

  .nav-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 600;
    color: var(--white); letter-spacing: 0.3px;
    line-height: 1.1;
  }

  .nav-name small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px; font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-top: 1px;
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }

  .nav-links a {
    font-size: 13px; font-weight: 400; letter-spacing: 0.8px;
    text-transform: uppercase; text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold); color: var(--ink) !important;
    padding: 8px 20px; border-radius: 2px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: #e0a830 !important; color: var(--ink) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(26,79,168,0.07) 80px),
      repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(26,79,168,0.07) 80px);
    opacity: 0.6;
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px 6vw 80px 7vw;
    position: relative; z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
  }

  .hero-eyebrow-line {
    width: 36px; height: 1px; background: var(--gold);
  }

  .hero-eyebrow span {
    font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--gold); font-weight: 400;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 300; line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
  }

  .hero h1 em {
    font-style: italic; color: var(--gold);
  }

  .hero-sub {
    font-size: 17px; line-height: 1.75; font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 480px; margin-bottom: 48px;
    opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
  }

  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.7s 0.65s forwards;
  }

  .btn-primary {
    background: var(--teal); color: var(--white);
    padding: 14px 32px; text-decoration: none;
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500;
    border-radius: 2px; transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }

  .btn-outline {
    border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8);
    padding: 14px 32px; text-decoration: none;
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 400;
    border-radius: 2px; transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-right {
    position: relative; z-index: 2;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 0 5vw 60px 4vw;
    opacity: 0; animation: fadeIn 1s 0.8s forwards;
    overflow: hidden;
  }

  .hero-ph {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #1B3A7A 0%, var(--ink) 65%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; text-align: center; padding: 40px;
  }
  .hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
  }
  .hero-ph .ph-icon { font-size: 40px; opacity: 0.3; }
  .hero-ph .ph-label { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; color: rgba(255,255,255,0.3); }
  .hero-ph .ph-hint { font-size: 11px; color: rgba(255,255,255,0.18); max-width: 260px; line-height: 1.55; }

  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.25) 55%, rgba(10,22,40,0.08) 100%);
    z-index: 1; pointer-events: none;
  }

  .hero-stat-card {
    position: relative; z-index: 2;
    background: rgba(26,79,168,0.12);
    border: 1px solid rgba(26,79,168,0.3);
    border-top: 3px solid var(--gold);
    padding: 40px 36px;
    max-width: 380px; width: 100%;
  }

  .hero-stat-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px; font-weight: 300; font-style: italic;
    color: rgba(255,255,255,0.75); line-height: 1.8;
    margin-bottom: 32px;
  }

  .stat-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    border-top: 1px solid rgba(26,79,168,0.3);
    padding-top: 28px;
  }

  .stat-item { text-align: center; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 700;
    color: var(--gold); line-height: 1;
    display: block; margin-bottom: 4px;
  }

  .stat-label {
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.45); font-weight: 300;
  }

  /* ── GOLD BAND ── */
  .gold-band {
    background: var(--gold);
    padding: 18px 7vw;
    display: flex; align-items: center; gap: 20px;
    overflow: hidden;
  }

  .gold-band-label {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--ink); font-weight: 500; white-space: nowrap;
    flex-shrink: 0;
  }

  .gold-band-divider { width: 1px; height: 20px; background: rgba(28,43,42,0.25); flex-shrink: 0; }

  .gold-band-scroll {
    display: flex; gap: 40px; align-items: center;
    animation: scrollLeft 22s linear infinite;
    white-space: nowrap;
  }

  .gold-band-item {
    font-size: 12px; letter-spacing: 1px; color: var(--ink);
    font-weight: 400; text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
  }

  .gold-band-item::before {
    content: '◆'; font-size: 6px; color: rgba(28,43,42,0.4);
  }

  @keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── SECTIONS ── */
  section { padding: 100px 7vw; }

  .section-eyebrow {
    display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  }
  .section-eyebrow-line { width: 28px; height: 2px; background: var(--gold); }
  .section-eyebrow span {
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300; line-height: 1.12;
    color: var(--ink); margin-bottom: 24px;
  }

  .section-title em { font-style: italic; color: var(--teal); }

  .section-body {
    font-size: 17px; line-height: 1.85; font-weight: 300;
    color: var(--grey); max-width: 640px;
  }

  /* ── ABOUT ── */
  #about {
    background: var(--mist);
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }

  .about-body { font-size: 16px; line-height: 1.85; color: var(--grey); font-weight: 300; margin-bottom: 18px; }

  .vision-mission { margin-top: 40px; }
  .vm-item { padding: 22px 0; border-top: 1px solid rgba(26,79,168,0.15); }
  .vm-item:last-child { border-bottom: 1px solid rgba(26,79,168,0.15); }
  .vm-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
  .vm-text { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; color: var(--ink); line-height: 1.55; }

  .about-right { position: sticky; top: 100px; }
  .about-visual { position: relative; }

  .about-quote-card {
    background: var(--ink);
    padding: 52px 44px;
    position: relative;
  }

  .about-quote-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px; line-height: 0.8;
    color: var(--gold); opacity: 0.3;
    position: absolute; top: 24px; left: 32px;
    pointer-events: none;
  }

  .about-quote-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 300; font-style: italic;
    color: var(--white); line-height: 1.65;
    margin-bottom: 28px; position: relative; z-index: 1;
  }

  .about-quote-card cite {
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); font-style: normal; font-weight: 500;
  }

  .about-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
  }

  .affiliation-strip { margin-top: 24px; background: var(--gold-light); padding: 28px 32px; border-left: 4px solid var(--gold); }
  .aff-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); font-weight: 600; margin-bottom: 16px; }
  .aff-items { display: flex; flex-direction: column; gap: 12px; }
  .aff-item { font-size: 14px; color: var(--ink); font-weight: 500; display: flex; align-items: center; gap: 12px; }
  .aff-logo { height: 48px; width: 48px; object-fit: contain; padding: 6px; flex-shrink: 0; background: var(--white); border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,0.12); }
  .aff-link { color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s, color 0.2s; }
  .aff-link:hover { color: var(--teal); border-bottom-color: var(--teal); }
  .aff-ext { font-size: 11px; color: var(--gold); margin-left: 2px; }

  /* ── PILLARS ── */
  #pillars { background: var(--white); padding: 80px 7vw; }
  .pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 52px; background: var(--teal-light); }
  .pillar { background: var(--white); padding: 36px 28px; border-bottom: 3px solid transparent; transition: border-color 0.3s, transform 0.25s; cursor: default; }
  .pillar:hover { border-color: var(--teal); transform: translateY(-4px); }
  .pillar-icon { font-size: 26px; margin-bottom: 16px; display: block; }
  .pillar h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
  .pillar p { font-size: 14px; color: var(--grey); line-height: 1.7; font-weight: 300; }

  /* ── PROGRAMMES ── */
  #programmes { background: var(--mist); }

  .programmes-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 60px;
  }

  .programmes-intro { font-size: 16px; line-height: 1.8; color: var(--grey); font-weight: 300; }

  .programme-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--teal-light);
  }

  .programme-card {
    background: var(--white);
    padding: 40px 32px;
    transition: background 0.3s;
    position: relative; overflow: hidden;
  }

  .programme-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--teal);
    transform: scaleX(0); transition: transform 0.3s;
    transform-origin: left;
  }

  .programme-card:hover { background: var(--mist); }
  .programme-card:hover::after { transform: scaleX(1); }

  .programme-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 700;
    color: var(--teal-light); line-height: 1;
    margin-bottom: 16px; display: block;
  }

  .programme-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: var(--ink);
    margin-bottom: 10px;
  }

  .programme-card p { font-size: 15px; color: var(--grey); line-height: 1.7; font-weight: 300; }

  /* ── REACH ── */
  #reach { background: var(--ink); }
  .reach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(26,79,168,0.2); margin-bottom: 60px; }
  .reach-card { background: var(--ink); padding: 36px 30px; border-bottom: 2px solid transparent; transition: border-color 0.3s; }
  .reach-card:hover { border-color: var(--gold); }
  .reach-card-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 10px; }
  .reach-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
  .reach-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; }
  .achievements { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .achievement-item { background: rgba(26,79,168,0.1); border-left: 3px solid var(--gold); padding: 20px 24px; }
  .ach-source { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 6px; }
  .achievement-item p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; font-weight: 300; }

  /* ── LEADERSHIP ── */
  #leadership { background: var(--white); }

  .leadership-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 52px; }

  .chairman-card { background: var(--ink); padding: 52px 48px; position: relative; overflow: hidden; }
  .chairman-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--gold)); }
  .chairman-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; object-position: center top; margin-bottom: 18px; border: 3px solid rgba(200,149,42,0.6); display: block; }
  .chairman-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
  .chairman-creds { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 20px; }
  .chairman-bio { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; font-weight: 300; margin-bottom: 28px; }
  .chairman-highlights { display: flex; flex-direction: column; gap: 10px; }
  .ch-highlight { display: flex; gap: 12px; align-items: baseline; }
  .ch-highlight::before { content: '◆'; font-size: 6px; color: var(--gold); flex-shrink: 0; }
  .ch-highlight span { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.55; }

  .board-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--ink); margin-bottom: 24px; }
  .board-cards { display: flex; flex-direction: column; gap: 16px; }
  .board-card { background: var(--mist); padding: 24px 28px; border-left: 3px solid var(--teal-light); transition: border-color 0.25s; }
  .board-card:hover { border-left-color: var(--teal); }
  .board-card-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 4px; }
  .board-card-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
  .board-card-desc { font-size: 14px; color: var(--grey); line-height: 1.65; font-weight: 300; }

  /* ── OPERATION GRACE ── */
  #operation-grace {
    background: var(--teal);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }

  #operation-grace .section-eyebrow span { color: rgba(245,230,200,0.9); }
  #operation-grace .section-eyebrow-line { background: var(--gold-light); }
  #operation-grace .section-title { color: var(--white); }
  .grace-body { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.72); font-weight: 300; margin-bottom: 16px; }

  .grace-timeline {
    display: flex; flex-direction: column; gap: 0;
  }

  .grace-month {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .grace-month:last-child { border-bottom: none; }

  .grace-month-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 700;
    color: rgba(255,255,255,0.2); line-height: 1;
    flex-shrink: 0; width: 44px; text-align: right;
  }

  .grace-month-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 600; color: var(--white);
    margin-bottom: 4px;
  }

  .grace-month-content p {
    font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.5;
  }

  .grace-month-tag, .grace-tag {
    display: inline-block; margin-bottom: 6px;
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    background: rgba(200,149,42,0.15);
    padding: 2px 8px; border-radius: 1px;
  }

  /* ── IMAGE PLACEHOLDERS ── */
  .img-ph {
    width: 100%;
    background: var(--teal-light);
    border: 2px dashed rgba(26,79,168,0.25);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; text-align: center; padding: 40px 24px;
    cursor: default; user-select: none;
  }
  .img-ph .ph-icon { font-size: 28px; opacity: 0.45; }
  .img-ph .ph-label { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--grey); }
  .img-ph .ph-hint { font-size: 12px; color: var(--grey); opacity: 0.6; max-width: 340px; line-height: 1.55; }

  /* ── FACEBOOK FEED ── */
  #social-feed { background: var(--white); }

  .social-feed-layout {
    display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: start;
  }

  .social-feed-intro { padding-top: 8px; }

  .social-feed-text {
    font-size: 17px; line-height: 1.85; font-weight: 300;
    color: var(--grey); margin-bottom: 36px;
  }

  .sf-follow-btn {
    display: inline-block;
    background: #1877F2; color: var(--white);
    padding: 14px 28px; border-radius: 2px;
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
    text-decoration: none; transition: opacity 0.2s;
  }
  .sf-follow-btn:hover { opacity: 0.85; }

  /* ── SOCIAL / CONNECT ── */
  #connect { background: var(--ink); }

  .connect-title { color: var(--white) !important; }
  .connect-title em { color: var(--gold) !important; }

  .connect-intro {
    font-size: 17px; line-height: 1.85; font-weight: 300;
    color: rgba(255,255,255,0.5); max-width: 640px; margin-bottom: 48px;
  }

  /* All-channels strip — equal weight for every platform */
  .channels-strip {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    background: rgba(26,79,168,0.25);
    margin-bottom: 48px;
  }

  .channel-card {
    background: rgba(255,255,255,0.04);
    padding: 36px 28px;
    display: flex; flex-direction: column;
    text-decoration: none; position: relative; overflow: hidden;
    transition: background 0.25s, transform 0.2s;
  }
  .channel-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }

  .cc-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
  .cc-icon { font-size: 34px; margin-bottom: 10px; }
  .cc-platform { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 500; margin-bottom: 4px; }
  .cc-handle { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--white); line-height: 1.1; }
  .cc-cta { margin-top: auto; padding-top: 20px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; }

  /* Divider between channel cards and live feeds */
  .feeds-heading {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 24px;
  }
  .feeds-heading-line { flex: 1; height: 1px; background: rgba(26,79,168,0.2); }
  .feeds-heading-text { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.2); font-weight: 500; white-space: nowrap; }

  /* Live feed embeds */
  .feeds-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    margin-bottom: 40px;
  }

  .feed-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(26,79,168,0.2);
    border-radius: 4px;
    overflow: hidden;
  }

  .feed-block-header {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(26,79,168,0.2);
    background: rgba(255,255,255,0.02);
  }

  .feed-platform-icon { font-size: 28px; flex-shrink: 0; }
  .feed-platform-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 500; margin-bottom: 2px; }
  .feed-platform-handle { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--white); line-height: 1; }

  .feed-follow-link {
    margin-left: auto; flex-shrink: 0;
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); font-weight: 500; text-decoration: none;
    transition: opacity 0.2s;
  }
  .feed-follow-link:hover { opacity: 0.75; }

  .feed-block-body { padding: 0; min-height: 420px; }

  .contact-bar {
    display: flex; flex-wrap: wrap;
    border-top: 1px solid rgba(26,79,168,0.2);
  }
  .contact-item-inline {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 28px 32px; flex: 1; min-width: 200px;
    border-right: 1px solid rgba(26,79,168,0.15);
  }
  .contact-item-inline:last-child { border-right: none; }
  .ci-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
  .ci-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 4px; }
  .ci-val { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 300; }

  /* ── FOOTER ── */
  footer {
    background: #050e1c;
    padding: 48px 7vw;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(26,79,168,0.2);
    flex-wrap: wrap; gap: 20px;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 600; color: var(--white);
    display: flex; align-items: center; gap: 10px;
  }

  .footer-logo {
    width: 32px; height: 32px;
    border-radius: 50%; object-fit: cover;
    border: 1px solid rgba(200,149,42,0.5);
    flex-shrink: 0;
  }

  /* ── HERO LOGO ── */
  .hero-logo {
    margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.7s 0.1s forwards;
  }

  .hero-logo-img {
    width: 196px; height: 196px;
    border-radius: 50%; object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 8px rgba(200,149,42,0.12);
  }

  .footer-brand span { color: var(--gold); }

  .footer-tagline { font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; margin-top: 4px; }

  .footer-legal { font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 300; }

  .footer-links { display: flex; gap: 28px; }

  .footer-links a {
    font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,0.4); text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    #about, #operation-grace, .leadership-layout, .programmes-header { grid-template-columns: 1fr; }
    .pillars-grid, .reach-grid, .programme-grid { grid-template-columns: 1fr 1fr; }
    .social-feed-layout { grid-template-columns: 1fr; }
    .channels-strip { grid-template-columns: repeat(2, 1fr); }
    .achievements { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .about-right { position: static; }
    .contact-bar { flex-direction: column; }
    .contact-item-inline { border-right: none; border-bottom: 1px solid rgba(26,79,168,0.15); padding: 20px 24px; }
    .contact-item-inline:last-child { border-bottom: none; }
  }

  @media (max-width: 600px) {
    section { padding: 72px 6vw; }
    .programme-grid, .pillars-grid, .reach-grid, .feeds-grid { grid-template-columns: 1fr; }
    .channels-strip { grid-template-columns: repeat(2, 1fr); }
    .channel-card { padding: 28px 20px; }
  }