:root {
    --primary-color: #6f932f;
    --primary-dark: #4f6f22;
    --primary-light: #9fc653;
    --primary-lighter: #cbe891;
    --primary-lightest: #eef8dc;
    --charcoal: #1e211b;
    --charcoal-soft: #2d3128;
    --text-dark: #2f312d;
    --text-medium: #62665e;
    --text-light: #8b9085;
    --bg-warm: #fbf7ee;
    --bg-soft: #f6f2e9;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-soft: rgba(74, 83, 58, 0.14);
    --shadow: 0 10px 28px rgba(39, 44, 32, 0.08);
    --shadow-lg: 0 24px 60px rgba(31, 35, 27, 0.14);
    --transition: all 0.25s ease;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body {
    background: var(--bg-warm);
    color: var(--text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

img,
svg {
    display: block;
}

img {
    height: auto;
    max-width: 100%;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

a {
    color: inherit;
}

input,
button,
textarea,
select {
    font: inherit;
}

.container {
    margin: 0 auto;
    width: min(100% - 40px, 1180px);
}

.eyebrow {
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.08;
}

h1,
h2 {
    font-family: 'Playfair Display', Georgia, serif;
}

h1 {
    font-size: 4.45rem;
    max-width: 720px;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-medium);
}

.btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.98rem;
    font-weight: 800;
    justify-content: center;
    min-height: 46px;
    padding: 0.78rem 1.45rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    box-shadow: 0 12px 28px rgba(111, 147, 47, 0.24);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.68);
    color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--charcoal);
}

.btn-light {
    background: #ffffff;
    color: var(--primary-dark);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: var(--primary-dark);
}

.btn-large {
    min-height: 54px;
    padding: 0.95rem 1.75rem;
}

