/* =================================== */
/* 🌎 GLOBAL STYLES - APPLIED TO ALL  */
/* =================================== */
/* Inter - Variable */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Inter - Italic */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* Corinthia - Regular */
@font-face {
    font-family: 'Corinthia';
    src: url('../fonts/Corinthia/Corinthia-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Corinthia - Bold */
@font-face {
    font-family: 'Corinthia';
    src: url('../fonts/Corinthia/Corinthia-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --pink-700: #790b3e;
    --pink-600: #851c50;
    --pink-500: #A2195B;
    --yellow-500: #f29f05;
    --yellow-600: #d88c04;

    --bg: rgb(242, 242, 246);
    --surface: #ffffff;
    --text: #1f2937;
    --muted: #4b5563;
    --border: rgba(31, 41, 55, 0.12);

    --radius-sm: 10px;
    --radius-md: 16px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.14);

    --focus: 0 0 0 4px rgba(242, 159, 5, 0.35);

    --content-max: 1160px;

    /* Typography scale */
    --fs-body: 1rem;            /* 16px */
    --fs-sm: 0.9375rem;         /* 15px */
    --fs-lg: 1.125rem;          /* 18px */
    --fs-h1: clamp(2.2rem, 3.4vw, 3.1rem);
    --fs-h2: clamp(1.8rem, 2.2vw, 2.3rem);
    --fs-h3: 1.25rem;

    --lh-body: 1.7;
    --lh-tight: 1.2;
}

/* Default form feedback (works on every page) */
.success-msg,
.error-msg {
    display: none;
}

html,
body {
    font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--bg);
    color: var(--text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

html::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar {
    display: none;
}

main {
    flex: 1;
}

/* =================================== */
/* Generic sections (match Home style)  */
/* =================================== */
.text-pink { color: var(--pink-500); }
.text-yellow { color: var(--yellow-500); }

.section {
    width: 100%;
    padding: clamp(44px, 6vw, 72px) 24px;
}

.section-white {
    background: var(--surface);
}

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

.section-accent {
    background: rgba(162, 25, 91, 0.06);
}

.section-yellow {
    background: var(--yellow-500);
}

.section-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    width: 100%;
}

@media screen and (min-width: 641px) and (max-width: 1024px) {
    .section {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.section-kicker {
    margin: 0 0 8px;
    font-size: var(--fs-sm);
    font-weight: 800;
    color: var(--pink-500);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-lead {
    margin: 10px 0 0;
    font-size: var(--fs-lg);
    color: var(--muted);
    max-width: 70ch;
}

.section-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* Scroll reveal animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 650ms ease,
      transform 650ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Scroll-down cue (used on Home/About, etc.) */
.scroll-down {
    width: 52px;
    height: 52px;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    display: grid;
    place-items: center;
    animation: bounce 1.5s infinite;
    z-index: 10;
    opacity: 0.95;
}

.scroll-down img {
    width: 40px;
    height: 40px;
    display: block;
    filter: none;
}

@keyframes bounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.55; transform: translateX(-50%) translateY(10px); }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-down { animation: none; }
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--pink-500);
    color: #fff;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
    z-index: 2800;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--pink-700);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

.back-to-top path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media screen and (max-width: 640px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 640px) {
    .page-home .scroll-down {
        width: 34px;
        height: 34px;
        bottom: 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.13);
        border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .page-home .scroll-down img {
        width: 24px;
        height: 24px;
    }
}

/* Branded scroll-down button (Home) */
.page-home .scroll-down {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.page-home .scroll-down img {
    /* High-contrast white icon on pink hero */
    filter: brightness(0) invert(1);
}

.split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(18px, 3vw, 42px);
    align-items: center;
}

.split-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(31, 41, 55, 0.08);
    background: rgba(31, 41, 55, 0.04);
}

.split-media img {
    width: 100%;
    height: clamp(260px, 38vh, 420px);
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

/* =================================== */
/* Our Work page accents                */
/* =================================== */
.page-our-work .work-hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 55%, rgba(255, 255, 255, 0.0) 100%),
      linear-gradient(180deg, rgba(162, 25, 91, 0.10), rgba(242, 159, 5, 0.10)),
      url("../images/others/landscape.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: none;
    border: none;
}

@media screen and (max-width: 1024px) {
    .page-our-work .work-hero {
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.90)),
          linear-gradient(180deg, rgba(162, 25, 91, 0.08), rgba(242, 159, 5, 0.08)),
          url("../images/others/landscape.jpg");
        background-size: cover;
        background-position: center;
    }

    .page-our-work .work-hero .split-content {
        max-width: 720px;
    }
}

@media screen and (max-width: 640px) {
    .page-our-work .work-hero {
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.93)),
          linear-gradient(180deg, rgba(162, 25, 91, 0.06), rgba(242, 159, 5, 0.06)),
          url("../images/others/landscape.jpg");
        background-size: cover;
        background-position: center;
    }
}

.page-our-work .message-prose {
    border-left: 4px solid rgba(162, 25, 91, 0.55);
    padding-left: 14px;
}

.page-our-work .work-title {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-size: var(--fs-h1);
    color: var(--pink-700);
}

.page-our-work .work-accent {
    width: 110px;
    height: 6px;
    border-radius: 0;
    margin-top: 14px;
    background: linear-gradient(90deg, var(--pink-500), var(--yellow-500));
    box-shadow: var(--shadow-sm);
}

