:root {
    --navy: #171c45;
    --navy-dark: #0f1434;
    --purple: #6842b8;
    --lavender: #9a78dc;
    --soft-lavender: #eee8fa;
    --gold: #c99a35;
    --white: #ffffff;
    --off-white: #faf9fd;
    --text: #24233a;
    --muted: #67657a;
    --border: #e6e1f2;
    --shadow: 0 18px 45px rgba(23, 28, 69, 0.12);
    --radius: 24px;
    --container: 1380px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--off-white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.brand strong {
    font-family: Georgia, "Times New Roman", serif;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}
/* ==================================================
   HEADER AND NAVIGATION
================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 5000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(23, 28, 69, 0.08);
    box-shadow: 0 2px 12px rgba(23, 28, 69, 0.06);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    overflow: visible;
}

.header-inner {
    position: relative;

    min-height: 108px;

    display: flex;
    align-items: center;

    gap: 28px;

    overflow: visible;
}

/* Brand */

.brand {
    flex: 0 0 auto;

    display: inline-flex;
    flex-direction: column;

    min-width: 300px;
}

.brand strong {
    color: var(--navy);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.1;

    letter-spacing: 0.055em;
}

.brand span {
    margin-top: 8px;

    color: var(--purple);

    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Main navigation */

.nav {
    position: relative;
    z-index: 5100;

    display: flex;
    align-items: center;

    gap: 24px;

    margin-left: auto;

    overflow: visible;
}

.nav > a,
.dropdown-toggle {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 17px;

    border: 0;
    border-radius: 999px;

    color: var(--navy);
    background: transparent;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;

    cursor: pointer;

    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.nav > a:hover,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
    color: var(--purple);
    background: rgba(105, 66, 146, 0.08);
}

.nav > a.active,
.dropdown-toggle.active {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        var(--purple),
        #9266bd
    );

    box-shadow: 0 8px 20px rgba(105, 66, 146, 0.24);
}

.nav > a.active:hover,
.dropdown-toggle.active:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Completely remove the old underline */

.nav a::after,
.nav a:hover::after,
.nav a.active::after,
.dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

/* Dropdown */

.dropdown {
    position: relative;

    display: flex;
    align-items: center;

    padding-bottom: 10px;
    margin-bottom: -10px;

    overflow: visible;
}

.dropdown-toggle {
    gap: 8px;
}

.dropdown-arrow {
    flex: 0 0 auto;

    transition: transform 0.22s ease;
}

.dropdown-menu {
    position: absolute;
    z-index: 5200;

    top: 100%;
    left: 50%;

    width: 275px;
    padding: 10px;

    border: 1px solid rgba(23, 28, 69, 0.09);
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 22px 55px rgba(23, 28, 69, 0.16);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(10px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}

.dropdown-menu a {
    display: flex;
    align-items: center;

    min-height: 45px;

    padding: 10px 15px;
    border-radius: 11px;

    color: var(--navy);
    background: transparent;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    color: var(--purple);
    background: rgba(105, 66, 146, 0.08);

    transform: translateX(2px);
}

/* Desktop dropdown */

@media (min-width: 901px) {

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu,
    .dropdown.is-open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform:
            translateX(-50%)
            translateY(0);
    }

    .dropdown:hover .dropdown-arrow,
    .dropdown:focus-within .dropdown-arrow,
    .dropdown.is-open .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Header CTA */

.header-cta {
    flex: 0 0 auto;

    min-height: 62px;
    min-width: 268px;

    margin-left: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 27px;

    border: 0;
    border-radius: 10px;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--purple),
        #9266d3
    );

    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;

    box-shadow: 0 10px 24px rgba(105, 66, 146, 0.2);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(105, 66, 146, 0.28);
}

/* Hamburger button */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    margin-left: auto;
    padding: 11px;

    border: 0;
    border-radius: 12px;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    border-radius: 999px;

    background: var(--navy);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==================================================
   SMALLER DESKTOP
================================================== */

@media (max-width: 1180px) {

    .header-inner {
        gap: 20px;
    }

    .brand {
        min-width: 245px;
    }

    .brand strong {
        font-size: 1.55rem;
    }

    .brand span {
        font-size: 0.62rem;
    }

    .nav {
        gap: 10px;
    }

    .nav > a,
    .dropdown-toggle {
        padding-inline: 12px;
        font-size: 0.78rem;
    }

    .header-cta {
        min-width: 205px;
        margin-left: 10px;
        padding-inline: 18px;
        font-size: 0.85rem;
    }
}

