:root {
    --forest: #0e2b20;
    --forest-strong: #091d16;
    --forest-soft: #15382b;
    --forest-panel: #123126;
    --gold: #c8a96a;
    --gold-soft: #dbc189;
    --gold-faint: rgba(200, 169, 106, 0.18);
    --ivory: #faf8f3;
    --sage: #dde5d6;
    --charcoal: #2b2b2b;
    --text-main: #f5efe3;
    --text-muted: #c7c9bf;
    --line: rgba(200, 169, 106, 0.26);
    --line-strong: rgba(200, 169, 106, 0.5);
    --panel: rgba(16, 42, 31, 0.78);
    --panel-strong: rgba(13, 36, 27, 0.9);
    --shadow-soft: 0 18px 36px rgba(0, 0, 0, 0.24);
    --shadow-lift: 0 26px 48px rgba(0, 0, 0, 0.28);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1720px;
    --font-body: "Montserrat", "Manrope", "Aptos", "Segoe UI", Arial, sans-serif;
    --font-heading: "Cinzel", "Cormorant Garamond", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    background:
        linear-gradient(180deg, rgba(8, 24, 17, 0.86), rgba(14, 43, 32, 0.92) 34%, rgba(11, 34, 25, 0.98) 100%),
        url("../images/hero-background-texture.svg"),
        radial-gradient(circle at top right, rgba(200, 169, 106, 0.08), transparent 18%),
        radial-gradient(circle at 18% 14%, rgba(221, 229, 214, 0.06), transparent 16%),
        linear-gradient(180deg, #081811 0%, var(--forest) 20%, #102d22 58%, #0b2219 100%);
    background-size: auto, cover, auto, auto, auto;
    background-position: center top, center top, center top, center top, center top;
    background-repeat: no-repeat;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -3rem;
    left: 1rem;
    z-index: 50;
    padding: 0.8rem 1rem;
    background: var(--ivory);
    color: var(--forest-strong);
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(8, 24, 17, 0.76);
    border-bottom: 1px solid rgba(200, 169, 106, 0.14);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.4rem, 3vw, 3rem);
    min-height: 5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    max-width: min(34rem, 100%);
    min-width: 0;
    text-decoration: none;
}

.brand-logo {
    width: 4rem;
    max-height: 4rem;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
    min-width: 0;
    overflow: hidden;
}

.brand-mark,
h1,
h2,
h3,
.section-kicker {
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
}

.brand-mark {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ivory);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-tag {
    max-width: 24rem;
    color: rgba(219, 193, 137, 0.88);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-status {
    display: block;
    width: min(21rem, 100%);
    overflow: hidden;
    color: rgba(219, 193, 137, 0.92);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.18;
    text-transform: uppercase;
    white-space: nowrap;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-status-track {
    display: inline-flex;
    width: max-content;
    animation: brand-status-scroll 18s linear infinite;
}

.brand-status-text {
    flex: 0 0 auto;
    padding-right: 2.2rem;
}

.brand:hover .brand-status-track,
.brand:focus-visible .brand-status-track,
.brand-status:hover .brand-status-track {
    animation-play-state: paused;
}

.menu-toggle {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(16, 42, 31, 0.88);
    color: var(--gold-soft);
    cursor: pointer;
}

.menu-toggle-bar {
    width: 1.05rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(0.38rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-0.38rem) rotate(-45deg);
}

.menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.2rem, 2vw, 2.2rem);
    flex: 1;
    min-width: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 0.8vw, 1rem);
    min-width: 0;
}

.site-nav a {
    position: relative;
    padding: 0.5rem 0.08rem;
    color: rgba(250, 248, 243, 0.8);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.18rem;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--ivory);
}

.site-nav a.is-active {
    color: var(--gold-soft);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    min-height: 3rem;
    padding: 0.8rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-arrow {
    transition: transform 180ms ease;
}

.button:hover .button-arrow,
.button:focus-visible .button-arrow {
    transform: translateX(0.2rem);
}

.button-primary {
    color: var(--forest-strong);
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    box-shadow: 0 14px 28px rgba(200, 169, 106, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: linear-gradient(180deg, #e1ca99, var(--gold-soft));
}

.button-secondary,
.button-outline {
    color: var(--ivory);
    background: transparent;
    border-color: var(--line-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
    background: rgba(250, 248, 243, 0.06);
    border-color: var(--gold);
}

.header-cta {
    flex-shrink: 0;
}

.hero {
    position: relative;
    overflow: clip;
    min-height: clamp(40.5rem, 43vw, 47.5rem);
    padding: 4.4rem 0 3.2rem;
    background:
        linear-gradient(90deg, rgba(3, 28, 20, 0.98) 0%, rgba(3, 28, 20, 0.94) 26%, rgba(3, 28, 20, 0.72) 47%, rgba(3, 28, 20, 0.24) 72%, rgba(3, 28, 20, 0.08) 100%),
        radial-gradient(circle at 70% 60%, rgba(200, 169, 106, 0.14), transparent 24%),
        url("../images/hero-africa-network.png");
    background-size: cover, auto, cover;
    background-position: center, center, 62% center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(221, 229, 214, 0.05), transparent 18%),
        linear-gradient(to bottom, transparent 70%, rgba(5, 40, 29, 0.72) 88%, #0e2b20 100%);
    pointer-events: none;
}

.hero-grid,
.services-strip,
.main-row-grid,
.consultation-band,
.footer-grid {
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.41fr) minmax(480px, 0.59fr);
    gap: clamp(1.5rem, 3vw, 3.5rem);
    align-items: center;
    min-height: clamp(33rem, 37vw, 40rem);
}

.hero-copy {
    max-width: 42rem;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--gold-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ivory);
}

h1 {
    display: grid;
    gap: 0.2rem;
    max-width: 11ch;
    font-size: clamp(3.375rem, 4vw, 3.875rem);
    line-height: 1.04;
    font-weight: 600;
}

.heading-accent {
    color: var(--gold);
}

h2 {
    font-size: clamp(2rem, 2.8vw, 2.55rem);
    line-height: 1.1;
    font-weight: 600;
}

h3 {
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 600;
}

.section-summary,
.approach-card p,
.insight-card p,
.consultation-band p,
.site-footer p,
.footer-links a,
.footer-links span,
.brand-tag,
.service-item p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.35rem;
}

.hero-network {
    position: relative;
    width: 100%;
    min-height: clamp(30rem, 34vw, 38rem);
    pointer-events: none;
}

.africa-network-overlay {
    position: absolute;
    inset: 7% 0 5% auto;
    width: min(100%, 48rem);
    height: auto;
    overflow: visible;
    pointer-events: none;
}

.network-path {
    fill: none;
    stroke: rgba(219, 193, 137, 0.56);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 5px rgba(200, 169, 106, 0.24));
}

.network-path-primary {
    animation: network-draw 1.18s cubic-bezier(0.17, 0.67, 0.32, 1) 260ms both;
}

.network-path-secondary {
    opacity: 0.5;
    animation: network-draw 1.25s cubic-bezier(0.17, 0.67, 0.32, 1) 420ms both;
}

.network-node {
    fill: var(--gold-soft);
    opacity: 0;
    filter: drop-shadow(0 0 7px rgba(200, 169, 106, 0.58));
    transform-origin: center;
    animation: network-node-in 760ms ease-out 620ms both;
}

.network-node:nth-child(2) {
    animation-delay: 760ms;
}

.network-node:nth-child(3) {
    animation-delay: 900ms;
}

.network-node:nth-child(4) {
    animation-delay: 1040ms;
}

.network-node:nth-child(5) {
    animation-delay: 1180ms;
}