.page-our-work main h2 {
    color: var(--pink-700);
}

.page-our-work main h3 {
    color: var(--pink-700);
}

.page-our-work .grid-3 article {
    position: relative;
    padding-top: 10px;
}

.page-our-work .grid-3 article::before {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    border-radius: 999px;
    margin-bottom: 10px;
    background: rgba(242, 159, 5, 0.55);
}

.page-our-work .work-pathway-card.reveal-on-scroll {
    transform: translateY(22px) scale(0.98);
}

.page-our-work .work-pathway-card.reveal-on-scroll.is-visible {
    transform: translateY(0) scale(1);
}

.page-our-work .work-pathway-card .about-mini-icon {
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
    color: var(--pink-700);
    background: transparent;
    border: 0;
    margin-bottom: 12px;
    justify-content: start;
}

.page-our-work .work-pathway-card .about-mini-icon i {
    font-size: 22px;
    line-height: 1;
}

.page-our-work .section-accent {
    background:
      linear-gradient(0deg, rgba(162, 25, 91, 0.08), rgba(162, 25, 91, 0.08)),
      var(--bg);
}

/* =================================== */
/* About page                           */
/* =================================== */
.page-about .about-hero {
    position: relative;
    background:
      radial-gradient(1100px 520px at 12% 18%, rgba(242, 159, 5, 0.18), rgba(242, 159, 5, 0) 62%),
      radial-gradient(900px 520px at 88% 20%, rgba(162, 25, 91, 0.14), rgba(162, 25, 91, 0) 60%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.90)),
      url("../images/others/couple-holding-hands-green-meadow.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    box-shadow: none;
}

.page-about .about-hero .section-inner {
    padding-block: clamp(22px, 3.2vw, 52px);
}

.page-about .about-hero-body {
    margin-top: clamp(18px, 3vw, 34px);
}

.page-about .about-hero {
    padding-bottom: clamp(64px, 7vw, 92px);
}

.page-about .about-lead {
    max-width: 62ch;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.45;
    font-size: clamp(1.18rem, 1.6vw, 1.35rem);
    margin-top: 14px;
    padding-block: 6px;
}

.page-about .about-lead-line {
    display: block;
}

.page-about .about-lead-line + .about-lead-line {
    margin-top: 2px;
}

.page-about .about-lead-muted {
    color: rgba(31, 41, 55, 0.72);
    font-weight: 700;
}

.page-about .about-lead-strong {
    color: var(--pink-700);
    font-weight: 900;
    text-wrap: balance;
}

.page-about .about-lead-accent {
    color: var(--yellow-600);
    font-weight: 900;
}

.page-about .about-title {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--pink-700);
}

.page-about .about-accent {
    width: 110px;
    height: 6px;
    border-radius: 0;
    margin-top: 14px;
    background: linear-gradient(90deg, var(--pink-500), var(--yellow-500));
    box-shadow: var(--shadow-sm);
}

.page-about .about-surface {
    background:
      radial-gradient(900px 420px at 14% 20%, rgba(242, 159, 5, 0.10), rgba(242, 159, 5, 0) 60%),
      radial-gradient(900px 420px at 88% 30%, rgba(162, 25, 91, 0.08), rgba(162, 25, 91, 0) 60%),
      var(--bg);
}

.page-about .about-card {
    border-left: 4px solid rgba(162, 25, 91, 0.55);
    padding-left: 14px;
}

.page-about main h2,
.page-about main h3 {
    color: var(--pink-700);
}

.page-about .about-mini,
.page-about .about-team {
    position: relative;
    padding-top: 10px;
}

.page-about .about-mini::before,
.page-about .about-team::before {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    border-radius: 999px;
    margin-bottom: 10px;
    background: rgba(242, 159, 5, 0.55);
}

/* Make Values + Team feel less "thin" and add colour blocks */
.page-about .about-values,
.page-about .about-team-section {
    padding-top: clamp(54px, 6vw, 78px);
}

.page-about .about-values .about-mini,
.page-about .about-team-section .about-team {
    background: rgba(255, 255, 255, 0.55);
    border: 0;
    box-shadow: none;
    padding: 18px 14px 16px;
    min-height: 132px;
}

.page-about .about-values .about-mini::before,
.page-about .about-team-section .about-team::before {
    background: var(--yellow-500);
}

.page-about .about-values .about-mini h3,
.page-about .about-team-section .about-team h3 {
    margin-top: 0;
}

.page-about .about-values .about-mini.reveal-on-scroll {
    transform: perspective(900px) rotateY(-16deg) translateY(18px);
    transform-origin: left center;
    backface-visibility: hidden;
}

.page-about .about-values .about-mini.reveal-on-scroll.is-visible {
    transform: perspective(900px) rotateY(0) translateY(0);
}

.page-about .about-values .grid-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-about .about-values h2 {
    color: var(--pink-700);
}

.page-about .about-values .section-lead {
    color: rgba(31, 41, 55, 0.72);
    font-weight: 800;
}

.page-about .about-mini-icon {
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
    color: var(--pink-700);
    background: transparent;
    border: 0;
    margin-bottom: 12px;
    justify-content: start;
}

.page-about .about-mini-icon i {
    font-size: 22px;
    line-height: 1;
}