/* ==================================================
   TABLET AND MOBILE
================================================== */

@media (max-width: 900px) {

    .header-inner {
        min-height: 76px;
    }

    .brand {
        min-width: 0;
    }

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

    .brand span {
        margin-top: 5px;
        font-size: 0.54rem;
        letter-spacing: 0.22em;
    }

    .menu-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .nav {
        position: absolute;
        z-index: 5200;

        top: calc(100% + 8px);
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 4px;

        margin-left: 0;
        padding: 12px;

        border: 1px solid rgba(23, 28, 69, 0.09);
        border-radius: 18px;

        background: #ffffff;

        box-shadow:
            0 22px 50px rgba(23, 28, 69, 0.16);
    }

    .nav.is-open {
        display: flex;
    }

    .nav > a,
    .dropdown-toggle {
        width: 100%;
        min-height: 48px;

        justify-content: space-between;

        padding: 0 15px;
        border-radius: 12px;

        text-align: left;
    }

    .dropdown {
        width: 100%;

        display: block;

        padding-bottom: 0;
        margin-bottom: 0;
    }

    .dropdown-menu {
        position: static;

        width: 100%;
        max-height: 0;

        padding: 0;
        border: 0;
        border-radius: 12px;

        background: rgba(105, 66, 146, 0.05);
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: none;

        overflow: hidden;

        transform: none;

        transition:
            max-height 0.28s ease,
            margin 0.28s ease,
            padding 0.28s ease;
    }

    .dropdown.is-open .dropdown-menu {
        max-height: 420px;

        margin-top: 5px;
        padding: 7px;

        pointer-events: auto;
    }

    .dropdown.is-open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        min-height: 43px;
        padding: 10px 13px;
    }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 600px) {

    .site-header .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .brand strong {
        font-size: 1.12rem;
    }

    .brand span {
        max-width: 210px;
        font-size: 0.47rem;
        letter-spacing: 0.17em;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        padding: 9px;
    }

    .nav {
        left: 0;
        right: 0;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(23, 28, 69, 0.14);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--purple), var(--lavender));
}

.btn-secondary {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--purple);
}

.btn-gold {
    color: var(--white);
    background: var(--gold);
}

