:root {
    --loyal-blue: #004165;
    --blissful-blue: #006094;
    --true-maroon: #772432;
    --rich-maroon: #781327;
    --deep-maroon: #3B0104;
    --cool-gray: #A9B2B1;
    --fair-gray: #F5F5F5;
    --happy-yellow: #F2DF74;
    --paper: #fbf9f4;
    --ink: #1a1a1a;
    --muted: #555;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--loyal-blue);
}

a:hover {
    color: var(--blissful-blue);
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============ HEADER / NAV ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 249, 244, 0.92);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid rgba(0, 65, 101, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.brand__logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__name {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--loyal-blue);
    letter-spacing: -0.005em;
}

.brand__sub {
    margin-top: 4px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 10px;
    color: var(--true-maroon);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.nav__links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
}

.nav__links a {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: var(--ink);
    letter-spacing: 0.04em;
}

.nav__links a:hover {
    color: var(--true-maroon);
}

.nav__cta {
    background: var(--true-maroon);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 13px !important;
}

.nav__cta:hover {
    background: var(--rich-maroon);
}

/* Mobile nav */
.nav__toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--loyal-blue);
    margin: 5px 0;
    transition: transform .25s, opacity .25s;
}

@media (max-width: 820px) {
    .nav__toggle {
        display: block;
    }

    .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        flex-direction: column;
        padding: 16px 32px 24px;
        gap: 14px;
        align-items: flex-start;
        border-bottom: 1px solid rgba(0, 65, 101, 0.1);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
        display: none;
    }

    .nav__links.open {
        display: flex;
    }

    .nav__cta {
        align-self: stretch;
        text-align: center;
    }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--loyal-blue);
    color: #fff;
    display: flex;
    align-items: center;
}

.hero__photo {
    position: absolute;
    inset: 0;
    background: url("market-square.jpg") center 38% / cover no-repeat;
    filter: saturate(1.05) contrast(1.05);
}

.hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
    rgba(0, 65, 101, 0.92) 0%,
    rgba(0, 65, 101, 0.78) 38%,
    rgba(59, 1, 4, 0.55) 70%,
    rgba(59, 1, 4, 0.35) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding: 88px 0 96px;
    width: 100%;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--happy-yellow);
    margin-bottom: 22px;
}

.hero__eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--happy-yellow);
}

.hero__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 8vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    max-width: 14ch;
    text-wrap: balance;
}

.hero__sub {
    margin-top: 22px;
    max-width: 640px;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    text-wrap: pretty;
    font-weight: 600;
}

.hero__ctas {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: var(--happy-yellow);
    color: var(--deep-maroon);
}

.btn--primary:hover {
    background: #ffe98a;
    color: var(--deep-maroon);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.btn--maroon {
    background: var(--true-maroon);
    color: #fff;
}

.btn--maroon:hover {
    background: var(--rich-maroon);
    color: #fff;
}

.btn--blue {
    background: var(--loyal-blue);
    color: #fff;
}

.btn--blue:hover {
    background: var(--blissful-blue);
    color: #fff;
}

/* Meeting strip below hero */
.meeting-strip {
    background: var(--true-maroon);
    color: #fff;
    padding: 18px 0;
    text-align: center;
}

.meeting-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px 36px;
    flex-wrap: wrap;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.meeting-strip strong {
    color: var(--happy-yellow);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.meeting-strip__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

/* ============ SECTION COMMON ============ */
section {
    scroll-margin-top: 84px;
}

.section {
    padding: 88px 0;
}

.section--alt {
    background: #fff;
}

.section--blue {
    background: var(--loyal-blue);
    color: #fff;
}

.section__eyebrow {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--true-maroon);
    margin-bottom: 16px;
}

.section--blue .section__eyebrow {
    color: var(--happy-yellow);
}

.section__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--loyal-blue);
    max-width: 22ch;
    text-wrap: balance;
}

.section--blue .section__title {
    color: #fff;
}

.section__lead {
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 64ch;
    text-wrap: pretty;
}

.section--blue .section__lead {
    color: rgba(255, 255, 255, 0.85);
}

/* ============ ABOUT ============ */
.about {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 36px;
}

.about__body p + p {
    margin-top: 14px;
}

.about__body p {
    font-size: 18px;
    line-height: 1.65;
}

.about__quote {
    background: var(--fair-gray);
    border-left: 4px solid var(--true-maroon);
    padding: 30px 32px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: var(--loyal-blue);
    border-radius: 4px;
}

.about__quote small {
    display: block;
    margin-top: 14px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--true-maroon);
    font-weight: 700;
}