.network-node-primary,
.network-node-secondary {
    animation-name: network-node-in, network-node-pulse;
    animation-duration: 760ms, 7.8s;
    animation-delay: 620ms, 1.8s;
    animation-timing-function: ease-out, ease-in-out;
    animation-fill-mode: both, none;
    animation-iteration-count: 1, infinite;
}

.network-node-secondary {
    animation-delay: 900ms, 2.1s;
}

.hero-strategy-labels {
    position: absolute;
    inset: 8% 0 8% auto;
    width: min(22rem, 38%);
}

.hero-strategy-label {
    position: absolute;
    right: 0;
    max-width: 13.5rem;
    padding-left: 1.05rem;
    border-left: 1px solid rgba(200, 169, 106, 0.48);
    background: linear-gradient(90deg, rgba(5, 27, 20, 0.24), transparent 82%);
    opacity: 0;
    transform: translateY(0.55rem);
    animation: label-settle 720ms ease-out both;
}

.hero-strategy-label::before {
    content: "";
    position: absolute;
    left: -0.24rem;
    top: 0.38rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: 0 0 12px rgba(200, 169, 106, 0.54);
}

.hero-strategy-label-top {
    top: 4%;
    animation-delay: 680ms;
}

.hero-strategy-label-middle {
    top: 42%;
    animation-delay: 860ms;
}

.hero-strategy-label-bottom {
    bottom: 4%;
    animation-delay: 1040ms;
}

.hero-strategy-label h2 {
    margin: 0 0 0.28rem;
    color: var(--gold-soft);
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.1;
}

.hero-strategy-label p {
    margin: 0;
    color: rgba(221, 229, 214, 0.86);
    font-size: 0.78rem;
    line-height: 1.45;
}

.services-strip-wrap {
    padding: 1rem 0 2.3rem;
}

.services-strip {
    display: grid;
    gap: 1rem;
}

.service-panel {
    padding: clamp(1.15rem, 2vw, 1.65rem);
    border: 1px solid rgba(200, 169, 106, 0.24);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 14% 0%, rgba(200, 169, 106, 0.13), transparent 26%),
        linear-gradient(180deg, rgba(250, 248, 243, 0.04), rgba(250, 248, 243, 0.018)),
        rgba(9, 29, 22, 0.76);
    box-shadow: var(--shadow-soft);
}

.service-panel-head {
    max-width: 50rem;
}

.service-panel-head h2 {
    font-size: clamp(1.8rem, 2.35vw, 2.35rem);
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.7rem;
}

.service-item {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1.2rem clamp(1rem, 1.15vw, 1.35rem);
    border: 1px solid rgba(200, 169, 106, 0.46);
    border-radius: 16px;
    min-width: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 12%, rgba(221, 229, 214, 0.34), transparent 24%),
        linear-gradient(135deg, #faf8f3 0%, #f4f0e7 55%, #ede5d4 100%);
    box-shadow: inset 0 1px 0 rgba(250, 248, 243, 0.76), inset 0 -10px 22px rgba(200, 169, 106, 0.08), 0 14px 28px rgba(6, 19, 13, 0.24);
    text-decoration: none;
    transition: background-position 240ms ease, box-shadow 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.service-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.services-strip[data-active-service="strategy"] .service-item[data-service-card="strategy"],
.services-strip[data-active-service="verification"] .service-item[data-service-card="verification"],
.services-strip[data-active-service="evidence"] .service-item[data-service-card="evidence"],
.services-strip[data-active-service="compliance"] .service-item[data-service-card="compliance"],
.services-strip[data-active-service="training"] .service-item[data-service-card="training"] {
    border-color: rgba(200, 169, 106, 0.72);
    box-shadow: inset 0 1px 0 rgba(250, 248, 243, 0.82), inset 0 -12px 24px rgba(200, 169, 106, 0.1), 0 18px 34px rgba(6, 19, 13, 0.3), 0 0 0 1px rgba(14, 43, 32, 0.04);
}

.service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(200, 169, 106, 0.12) 34%, transparent 56%);
    opacity: 0.5;
    pointer-events: none;
    transition: transform 240ms ease, opacity 240ms ease;
}

.service-item > * {
    position: relative;
}

.service-item:hover,
.service-item:focus-within {
    transform: translateY(-4px);
    border-color: rgba(200, 169, 106, 0.7);
    background:
        radial-gradient(circle at 26% 8%, rgba(221, 229, 214, 0.38), transparent 24%),
        linear-gradient(135deg, #fffdf8 0%, #f6f1e6 54%, #eadfca 100%);
    box-shadow: inset 0 1px 0 rgba(250, 248, 243, 0.84), inset 0 -14px 26px rgba(200, 169, 106, 0.1), 0 20px 36px rgba(6, 19, 13, 0.34), 0 0 24px rgba(200, 169, 106, 0.12);
}

.service-item:hover::before,
.service-item:focus-within::before {
    opacity: 0.62;
    transform: translateX(12%);
}

.service-line-icon {
    display: grid;
    place-items: center;
    align-self: flex-start;
    width: 2.6rem;
    height: 2.6rem;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 106, 0.32);
    background: var(--forest-strong);
    transition: background-color 220ms ease, transform 220ms ease;
}

.service-item:hover .service-line-icon,
.service-item:focus-within .service-line-icon {
    background: var(--forest);
    transform: scale(1.04);
}

.service-item:hover .service-line-icon svg,
.service-item:focus-within .service-line-icon svg {
    stroke: var(--gold-soft);
}

.service-line-icon svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: none;
    stroke: var(--gold-soft);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: var(--forest);
}

.service-item p {
    margin: 0;
    color: rgba(14, 43, 32, 0.86);
    font-size: 0.88rem;
    font-weight: 500;
}

.service-detail-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-top: auto;
    min-height: 2rem;
    padding: 0.38rem 0.72rem;
    border: 1px solid rgba(14, 43, 32, 0.28);
    border-radius: 999px;
    background: rgba(250, 248, 243, 0.34);
    color: var(--forest);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card-content p + .service-detail-toggle {
    margin-top: auto;
}

.service-card-content p {
    margin-bottom: 0.85rem;
}

.service-detail-toggle:hover,
.service-detail-toggle:focus-visible,
.service-detail-toggle[aria-expanded="true"] {
    background: var(--forest);
    border-color: rgba(200, 169, 106, 0.58);
    color: var(--ivory);
}

.service-detail-toggle:hover,
.service-detail-toggle:focus-visible {
    transform: translateY(-1px);
}

.service-detail-toggle:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 3px;
}

.service-detail-panel {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-0.45rem);
    transition: grid-template-rows 280ms ease, opacity 220ms ease, transform 280ms ease;
}

.service-detail-panel[hidden] {
    display: none;
}

.service-detail-panel.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
}

.service-detail-inner {
    min-height: 0;
    padding: clamp(1.2rem, 1.8vw, 1.7rem);
    border: 1px solid rgba(200, 169, 106, 0.24);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 18% 0%, rgba(200, 169, 106, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(250, 248, 243, 0.04), rgba(250, 248, 243, 0.018)),
        rgba(9, 29, 22, 0.9);
    box-shadow: var(--shadow-soft);
}

.service-detail-inner h3 {
    color: var(--gold-soft);
    font-size: clamp(1.28rem, 1.4vw, 1.55rem);
}

.service-detail-inner p {
    max-width: 48rem;
    margin: 0.55rem 0 1rem;
    color: var(--sage);
    font-size: 0.98rem;
}

.service-detail-inner ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem 1.25rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-detail-inner li {
    position: relative;
    padding-left: 1.05rem;
    color: rgba(250, 248, 243, 0.84);
    font-size: 0.9rem;
    line-height: 1.45;
}

.service-detail-inner li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: 0 0 10px rgba(200, 169, 106, 0.36);
}