.page-about .about-team-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--pink-700);
    background: rgba(242, 159, 5, 0.14);
    border: 1px solid rgba(242, 159, 5, 0.24);
    margin-bottom: 10px;
}

.page-about .about-team-icon i {
    font-size: 18px;
    line-height: 1;
}

.page-about .about-team-link {
    display: inline-flex;
    margin-top: 10px;
    font-weight: 800;
    text-decoration: none;
    color: var(--pink-700);
}

.page-about .about-team-link:hover {
    color: var(--pink-600);
}

.page-about .about-team-link:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.page-about .about-team-lead {
    display: grid;
    gap: 4px;
}

.page-about .about-team-lead span:first-child {
    color: var(--pink-700);
    font-size: clamp(1.18rem, 1.6vw, 1.35rem);
    font-weight: 900;
    letter-spacing: -0.01em;
}

.page-about .about-team-lead span:last-child {
    color: rgba(31, 41, 55, 0.72);
    font-weight: 700;
}

.page-about .about-team-story {
    margin-top: 18px;
    max-width: 88ch;
}

.page-about .about-team-story p {
    margin: 0;
    font-size: var(--fs-lg);
    line-height: 1.7;
    color: var(--muted);
}

.page-about .about-team-story p + p {
    margin-top: 10px;
}

.page-about .about-team-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.page-about .about-team-button {
    width: fit-content;
}
.page-our-work .support-hand {
    font-family: 'Corinthia', cursive;
    font-size: clamp(1.9rem, 2.8vw, 2.7rem);
    line-height: 1;
    color: var(--pink-600);
    letter-spacing: 0;
}

/* Support mission component (reusable) */
.support-mission.section-accent {
    background:
      linear-gradient(0deg, rgba(162, 25, 91, 0.08), rgba(162, 25, 91, 0.08)),
      var(--bg);
}

.support-mission .support-hand {
    font-family: 'Corinthia', cursive;
    font-size: clamp(1.9rem, 2.8vw, 2.7rem);
    line-height: 1;
    color: var(--pink-600);
    letter-spacing: 0;
}

/* Pathway page */
.pathway-lead {
    margin-top: 20px;
    margin-bottom: 16px;
    padding-block: clamp(18px, 3vw, 34px);
    font-size: clamp(1.2rem, 1.75vw, 1.45rem);
    line-height: 1.55;
    color: rgba(31, 41, 55, 0.78);
    max-width: 72ch;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pathway-lead-line {
    display: block;
}

.pathway-lead-line + .pathway-lead-line {
    margin-top: 6px;
}

.pathway-lead-strong {
    color: var(--pink-700);
    font-weight: 900;
}

.pathway-lead-accent {
    color: var(--yellow-500);
    font-weight: 900;
}

.pathway-lead-yellow {
    color: var(--yellow-500);
    font-weight: 900;
}

.pathway-lead-muted {
    color: rgba(31, 41, 55, 0.68);
    font-weight: 400;
}

.pathway-hand {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: rgba(162, 25, 91, 0.92);
    letter-spacing: -0.01em;
    font-weight: 700;
}

.pathway-write {
    display: inline-block;
    position: relative;
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translateY(2px);
    animation: pathway-write-reveal 900ms ease forwards;
    animation-delay: var(--d, 0ms);
}

.pathway-ready .pathway-write {
    opacity: 1;
    transform: none;
}

@keyframes pathway-write-reveal {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
        transform: translateY(2px);
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pathway-write {
        animation: none;
        clip-path: none;
        opacity: 1;
        transform: none;
    }
}

.pathway-tabs {
    margin-top: clamp(18px, 3vw, 30px);
}

.pathway-tabs.reveal-on-scroll {
    transform: translateY(26px) scale(0.98);
}

.pathway-tabs.reveal-on-scroll.is-visible {
    transform: translateY(0) scale(1);
}

.get-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: clamp(30px, 4vw, 52px);
}

.get-help-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(162, 25, 91, 0.10);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 238, 0.88));
    box-shadow: 0 14px 32px rgba(31, 41, 55, 0.07);
    border-radius: 0;
    padding: clamp(32px, 3.4vw, 46px) clamp(20px, 3vw, 30px);
}

.get-help-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--pink-500), var(--yellow-500));
}

.get-help-card > * {
    position: relative;
    z-index: 1;
}

.page-get-help .get-help-card.reveal-on-scroll {
    transform: translateY(24px) scale(0.98);
}

.page-get-help .get-help-card.reveal-on-scroll.is-visible {
    transform: translateY(0) scale(1);
}

.page-get-help .get-help-form.reveal-on-scroll {
    transform: translateY(28px);
}

.page-get-help .get-help-form.reveal-on-scroll.is-visible {
    transform: translateY(0);
}

.get-help-hero .title-divider {
    border-radius: 0;
}

.get-help-title {
    margin: 0;
    font-size: var(--fs-h1);
    font-weight: 700;
    line-height: var(--lh-tight);
    letter-spacing: -0.02em;
}

.get-help-title span {
    color: var(--yellow-500);
}

.get-help-lead {
    margin-top: 18px;
    max-width: 68ch;
    font-size: clamp(1.18rem, 1.6vw, 1.35rem);
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.get-help-lead-line {
    display: block;
}

.get-help-lead-line + .get-help-lead-line {
    margin-top: 2px;
}

.get-help-lead-muted {
    color: rgba(31, 41, 55, 0.72);
    font-weight: 700;
}

.get-help-lead-strong {
    color: var(--pink-700);
    font-weight: 900;
}

.get-help-lead-accent {
    color: var(--yellow-600);
    font-weight: 900;
}

.get-help-form-inner .form-row {
    display: flex;
    gap: 20px;
}

.get-help-form-inner .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    margin-bottom: 20px;
}