.header-cta {
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 38%, rgba(23, 28, 69, 0.14) 70%, rgba(23, 28, 69, 0.25) 100%),
        url("../images/hero-niagara.png");
    background-position: center;
    background-size: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(to top, rgba(15, 20, 52, 0.72), transparent);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 40px;
    padding-block: 90px 70px;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--purple);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 24px;
    color: var(--navy);
    font-size: clamp(3.3rem, 6vw, 6.9rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.hero h1 em {
    color: var(--purple);
    font-style: normal;
}

.hero-copy > p {
    max-width: 620px;
    color: #303049;
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.hero-identity {
    align-self: end;
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    padding-bottom: 20px;
}

.identity-card {
    min-width: 210px;
    padding: 18px 20px;
    color: var(--white);
    background: rgba(15, 20, 52, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.identity-card strong,
.identity-card span {
    display: block;
}

.identity-card strong {
    margin-bottom: 4px;
    font-size: 1rem;
}

.identity-card span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.84rem;
}

.section {
    padding-block: 90px;
}

.section-no-top-padding {
    padding-top: 0;
}

.section-title {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-title h2 {
    color: var(--navy);
    font-size: clamp(2.4rem, 4.4vw, 4.4rem);
    line-height: 1.06;
}

.section-title p {
    color: var(--muted);
    font-size: 1.04rem;
}

.about-heading {
    margin-bottom: 30px;
}

.about-heading h2 {
    font-size: 2rem;
}

.text-purple {
    color: var(--purple);
}

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

.card {
    min-width: 0;
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card h3 {
    color: var(--navy);
    font-size: 1.75rem;
}

.journey-card {
    text-align: center;
}

.round-image {
    width: 190px;
    height: 190px;
    margin: 0 auto 24px;
    object-fit: cover;
    border: 8px solid var(--soft-lavender);
    border-radius: 50%;
}

.role {
    margin-top: -14px;
    margin-bottom: 18px;
    color: var(--purple);
    font-weight: 800;
}

.book-card {
    display: grid;
    grid-template-columns: minmax(160px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 24px;
}

.book-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
}

.feature-list {
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding: 8px 0 8px 28px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: 900;
}

.mission-card {
    text-align: center;
}

.goal {
    margin-block: 16px;
    color: var(--purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    font-weight: 700;
}

.progress-ring {
    width: 170px;
    height: 170px;
    margin: 24px auto 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--gold) 0 24%, var(--purple) 24% 30%, var(--soft-lavender) 30% 100%);
}

.progress-ring::before {
    content: "24%";
    width: 125px;
    height: 125px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--white);
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    font-weight: 700;
}

.about-strip {
    padding: 48px;
    background: linear-gradient(135deg, #f7f3ff, #eee7fa);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.icon-grid > div {
    text-align: center;
}

.icon {
    margin-bottom: 12px;
    color: var(--purple);
    font-size: 2.3rem;
}

.icon-grid strong,
.icon-grid small {
    display: block;
}

.icon-grid small {
    margin-top: 6px;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.media-panel {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.media-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 20, 52, 0.95), rgba(15, 20, 52, 0.15) 72%);
}

.journey-niagara-panel {
    background-image: url("../images/niagara-section.jpg");
}

.journey-wall-panel {
    background-image: url("../images/journey-wall-map.jpg");
}

.panel-copy {
    position: relative;
    z-index: 1;
    max-width: 500px;
    padding: 38px;
    color: var(--white);
}

.panel-copy h3 {
    font-size: 2.25rem;
}

.panel-copy .eyebrow {
    color: #d7c7ff;
}

.stats {
    padding-block: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.stats-grid > div {
    text-align: center;
}

.stats-grid strong,
.stats-grid span {
    display: block;
}

.stats-grid strong {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.stats-grid span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.page-hero {
    padding-block: 110px 80px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--purple));
}

.page-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(3rem, 6vw, 6rem);
}

.page-content {
    padding-block: 80px;
}

.content-card {
    max-width: 950px;
    margin-inline: auto;
    padding: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-card h2 {
    color: var(--navy);
    font-size: 2.4rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 15px;
    color: var(--text);
    background: var(--white);
    border: 1px solid #cbc5dc;
    border-radius: 8px;
    font: inherit;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.footer {
    padding-block: 64px 28px;
    color: rgba(255, 255, 255, 0.82);
    background: #0d1230;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 44px;
}

.footer h4 {
    color: var(--white);
    text-transform: uppercase;
}

.footer a {
    display: block;
    margin: 8px 0;
}

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

.footer-brand-title {
    color: var(--white) !important;
}

.footer-note {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
}

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

    .nav {
        gap: 16px;
    }

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

    .hero-identity {
        justify-content: flex-start;
    }

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

    .mission-card {
        grid-column: 1 / -1;
    }

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

@media (max-width: 900px) {
    .header-inner {
        min-height: 74px;
    }

   
    .hero {
        min-height: auto;
        background-position: 58% center;
    }

    .hero-grid {
        min-height: 700px;
        padding-block: 90px 50px;
    }

    .hero-copy {
        padding: 28px;
        background: rgba(255, 255, 255, 0.86);
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }

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

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

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

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand {
        min-width: 0;
    }

    .brand strong {
        font-size: 1.15rem;
    }

    .brand span {
        font-size: 0.52rem;
    }

    .hero h1 {
        font-size: 3.15rem;
    }

    .hero-identity {
        flex-direction: column;
    }

    .identity-card {
        min-width: 0;
    }

    .card,
    .about-strip,
    .content-card {
        padding: 26px;
    }

    .icon-grid,
    .stats-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding-block: 64px;
    }
}

/* ==================================================
   MISSION PAGE
================================================== */


/* Mission hero */

.mission-page-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 90px;
    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(184, 154, 220, 0.24),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f8f4fc 0%,
            #ffffff 48%,
            #eee4f7 100%
        );
}

.mission-page-hero::before {
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    content: "";
    border-radius: 50%;
    background: rgba(104, 64, 145, 0.08);
}

.page-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.page-hero-copy h1 {
    max-width: 760px;
    margin: 18px 0 24px;
    color: var(--navy);
    font-size: clamp(2.8rem, 5.5vw, 5.3rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.page-hero-copy h1 em {
    display: block;
    color: var(--purple);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero-intro {
    max-width: 650px;
    color: #55586a;
    font-size: 1.16rem;
    line-height: 1.8;
}

.page-hero-visual {
    position: relative;
    min-height: 540px;
}

.page-hero-visual img {
    width: 100%;
    height: 540px;
    border-radius: 32px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 28px 65px rgba(31, 29, 61, 0.2);
}

.hero-visual-caption {
    position: absolute;
    right: -20px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    width: min(360px, 90%);
    padding: 22px 26px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    color: white;
    background: rgba(37, 26, 64, 0.82);
    box-shadow: 0 18px 40px rgba(31, 29, 61, 0.24);
    backdrop-filter: blur(15px);
}

.hero-visual-caption strong {
    margin-bottom: 5px;
    font-size: 1.15rem;
}

.hero-visual-caption span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}


/* Quote */

.quote-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.mission-quote {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 15px 70px;
    text-align: center;
}

.quote-mark {
    display: block;
    height: 55px;
    color: var(--purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 6rem;
    line-height: 1;
    opacity: 0.25;
}

.mission-quote p {
    margin: 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    line-height: 1.28;
}

.mission-quote footer {
    margin-top: 25px;
    color: var(--purple);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* Purpose */

.mission-purpose-section {
    background: #faf8fc;
}

.mission-purpose-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 80px;
    align-items: center;
}

.mission-purpose-image {
    position: relative;
}

.mission-purpose-image img {
    width: 100%;
    min-height: 650px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(31, 29, 61, 0.16);
}

.image-message {
    position: absolute;
    right: -30px;
    bottom: 35px;
    width: min(390px, 92%);
    padding: 24px 28px;
    border-radius: 18px;
    color: white;
    background: linear-gradient(
        135deg,
        rgba(64, 38, 94, 0.94),
        rgba(115, 73, 159, 0.9)
    );
    box-shadow: 0 18px 45px rgba(31, 29, 61, 0.24);
}

.image-message span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.image-message strong {
    font-size: 1.25rem;
    line-height: 1.4;
}

.mission-purpose-copy h2,
.financial-copy h2,
.partner-intro h2 {
    margin: 15px 0 24px;
    color: var(--navy);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.mission-purpose-copy > p,
.financial-copy > p,
.partner-intro p {
    color: #5e6070;
    font-size: 1.05rem;
    line-height: 1.85;
}

.mission-statement {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.mission-statement > div {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 17px;
    align-items: center;
    padding: 17px 20px;
    border: 1px solid rgba(105, 66, 146, 0.12);
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 25px rgba(31, 29, 61, 0.05);
}

.mission-statement span {
    color: var(--purple);
    font-weight: 800;
}

.mission-statement p {
    margin: 0;
    color: #606273;
}

.mission-statement strong {
    color: var(--navy);
}


/* Mission pillars */

.mission-pillars-section {
    background: white;
}

.mission-pillars {
    align-items: stretch;
}

.mission-pillar-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 38px;
}

.mission-pillar-card::after {
    position: absolute;
    right: -65px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    content: "";
    border-radius: 50%;
    background: rgba(108, 67, 149, 0.06);
}

.pillar-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: rgba(104, 64, 145, 0.14);
    font-size: 3.7rem;
    font-weight: 800;
}

.pillar-icon {
    display: grid;
    width: 66px;
    height: 66px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 20px;
    color: white;
    background: linear-gradient(
        135deg,
        var(--purple),
        #a77dcc
    );
    font-size: 1.75rem;
    box-shadow: 0 12px 25px rgba(105, 66, 146, 0.2);
}

.mission-pillar-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    color: var(--navy);
    font-size: 1.55rem;
}

.mission-pillar-card p {
    position: relative;
    z-index: 2;
    color: #666878;
    line-height: 1.75;
}

.text-link {
    position: absolute;
    z-index: 3;
    bottom: 35px;
    left: 38px;
    color: var(--purple);
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}


/* Financial freedom */

.financial-freedom-section {
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(181, 146, 215, 0.18),
            transparent 30%
        ),
        #f7f3fa;
}

.financial-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 75px;
    align-items: center;
}

.principle-list {
    display: grid;
    gap: 12px;
    margin: 32px 0;
}

.principle-list > div {
    display: grid;
    grid-template-columns: 45px 170px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(105, 66, 146, 0.14);
}

.principle-list span {
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 800;
}

.principle-list strong {
    color: var(--navy);
}

.principle-list small {
    color: #777988;
    line-height: 1.5;
}

.book-visual-card {
    overflow: hidden;
    border-radius: 30px;
    background: white;
    box-shadow: 0 28px 65px rgba(31, 29, 61, 0.16);
}

.book-visual-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.book-visual-content {
    padding: 32px;
}

.book-visual-content h3 {
    margin: 12px 0;
    color: var(--navy);
    font-size: 1.7rem;
    line-height: 1.25;
}

.book-visual-content p {
    color: #696b7a;
    line-height: 1.7;
}


/* Community support */

.community-support-section {
    background: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.support-card {
    padding: 34px 26px;
    border: 1px solid rgba(105, 66, 146, 0.12);
    border-radius: 22px;
    background: #fbf9fd;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(31, 29, 61, 0.1);
}

.support-icon {
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--purple);
    background: rgba(105, 66, 146, 0.1);
    font-size: 1.4rem;
}

.support-card h3 {
    color: var(--navy);
    font-size: 1.15rem;
}

.support-card p {
    color: #696b78;
    font-size: 0.95rem;
    line-height: 1.7;
}


/* Niagara banner */

.niagara-mission-banner {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        url("../images/niagara-section.jpg")
        center / cover
        no-repeat;
}

.niagara-mission-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(28, 21, 49, 0.94) 0%,
            rgba(44, 27, 68, 0.86) 42%,
            rgba(46, 29, 69, 0.35) 100%
        );
}