.section {
    padding: 3.6rem 0;
}

.main-row {
    padding-top: 1rem;
}

.main-row-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: stretch;
}

.approach-column,
.insights-column {
    padding: clamp(1.7rem, 2.2vw, 2.4rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.approach-column {
    border: 1px solid rgba(200, 169, 106, 0.38);
    background:
        radial-gradient(circle at 10% 12%, rgba(221, 229, 214, 0.42), transparent 22%),
        linear-gradient(135deg, #faf8f3 0%, #f5f0e5 58%, #ece2cf 100%);
    box-shadow: 0 24px 46px rgba(6, 19, 13, 0.26), inset 0 1px 0 rgba(250, 248, 243, 0.78);
}

.insights-column {
    border: 1px solid rgba(200, 169, 106, 0.16);
    background:
        linear-gradient(180deg, rgba(250, 248, 243, 0.03), rgba(250, 248, 243, 0.015)),
        var(--panel);
}

.approach-flow {
    display: grid;
    grid-template-columns: minmax(18rem, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: start;
    overflow: hidden;
}

.approach-editorial {
    position: relative;
    min-width: 0;
}

.approach-editorial::before {
    content: "";
    position: absolute;
    inset: -1.2rem auto auto -1.4rem;
    width: 16rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(221, 229, 214, 0.52) 0 2px, transparent 2px 100%);
    background-size: 1rem 1rem;
    mask-image: radial-gradient(circle, #000 50%, transparent 72%);
    opacity: 0.82;
    pointer-events: none;
}

.approach-column .eyebrow {
    color: var(--gold);
}

.approach-column .section-kicker,
.approach-column h2 {
    color: var(--forest);
}

.approach-column .section-summary {
    color: rgba(14, 43, 32, 0.82);
}

.approach-editorial-rule {
    display: block;
    width: min(18rem, 72%);
    height: 1px;
    margin-top: 1.6rem;
    background: linear-gradient(90deg, rgba(200, 169, 106, 0.9), rgba(200, 169, 106, 0));
}

.about-more-button {
    margin-top: 1.35rem;
    color: var(--forest);
    border-color: rgba(14, 43, 32, 0.28);
}

.about-more-button:hover,
.about-more-button:focus-visible {
    color: var(--ivory);
    background: var(--forest);
    border-color: rgba(200, 169, 106, 0.58);
}

.approach-process {
    position: relative;
    min-height: clamp(24rem, 28vw, 31rem);
}

.approach-cards {
    --approach-stagger: clamp(2.2rem, 2.7vw, 2.8rem);
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.2vw, 1.15rem);
    padding: 0;
    margin: 0;
    list-style: none;
}

.approach-card {
    position: relative;
    min-width: 0;
    min-height: clamp(15.5rem, 18vw, 18rem);
    padding: 3.25rem 1.15rem 1.2rem;
    border: 1px solid rgba(200, 169, 106, 0.22);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 18% 0%, rgba(200, 169, 106, 0.13), transparent 32%),
        linear-gradient(180deg, rgba(250, 248, 243, 0.055), rgba(250, 248, 243, 0.02)),
        var(--forest-strong);
    box-shadow: 0 16px 34px rgba(6, 19, 13, 0.22), inset 0 1px 0 rgba(250, 248, 243, 0.05);
}

.approach-card-strategise {
    margin-top: var(--approach-stagger);
}

.approach-card-implement {
    margin-top: calc(var(--approach-stagger) * 2);
}

.approach-card-sustain {
    margin-top: calc(var(--approach-stagger) * 3);
}

.approach-card .approach-number {
    position: absolute;
    left: 1rem;
    top: 1rem;
}

.approach-icon {
    display: grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(200, 169, 106, 0.24);
    border-radius: 50%;
    color: var(--gold-soft);
    background: radial-gradient(circle at 32% 20%, rgba(221, 229, 214, 0.12), transparent 42%), var(--forest-panel);
}

.approach-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.approach-card h3 {
    margin-bottom: 0.58rem;
    color: var(--ivory);
}

.approach-card-rule {
    display: block;
    width: 2.8rem;
    height: 1px;
    margin-bottom: 0.7rem;
    background: linear-gradient(90deg, var(--gold-soft), rgba(200, 169, 106, 0));
}

.approach-card p {
    margin: 0;
    color: rgba(250, 248, 243, 0.82);
    font-size: 0.88rem;
}

.approach-connectors {
    position: absolute;
    inset: 1.25rem 0 auto;
    width: 100%;
    height: auto;
    overflow: visible;
    pointer-events: none;
}

.approach-connectors-tablet,
.approach-connectors-mobile {
    display: none;
}

.approach-connector {
    fill: none;
    stroke: rgba(200, 169, 106, 0.72);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 6px rgba(200, 169, 106, 0.24));
}

.approach-node {
    fill: var(--gold-soft);
    stroke: rgba(14, 43, 32, 0.46);
    stroke-width: 2;
    opacity: 0.72;
    transform-origin: center;
    filter: drop-shadow(0 0 7px rgba(200, 169, 106, 0.48));
}

body.js-ready .approach-flow:not(.is-visible) .approach-connector {
    opacity: 0;
    stroke-dashoffset: 1;
}

body.js-ready .approach-flow:not(.is-visible) .approach-node {
    opacity: 0;
    transform: scale(0.72);
}

body.js-ready .approach-flow.is-visible .approach-connector-1 {
    animation: approach-connector-draw 720ms cubic-bezier(0.17, 0.67, 0.32, 1) 180ms both;
}

body.js-ready .approach-flow.is-visible .approach-connector-2 {
    animation: approach-connector-draw 760ms cubic-bezier(0.17, 0.67, 0.32, 1) 760ms both;
}

body.js-ready .approach-flow.is-visible .approach-connector-3 {
    animation: approach-connector-draw 800ms cubic-bezier(0.17, 0.67, 0.32, 1) 1360ms both;
}

body.js-ready .approach-flow.is-visible .approach-node-start {
    animation: approach-node-in 520ms ease-out 120ms both;
}

body.js-ready .approach-flow.is-visible .approach-node-1 {
    animation: approach-node-in 520ms ease-out 760ms both;
}

body.js-ready .approach-flow.is-visible .approach-node-2 {
    animation: approach-node-in 520ms ease-out 1340ms both, approach-node-pulse 8s ease-in-out 2.3s infinite;
}

body.js-ready .approach-flow.is-visible .approach-node-3 {
    animation: approach-node-in 520ms ease-out 1940ms both, approach-node-pulse 8.5s ease-in-out 2.6s infinite;
}

.column-head {
    margin-bottom: 1.5rem;
}

.approach-column .column-head {
    max-width: 44rem;
}

.insights-column .column-head {
    max-width: 48rem;
}

.insights-flow {
    display: grid;
    grid-template-columns: minmax(18rem, 0.35fr) minmax(0, 0.65fr);
    gap: clamp(2rem, 4vw, 4.25rem);
    align-items: stretch;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(200, 169, 106, 0.14), transparent 22%),
        linear-gradient(180deg, rgba(200, 169, 106, 0.035), rgba(250, 248, 243, 0.014)),
        rgba(9, 29, 22, 0.86);
}

.insights-editorial {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.insights-editorial::before {
    content: "";
    position: absolute;
    right: clamp(1rem, 3vw, 3rem);
    bottom: 0.2rem;
    width: clamp(7rem, 12vw, 10rem);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(200, 169, 106, 0.1) 0 2px, transparent 2px 100%);
    background-size: 1rem 1rem;
    mask-image: radial-gradient(circle, #000 54%, transparent 72%);
    opacity: 0.55;
    pointer-events: none;
}

.insights-editorial-rule {
    display: block;
    width: min(16rem, 72%);
    height: 1px;
    margin-top: 1.55rem;
    background: linear-gradient(90deg, rgba(200, 169, 106, 0.95), rgba(221, 229, 214, 0.2), rgba(200, 169, 106, 0));
}

.insights-composition {
    position: relative;
    min-width: 0;
}

.insights-card-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.25vw, 1.15rem);
    height: 100%;
}