@media (max-width: 820px) {
    .about {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ============ BENEFITS GRID ============ */
.benefits {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit {
    background: var(--paper);
    border: 1px solid rgba(0, 65, 101, 0.1);
    padding: 32px 28px;
    border-radius: 6px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.section--alt .benefit {
    background: var(--fair-gray);
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 65, 101, 0.10);
    border-color: rgba(0, 65, 101, 0.18);
}

.benefit__num {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--true-maroon);
    margin-bottom: 16px;
}

.benefit__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.15;
    color: var(--loyal-blue);
    margin-bottom: 10px;
}

.benefit__body {
    font-size: 16px;
    line-height: 1.55;
    color: #2a2a2a;
}

@media (max-width: 980px) {
    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits {
        grid-template-columns: 1fr;
    }
}

/* ============ PATHWAYS ============ */
.pathways {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.pathways__image {
    background: #fff;
    border-radius: 8px;
    padding: 14px;
    box-shadow: 0 18px 40px rgba(0, 65, 101, 0.10);
}

.pathways__image img {
    border-radius: 4px;
}

.pathways__caption {
    margin-top: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--true-maroon);
    text-align: center;
}

.pathways__list {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 22px;
    list-style: none;
}

.pathways__list li {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--loyal-blue);
    padding-left: 18px;
    position: relative;
}

.pathways__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--happy-yellow);
    border-radius: 2px;
}

@media (max-width: 820px) {
    .pathways {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ============ STATS ============ */
.stats {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat {
    padding: 24px 0 24px 22px;
    border-left: 2px solid rgba(242, 223, 116, 0.55);
}

.stat__num {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--happy-yellow);
}

.stat__num .plus {
    font-size: 36px;
    vertical-align: 18px;
    margin-left: 2px;
}

.stat__label {
    margin-top: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 820px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ VISIT ============ */
.visit {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit__panel {
    background: var(--loyal-blue);
    color: #fff;
    padding: 40px 36px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.visit__when {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visit__when-label {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--happy-yellow);
}

.visit__when-time {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.visit__when-time small {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0;
}

.visit__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.visit__contact a {
    color: #fff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 14px;
}

.visit__contact a:hover {
    color: var(--happy-yellow);
}

.visit__contact a:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.visit__contact .lbl {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--happy-yellow);
    min-width: 62px;
}

.visit__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visit__buttons .btn {
    justify-content: center;
    padding: 16px 22px;
    font-size: 16px;
}

.visit__qr {
    background: #fff;
    padding: 28px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 65, 101, 0.12);
    position: relative;
    overflow: hidden;
}

.visit__qr::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--happy-yellow);
}

.visit__qr-title {
    margin-top: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--loyal-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.visit__qr img {
    width: 230px;
    height: 230px;
    margin: 18px 0;
    image-rendering: pixelated;
}

.visit__qr-url {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--true-maroon);
}

.visit__qr-hint {
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
}

@media (max-width: 980px) {
    .visit {
        grid-template-columns: 1fr;
    }
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background: linear-gradient(120deg, rgba(59, 1, 4, 0.85), rgba(119, 36, 50, 0.85)),
    url("market-square.jpg") center 42% / cover no-repeat;
    color: #fff;
    padding: 88px 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 5vw, 52px);
    letter-spacing: -0.015em;
    line-height: 1.05;
    text-transform: uppercase;
    max-width: 18ch;
    margin: 0 auto;
    text-wrap: balance;
}

.cta-banner p {
    margin: 18px auto 28px;
    max-width: 56ch;
    font-size: 19px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    text-wrap: pretty;
}

.cta-banner .btn {
    padding: 16px 28px;
    font-size: 14px;
}

/* ============ FOOTER ============ */
.site-footer {
    background: #0d2230;
    color: rgba(255, 255, 255, 0.85);
    padding: 56px 0 36px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-footer__brand img {
    width: 56px;
    height: 56px;
}

.site-footer__brand-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    letter-spacing: -0.005em;
    line-height: 1.1;
}

.site-footer__brand-text small {
    display: block;
    margin-top: 4px;
    font-weight: 600;
    font-size: 10px;
    color: var(--happy-yellow);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.site-footer__about {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    max-width: 42ch;
}

.site-footer h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--happy-yellow);
    margin-bottom: 14px;
}

.site-footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer__bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer__disclaimer {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45);
    max-width: 80ch;
}

@media (max-width: 820px) {
    .site-footer__top {
        grid-template-columns: 1fr;
    }
}

/* keep focus rings sane */
:focus-visible {
    outline: 3px solid var(--happy-yellow);
    outline-offset: 3px;
    border-radius: 2px;
}