.get-help-form-inner .form-group label {
    font-weight: 800;
    font-size: var(--fs-sm);
    margin: 0 0 8px 0;
    color: #fff;
}

.get-help-form-inner .form-group input,
.get-help-form-inner .form-group textarea {
    font-family: 'Inter', sans-serif;
    padding: 14px 16px;
    border: 1px solid rgba(162, 25, 91, 0.14);
    background: #fff;
    color: var(--text);
    font-size: 1em;
    width: 100%;
    border-radius: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.get-help-form-inner .form-group input::placeholder,
.get-help-form-inner .form-group textarea::placeholder {
    color: rgba(31, 41, 55, 0.58);
}

.get-help-form-inner .form-group input:focus,
.get-help-form-inner .form-group textarea:focus {
    border-color: rgba(162, 25, 91, 0.55);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(162, 25, 91, 0.14);
}

.get-help-form-inner textarea {
    resize: none;
    overflow-y: auto;
}

@media screen and (max-width: 900px) {
    .get-help-form-inner .form-row {
        flex-direction: column;
    }
}

.get-help-card h2 {
    margin: 0;
    color: var(--pink-700);
}

.get-help-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.get-help-card-muted {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 242, 246, 0.78));
}

.get-help-card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--pink-700);
    background: rgba(242, 159, 5, 0.16);
    border: 1px solid rgba(242, 159, 5, 0.28);
    margin-bottom: 14px;
    font-size: 18px;
}

.get-help-note {
    font-size: var(--fs-sm);
    color: rgba(31, 41, 55, 0.72);
}