.insight-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: clamp(18rem, 20vw, 21rem);
    padding: 3.6rem clamp(1rem, 1.25vw, 1.3rem) 1.25rem;
    border: 1px solid rgba(200, 169, 106, 0.44);
    border-radius: var(--radius-md);
    color: var(--forest-strong);
    background:
        radial-gradient(circle at 22% 0%, rgba(221, 229, 214, 0.34), transparent 33%),
        linear-gradient(135deg, #faf8f3 0%, #f4f0e7 55%, #ede5d4 100%);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(250, 248, 243, 0.78), inset 0 -18px 38px rgba(200, 169, 106, 0.08);
}

.insight-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-md) - 1px);
    background: linear-gradient(180deg, rgba(250, 248, 243, 0.48), rgba(250, 248, 243, 0.1) 42%, rgba(200, 169, 106, 0.08));
    pointer-events: none;
}

.insight-number,
.insight-icon,
.insight-card-copy,
.insight-link {
    position: relative;
    z-index: 1;
}

.insight-number {
    position: absolute;
    left: 1rem;
    top: 0;
    display: inline-grid;
    place-items: center;
    min-width: 3.05rem;
    min-height: 2.15rem;
    padding: 0 0.72rem;
    border: 1px solid rgba(200, 169, 106, 0.42);
    border-top: none;
    border-radius: 0 0 0.75rem 0.75rem;
    background: linear-gradient(180deg, rgba(221, 229, 214, 0.72), rgba(200, 169, 106, 0.18));
    color: var(--forest);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 18px rgba(91, 62, 20, 0.16);
}

.insight-icon {
    display: grid;
    place-items: center;
    width: 3.05rem;
    height: 3.05rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(14, 43, 32, 0.28);
    border-radius: 50%;
    color: var(--gold-soft);
    background: radial-gradient(circle at 32% 20%, rgba(221, 229, 214, 0.16), transparent 42%), var(--forest-strong);
    box-shadow: 0 8px 20px rgba(14, 43, 32, 0.28);
}

.insight-icon svg {
    width: 1.55rem;
    height: 1.55rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.insight-card h3 {
    color: var(--forest);
    font-size: clamp(1.02rem, 1.1vw, 1.18rem);
    letter-spacing: 0.08em;
}

.insight-card p {
    margin: 0.75rem 0 0;
    color: rgba(14, 43, 32, 0.88);
    font-weight: 600;
}

.insight-examples {
    display: grid;
    gap: 0.35rem;
    padding: 0;
    margin: 0.95rem 0 0;
    list-style: none;
}

.insight-examples li {
    position: relative;
    padding-left: 0.9rem;
    color: rgba(14, 43, 32, 0.84);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.35;
}

.insight-examples li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.56em;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: var(--forest);
}

.insight-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    width: 100%;
    margin-top: auto;
    padding-top: 1.25rem;
    color: var(--forest);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 180ms ease;
}

.insight-link span {
    color: var(--gold);
    transition: transform 180ms ease;
}

.insight-link:hover,
.insight-link:focus-visible {
    color: var(--forest-strong);
}

.insight-link:hover span,
.insight-link:focus-visible span {
    transform: translateX(0.18rem);
}

.insight-link:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 0.22rem;
    border-radius: 0.35rem;
}

.insights-connectors {
    position: absolute;
    inset: 1.05rem 0 auto;
    width: 100%;
    height: auto;
    overflow: visible;
    pointer-events: none;
}

.insights-connectors-mobile {
    display: none;
}

.insights-connector {
    fill: none;
    stroke: rgba(200, 169, 106, 0.68);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 6px rgba(200, 169, 106, 0.22));
}

.insights-node {
    fill: var(--forest-strong);
    stroke: var(--gold-soft);
    stroke-width: 2;
    opacity: 0.78;
    transform-origin: center;
    filter: drop-shadow(0 0 7px rgba(200, 169, 106, 0.28));
}

body.js-ready .insights-flow:not(.is-visible) .insight-card {
    opacity: 0;
    transform: translateY(0.75rem);
}

body.js-ready .insights-flow:not(.is-visible) .insights-connector {
    opacity: 0;
    stroke-dashoffset: 1;
}

body.js-ready .insights-flow:not(.is-visible) .insights-node {
    opacity: 0;
    transform: scale(0.72);
}

body.js-ready .insights-flow.is-visible .insight-card {
    animation: insight-card-enter 520ms ease-out both;
}

body.js-ready .insights-flow.is-visible .insight-card-insights {
    animation-delay: 120ms;
}

body.js-ready .insights-flow.is-visible .insight-card-resources {
    animation-delay: 820ms;
}

body.js-ready .insights-flow.is-visible .insight-card-perspectives {
    animation-delay: 1520ms;
}

body.js-ready .insights-flow.is-visible .insights-connector-1 {
    animation: insights-connector-draw 620ms cubic-bezier(0.17, 0.67, 0.32, 1) 560ms both;
}

body.js-ready .insights-flow.is-visible .insights-connector-2 {
    animation: insights-connector-draw 620ms cubic-bezier(0.17, 0.67, 0.32, 1) 1240ms both;
}

body.js-ready .insights-flow.is-visible .insights-node-1 {
    animation: insights-node-in 420ms ease-out 1040ms both;
}

body.js-ready .insights-flow.is-visible .insights-node-2 {
    animation: insights-node-in 420ms ease-out 1720ms both, insights-node-pulse 8.5s ease-in-out 2.6s infinite;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--sage);
    font-size: 0.92rem;
}

.section-summary {
    max-width: 42rem;
    margin: 0.95rem 0 0;
}

.approach-number {
    display: inline-grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    color: var(--forest-strong);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 0 10px rgba(200, 169, 106, 0.07);
}

.consultation {
    padding-top: 1rem;
}

.consultation-band {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.55rem 1.65rem;
    border: 1px solid rgba(200, 169, 106, 0.3);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 18% 50%, rgba(200, 169, 106, 0.1), transparent 16%),
        linear-gradient(90deg, rgba(9, 29, 22, 0.96), rgba(18, 49, 38, 0.96) 58%, rgba(20, 38, 28, 0.96) 100%);
    box-shadow: var(--shadow-soft);
}

.consultation-mark {
    display: grid;
    place-items: center;
    width: 4.4rem;
    height: 4.4rem;
    border: 1px solid rgba(200, 169, 106, 0.24);
    border-radius: 50%;
    background: rgba(9, 29, 22, 0.22);
}

.consultation-mark img {
    width: 3.8rem;
    max-height: 3.8rem;
    height: auto;
    object-fit: contain;
}

.consultation-band h2 {
    font-size: clamp(1.75rem, 2.3vw, 2.25rem);
}

.consultation-band p {
    margin: 0.55rem 0 0;
}

.consultation-button {
    min-width: 14rem;
}

.site-footer {
    margin-top: 4rem;
    padding: 2.6rem 0 1.7rem;
    border-top: 1px solid rgba(200, 169, 106, 0.12);
    background: linear-gradient(180deg, rgba(5, 16, 11, 0.22), rgba(5, 16, 11, 0.5));
}

.knowledge-hero {
    padding-top: clamp(4.6rem, 6vw, 6.5rem);
    padding-bottom: 2rem;
}