.navbar {
    background: rgba(18, 20, 16, 0.18);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    left: 0;
    padding: 0.85rem 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.nav-brand {
    color: var(--primary-lighter);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu {
    align-items: center;
    display: flex;
    gap: 1.28rem;
    list-style: none;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-lighter);
}

.mobile-menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    background: #ffffff;
    border-radius: 3px;
    height: 3px;
    transition: var(--transition);
    width: 25px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-sticky-bar {
    display: none;
}

.journey-hero {
    color: #ffffff;
    min-height: 720px;
    overflow: hidden;
    position: relative;
}

.journey-hero-bg {
    background: url('images/cropped-rhino_camp-22.jpg') center / cover;
    inset: 0;
    position: absolute;
}

.journey-hero-overlay {
    background: linear-gradient(90deg, rgba(18, 20, 16, 0.88) 0%, rgba(18, 20, 16, 0.56) 43%, rgba(18, 20, 16, 0.14) 100%);
    inset: 0;
    position: absolute;
}

.journey-hero-content {
    padding: 13.5rem 0 10rem;
    position: relative;
    z-index: 1;
}

.journey-hero .eyebrow,
.journey-hero h1,
.journey-hero p {
    color: #ffffff;
}

.journey-hero h1 {
    margin-bottom: 1.45rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.24rem;
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 660px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.support-section {
    background: var(--bg-warm);
}

.support-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin: -4.8rem auto 5rem;
    max-width: 980px;
    padding: 3.8rem 3rem 2.2rem;
    position: relative;
    text-align: center;
    z-index: 2;
}

.support-mark {
    align-items: center;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: var(--shadow);
    color: var(--primary-dark);
    display: flex;
    height: 58px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: -29px;
    transform: translateX(-50%);
    width: 58px;
}

.support-mark svg {
    height: 29px;
    width: 29px;
}

.support-header h2 {
    font-size: 2.35rem;
    margin-bottom: 0.55rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 2.1rem 0 1.6rem;
}

.support-item {
    border-right: 1px solid var(--border-soft);
    padding: 0.7rem 1.5rem;
}

.support-item:last-child {
    border-right: 0;
}

.support-icon {
    align-items: center;
    background: var(--bg-soft);
    border-radius: 999px;
    color: var(--primary-dark);
    display: flex;
    height: 48px;
    justify-content: center;
    margin: 0 auto 0.9rem;
    width: 48px;
}

.support-icon svg {
    height: 24px;
    width: 24px;
}

.support-item h3 {
    color: var(--primary-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 0.25rem;
}

.support-item p,
.trust-line {
    font-weight: 700;
}

.trust-line {
    border-top: 1px solid var(--border-soft);
    color: var(--text-medium);
    font-size: 0.95rem;
    padding-top: 1.3rem;
}

.training-bridge {
    background: var(--charcoal);
    color: #ffffff;
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
}

.training-bridge::before {
    border: 1px solid rgba(159, 198, 83, 0.18);
    border-radius: 999px;
    content: '';
    height: 420px;
    left: -160px;
    position: absolute;
    top: -120px;
    width: 420px;
}

.bridge-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.training-bridge h2,
.training-bridge p,
.training-bridge .eyebrow {
    color: #ffffff;
}

.training-bridge h2 {
    font-size: 3rem;
    margin: 0 auto 1rem;
    max-width: 850px;
}

.training-bridge h2 span {
    color: var(--primary-lighter);
}

.training-bridge > .container > p,
.bridge-inner > p {
    color: rgba(255, 255, 255, 0.76);
    margin: 0 auto;
    max-width: 720px;
}

.bridge-benefits {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
}

.bridge-benefits article {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0 2rem;
}

.bridge-benefits article:first-child {
    border-left: 0;
}

.bridge-benefits svg {
    color: var(--primary-light);
    height: 38px;
    margin: 0 auto 1rem;
    width: 38px;
}

.bridge-benefits h3 {
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.bridge-benefits p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.why-section,
.programmes-section,
.impact-calculator-section,
.voices-section,
.about-contact-section,
.gallery-section {
    padding: 5.5rem 0;
}

.why-layout,
.calculator-layout,
.about-contact-layout,
.budget-impact-layout,
.partners-layout {
    display: grid;
    gap: 4rem;
    grid-template-columns: 0.9fr 1.1fr;
}

.why-copy h2,
.impact-intro-panel h2,
.budget-copy h2,
.partners-copy h2,
.about-contact-layout h2 {
    margin-bottom: 1.1rem;
}

.why-copy p,
.budget-copy p,
.partners-copy p,
.about-contact-layout p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.quiet-callout,
.secure-note {
    align-items: flex-start;
    border-top: 2px solid var(--primary-dark);
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.4rem;
}

.quiet-callout {
    display: block;
}

.quiet-callout strong,
.secure-note strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.3rem;
}

.quiet-callout span,
.secure-note span {
    color: var(--text-medium);
}

.secure-note svg {
    color: var(--primary-dark);
    flex: 0 0 auto;
    height: 24px;
    width: 24px;
}

.why-panel {
    display: grid;
    gap: 1.3rem;
}

.why-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.why-stats article,
.budget-cards article,
.partners-grid article,
.contact-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 1.35rem;
}

.why-stats strong,
.budget-cards strong {
    color: var(--primary-dark);
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.45rem;
}

.why-stats span,
.budget-cards span {
    color: var(--text-medium);
    font-size: 0.92rem;
    font-weight: 700;
}

.training-image-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin: 0;
    overflow: hidden;
}