.get-help-quick {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.get-help-form {
    margin-top: clamp(40px, 5vw, 64px);
}

.get-help-form-inner {
    margin-top: 14px;
}

.page-get-help .get-help-form {
    border: 0;
    background: var(--yellow-500);
    box-shadow: 0 16px 36px rgba(162, 25, 91, 0.12);
    padding: clamp(24px, 4vw, 42px);
    border-radius: 20px;
}

.page-get-help .get-help-form h2 {
    margin-top: 0;
    color: #fff;
}

.page-get-help .get-help-form > .section-lead {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.page-get-help .submit-button {
    background-color: var(--pink-600);
    color: #fff;
    padding: 14px 18px;
    border: none;
    cursor: pointer;
    font-size: 1.05em;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.page-get-help .submit-button img {
    width: 20px;
    height: auto;
}

.page-get-help .submit-button:hover {
    background-color: var(--pink-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.page-get-help .submit-button:disabled {
    opacity: 0.75;
    transform: none;
    cursor: not-allowed;
}

.page-get-help .success-msg,
.page-get-help .error-msg {
    display: none;
    border-radius: 0;
    border: 0;
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: 18px 20px;
    justify-content: flex-start;
    text-align: left;
}

.page-get-help .success-msg {
    color: var(--pink-700);
    background: #fff;
}

.page-get-help .error-msg {
    color: #b42318;
    background: rgba(180, 35, 24, 0.06);
}

.page-get-help .success-msg .hope-msg-line {
    display: block;
    font-size: clamp(1.02rem, 1.35vw, 1.15rem);
    line-height: 1.55;
    width: 100%;
}

.page-get-help .success-msg .hope-msg-line + .hope-msg-line {
    margin-top: 6px;
}

.page-get-help .success-msg .hope-muted {
    color: rgba(31, 41, 55, 0.72);
    font-weight: 600;
    font-size: 0.98em;
}

.page-get-help .success-msg .hope-pink {
    color: var(--pink-700);
    font-weight: 900;
}

.page-get-help .success-msg .hope-yellow {
    color: var(--yellow-600);
    font-weight: 900;
}

.get-help-emergency a {
    color: var(--pink-700);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid rgba(162, 25, 91, 0.22);
}

.get-help-emergency a:hover {
    border-bottom-color: rgba(242, 159, 5, 0.55);
}

@media screen and (max-width: 900px) {
    .get-help-grid {
        grid-template-columns: 1fr;
    }
}

.pathway-tabs-card {
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    min-height: 520px;
}

.pathway-tabs-nav {
    padding: 12px;
    border-right: 0;
    background: transparent;
    display: grid;
    gap: 10px;
    align-content: start;
}

.pathway-tab {
    width: 100%;
    text-align: left;
    border: 0;
    background: var(--yellow-500);
    padding: 12px 12px;
    border-radius: 0 12px 12px 0;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    cursor: pointer;
    min-height: 78px;
    align-items: center;
    position: relative;
    opacity: 0.9;
    transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.pathway-tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
    filter: none;
}

.pathway-tab.is-active {
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.10);
}

.pathway-tab.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--pink-700);
}

.pathway-tab.is-active::after {
    content: none;
}

.pathway-tab:focus-visible {
    outline: none;
    box-shadow: var(--focus);
    opacity: 1;
}

.pathway-tab-num {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 12px;
    color: white;
    background: var(--pink-700);
}

.pathway-tab-title {
    display: block;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--pink-700);
    text-transform: uppercase;
}

.pathway-tab-subtitle {
    display: block;
    margin-top: 4px;
    font-weight: 800;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pathway-tabs-panels {
    padding: 12px clamp(16px, 3vw, 28px) clamp(16px, 3vw, 28px);
}

.pathway-panel {
    max-width: 78ch;
}

.pathway-panel.is-active {
    animation: pathway-panel-in 420ms ease both;
}

@keyframes pathway-panel-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pathway-section + .pathway-section {
    margin-top: 18px;
}

.pathway-section-title {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 10px;
    padding: 8px 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    background: var(--pink-700);
    letter-spacing: 0.03em;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 0;
}

.pathway-section p {
    margin: 0;
    color: var(--muted);
}

.pathway-section p + p {
    margin-top: 10px;
}

@media screen and (max-width: 900px) {
    .pathway-tabs-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .pathway-tabs-nav {
        border-bottom: 0;
        grid-auto-flow: column;
        grid-auto-columns: minmax(240px, 1fr);
        overflow-x: auto;
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pathway-panel.is-active {
        animation: none;
    }
}

/* (Our message now uses section-accent to match Support the mission) */

/* (Our message no longer uses a white note card.) */

@keyframes floaty {
    0%, 100% { transform: translateY(0) scale(1.01); }
    50% { transform: translateY(-6px) scale(1.01); }
}

.floaty {
    animation: floaty 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .floaty {
        animation: none;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 14px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.news-grid-page {
    margin-top: clamp(30px, 4vw, 52px);
}

.page-news .news-hero {
    background:
      radial-gradient(900px 380px at 12% 25%, rgba(242, 159, 5, 0.14), rgba(242, 159, 5, 0) 60%),
      radial-gradient(900px 380px at 88% 20%, rgba(162, 25, 91, 0.10), rgba(162, 25, 91, 0) 60%),
      var(--surface);
}

.page-news .news-surface {
    background:
      radial-gradient(900px 380px at 12% 25%, rgba(242, 159, 5, 0.10), rgba(242, 159, 5, 0) 60%),
      radial-gradient(900px 380px at 88% 20%, rgba(162, 25, 91, 0.08), rgba(162, 25, 91, 0) 60%),
      var(--surface);
}

.page-news .news-hero h1 {
    margin: 0;
}

.page-news .news-accent {
    width: 110px;
    height: 6px;
    border-radius: 0;
    margin-top: 14px;
    background: linear-gradient(90deg, var(--pink-500), var(--yellow-500));
    box-shadow: var(--shadow-sm);
}

.page-news .news-lead {
    margin-top: 18px;
    max-width: 62ch;
    font-size: clamp(1.18rem, 1.6vw, 1.35rem);
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.page-news .news-lead-line {
    display: block;
}

.page-news .news-lead-line + .news-lead-line {
    margin-top: 2px;
}

.page-news .news-lead-muted {
    color: rgba(31, 41, 55, 0.72);
    font-weight: 700;
}

.page-news .news-lead-strong {
    color: var(--pink-700);
    font-weight: 900;
}

.page-news .news-lead-accent {
    color: var(--yellow-600);
    font-weight: 900;
}

.news-item {
    background: var(--surface);
    overflow: hidden;
    text-align: left;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 0;
    border: 1px solid rgba(31, 41, 55, 0.08);
    display: flex;
    flex-direction: column;
    color: inherit;
}

.news-item:hover {
    animation: news-card-poke 520ms ease both;
    box-shadow: var(--shadow-md);
}

@keyframes news-card-poke {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    35% {
        transform: translateY(-12px) rotate(-0.8deg);
    }
    65% {
        transform: translateY(3px) rotate(0.6deg);
    }
    100% {
        transform: translateY(-5px) rotate(0deg);
    }
}

.news-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.page-news .news-content {
    padding: 22px;
}

.news-heading {
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.news-description {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.news-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--pink-500);
    color: white;
    font-weight: 700;
    width: fit-content;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.news-item:hover .news-cta {
    transform: translateY(-1px);
    background: var(--pink-600);
}

@media screen and (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-item img {
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

/* News article pages */
.news-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 700;
    color: var(--pink-500);
    margin-bottom: 10px;
}

.news-back:hover {
    color: var(--pink-700);
}

.news-back.news-back-bottom {
    margin: 0;
    padding: 12px 18px 12px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    box-shadow: none;
    transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease, color 120ms ease;
}

.news-back-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    transition: transform 120ms ease;
}

.news-back-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-article-footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.news-back.news-back-bottom:hover {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(162, 25, 91, 0.22);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.news-back.news-back-bottom:hover .news-back-icon {
    transform: translateX(-2px);
}

.news-meta {
    margin: 10px 0 0;
    font-size: var(--fs-sm);
    color: var(--muted);
}

.news-article-lead {
    margin: 18px 0 0;
    font-size: var(--fs-lg);
    color: var(--muted);
    max-width: 72ch;
}

.pm-pathway-highlight {
    color: var(--pink-700);
}

.pm-pathway-link {
    color: var(--pink-700);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid rgba(162, 25, 91, 0.28);
}

.pm-pathway-link:hover {
    border-bottom-color: rgba(242, 159, 5, 0.55);
}

.news-article-hero {
    background:
      radial-gradient(900px 380px at 12% 25%, rgba(242, 159, 5, 0.10), rgba(242, 159, 5, 0) 60%),
      radial-gradient(900px 380px at 88% 20%, rgba(162, 25, 91, 0.08), rgba(162, 25, 91, 0) 60%),
      var(--surface);
}

.news-article-hero.section {
    padding-top: clamp(28px, 4vw, 46px);
    padding-bottom: clamp(28px, 4vw, 46px);
}

.news-article-hero.section {
    padding-bottom: clamp(18px, 2.4vw, 28px);
}

.news-article-body.section {
    padding-top: clamp(18px, 2.6vw, 28px);
}

.news-article-body .block {
    padding-top: 0;
}

.news-article-hero h1 {
    margin: 0;
}

.news-article-title {
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.news-article-title-top {
    display: block;
    color: var(--text);
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    line-height: 1.15;
    text-wrap: balance;
}

.news-article-title-accent {
    display: block;
    color: var(--yellow-500);
}

.title-divider {
    width: 110px;
    height: 6px;
    border-radius: 0;
    margin-top: 14px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--pink-500), var(--yellow-500));
    box-shadow: var(--shadow-sm);
}

.news-meta {
    margin: 6px 0 0;
}

.news-article-prose {
    margin-top: 18px;
}

.news-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
    margin-top: 18px;
}

.news-article-main {
    min-width: 0;
}

.news-article-main.reveal-on-scroll {
    transform: translateY(24px);
}

.news-article-main.reveal-on-scroll.is-visible {
    transform: translateY(0);
}

.news-article-sidebar.reveal-on-scroll {
    transform: translateX(18px);
}

.news-article-sidebar.reveal-on-scroll.is-visible {
    transform: translateX(0);
}

.news-article-sideitem.reveal-on-scroll {
    transform: translateY(14px);
}

.news-article-sideitem.reveal-on-scroll.is-visible {
    transform: translateY(0);
}

.news-article-sidebar {
    position: sticky;
    top: 92px;
}

.news-article-sidebar-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.news-article-sidebar-title {
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.news-article-sidebar-list {
    display: grid;
    gap: 12px;
}

.news-article-sideitem {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border-radius: 0;
    padding: 14px;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.news-article-sideitem:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
}

.news-article-sideitem-thumb {
    width: 108px;
    height: 78px;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    background: var(--surface);
}

.news-article-sideitem-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.news-article-sideitem-kicker {
    display: none;
}

.news-article-sideitem-title {
    display: block;
    margin-top: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.news-article-sideitem-cta {
    display: inline-flex;
    margin-top: 10px;
    font-weight: 800;
    color: var(--pink-600);
}

@media screen and (max-width: 1024px) {
    .news-article-layout {
        grid-template-columns: 1fr;
    }

    .news-article-sidebar {
        position: static;
        top: auto;
    }
}

.news-article-media {
    margin-top: 18px;
    margin-bottom: 6px;
}

.news-article-media img {
    width: 100%;
    max-width: 520px;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(31, 41, 55, 0.08);
}

.news-article-video iframe {
    width: 100%;
    max-width: 560px;
    height: auto;
    aspect-ratio: 560 / 429;
    display: block;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(31, 41, 55, 0.08);
}

.news-article-embed {
    width: min(44%, 320px);
    margin: 6px 0 10px;
    border: 0;
}

.news-article-embed.is-left {
    float: left;
    margin-right: 18px;
}

.news-article-embed.is-right {
    float: right;
    margin-left: 18px;
}

.news-article-embed img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: var(--shadow-sm);
}

@media screen and (max-width: 768px) {
    .news-article-embed,
    .news-article-embed.is-left,
    .news-article-embed.is-right {
        float: none;
        width: 100%;
        max-width: 520px;
        margin: 14px auto 14px;
    }
}

.news-article-main .prose h2 {
    margin-top: 22px;
    margin-bottom: 10px;
    color: var(--pink-700);
    letter-spacing: -0.02em;
    text-transform: none;
    font-size: clamp(20px, 2.4vw, 26px);
}

.news-article-main .prose h2::after { display: none; content: ""; }

.news-article-portrait {
    width: clamp(170px, 22vw, 280px);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    overflow: hidden;
    float: right;
    margin: 4px 0 12px 18px;
    shape-outside: circle();
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(31, 41, 55, 0.08);
    background: var(--surface);
}

.news-article-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 768px) {
    .news-article-portrait {
        float: none;
        margin: 14px auto 18px;
        shape-outside: none;
    }
}

.block {
    padding-top: 14px;
}

.prose {
    max-width: 78ch;
}

.prose p {
    margin: 0;
}

.prose p + p {
    margin-top: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: var(--fs-sm);
    gap: 10px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn svg {
    flex: 0 0 auto;
}

.btn-primary {
    background: var(--yellow-500);
    color: var(--pink-700);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: rgba(162, 25, 91, 0.08);
    color: var(--pink-700);
    border: 1px solid rgba(162, 25, 91, 0.18);
}

.btn-secondary:hover {
    background: rgba(162, 25, 91, 0.12);
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: var(--fs-sm);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--yellow-500);
    color: var(--pink-700);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: rgba(162, 25, 91, 0.08);
    color: var(--pink-700);
    border: 1px solid rgba(162, 25, 91, 0.18);
}

.btn-secondary:hover {
    background: rgba(162, 25, 91, 0.12);
    transform: translateY(-1px);
}

@media screen and (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    .page-about .about-values .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media screen and (max-width: 640px) {
    .page-about .about-values .grid-3 {
        grid-template-columns: 1fr;
    }

    .section-actions,
    .about-team-links,
    .get-help-quick {
        align-items: stretch;
        flex-direction: column;
    }

    .section-actions .btn,
    .about-team-links .btn,
    .get-help-quick .btn {
        width: 100%;
    }
}

h1, h2, h3 {
    line-height: var(--lh-tight);
    letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.01em; }

p {
    font-size: var(--fs-body);
    color: var(--muted);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    z-index: 2000;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: var(--focus);
}

/* =================================== */
/* 🔼 HEADER STYLES */
/* =================================== */

header {
    background-color: var(--surface);
    font-family: 'Inter', sans-serif;
    min-height: auto;
    padding: 3vh 3vw;
    position: sticky;
    top: 0;
    z-index: 3000;
    border-bottom: 1px solid var(--border);

}

/* 🔹 Header Container */
.header-container {
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand: hand symbol + organisation name as HTML text */
.logo .brand-link,
.footer-logo .brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
    max-width: min(280px, 28vw);
}

.logo .brand-mark,
.footer-logo .brand-mark {
    height: clamp(40px, 4.8vh, 52px);
    width: auto;
    flex-shrink: 0;
    display: block;
}

.logo .brand-name,
.footer-logo .brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(0.72rem, 1.05vw, 0.92rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--pink-500);
    text-wrap: balance;
}

.footer-logo .brand-link--footer {
    max-width: 280px;
    color: #fff;
}

.footer-logo .brand-name {
    color: #fff;
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
}

.footer-right h3 {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    line-height: 1.25;
    text-wrap: balance;
}

/* 🔹 Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: var(--pink-500);
    font-weight: 500;
    font-size: 1.05em;
    padding: 10px 10px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

nav ul li a:hover {
    background-color: rgba(242, 159, 5, 0.18);
    color: var(--pink-700);
}

/* 🔹 Donate Button */
.donate-button {
    background-color: var(--yellow-500);
    color: #fff;
    padding: 14px 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.donate-button .donate-icon {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}

.donate-button:hover {
    background-color: var(--pink-500);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* 🔹 Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    position: relative;
}

.menu-toggle div {
    width: 28px;
    height: 2px;
    background-color: var(--pink-500);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.menu-toggle .close-icon {
    display: none;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    color: var(--pink-500);
}

.menu-toggle.open .bar {
    display: none;
}

.menu-toggle.open .close-icon {
    display: block;
}

/* =================================== */
/* 📱 RESPONSIVE DESIGN */
/* =================================== */
@media screen and (max-width: 1024px) {
    /* 🔹 Header */
    header {
        background-color: var(--surface);
        padding: 20px 0;
        font-family: 'Inter', sans-serif;
        z-index: 3000;
    }

    /* 🔹 Header Container */
    .header-container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        margin: 0 auto;
        padding: 10px 40px;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        flex-grow: 0;
        display: flex;
        justify-content: center;
        z-index: 1;
        max-width: calc(100% - 160px);
        pointer-events: none;
    }

    .logo .brand-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        max-width: 100%;
        pointer-events: auto;
    }

    .logo .brand-mark {
        height: clamp(36px, 4.2vh, 44px);
    }

    .logo .brand-name {
        font-size: clamp(0.62rem, 2.1vw, 0.78rem);
        line-height: 1.15;
        text-align: left;
        max-width: 11.5rem;
    }

    /* 🔹 Navigation */
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        text-align: center;
        padding: 20px 0;
        box-shadow: none;
        z-index: 2600;
        border-bottom: 1px solid rgba(31, 41, 55, 0.08);
    }

    /* 🔹 Quando o menu estiver ativo */
    nav.active {
        display: block !important;
    }

    nav ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
        margin: 0;
    }

    nav ul li a {
        text-decoration: none;
        color: var(--pink-500);
        font-size: 1.05rem;
        font-weight: 500;
        letter-spacing: 0.01em;
        padding: 10px 0;
        display: block;

    }

    /* 🔹 Menu Toggle (Hamburger) */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        background: none;
        border: none;
        padding: 10px;
        position: absolute;
        top: 20px;
        left: 30px;
        z-index: 3000;
    }

    /* 🔹 Barras do Menu */
    .menu-toggle .bar {
        width: 28px;
        height: 2px;
        background-color: var(--pink-500);
        border-radius: 999px;
        transition: all 0.3s ease;
    }

    /* 🔹 Ícone de fechar */
    .menu-toggle .close-icon {
        display: none;
        font-size: 26px;
        font-weight: 300;
        color: var(--pink-500);
        transition: all 0.3s ease;
    }

    /* 🔹 Ajuste do botão "Donate" */
    .donate-button {
        background-color: var(--yellow-500);
        color: #fff;
        padding: 12px 16px;
        text-decoration: none;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.05em;
        margin-left: auto;
        position: relative;
        z-index: 2;
    }

    .donate-button .donate-icon {
        font-size: 1rem;
    }

    .donate-button:hover {
        background-color: var(--pink-600);
    }
}

@media screen and (max-width: 640px) {
    header {
        padding: 10px 0;
    }

    .header-container {
        padding: 8px 24px;
        min-height: 58px;
    }

    .menu-toggle {
        left: 14px;
        top: 12px;
        padding: 8px 10px;
    }

    .logo {
        max-width: calc(100% - 140px);
    }

    .logo .brand-mark {
        height: 34px;
    }

    .logo .brand-name {
        font-size: 0.58rem;
        max-width: 9.5rem;
        line-height: 1.12;
    }

    .donate-button {
        padding: 10px 0;
        gap: 6px;
        font-size: 0.9rem;
        color: var(--yellow-500);
        background-color: transparent;
        box-shadow: none;
    }

    .donate-button .donate-icon {
        font-size: 1.05rem;
    }

    .donate-button:hover {
        color: var(--pink-500);
        background-color: transparent;
    }
}

/* =================================== */
/* 🔽 FOOTER STYLES */
/* =================================== */

footer {
    background-color: #A2195B;
    color: #fff;
    text-align: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 40px;
}

.footer-inner {
    width: 100%;
}

footer .footer-inner.section-inner {
    padding: 0;
}

.footer-mission {
    margin: 5px 0 12px;
    max-width: 48ch;
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--fs-sm);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;

    justify-content: space-between;
    padding-top: 22px;
    align-items: end;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;
}

/* 🔹 Footer Logo */
.footer-logo {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-bottom: 8px;
}

.footer-logo .brand-mark {
    height: 48px;
    max-width: none;
}


/* 🔽 FOOTER COLUMNS */
.footer-left,
.footer-middle,
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    height: auto;
}

/* 🔹 Footer Left Column */
/* Registered Office */
.footer-register {
    text-align: left;
    padding-top: 8px;
}

/* Contact Information */
.footer-contact {
    text-align: left;
    padding-top: 6px;
    margin-top: 5px;
}

.footer-contact p {
    margin: 0;
}

.footer-contact .footer-email {
    margin-top: 5px;
}

/* 🔹 Footer Middle Column */
.footer-middle {
    gap: 10px;
    margin-top: 0;
}

.footer-section-title {
    margin: 0;
    font-size: var(--fs-sm);
    font-weight: 800;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.96);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 2px 0 0;
    display: grid;
    gap: 4px;
}