.knowledge-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(20rem, 0.42fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: end;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    color: rgba(221, 229, 214, 0.78);
    font-size: 0.82rem;
}

.breadcrumb a {
    color: var(--gold-soft);
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
    color: var(--ivory);
}

.knowledge-hero h1 {
    max-width: 13ch;
}

.knowledge-intro {
    max-width: 52rem;
    margin: 1.05rem 0 0;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.1vw, 1.12rem);
}

.knowledge-topic-panel {
    padding: clamp(1.25rem, 2vw, 1.8rem);
    border: 1px solid rgba(200, 169, 106, 0.18);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 88% 8%, rgba(200, 169, 106, 0.12), transparent 28%), rgba(9, 29, 22, 0.72);
    box-shadow: var(--shadow-soft);
}

.topic-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem 1rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.topic-list li {
    position: relative;
    padding-left: 1rem;
    color: rgba(250, 248, 243, 0.84);
    font-size: 0.9rem;
    line-height: 1.45;
}

.topic-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    background: var(--gold-soft);
}

.knowledge-section {
    padding-top: 1.2rem;
}

.knowledge-section-head {
    max-width: 46rem;
    margin-bottom: 1.2rem;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.catalogue-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.insight-landing-grid {
    display: grid;
    gap: 1rem;
}

.insight-landing-grid-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-landing-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalogue-card {
    display: flex;
    flex-direction: column;
    min-height: 18rem;
    padding: 1.25rem;
    border: 1px solid rgba(200, 169, 106, 0.42);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 18% 0%, rgba(221, 229, 214, 0.32), transparent 30%),
        linear-gradient(135deg, #faf8f3 0%, #f5f0e6 55%, #ece3d2 100%);
    box-shadow: inset 0 1px 0 rgba(250, 248, 243, 0.78), 0 14px 30px rgba(6, 19, 13, 0.22);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.catalogue-card:hover,
.catalogue-card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(200, 169, 106, 0.62);
    box-shadow: inset 0 1px 0 rgba(250, 248, 243, 0.86), 0 18px 34px rgba(6, 19, 13, 0.28), 0 0 22px rgba(200, 169, 106, 0.1);
}

.catalogue-label {
    color: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.catalogue-card h3 {
    margin-top: 1rem;
    color: var(--forest);
    font-size: 1.08rem;
}

.catalogue-card p {
    margin: 0.8rem 0 1.2rem;
    color: rgba(14, 43, 32, 0.84);
    font-size: 0.92rem;
}

.status-pill {
    align-self: flex-start;
    margin-top: auto;
    padding: 0.38rem 0.72rem;
    border: 1px solid rgba(200, 169, 106, 0.28);
    border-radius: 999px;
    color: var(--forest);
    background: rgba(200, 169, 106, 0.14);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.codes-library-section {
    padding-top: 1.2rem;
}

.codes-table-wrap {
    overflow: hidden;
    border: 1px solid rgba(200, 169, 106, 0.34);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(250, 248, 243, 0.98), rgba(239, 229, 210, 0.98));
    box-shadow: var(--shadow-soft);
}

.codes-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--forest-strong);
}

.codes-table th,
.codes-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(14, 43, 32, 0.12);
    text-align: left;
    vertical-align: middle;
}

.codes-table thead th {
    color: var(--ivory);
    background: linear-gradient(135deg, var(--forest), var(--forest-soft));
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.codes-table tbody th {
    width: 42%;
    color: var(--forest);
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.32;
}

.codes-table tbody tr:last-child th,
.codes-table tbody tr:last-child td {
    border-bottom: 0;
}

.codes-table tbody tr:nth-child(even) {
    background: rgba(14, 43, 32, 0.04);
}

.codes-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.codes-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.68rem 0.9rem;
    border: 1px solid rgba(14, 43, 32, 0.18);
    border-radius: var(--radius-sm);
    color: var(--forest-strong);
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-decoration: none;
    text-transform: uppercase;
}

.codes-download-button:hover,
.codes-download-button:focus-visible {
    color: var(--forest-strong);
    filter: brightness(1.04);
}

.insight-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
    margin: 1rem 0 0;
    color: rgba(14, 43, 32, 0.72);
    font-size: 0.76rem;
    font-weight: 700;
}

.insight-card-callout {
    padding: 0.75rem 0;
    border-top: 1px solid rgba(200, 169, 106, 0.26);
    border-bottom: 1px solid rgba(200, 169, 106, 0.18);
    color: var(--forest);
    font-weight: 800;
}

.insight-read-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    margin-top: auto;
    color: var(--forest);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.insight-read-link span {
    color: var(--gold);
    transition: transform 180ms ease;
}

.insight-read-link:hover span,
.insight-read-link:focus-visible span {
    transform: translateX(0.18rem);
}

.insight-read-link:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 0.22rem;
    border-radius: 0.35rem;
}

.insight-article-hero {
    padding-bottom: 2rem;
}

.insight-article-header {
    max-width: 900px;
}

.insight-article-header h1 {
    max-width: 14ch;
}

.insight-standfirst {
    max-width: 54rem;
    margin: 1rem 0 0;
    color: var(--text-muted);
    font-size: clamp(1.05rem, 1.2vw, 1.18rem);
}

.insight-meta-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.35rem 0 0;
}

.insight-meta-list div,
.source-status-label,
.article-section,
.insight-chart-block,
.article-sources,
.article-disclaimer,
.related-insights {
    border: 1px solid rgba(200, 169, 106, 0.2);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(250, 248, 243, 0.05), rgba(250, 248, 243, 0.02)), rgba(9, 29, 22, 0.58);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.insight-meta-list div {
    padding: 0.8rem;
}

.insight-meta-list dt {
    color: var(--gold-soft);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.insight-meta-list dd {
    margin: 0.25rem 0 0;
    color: var(--ivory);
    font-weight: 700;
}

.source-status-label {
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.45rem 0.75rem;
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.insight-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(16rem, 0.28fr);
    gap: clamp(1.2rem, 3vw, 2rem);
    align-items: start;
}

.insight-article-body {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    min-width: 0;
}

.article-section,
.insight-chart-block,
.article-sources,
.article-disclaimer,
.related-insights {
    padding: clamp(1.15rem, 2vw, 1.6rem);
    min-width: 0;
}

.article-section-label {
    margin: 0 0 0.55rem;
    color: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.article-section h2,
.insight-chart-copy h2,
.article-sources h2,
.article-disclaimer h2,
.related-insights h2 {
    color: var(--ivory);
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
}

.article-section p,
.article-sources p,
.article-sources li,
.article-disclaimer p,
.chart-note,
.chart-source,
.insight-chart-copy p {
    color: var(--text-muted);
}

.article-closing {
    padding: clamp(1.2rem, 2vw, 1.7rem);
    border-left: 3px solid var(--gold);
    background: rgba(250, 248, 243, 0.05);
}

.article-closing p {
    margin: 0;
    color: var(--ivory);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.7vw, 1.55rem);
    line-height: 1.35;
}

.chart-frame {
    margin-top: 1rem;
    overflow-x: auto;
}

.insight-chart {
    width: 100%;
    min-width: 34rem;
    height: auto;
}

.chart-axis {
    stroke: rgba(221, 229, 214, 0.45);
    stroke-width: 1.5;
}

.chart-bar {
    fill: var(--gold);
}

.chart-value,
.chart-label,
.chart-tick {
    fill: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-anchor: middle;
}

.chart-tick {
    fill: rgba(221, 229, 214, 0.72);
    text-anchor: end;
}

.chart-data-table {
    margin-top: 1rem;
    overflow-x: auto;
}

.chart-data-table table {
    width: 100%;
    border-collapse: collapse;
    color: var(--ivory);
    font-size: 0.86rem;
}

.chart-data-table caption {
    margin-bottom: 0.5rem;
    color: var(--gold-soft);
    text-align: left;
    font-weight: 800;
}

.chart-data-table th,
.chart-data-table td {
    padding: 0.55rem;
    border-bottom: 1px solid rgba(200, 169, 106, 0.16);
    text-align: left;
}

.regulatory-comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.regulatory-comparison div {
    padding: 1rem;
    border: 1px solid rgba(200, 169, 106, 0.24);
    border-radius: var(--radius-sm);
    background: rgba(250, 248, 243, 0.05);
}

.regulatory-comparison span,
.related-insights span {
    display: block;
    color: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.regulatory-comparison strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--ivory);
}

