  :root {
    --ochre: #b06a2a;
    --ochre-dark: #8b4e1a;
    --terracotta: #8b3a2a;
    --sand: #eadfc8;
    --cream: #f6f1e3;
    --savannah: #6b5a3a;
    --ink: #1b1815;
    --ink-soft: #3c362f;
    --ink-mute: #6e675c;
    --line: #d9ceb6;
    --teal: #2a5560;
    --gold: #c89a45;
    --bg: #fbf8ef;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  .serif { font-family: 'EB Garamond', Georgia, serif; }
  h1, h2, h3, h4 { font-family: 'EB Garamond', Georgia, serif; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
  h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.1; }
  h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.2; margin-bottom: 1rem; }
  h3 { font-size: 1.4rem; line-height: 1.3; margin-bottom: .6rem; }
  h4 { font-size: 1.1rem; line-height: 1.3; font-weight: 600; }
  p { margin-bottom: 1rem; color: var(--ink-soft); }
  a { color: var(--terracotta); text-decoration: none; }
  a:hover { text-decoration: underline; }

  /* ---- TOP NAV (site-wide) ---- */
  .top-nav {
    background: var(--ink);
    color: #fff;
    padding: 14px 0;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .top-nav .wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; }
  .top-nav .brand { display: inline-flex; align-items: center; }
  .top-nav .brand img { height: 44px; width: auto; display: block; }
  .footer-brand { display: block; height: 52px; width: auto; margin-bottom: 16px; }
  .top-nav ul { display: flex; gap: 28px; list-style: none; }
  .top-nav li a { color: #e8e1d1; font-weight: 500; letter-spacing: 0.08em; }
  .top-nav li a:hover, .top-nav li.active a { color: #fff; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
  .top-nav li.active a { color: var(--gold); }

  /* ---- PAGE TAB BAR (mockup-only nav between the 4 pages) ---- */
  .page-tabs {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 50;
  }
  .page-tabs .wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; gap: 0; flex-wrap: wrap; }
  .page-tabs button {
    background: none; border: none; padding: 18px 24px;
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute);
    cursor: pointer; border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s;
  }
  .page-tabs button:hover { color: var(--ink); }
  .page-tabs button.active { color: var(--terracotta); border-bottom-color: var(--terracotta); }
  .page-tabs button.tab-sub { padding-left: 14px; padding-right: 14px; font-size: 12px; color: var(--ink-mute); }
  .page-tabs button.tab-sub.active { color: var(--terracotta); }
  .mockup-note { background: #fef8e3; border-bottom: 1px solid #e8d899; padding: 8px 28px; text-align: center; font-size: 13px; color: #7a5c1a; }

  /* ---- CONTAINERS ---- */
  .container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
  .container-narrow { max-width: 780px; margin: 0 auto; padding: 0 28px; }

  /* ---- PAGE ROOTS ---- */
  .page { display: none; }
  .page.active { display: block; }

  /* ---- HERO ---- */
  .hero {
    background: linear-gradient(135deg, #2a2420 0%, #3d2e20 50%, #5a3820 100%);
    color: #fff;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(200, 154, 69, 0.18), transparent 55%),
                radial-gradient(circle at 15% 80%, rgba(139, 58, 42, 0.22), transparent 50%);
  }
  .hero .wrap { position: relative; }
  .hero .kicker {
    font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px; font-weight: 500;
  }
  .hero h1 { color: #fff; margin-bottom: 24px; max-width: 18ch; }
  .hero .lede {
    font-family: 'EB Garamond', serif; font-style: italic; font-size: 1.5rem;
    color: #e8e1d1; max-width: 52ch; line-height: 1.5; font-weight: 400;
  }
  .hero-meta { margin-top: 40px; display: flex; gap: 48px; flex-wrap: wrap; }
  .hero-meta .item { font-size: 14px; color: #c7bdaa; }
  .hero-meta .item strong { display: block; color: #fff; font-family: 'EB Garamond', serif; font-size: 1.6rem; margin-bottom: 2px; font-weight: 500; }

  /* ---- SECTIONS ---- */
  section { padding: 72px 0; border-bottom: 1px solid var(--line); }
  section:last-child { border-bottom: none; }
  section.alt { background: var(--cream); }
  section.dark { background: var(--ink); color: #f5efdf; }
  section.dark h2, section.dark h3 { color: #fff; }
  section.dark p { color: #d8cfbc; }

  .section-kicker { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; margin-bottom: 12px; }

  /* ---- PROGRAMME CARDS (hub grid) ---- */
  .cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 32px; }
  .card {
    background: #fff; border: 1px solid var(--line); border-radius: 2px;
    padding: 36px 32px; position: relative; transition: transform .25s, box-shadow .25s;
    display: flex; flex-direction: column;
  }
  .card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(27, 24, 21, 0.08); }
  .card .num {
    font-family: 'EB Garamond', serif; font-size: 14px; font-weight: 600;
    color: var(--ochre); letter-spacing: 0.1em; margin-bottom: 14px;
  }
  .card h3 { margin-bottom: 8px; font-size: 1.5rem; }
  .card .tag { font-size: 13px; color: var(--teal); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
  .card p { font-size: 15px; margin-bottom: 20px; flex-grow: 1; }
  .card .card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
  .card .card-footer .status { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.05em; }
  .card .link {
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--terracotta);
  }
  .card .link::after { content: " →"; }

  /* ---- TIMELINE / PHASES ---- */
  .phases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); margin-top: 32px; border: 1px solid var(--line); }
  .phase { background: #fff; padding: 28px 24px; }
  .phase .year { font-family: 'EB Garamond', serif; font-size: 2.4rem; color: var(--ochre); font-weight: 500; line-height: 1; }
  .phase .label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin: 4px 0 16px; font-weight: 600; }
  .phase h4 { margin-bottom: 8px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--ink); }
  .phase p { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

  /* ---- FACTS BAR ---- */
  .facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 48px 0; }
  .fact .num { font-family: 'EB Garamond', serif; font-size: 3rem; color: var(--terracotta); font-weight: 500; line-height: 1; }
  .fact .label { font-size: 13px; color: var(--ink-mute); margin-top: 8px; line-height: 1.4; }

  /* ---- PILLS / TAGS ---- */
  .pill { display: inline-block; background: var(--sand); color: var(--ink-soft); padding: 4px 12px; border-radius: 20px; font-size: 12px; letter-spacing: 0.04em; margin-right: 6px; margin-bottom: 6px; font-weight: 500; }

  /* ---- SPLIT / TWO-COL ---- */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .split.narrow { gap: 48px; }

  /* ---- LISTS ---- */
  ul.clean { list-style: none; }
  ul.clean li { padding-left: 26px; position: relative; margin-bottom: 12px; color: var(--ink-soft); }
  ul.clean li::before { content: ""; position: absolute; left: 0; top: 12px; width: 14px; height: 1px; background: var(--ochre); }

  /* ---- PHASE BLOCKS (for subpages) ---- */
  .phase-block {
    border-left: 3px solid var(--ochre);
    padding: 4px 0 4px 28px;
    margin-bottom: 36px;
    position: relative;
  }
  .phase-block .phase-num { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ochre); font-weight: 600; margin-bottom: 6px; }
  .phase-block h3 { font-size: 1.5rem; margin-bottom: 12px; }
  .phase-block ul.clean li { font-size: 15px; }

  /* ---- CALLOUT ---- */
  .callout {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 28px 32px;
    margin: 32px 0;
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.5;
  }
  .callout .attr { display: block; font-family: 'Inter', sans-serif; font-style: normal; font-size: 13px; color: var(--ink-mute); margin-top: 12px; letter-spacing: 0.05em; }

  /* ---- STAT COMPARISON (evidence gap chart) ---- */
  .gap-chart { background: #fff; border: 1px solid var(--line); padding: 36px; margin: 32px 0; }
  .gap-bar { margin-bottom: 20px; }
  .gap-bar .label { font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; display: flex; justify-content: space-between; }
  .gap-bar .label strong { color: var(--ink); }
  .gap-bar .bar { height: 30px; background: var(--sand); border-radius: 2px; overflow: hidden; position: relative; }
  .gap-bar .fill { height: 100%; background: linear-gradient(90deg, var(--ochre), var(--terracotta)); display: flex; align-items: center; justify-content: flex-end; padding-right: 14px; color: #fff; font-size: 13px; font-weight: 600; }

  /* ---- FOOTER ---- */
  footer { background: var(--ink); color: #9c9080; padding: 60px 0 40px; font-size: 14px; }
  footer .wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
  footer h4 { color: #fff; margin-bottom: 14px; font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
  footer p, footer li { color: #9c9080; font-size: 14px; line-height: 1.7; }
  footer ul { list-style: none; }
  footer a { color: #c7bdaa; }
  footer a:hover { color: #fff; }
  footer .bottom { max-width: 1200px; margin: 40px auto 0; padding: 20px 28px 0; border-top: 1px solid #2d2925; display: flex; justify-content: space-between; font-size: 12px; color: #6e675c; }


  /* ---- HOME-SPECIFIC ---- */
  .home-hero {
    background: linear-gradient(135deg, #1b1815 0%, #2d2420 45%, #5a3820 100%);
    color: #fff;
    padding: 110px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .home-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 85% 25%, rgba(200, 154, 69, 0.22), transparent 55%),
                radial-gradient(circle at 10% 85%, rgba(139, 58, 42, 0.28), transparent 50%);
  }
  .home-hero .wrap { position: relative; }
  .home-hero h1 { color: #fff; max-width: 22ch; font-size: clamp(2.6rem, 5.2vw, 4rem); line-height: 1.08; margin-bottom: 28px; }
  .home-hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
  .home-hero .lede { font-family: 'EB Garamond', serif; font-size: 1.4rem; font-style: italic; color: #e8e1d1; max-width: 58ch; line-height: 1.5; margin-bottom: 36px; }
  .home-hero .cta-row { display: flex; gap: 18px; flex-wrap: wrap; }
  .btn {
    display: inline-block; padding: 14px 28px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid transparent;
    cursor: pointer; text-decoration: none; transition: background .2s, color .2s, border-color .2s;
  }
  .btn-primary { background: var(--gold); color: var(--ink); }
  .btn-primary:hover { background: #e0b25a; text-decoration: none; }
  .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
  .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); text-decoration: none; }
  .btn-dark { background: var(--ink); color: #fff; }
  .btn-dark:hover { background: var(--terracotta); text-decoration: none; }

  /* ---- NEWS CARDS ---- */
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
  .news-card {
    background: #fff; border: 1px solid var(--line); padding: 28px 28px 32px;
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s;
  }
  .news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(27,24,21,0.06); }
  .news-card .meta { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; margin-bottom: 10px; }
  .news-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
  .news-card p { font-size: 14px; margin-bottom: 16px; flex-grow: 1; }
  .news-card a.more { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); }
  .news-card a.more::after { content: " →"; }

  /* ---- PARTNERS STRIP ---- */
  .partners-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center; margin-top: 32px; }
  .partners-strip .partner {
    text-align: center; padding: 20px 12px; border: 1px solid var(--line); background: #fff;
    font-family: 'EB Garamond', serif; font-size: 1.05rem; color: var(--ink-soft);
    min-height: 80px; display: flex; align-items: center; justify-content: center;
  }

  /* ---- ABOUT TWO-COL ORG BLOCKS ---- */
  .org-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 32px; }
  .org-block {
    background: #fff; border: 1px solid var(--line); padding: 40px 36px;
    position: relative;
  }
  .org-block .org-kicker { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ochre); font-weight: 600; margin-bottom: 10px; }
  .org-block h3 { font-size: 1.75rem; margin-bottom: 14px; }
  .org-block .role { font-family: 'EB Garamond', serif; font-style: italic; color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 18px; line-height: 1.5; }
  .org-block p { font-size: 15px; }
  .org-block .meta-row { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-mute); line-height: 1.7; }
  .org-block .meta-row strong { color: var(--ink); display: block; font-family: 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; font-weight: 600; margin-bottom: 4px; }

  /* ---- VALUES / PRINCIPLES ---- */
  .values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 32px; }
  .value h4 { font-family: 'EB Garamond', serif; font-size: 1.4rem; font-weight: 500; margin-bottom: 10px; color: var(--terracotta); }
  .value p { font-size: 15px; }

  /* ---- REPORTS ---- */
  .reports-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 32px; }
  .report-card {
    background: #fff; border: 1px solid var(--line); padding: 32px 32px 28px;
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s;
  }
  .report-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(27,24,21,0.06); }
  .report-card .r-type { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ochre); font-weight: 600; margin-bottom: 10px; }
  .report-card h3 { font-size: 1.35rem; margin-bottom: 10px; line-height: 1.25; }
  .report-card .r-date { font-family: 'EB Garamond', serif; color: var(--ink-mute); font-size: 14px; margin-bottom: 14px; font-style: italic; }
  .report-card p { font-size: 14.5px; flex-grow: 1; margin-bottom: 18px; }
  .report-card .r-actions { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); }
  .report-card .r-actions .dl { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--terracotta); }
  .report-card .r-actions .dl::before { content: "↓ "; }
  .report-card .r-size { font-size: 12px; color: var(--ink-mute); }

  /* ---- PARTNERS PAGE ---- */
  .partner-group { margin-bottom: 56px; }
  .partner-group h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--ink); }
  .partner-group .group-note { font-size: 14px; color: var(--ink-mute); margin-bottom: 24px; }
  .partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .partner-tile {
    background: #fff; border: 1px solid var(--line); padding: 24px 24px;
    display: flex; flex-direction: column;
  }
  .partner-tile h4 { font-family: 'EB Garamond', serif; font-size: 1.15rem; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
  .partner-tile .p-role { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ochre); font-weight: 600; margin-bottom: 10px; }
  .partner-tile p { font-size: 14px; color: var(--ink-soft); margin: 0; }

  /* ---- CONTACT ---- */
  .contact-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; margin-top: 32px; }
  .contact-info h3 { font-size: 1.5rem; margin-bottom: 18px; }
  .contact-info dl { margin-top: 24px; }
  .contact-info dt { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ochre); font-weight: 600; margin-top: 18px; margin-bottom: 4px; }
  .contact-info dd { font-size: 16px; color: var(--ink); line-height: 1.6; }
  .contact-form { background: #fff; border: 1px solid var(--line); padding: 40px 36px; }
  .contact-form .field { margin-bottom: 20px; }
  .contact-form label { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-bottom: 6px; }
  .contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); background: var(--bg);
    font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink);
    border-radius: 0; outline: none; transition: border-color .2s;
  }
  .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--ochre); }
  .contact-form textarea { min-height: 140px; resize: vertical; }

  @media (max-width: 800px) {
    .news-grid, .partners-strip, .org-pair, .values, .reports-grid, .partner-grid, .contact-layout, .news-list { grid-template-columns: 1fr; gap: 20px; }
    .partners-strip { gap: 16px; }
    .news-post--featured { grid-template-columns: 1fr; gap: 0; }
    .news-post--featured .news-post__body { padding: 32px 28px; }
    .news-post--featured .news-post__media img { min-height: 240px; }
  }


  /* ---- NEWS CARDS (programme-style grid) ---- */
  .news-card__img { display: block; margin: -36px -32px 28px; overflow: hidden; aspect-ratio: 16 / 10; background: var(--sand); }
  .news-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
  .news-card:hover .news-card__img img { transform: scale(1.04); }

  /* ---- NEWS PAGE ---- */
  .news-featured { margin-top: 32px; margin-bottom: 48px; }
  .news-post--featured {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
    background: #fff; border: 1px solid var(--line); overflow: hidden;
  }
  .news-post--featured .news-post__media { padding: 0; }
  .news-post--featured .news-post__media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
  .news-post--featured .news-post__body { padding: 48px 44px; }
  .news-post--featured h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.15; }
  .news-post--featured .news-post__excerpt { font-size: 16px; line-height: 1.65; }

  .news-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .news-post {
    background: transparent; display: flex; flex-direction: column;
  }
  .news-post__media { display: block; background: var(--sand); overflow: hidden; aspect-ratio: 16 / 10; position: relative; }
  .news-post__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
  .news-post__media:hover img { transform: scale(1.03); }
  .news-post__media--portrait { aspect-ratio: 4 / 5; }
  .news-post__body { padding: 24px 4px 0; }
  .news-post__meta {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink-mute); margin-bottom: 14px; font-weight: 500;
  }
  .news-post h3 { font-size: 1.4rem; line-height: 1.25; margin-bottom: 12px; }
  .news-post__excerpt { font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
  .news-post__byline { font-family: 'EB Garamond', serif; font-style: italic; color: var(--ink-mute); font-size: 15px; margin-bottom: 14px; }
  .news-post__more { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); }

  .tag-dot, .tag-pill {
    display: inline-flex; align-items: center;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  }
  .tag-dot { color: var(--gold); }
  .tag-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-right: 8px; }
  .tag-pill { color: var(--terracotta); background: #f4e5d6; padding: 4px 10px; border-radius: 2px; letter-spacing: 0.1em; }

  /* ---- CONTACT (simplified, form-only centred) ---- */
  .contact-form-wrap { max-width: 640px; margin: 8px auto 0; }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 800px) {
    .cards, .split, .phases, .facts { grid-template-columns: 1fr; gap: 20px; }
    .facts { gap: 28px; padding: 32px 0; }
    .phases { border: 1px solid var(--line); }
    section { padding: 48px 0; }
    footer .wrap { grid-template-columns: 1fr 1fr; }
    .page-tabs button { padding: 14px 14px; font-size: 12px; }
  }

  /* ---- ARTICLE DETAIL VIEW ---- */
  .article-back-bar { padding: 16px 0; border-bottom: 1px solid var(--line); background: var(--cream); }
  .article-back-btn {
    font-size: 12px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
    color: var(--ink-mute); display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer; background: none; border: none; padding: 0; font-family: 'Inter', sans-serif;
    transition: color .2s;
  }
  .article-back-btn:hover { color: var(--terracotta); }
  .article-back-btn::before { content: "←"; font-size: 15px; line-height: 1; }
  .article-hero { padding: 60px 0 44px; background: var(--cream); border-bottom: 1px solid var(--line); }
  .article-hero .article-tag { margin-bottom: 18px; }
  .article-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); max-width: 22ch; margin-bottom: 22px; line-height: 1.1; }
  .article-meta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
  .article-meta-row .meta-item { font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
  .article-meta-row .meta-byline { font-family: 'EB Garamond', serif; font-style: italic; font-size: 16px; color: var(--ink-mute); text-transform: none; letter-spacing: 0; font-weight: 400; }
  .article-meta-row .meta-sep { color: var(--line); }
  .article-cover-wrap { background: var(--sand); overflow: hidden; max-height: 500px; }
  .article-cover-wrap img { width: 100%; max-height: 500px; object-fit: cover; display: block; }
  .article-body { max-width: 720px; margin: 0 auto; padding: 56px 28px 72px; font-size: 17px; line-height: 1.8; }
  .article-body p { color: var(--ink-soft); margin-bottom: 1.4rem; }
  .article-body h2 { font-size: 1.6rem; margin: 2.2rem 0 1rem; color: var(--ink); }
  .article-body h3 { font-size: 1.3rem; margin: 1.8rem 0 0.8rem; color: var(--ink); }
  .article-body ul, .article-body ol { margin: 0 0 1.4rem 1.6rem; color: var(--ink-soft); }
  .article-body li { margin-bottom: 0.6rem; line-height: 1.75; }
  .article-body strong { color: var(--ink); font-weight: 600; }
  .article-body em { font-family: 'EB Garamond', serif; font-size: 1.05em; }
  @media (max-width: 800px) {
    .article-hero { padding: 36px 0 28px; }
    .article-body { padding: 36px 0 48px; }
  }

/* ---- PARTNER LOGO GRID ---- */

    .logo-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 28px;
    }
    .logo-tile {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 180px;
      height: 100px;
      background: #fff;
      border: 1px solid var(--line);
      padding: 20px;
      text-decoration: none;
      transition: box-shadow .2s, border-color .2s;
    }
    .logo-tile:hover {
      border-color: var(--ochre);
      box-shadow: 0 4px 16px rgba(27,24,21,0.08);
      text-decoration: none;
    }
    .logo-tile span {
      font-family: 'EB Garamond', serif;
      font-size: 1.05rem;
      color: var(--ink-soft);
      text-align: center;
      line-height: 1.3;
    }
    .logo-tile img {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
    }
    .partner-desc { font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 680px; margin: 12px 0 28px; }
  