.niagara-mission-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-left: max(
        0px,
        calc((100vw - 1200px) / 2)
    );
    padding: 95px 25px;
    color: white;
}

.niagara-mission-content h2 {
    margin: 18px 0 25px;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.niagara-mission-content h2 em {
    display: block;
    color: #d9b8f0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.niagara-mission-content p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 1.08rem;
    line-height: 1.8;
}


/* Partner section */

.partner-intro-section {
    background: #f9f6fb;
}

.partner-intro {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}


/* Final CTA */

.mission-cta {
    padding: 100px 25px;
    color: white;
    text-align: center;
    background:
        radial-gradient(
            circle at top right,
            rgba(214, 180, 235, 0.28),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #261a3f,
            #684091
        );
}

.mission-cta-content {
    max-width: 920px;
    margin: 0 auto;
}

.mission-cta h2 {
    margin: 18px 0 20px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.mission-cta p {
    max-width: 700px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.12rem;
    line-height: 1.7;
}

.mission-cta .hero-actions {
    justify-content: center;
}

.btn-light-outline {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: white;
    background: transparent;
}

.btn-light-outline:hover {
    border-color: white;
    color: var(--navy);
    background: white;
}


/* Responsive mission page */

@media (max-width: 1000px) {

    .page-hero-grid,
    .mission-purpose-grid,
    .financial-grid,
    .partner-intro {
        grid-template-columns: 1fr;
    }

    .page-hero-visual {
        min-height: auto;
    }

    .page-hero-visual img {
        height: 520px;
    }

    .mission-purpose-image img {
        min-height: 520px;
    }

    .image-message,
    .hero-visual-caption {
        right: 20px;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-intro {
        gap: 25px;
    }
}


@media (max-width: 700px) {

    .mission-page-hero {
        padding: 70px 0 60px;
    }

    .page-hero-grid,
    .mission-purpose-grid,
    .financial-grid {
        gap: 45px;
    }

    .page-hero-visual img,
    .mission-purpose-image img {
        height: 420px;
        min-height: 420px;
        border-radius: 22px;
    }

    .mission-quote {
        padding: 10px 5px;
    }

    .mission-quote p {
        font-size: 1.85rem;
    }

    .mission-purpose-section {
        overflow: hidden;
    }

    .image-message {
        right: 15px;
        bottom: 18px;
    }

    .mission-pillar-card {
        min-height: auto;
        padding: 30px;
    }

    .text-link {
        position: relative;
        bottom: auto;
        left: auto;
        display: inline-block;
        margin-top: 20px;
    }

    .principle-list > div {
        grid-template-columns: 36px 1fr;
    }

    .principle-list small {
        grid-column: 2;
    }

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

    .niagara-mission-banner {
        min-height: 620px;
        background-position: 68% center;
    }

    .niagara-mission-overlay {
        background: rgba(32, 22, 52, 0.82);
    }

    .niagara-mission-content {
        margin-left: 0;
        padding: 80px 22px;
    }

    .mission-cta {
        padding: 78px 20px;
    }
}

nav a.active {
    color: #c9a227;           /* Gold */
    font-weight: bold;
    border-bottom: 3px solid #c9a227;
    padding-bottom: 5px;
}