.related-insights {
    position: sticky;
    top: 6.2rem;
    display: grid;
    gap: 0.8rem;
}

.related-insights a {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(200, 169, 106, 0.16);
    color: var(--ivory);
    text-decoration: none;
}

.related-insights a:hover,
.related-insights a:focus-visible,
.article-sources a:hover,
.article-sources a:focus-visible {
    color: var(--gold-soft);
}

.back-link {
    color: var(--gold-soft) !important;
    font-weight: 800;
}

.perspective-landing-grid-featured,
.perspective-landing-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.perspective-landing-card {
    min-height: 17rem;
    background:
        linear-gradient(180deg, rgba(250, 248, 243, 0.94), rgba(245, 240, 230, 0.94)),
        radial-gradient(circle at 92% 0%, rgba(200, 169, 106, 0.22), transparent 34%);
}

.perspective-landing-card-compact {
    min-height: 15rem;
}

.perspective-read-link {
    padding-top: 0.95rem;
    border-top: 1px solid rgba(200, 169, 106, 0.2);
}

.perspective-hero {
    padding-bottom: 1.2rem;
}

.perspective-header {
    max-width: 900px;
}

.perspective-header h1 {
    max-width: 15ch;
    overflow-wrap: anywhere;
}

.perspective-standfirst {
    max-width: 56rem;
    margin: 1rem 0 0;
    color: var(--text-muted);
    font-size: clamp(1.08rem, 1.3vw, 1.24rem);
}

.perspective-meta-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.35rem 0 0;
    padding-top: 1.1rem;
    border-top: 2px solid rgba(200, 169, 106, 0.55);
}

.perspective-meta-list div {
    padding: 0.8rem;
    border: 1px solid rgba(200, 169, 106, 0.22);
    border-radius: var(--radius-md);
    background: rgba(250, 248, 243, 0.05);
}

.perspective-meta-list dt {
    color: var(--gold-soft);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.perspective-meta-list dd {
    margin: 0.25rem 0 0;
    color: var(--ivory);
    font-weight: 700;
}

.perspective-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(16rem, 0.28fr);
    gap: clamp(1.2rem, 3vw, 2rem);
    align-items: start;
}

.perspective-body {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    min-width: 0;
}

.perspective-section,
.leadership-questions,
.perspective-closing,
.perspective-sources,
.perspective-notice,
.related-perspectives {
    min-width: 0;
    padding: clamp(1.15rem, 2vw, 1.7rem);
    border: 1px solid rgba(200, 169, 106, 0.28);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #faf8f3 0%, #f5f0e6 58%, #ede5d4 100%);
    box-shadow: inset 0 1px 0 rgba(250, 248, 243, 0.86), 0 16px 34px rgba(6, 19, 13, 0.2);
}

.perspective-section-label {
    margin: 0 0 0.55rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.perspective-section h2,
.leadership-questions h2,
.perspective-closing h2,
.perspective-sources h2,
.perspective-notice h2,
.related-perspectives h2 {
    color: var(--forest);
    font-size: clamp(1.32rem, 1.7vw, 1.7rem);
}

.perspective-section p,
.leadership-questions li,
.perspective-closing p,
.perspective-sources p,
.perspective-sources li,
.perspective-notice p {
    color: rgba(14, 43, 32, 0.86);
}

.leadership-questions {
    background:
        linear-gradient(90deg, rgba(200, 169, 106, 0.18), transparent 40%),
        linear-gradient(135deg, #f7f3ea 0%, #ede5d4 100%);
}

.leadership-questions ul {
    display: grid;
    gap: 0.65rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.leadership-questions li {
    position: relative;
    padding-left: 1.2rem;
    font-weight: 700;
}

.leadership-questions li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--gold);
}

.perspective-closing {
    border-left: 4px solid var(--gold);
    background: linear-gradient(135deg, #f8f4eb 0%, #efe6d4 100%);
}

.perspective-closing p {
    margin-bottom: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 1.6vw, 1.48rem);
    line-height: 1.4;
}

.perspective-sources ul {
    padding-left: 1.1rem;
}

.perspective-sources li,
.perspective-section h2,
.leadership-questions h2,
.perspective-closing h2,
.perspective-notice h2 {
    overflow-wrap: anywhere;
}

.perspective-sources span {
    font-weight: 800;
}

.related-perspectives {
    position: sticky;
    top: 6.2rem;
    display: grid;
    gap: 0.8rem;
}

.related-perspectives a {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(200, 169, 106, 0.3);
    color: var(--forest);
    text-decoration: none;
}

.related-perspectives span {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.related-perspectives a:hover,
.related-perspectives a:focus-visible {
    color: var(--gold);
}

.related-perspectives a:focus-visible,
.perspective-sources a:focus-visible,
.perspective-read-link:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 0.22rem;
    border-radius: 0.35rem;
}

.category-consultation {
    padding-top: 1rem;
}

.page-hero {
    padding-top: clamp(4.6rem, 6vw, 6.5rem);
    padding-bottom: 2rem;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(20rem, 0.38fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: end;
}

.page-hero h1 {
    max-width: 15ch;
}

.page-intro {
    max-width: 58rem;
    margin: 1.05rem 0 0;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.12vw, 1.14rem);
}

.page-hero-panel,
.content-panel,
.form-shell {
    border: 1px solid rgba(200, 169, 106, 0.22);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(250, 248, 243, 0.05), rgba(250, 248, 243, 0.022)), rgba(9, 29, 22, 0.74);
    box-shadow: var(--shadow-soft);
}

.page-hero-panel,
.content-panel,
.form-shell {
    min-width: 0;
    padding: clamp(1.25rem, 2vw, 1.8rem);
}

.panel-note,
.content-panel p,
.methodology-steps p,
.form-intro p,
.help-text {
    color: var(--text-muted);
}

.content-section {
    padding-top: 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr) minmax(18rem, 0.8fr);
    gap: 1rem;
}

.content-grid-two {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.45fr);
}