.footer-links a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 2px;
    align-items: center;
}

.footer-social p strong {
    margin-bottom: 10px;
}

.footer-social img {
    width: 35px;
    height: 35px;
}

/* Charity Information */
.footer-charity {
    text-align: left;
    margin-top: 6px;
}

.footer-charity .charity-logo {
    max-width: 140px;
    height: auto;
}

.footer-charity p {
    margin: 4px 0 0;
}

.footer-charity p a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* 🔹 Footer Right Column */
.footer-right iframe {
    width: 100%;
    flex: 0 0 auto;
    height: 300px;
    max-width: 100%;
    display: block;
    justify-content: stretch;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-right p {
    margin: 8px 0 0;
}

/* 🔽 FOOTER TEXT & LINKS */

.footer-left p,
.footer-middle p,
.footer-right p {
    font-size: var(--fs-sm);
    line-height: 1.45;
    text-align: left;
    color: rgba(255, 255, 255, 0.92);
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.footer-email-icon {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.92);
    opacity: 0.95;
}

/* Footer Links */
footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fs-sm);
}

footer a:hover {
    text-decoration: none;
    color: #f29f05;
}

/* Footer Images */
.footer-middle a img {
    max-width: 30px;
    height: auto;
    display: block;
    margin: 0;
}