.training-image-card img {
    aspect-ratio: 16 / 9;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.training-image-card figcaption {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 1rem 1.2rem;
}

.section-header.compact {
    margin: 0 auto 2.7rem;
    max-width: 780px;
    text-align: center;
}

.section-header.compact h2 {
    margin-bottom: 0.8rem;
}

.section-header.compact p:not(.eyebrow) {
    font-size: 1.05rem;
}

.programmes-section,
.voices-section,
.gallery-section {
    background: #ffffff;
}

.programmes-grid {
    display: grid;
    gap: 1.3rem;
    grid-template-columns: repeat(4, 1fr);
}

.programme-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.programme-card img {
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    width: 100%;
}

.programme-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.programme-body span {
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.programme-body h3 {
    margin-bottom: 0.65rem;
}

.programme-body p {
    font-size: 0.94rem;
    margin-bottom: 1rem;
}

.programme-body ul {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: auto 0 0 1rem;
}

.programme-note {
    background: var(--bg-soft);
    border-radius: 8px;
    color: var(--primary-dark);
    font-weight: 800;
    margin: 2rem auto 0;
    max-width: 780px;
    padding: 1.1rem;
    text-align: center;
}

.budget-section {
    background: var(--bg-soft);
    padding: 5.5rem 0 2rem;
}

.budget-impact-layout {
    align-items: center;
}

.budget-cards {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(2, 1fr);
}

.budget-cards article {
    min-height: 220px;
}

.budget-cards article:nth-child(2) {
    background: linear-gradient(135deg, rgba(238, 248, 220, 0.92), #ffffff);
}

.budget-cards strong {
    font-size: 3.15rem;
}

.impact-calculator-section {
    background: var(--bg-soft);
    padding-top: 2.5rem;
}

.impact-intro-panel {
    padding-top: 3rem;
}

.calculator-box {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.calculator-program-selector,
.calculator-input {
    margin-bottom: 1.45rem;
}

.calculator-program-selector label,
.calculator-input label {
    color: var(--text-dark);
    display: block;
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.program-selector-buttons,
.quick-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.program-selector-btn,
.quick-amount-btn {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 800;
    padding: 0.72rem 1rem;
    transition: var(--transition);
}

.program-selector-btn span {
    color: var(--text-light);
    display: block;
    font-size: 0.78rem;
    margin-top: 0.15rem;
}

.program-selector-btn.active,
.quick-amount-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.program-selector-btn.active span {
    color: rgba(255, 255, 255, 0.82);
}

.input-wrapper {
    align-items: center;
    border: 1px solid rgba(111, 147, 47, 0.5);
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
}

.currency {
    color: var(--text-dark);
    font-weight: 900;
}

.input-wrapper input {
    border: 0;
    color: var(--text-dark);
    flex: 1;
    font-weight: 800;
    min-width: 0;
    outline: 0;
}

.calculator-result {
    align-items: center;
    background: linear-gradient(135deg, var(--primary-lightest), #ffffff);
    border-radius: 8px;
    display: flex;
    gap: 1.25rem;
    margin: 1.55rem 0;
    padding: 1.6rem;
}

.result-number {
    color: var(--primary-dark);
    font-size: 3.3rem;
    font-weight: 900;
    line-height: 1;
}

.result-label {
    color: var(--text-dark);
    font-weight: 900;
}

.result-description {
    color: var(--text-medium);
    font-size: 0.92rem;
    margin-top: 0.35rem;
}

.calculator-cta {
    width: 100%;
}

.voices-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
}

.voice-card {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 1.55rem;
    text-align: center;
}

.voice-card img {
    border: 3px solid var(--primary-lightest);
    border-radius: 999px;
    height: 86px;
    margin-bottom: 1rem;
    object-fit: cover;
    width: 86px;
}

.voice-card p {
    color: var(--text-dark);
    flex: 1;
    font-size: 1rem;
    line-height: 1.55;
}

.voice-card strong {
    color: var(--text-dark);
    margin-top: 1rem;
}

.voice-card span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.partners-section {
    background: var(--bg-warm);
    padding: 5.5rem 0;
}

.partners-layout {
    align-items: start;
}

.partners-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.partners-grid h3 {
    margin-bottom: 0.55rem;
}

.partners-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

.partners-actions .btn-secondary {
    border-color: rgba(111, 147, 47, 0.28);
    color: var(--primary-dark);
}

.partners-actions .btn-secondary:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.about-contact-section {
    background: var(--bg-soft);
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0.7rem;
}

.contact-card a:not(.btn) {
    color: var(--primary-dark);
    font-weight: 800;
}

.contact-card .btn {
    margin-top: 1rem;
}

.gallery-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.donation-cta {
    background:
        linear-gradient(90deg, rgba(79, 111, 34, 0.92), rgba(111, 147, 47, 0.9)),
        url('../images/background.jpg') center / cover;
    color: #ffffff;
    padding: 2rem 0;
}

.donation-cta-inner {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-template-columns: auto 1fr auto;
}

.donation-cta-icon {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    color: #ffffff;
    display: flex;
    height: 72px;
    justify-content: center;
    width: 72px;
}

.donation-cta h2,
.donation-cta p,
.donation-cta .eyebrow {
    color: #ffffff;
}

.donation-cta h2 {
    font-size: 2.15rem;
}

.donation-cta p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
}

.donation-actions {
    display: flex;
    gap: 0.9rem;
}

.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.72);
    padding: 3.5rem 0 2rem;
}

.footer-content {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.footer-section h3 {
    color: var(--primary-light);
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
    text-decoration: none;
}

.lightbox {
    align-items: center;
    background: rgba(18, 20, 16, 0.86);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 2rem;
    position: fixed;
    z-index: 2200;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: min(88vw, 980px);
    text-align: center;
}

.lightbox-content img {
    border-radius: 8px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    display: block;
    max-height: 76vh;
    max-width: 100%;
    object-fit: contain;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.lightbox-caption span,
.lightbox-description {
    color: rgba(255, 255, 255, 0.86);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    position: absolute;
    transition: var(--transition);
}

.lightbox-close {
    font-size: 2.2rem;
    height: 48px;
    line-height: 1;
    right: 1.5rem;
    top: 1.5rem;
    width: 48px;
}

.lightbox-prev,
.lightbox-next {
    font-size: 3rem;
    height: 58px;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.44);
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 0.9rem;
    }

    .programmes-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1020px) {
    h1 {
        font-size: 3.55rem;
    }

    h2 {
        font-size: 2.45rem;
    }

    .why-layout,
    .calculator-layout,
    .about-contact-layout,
    .budget-impact-layout,
    .partners-layout {
        grid-template-columns: 1fr;
    }

    .impact-intro-panel {
        padding-top: 0;
    }

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

    .donation-cta-inner {
        grid-template-columns: auto 1fr;
    }

    .donation-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .navbar {
        padding: 0.7rem 0;
    }

    .nav-brand {
        font-size: 1.35rem;
    }

    .nav-cta {
        display: none;
    }

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

    .nav-menu {
        background: #ffffff;
        border-bottom: 1px solid var(--border-soft);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 0.5rem 1.25rem 1.2rem;
        position: absolute;
        right: 0;
        top: 100%;
    }

    .nav-menu.mobile-open {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        color: var(--text-dark);
        display: block;
        padding: 0.95rem 0;
    }

    .mobile-menu-toggle.active span {
        background: var(--text-dark);
    }

    .mobile-sticky-bar {
        align-items: center;
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid rgba(31, 35, 27, 0.12);
        bottom: 0;
        box-shadow: 0 -12px 30px rgba(31, 35, 27, 0.12);
        display: flex;
        gap: 0.85rem;
        justify-content: space-between;
        left: 0;
        opacity: 0;
        padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
        pointer-events: none;
        position: fixed;
        right: 0;
        transform: translateY(110%);
        transition: opacity 180ms ease, transform 180ms ease;
        z-index: 999;
    }

    .mobile-sticky-bar.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .sticky-text {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .sticky-label {
        color: var(--primary-dark);
        font-size: 0.8rem;
        font-weight: 800;
    }

    .sticky-sub {
        color: var(--text-medium);
        font-size: 0.82rem;
    }

    .sticky-btn {
        min-height: 42px;
        padding: 0.65rem 1rem;
    }

    .journey-hero {
        min-height: 720px;
    }

    .journey-hero-bg {
        background-position: 55% center;
    }

    .journey-hero-overlay {
        background: linear-gradient(180deg, rgba(18, 20, 16, 0.72), rgba(18, 20, 16, 0.78));
    }

    .journey-hero-content {
        padding: 7.5rem 0 9.5rem;
    }

    h1 {
        font-size: 2.75rem;
    }

    h2,
    .training-bridge h2 {
        font-size: 2.12rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons,
    .donation-actions,
    .partners-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .support-card {
        margin-top: -2.2rem;
        padding: 2.6rem 1.15rem 1.35rem;
    }

    .support-grid,
    .bridge-benefits,
    .why-stats,
    .budget-cards,
    .programmes-grid,
    .voices-grid,
    .partners-grid,
    .gallery-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .support-item {
        border-bottom: 1px solid var(--border-soft);
        border-right: 0;
        padding: 1.2rem 0;
    }

    .support-item:last-child {
        border-bottom: 0;
    }

    .bridge-benefits article {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        padding: 1.25rem 0;
    }

    .bridge-benefits article:first-child {
        border-top: 0;
    }

    .why-section,
    .programmes-section,
    .impact-calculator-section,
    .voices-section,
    .partners-section,
    .about-contact-section,
    .gallery-section {
        padding: 4rem 0;
    }

    .budget-section {
        padding: 4rem 0 1rem;
    }

    .calculator-box {
        padding: 1rem;
    }

    .calculator-result {
        align-items: flex-start;
        flex-direction: column;
    }

    .programme-card img {
        aspect-ratio: 1.4 / 1;
    }

    .gallery-grid {
        gap: 0.8rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-cta {
        padding-bottom: 6rem;
    }

    .donation-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .donation-cta-icon {
        margin: 0 auto;
    }

    .footer {
        padding-bottom: 6rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox-close {
        right: 0.9rem;
        top: 0.9rem;
    }

    .lightbox-prev,
    .lightbox-next {
        bottom: 1rem;
        top: auto;
        transform: none;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 2.42rem;
    }

    .support-header h2,
    .donation-cta h2 {
        font-size: 1.85rem;
    }

    .quick-amount-btn {
        flex: 1 1 calc(50% - 0.7rem);
    }
}