.content-panel-accent,
.contact-panel {
    background:
        radial-gradient(circle at 18% 0%, rgba(221, 229, 214, 0.32), transparent 30%),
        linear-gradient(135deg, #faf8f3 0%, #f5f0e6 55%, #ece3d2 100%);
}

.content-panel-accent h2,
.content-panel-accent p,
.contact-panel h2,
.contact-panel p {
    color: var(--forest);
}

.methodology-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: clamp(1.5rem, 3vw, 3rem);
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.methodology-steps li {
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(200, 169, 106, 0.24);
    border-radius: var(--radius-md);
    background: rgba(250, 248, 243, 0.05);
}

.methodology-steps span {
    display: inline-grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    margin-bottom: 0.8rem;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    color: var(--forest-strong);
    font-weight: 800;
}

.methodology-steps strong {
    display: block;
    color: var(--ivory);
    font-family: var(--font-heading);
    font-size: 1.08rem;
}

.methodology-steps p {
    margin: 0.45rem 0 0;
    font-size: 0.9rem;
}

.panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.contact-panel .button-secondary {
    color: var(--forest);
    border-color: rgba(14, 43, 32, 0.28);
}

.form-shell {
    display: grid;
    gap: 1.2rem;
    max-width: 980px;
}

.form-intro {
    max-width: 44rem;
}

.form-success,
.form-error-summary {
    padding: 1rem;
    border-radius: var(--radius-md);
}

.form-success {
    border: 1px solid rgba(200, 169, 106, 0.46);
    color: var(--forest);
    background: linear-gradient(135deg, #faf8f3 0%, #efe5d2 100%);
    font-weight: 800;
}

.submission-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 100dvh;
    padding: clamp(1rem, 3vw, 2rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.submission-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.submission-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 16, 11, 0.66);
    backdrop-filter: blur(4px);
}

.submission-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 35rem);
    max-height: calc(100dvh - 2rem);
    overflow: auto;
    padding: clamp(1.35rem, 4vw, 2rem);
    border: 1px solid rgba(200, 169, 106, 0.42);
    border-radius: var(--radius-lg);
    color: var(--forest-strong);
    background:
        linear-gradient(135deg, rgba(250, 248, 243, 0.98), rgba(239, 229, 210, 0.98)),
        var(--ivory);
    box-shadow: var(--shadow-lift);
    transform: translateY(0.4rem) scale(0.98);
    transition: transform 180ms ease;
}

.submission-modal.is-open .submission-modal-dialog {
    transform: translateY(0) scale(1);
}

.submission-modal-kicker {
    margin: 0 0 0.6rem;
    color: var(--forest);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.submission-modal-dialog h2 {
    margin: 0;
    color: var(--forest-strong);
    font-size: clamp(1.55rem, 4vw, 2.1rem);
    line-height: 1.12;
}

.submission-reference {
    display: grid;
    gap: 0.25rem;
    margin: 1.2rem 0;
    padding: 1rem;
    border: 1px solid rgba(14, 43, 32, 0.16);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    background: rgba(14, 43, 32, 0.06);
}

.submission-reference span {
    color: rgba(14, 43, 32, 0.76);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.submission-reference strong {
    color: var(--forest-strong);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 5vw, 1.9rem);
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
}

.submission-modal-dialog p:last-of-type {
    margin: 0 0 1.35rem;
    color: rgba(14, 43, 32, 0.82);
    font-weight: 600;
}

.submission-modal-close {
    min-width: 9rem;
}

.form-error-summary {
    border: 1px solid rgba(219, 96, 80, 0.42);
    background: rgba(70, 18, 12, 0.35);
}

.form-error-summary h3 {
    color: var(--ivory);
}

.form-error-summary a,
.field-errors {
    color: #ffd6cc;
}

.enquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.form-field label {
    color: var(--ivory);
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 3rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(200, 169, 106, 0.3);
    border-radius: var(--radius-sm);
    color: var(--ivory);
    background: rgba(5, 16, 11, 0.48);
    font: inherit;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid var(--gold-soft);
    outline-offset: 2px;
}

.form-field-checkbox,
.form-field:has(textarea),
.form-submit {
    grid-column: 1 / -1;
}

.form-field-checkbox ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.form-field-checkbox li label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.75rem;
    border: 1px solid rgba(200, 169, 106, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(250, 248, 243, 0.04);
    font-weight: 600;
}

.form-field-checkbox input[type="checkbox"] {
    width: auto;
    min-height: auto;
    margin-top: 0.24rem;
    accent-color: var(--gold);
}

.help-text,
.field-errors {
    margin: 0;
    font-size: 0.84rem;
}

.field-errors {
    display: grid;
    gap: 0.25rem;
    padding-left: 1.1rem;
}

.has-errors input,
.has-errors select,
.has-errors textarea {
    border-color: rgba(255, 214, 204, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 0.95fr 0.75fr 0.85fr;
    gap: 1rem;
}

.footer-brand {
    align-items: flex-start;
}

.footer-logo {
    width: 5rem;
    max-height: 5rem;
}

.site-footer h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--ivory);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.footer-links a,
.footer-legal a {
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: var(--ivory);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 169, 106, 0.12);
}

.footer-bottom p,
.footer-legal {
    margin: 0;
    color: rgba(250, 248, 243, 0.68);
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

body.js-ready .reveal-on-scroll:not(.is-immediate) {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 520ms ease, transform 520ms ease;
}

body.js-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes approach-connector-draw {
    from {
        opacity: 0;
        stroke-dashoffset: 1;
    }

    32% {
        opacity: 0.74;
    }

    to {
        opacity: 0.62;
        stroke-dashoffset: 0;
    }
}

@keyframes approach-node-in {
    from {
        opacity: 0;
        transform: scale(0.72);
    }

    68% {
        opacity: 1;
        transform: scale(1.18);
    }

    to {
        opacity: 0.78;
        transform: scale(1);
    }
}

@keyframes approach-node-pulse {
    0%,
    100% {
        opacity: 0.78;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.16);
    }
}

@keyframes insight-card-enter {
    from {
        opacity: 0;
        transform: translateY(0.75rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes insights-connector-draw {
    from {
        opacity: 0;
        stroke-dashoffset: 1;
    }

    34% {
        opacity: 0.64;
    }

    to {
        opacity: 0.56;
        stroke-dashoffset: 0;
    }
}

@keyframes insights-node-in {
    from {
        opacity: 0;
        transform: scale(0.72);
    }

    70% {
        opacity: 1;
        transform: scale(1.14);
    }

    to {
        opacity: 0.84;
        transform: scale(1);
    }
}

@keyframes insights-node-pulse {
    0%,
    100% {
        opacity: 0.84;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.14);
    }
}

@keyframes network-draw {
    from {
        opacity: 0;
        stroke-dashoffset: 1;
    }

    30% {
        opacity: 0.72;
    }

    to {
        opacity: 0.56;
        stroke-dashoffset: 0;
    }
}

@keyframes network-node-in {
    from {
        opacity: 0;
        transform: scale(0.72);
    }

    68% {
        opacity: 1;
        transform: scale(1.22);
    }

    to {
        opacity: 0.72;
        transform: scale(1);
    }
}

@keyframes network-node-pulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.22);
    }
}

@keyframes label-settle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes brand-status-scroll {
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1500px) {
    .header-cta {
        display: none;
    }
}