.footer-middle a img.charity-logo {
    max-width: 160px;
    margin: 0;
}

/* 🔽 FOOTER COPYRIGHT */
.footer-bottom {
    width: 100%;
    text-align: right;
    padding-top: 14px;
}

.footer-bottom-inner {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 10px;
}

/* Margens explícitas entre blocos; line-height só controla o ritmo dentro de cada linha de texto. */
.footer-bottom-inner p {
    margin: 0;
}

.footer-meta,
.footer-credit {
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.95);
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
}

/* Linha © — mais pequena que o texto pequeno geral (--fs-sm). */
.footer-bottom-inner > p:not(.footer-credit) {
    font-size: 0.8125rem;
}

.footer-bottom .footer-credit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    /* Espaço entre o copyright e esta linha (margin, não line-height). */
    margin-top: 0.45rem;
}

.footer-bottom .footer-credit a {
    font-size: inherit;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #f29f05;
    text-decoration: none;
}

.footer-bottom br {
    display: none;
}

/* =================================== */
/* 📱 RESPONSIVE DESIGN - Footer     */
/* =================================== */
@media screen and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center !important;
        margin-bottom: 10px;
    }

    .footer-social {
        margin-top: 10px;
    }

    .footer-charity {
        margin-top: 0;
    }

    .footer-left p,
    .footer-middle p,
    .footer-right p,
    .footer-left strong,
    .footer-middle strong,
    .footer-right strong {
        text-align: center;
    }

    .footer-middle a img,
    .footer-middle a img.charity-logo {
        margin: 10px auto;
    }

    .footer-right iframe {
        height: 300px;
        width: 100%;
        max-width: 640px;
    }

    .footer-container .footer-logo {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-logo .brand-link--footer {
        justify-content: center;
        max-width: 260px;
        text-align: left;
    }

    .footer-bottom {
        text-align: center;
    }

}

@media screen and (max-width: 640px) {
    .footer-right iframe {
        height: 300px;
        max-width: 100%;
    }
}