@media (max-width: 1160px) {
    .brand-tag {
        max-width: 18rem;
        font-size: 0.62rem;
        letter-spacing: 0.09em;
    }

    .brand-status {
        width: min(18rem, 100%);
        font-size: 0.55rem;
        letter-spacing: 0.09em;
    }

    .site-nav {
        gap: 0.82rem;
    }

    .site-nav a {
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }

    .services-strip {
        grid-template-columns: 1fr;
    }

    .service-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .methodology-panel {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(4) {
        border-left: none;
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .catalogue-grid,
    .catalogue-grid-4,
    .insight-landing-grid-featured,
    .insight-landing-grid-compact,
    .perspective-landing-grid-featured,
    .perspective-landing-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .codes-table,
    .codes-table thead,
    .codes-table tbody,
    .codes-table tr,
    .codes-table th,
    .codes-table td {
        display: block;
    }

    .codes-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .codes-table tr {
        padding: 1rem;
        border-bottom: 1px solid rgba(14, 43, 32, 0.14);
    }

    .codes-table tbody tr:last-child {
        border-bottom: 0;
    }

    .codes-table th,
    .codes-table td {
        width: 100%;
        padding: 0.25rem 0;
        border-bottom: 0;
    }

    .codes-table td::before,
    .codes-table tbody th::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 0.1rem;
        color: rgba(14, 43, 32, 0.62);
        font-family: var(--font-body);
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .codes-downloads {
        margin-top: 0.4rem;
    }
}

@media (max-width: 960px) {
    .brand {
        max-width: calc(100% - 4rem);
    }

    .brand-logo {
        width: 3.4rem;
        max-height: 3.4rem;
    }

    .brand-mark {
        font-size: 0.9rem;
    }

    .brand-tag {
        font-size: 0.66rem;
        letter-spacing: 0.1em;
    }

    .brand-status {
        width: min(19rem, 100%);
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-shell {
        position: absolute;
        top: calc(100% + 0.7rem);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        padding: 1rem;
        border: 1px solid rgba(200, 169, 106, 0.18);
        border-radius: var(--radius-lg);
        background: rgba(7, 18, 13, 0.96);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        transform: translateY(-0.3rem);
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-shell.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-nav,
    .header-cta {
        width: 100%;
    }

    .site-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .site-nav a {
        width: 100%;
        padding: 0.45rem 0;
    }

    .hero {
        padding-top: 3.1rem;
        min-height: auto;
        background-position: center, center, 62% center;
    }

    h1 {
        max-width: 11ch;
        font-size: clamp(2.75rem, 5.4vw, 3.125rem);
        line-height: 1.05;
    }

    .hero-grid,
    .main-row-grid,
    .knowledge-hero-grid,
    .page-hero-grid,
    .insight-article-layout,
    .perspective-layout,
    .consultation-band,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 1.6rem;
        min-height: auto;
    }

    .hero-network {
        min-height: 22rem;
    }

    .africa-network-overlay {
        inset: 8% 0 18% auto;
        width: min(100%, 40rem);
    }

    .hero-strategy-labels {
        inset: auto 0 0;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.55rem;
        width: 100%;
    }

    .hero-strategy-label {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        max-width: none;
        min-width: 0;
    }

    .service-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-inner ul {
        grid-template-columns: 1fr;
    }

    .approach-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-process {
        min-height: auto;
    }

    .approach-cards {
        --approach-stagger: clamp(1.2rem, 2.2vw, 1.8rem);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .approach-card-implement {
        margin-top: 0;
    }

    .approach-card-sustain {
        margin-top: var(--approach-stagger);
    }

    .approach-connectors {
        inset: 0.8rem 0 auto;
    }

    .approach-connectors-desktop {
        display: none;
    }

    .approach-connectors-tablet {
        display: block;
    }

    .insights-flow {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .insights-editorial {
        justify-content: flex-start;
    }

    .insights-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .insight-card-insights {
        grid-column: 1 / -1;
    }

    .insights-connectors-desktop {
        display: none;
    }

    .insights-connectors-mobile {
        display: block;
        inset: 0 0 auto;
        width: 100%;
        height: 100%;
    }

    .consultation-band {
        grid-template-columns: auto 1fr;
    }

    .topic-list {
        grid-template-columns: 1fr;
    }

    .catalogue-grid,
    .catalogue-grid-4,
    .insight-landing-grid-featured,
    .insight-landing-grid-compact,
    .insight-meta-list,
    .regulatory-comparison,
    .perspective-landing-grid-featured,
    .perspective-landing-grid-compact,
    .perspective-meta-list {
        grid-template-columns: 1fr;
    }

    .catalogue-card {
        min-height: auto;
    }

    .related-insights {
        position: static;
    }

    .related-perspectives {
        position: static;
    }

    .perspective-landing-grid-featured,
    .perspective-landing-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enquiry-form {
        grid-template-columns: 1fr;
    }

    .consultation-button {
        grid-column: 1 / -1;
        min-width: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .perspective-landing-grid-featured,
    .perspective-landing-grid-compact {
        grid-template-columns: 1fr;
    }

    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .brand-logo {
        width: 2.85rem;
        max-height: 2.85rem;
    }

    .brand {
        gap: 0.65rem;
        max-width: calc(100% - 3.4rem);
    }

    .brand-mark {
        font-size: 0.78rem;
    }

    .brand-tag {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }

    .brand-status {
        width: min(15.5rem, 100%);
        font-size: 0.5rem;
        letter-spacing: 0.07em;
    }

    h1 {
        max-width: min(100%, 11.5ch);
        font-size: clamp(2.25rem, 9vw, 2.5rem);
        line-height: 1.05;
    }

    h2 {
        font-size: clamp(1.82rem, 8vw, 2.2rem);
    }

    .section-summary,
    .approach-card p,
    .insight-card p,
    .consultation-band p,
    .service-item p {
        font-size: 0.93rem;
    }

    .button {
        width: 100%;
        justify-content: space-between;
    }

    .hero-actions,
    .footer-legal {
        flex-direction: column;
    }

    .service-card-grid {
        grid-template-columns: 1fr;
    }

    .service-panel,
    .form-shell,
    .page-hero-panel,
    .content-panel {
        border-radius: var(--radius-md);
    }

    .form-field-checkbox ul,
    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .service-detail-toggle {
        width: auto;
    }

    .submission-modal {
        align-items: end;
        padding: 0.75rem;
    }

    .submission-modal-dialog {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .submission-modal-close {
        width: 100%;
    }

    .hero-network {
        min-height: 17rem;
    }

    .africa-network-overlay {
        display: none;
    }

    .hero-strategy-labels {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hero-strategy-label {
        padding: 0 0 0 0.9rem;
    }

    .hero-strategy-label p {
        display: none;
    }

    .insights-card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .insight-card-insights {
        grid-column: auto;
    }

    .insight-card {
        min-height: 20.5rem;
        padding: 3.35rem 1rem 1.1rem;
    }

    .knowledge-hero {
        padding-top: 3.6rem;
    }

    .hero {
        background:
            linear-gradient(180deg, rgba(3, 28, 20, 0.9) 0%, rgba(3, 28, 20, 0.74) 42%, rgba(3, 28, 20, 0.52) 100%),
            linear-gradient(to bottom, transparent 62%, rgba(5, 40, 29, 0.72) 88%, #0e2b20 100%),
            url("../images/hero-africa-network.png");
        background-size: cover, auto, cover;
        background-position: center, center, 61% top;
        background-repeat: no-repeat;
    }

    .approach-column,
    .insights-column,
    .consultation-band {
        padding: 1.2rem;
    }

    .approach-flow {
        gap: 1.6rem;
    }

    .approach-cards {
        --approach-stagger: 0;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .approach-card,
    .approach-card-strategise,
    .approach-card-implement,
    .approach-card-sustain {
        min-height: auto;
        margin-top: 0;
    }

    .approach-card {
        padding: 3rem 1rem 1.05rem;
    }

    .approach-connectors-tablet {
        display: none;
    }

    .approach-connectors-mobile {
        display: block;
        inset: 0 0 auto;
        width: 100%;
        height: 100%;
    }

    .consultation-band {
        grid-template-columns: 1fr;
    }

    .consultation-mark {
        width: 3.8rem;
        height: 3.8rem;
    }

    .consultation-mark img {
        width: 3.2rem;
        max-height: 3.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .service-detail-panel {
        transform: none;
    }

    .submission-modal,
    .submission-modal-dialog {
        transition: none;
    }

    .submission-modal-dialog {
        transform: none;
    }

    .brand-status-track {
        animation: none;
        transform: none;
    }

    .brand-status-text[aria-hidden="true"] {
        display: none;
    }

    .network-path,
    .network-node,
    .hero-strategy-label,
    .approach-connector,
    .approach-node,
    .insight-card,
    .insights-connector,
    .insights-node {
        opacity: 1;
        transform: none;
        stroke-dashoffset: 0;
    }

    .network-path,
    .approach-connector,
    .insights-connector {
        opacity: 0.44;
        stroke-dashoffset: 0;
    }
}
