/* =========================================================
   NARINA SAFARIS
   UGANDA DESTINATION PAGE
========================================================= */

.uganda-page {
    background: #f7f5ef;
}


/* =========================================================
   UGANDA HERO
========================================================= */

.uganda-hero {
    position: relative;

    width: 100%;
    min-height: 650px;

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

    overflow: hidden;

    background: #173429;
}


/* IMAGE */

.uganda-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* OVERLAY */

.uganda-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 34, 22, 0.68) 0%,
            rgba(4, 34, 22, 0.34) 48%,
            rgba(4, 34, 22, 0.12) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(4, 30, 20, 0.18),
            rgba(4, 30, 20, 0.28)
        );
}


/* CONTAINER */

.uganda-hero-container {
    position: relative;

    z-index: 2;

    width: calc(100% - (var(--site-gutter) * 2));
    max-width: var(--site-max-width);

    margin: 0 auto;

    padding:
        110px
        0
        85px;

    display: flex;
    justify-content: center;
}


/* CENTER CONTENT */

.uganda-hero-content {
    width: 100%;
    max-width: 840px;

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;
}


/* EYEBROW */

.uganda-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 10px;
    font-weight: 700;

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


.uganda-hero-eyebrow span {
    width: 36px;
    height: 2px;

    background: var(--narina-red);
}


/* TITLE */

.uganda-hero h1 {
    margin: 0;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size:
        clamp(
            65px,
            7vw,
            108px
        );

    font-weight: 600;

    line-height: 0.91;

    letter-spacing: -0.045em;
}


.uganda-hero h1 em {
    display: block;

    margin-top: 14px;

    color: #d5e2d9;

    font-size: 0.53em;
    font-weight: 500;

    line-height: 1;
}


/* TEXT */

.uganda-hero-content p {
    max-width: 690px;

    margin:
        28px
        auto
        0;

    color: rgba(255, 255, 255, 0.84);

    font-size: 16px;

    line-height: 1.75;
}


/* BUTTON */

.uganda-hero-button {
    min-height: 55px;

    margin:
        34px
        auto
        0;

    padding:
        0
        27px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    background: var(--narina-red);

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.09em;

    text-transform: uppercase;

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


.uganda-hero-button svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    transition:
        transform 0.3s ease;
}


.uganda-hero-button:hover {
    background: var(--narina-dark-red);

    transform: translateY(-2px);
}


.uganda-hero-button:hover svg {
    transform: translateX(5px);
}


/* SIDE LABEL */

.uganda-hero-side {
    position: absolute;

    right: 4vw;
    bottom: 48px;

    z-index: 2;

    color: rgba(255, 255, 255, 0.65);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    writing-mode: vertical-rl;

    transform: rotate(180deg);
}


/* =========================================================
   ABOUT UGANDA
========================================================= */

.uganda-about {
    padding:
        clamp(95px, 9vw, 145px)
        var(--site-gutter);

    background: #f7f5ef;
}


.uganda-about-container {
    width: 100%;
    max-width: var(--site-max-width);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap:
        clamp(
            65px,
            9vw,
            145px
        );
}


.uganda-about-content {
    max-width: 570px;
}


.uganda-about-content h2 {
    margin: 0;

    color: #173429;

    font-family: var(--font-heading);

    font-size:
        clamp(
            45px,
            4.5vw,
            70px
        );

    font-weight: 600;

    line-height: 1.03;

    letter-spacing: -0.035em;
}


.uganda-about-content h2 em {
    display: block;

    color: var(--narina-green);

    font-weight: 500;
}


.uganda-about-lead {
    margin-top: 27px;

    color: #274438;

    font-family: var(--font-heading);

    font-size:
        clamp(
            20px,
            1.7vw,
            25px
        );

    line-height: 1.45;
}


.uganda-about-text {
    margin-top: 18px;

    color: #68716b;

    font-size: 15px;

    line-height: 1.8;
}


/* ABOUT LINK */

.uganda-text-link {
    width: fit-content;

    margin-top: 30px;

    padding-bottom: 7px;

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

    gap: 12px;

    color: var(--narina-dark-green);

    border-bottom:
        1px solid
        rgba(4, 60, 37, 0.28);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.11em;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}


.uganda-text-link svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    transition:
        transform 0.3s ease;
}


.uganda-text-link:hover {
    color: var(--narina-red);

    border-color: var(--narina-red);
}


.uganda-text-link:hover svg {
    transform: translateX(5px);
}


/* ABOUT IMAGE */

.uganda-about-image {
    position: relative;

    min-height: 610px;

    overflow: hidden;

    background: #173429;
}


.uganda-about-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* IMAGE LABEL */

.uganda-about-label {
    position: absolute;

    left: 25px;
    bottom: 25px;

    min-width: 175px;

    padding:
        16px
        20px;

    background:
        rgba(255, 255, 255, 0.95);
}


.uganda-about-label span {
    display: block;

    margin-bottom: 4px;

    color: var(--narina-red);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.uganda-about-label strong {
    color: var(--narina-dark-green);

    font-family: var(--font-heading);

    font-size: 18px;
}


/* =========================================================
   UGANDA DESTINATION DIRECTORY
========================================================= */

.uganda-destination-directory {
    padding:
        clamp(95px, 9vw, 145px)
        var(--site-gutter);

    background: #ffffff;
}


.uganda-directory-container {
    width: 100%;
    max-width: var(--site-max-width);

    margin: 0 auto;
}


/* HEADER */

.uganda-directory-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.65fr);

    align-items: end;

    gap:
        clamp(
            50px,
            8vw,
            130px
        );

    margin-bottom: 55px;
}


.uganda-directory-header h2 {
    margin: 0;

    color: #173429;

    font-family: var(--font-heading);

    font-size:
        clamp(
            44px,
            4.4vw,
            70px
        );

    font-weight: 600;

    line-height: 1.04;

    letter-spacing: -0.035em;
}


.uganda-directory-header h2 em {
    display: block;

    color: var(--narina-green);

    font-weight: 500;
}


.uganda-directory-header > p {
    max-width: 440px;

    margin: 0;

    color: #69716c;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   DESTINATION GRID
========================================================= */

.uganda-directory-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 22px;
}


/* =========================================================
   DESTINATION CARD
========================================================= */

.uganda-directory-card {
    min-width: 0;

    display: flex;

    flex-direction: column;

    background: #f7f5ef;

    border:
        1px solid
        rgba(4, 60, 37, 0.08);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.uganda-directory-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(4, 60, 37, 0.16);

    box-shadow:
        0 20px 45px
        rgba(18, 52, 35, 0.09);
}


/* CARD IMAGE */

.uganda-directory-image {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: #173429;
}


.uganda-directory-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4, 31, 20, 0.25),
            transparent 58%
        );

    pointer-events: none;
}


.uganda-directory-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.8s
        cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}


.uganda-directory-card:hover
.uganda-directory-image img {
    transform: scale(1.05);
}


/* NUMBER */

.uganda-directory-index {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 3;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255, 255, 255, 0.94);

    color: var(--narina-dark-green);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.08em;
}


/* CARD CONTENT */

.uganda-directory-content {
    flex: 1;

    padding:
        27px
        27px
        25px;

    display: flex;

    flex-direction: column;
}


.uganda-directory-type {
    margin-bottom: 10px;

    color: var(--narina-red);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.uganda-directory-content h3 {
    margin: 0;

    color: #173429;

    font-family: var(--font-heading);

    font-size: 27px;
    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -0.02em;
}


.uganda-directory-content p {
    margin-top: 14px;

    color: #69716c;

    font-size: 13px;

    line-height: 1.7;
}


/* CARD LINK */

.uganda-directory-link {
    margin-top: auto;

    padding-top: 23px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: var(--narina-dark-green);

    border-top:
        1px solid
        rgba(4, 60, 37, 0.10);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.10em;

    text-transform: uppercase;

    transition:
        color 0.3s ease;
}


.uganda-directory-link svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    transition:
        transform 0.3s ease;
}


.uganda-directory-card:hover
.uganda-directory-link {
    color: var(--narina-red);
}


.uganda-directory-card:hover
.uganda-directory-link svg {
    transform: translateX(5px);
}


/* DIRECTORY FOOTER */

.uganda-directory-footer {
    margin-top: 42px;

    padding-top: 26px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid
        rgba(4, 60, 37, 0.11);
}


.uganda-directory-footer p {
    margin: 0;

    color: #7c847e;

    font-size: 12px;
}


.uganda-directory-footer a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--narina-dark-green);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.11em;

    text-transform: uppercase;

    transition:
        color 0.3s ease;
}


.uganda-directory-footer a svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    transition:
        transform 0.3s ease;
}


.uganda-directory-footer a:hover {
    color: var(--narina-red);
}


.uganda-directory-footer a:hover svg {
    transform: translateX(5px);
}


/* =========================================================
   EXPERIENCE UGANDA
========================================================= */

.uganda-experiences {
    padding:
        clamp(95px, 9vw, 145px)
        var(--site-gutter);

    background: #0b4a34;

    color: #ffffff;
}


.uganda-experiences-container {
    width: 100%;
    max-width: var(--site-max-width);

    margin: 0 auto;
}


/* HEADER */

.uganda-experiences-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.6fr);

    align-items: end;

    gap:
        clamp(
            50px,
            8vw,
            120px
        );

    margin-bottom: 52px;
}


.uganda-experiences-eyebrow {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.uganda-experiences-eyebrow span {
    width: 34px;
    height: 2px;

    background: var(--narina-red);
}


.uganda-experiences-header h2 {
    margin: 0;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size:
        clamp(
            44px,
            4.4vw,
            69px
        );

    font-weight: 600;

    line-height: 1.03;

    letter-spacing: -0.035em;
}


.uganda-experiences-header h2 em {
    display: block;

    color: #b8d1c3;

    font-weight: 500;
}


.uganda-experiences-header > p {
    max-width: 420px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 15px;

    line-height: 1.75;
}


/* EXPERIENCE GRID */

.uganda-experiences-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    border-top:
        1px solid
        rgba(255, 255, 255, 0.14);
}


/* EXPERIENCE ITEM */

.uganda-experience {
    min-height: 120px;

    padding:
        24px
        5px;

    display: grid;

    grid-template-columns:
        55px
        1fr
        auto;

    align-items: center;

    gap: 20px;

    color: #ffffff;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.14);

    transition:
        background-color 0.3s ease,
        padding-left 0.3s ease;
}


.uganda-experience:nth-child(odd) {
    padding-right: 30px;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.14);
}


.uganda-experience:nth-child(even) {
    padding-left: 30px;
}


.uganda-experience:hover {
    background:
        rgba(255, 255, 255, 0.04);
}


.uganda-experience-number {
    color: var(--narina-red);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;
}


.uganda-experience div > span {
    color:
        rgba(255, 255, 255, 0.43);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.uganda-experience h3 {
    margin:
        6px
        0
        0;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size: 27px;
    font-weight: 500;

    line-height: 1.15;
}


.uganda-experience > svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke:
        rgba(255, 255, 255, 0.62);

    stroke-width: 1.5;

    transition:
        transform 0.3s ease;
}


.uganda-experience:hover > svg {
    transform: translateX(5px);
}


/* =========================================================
   FEATURED JOURNEYS
========================================================= */

.uganda-journeys {
    padding:
        clamp(95px, 9vw, 145px)
        var(--site-gutter);

    background: #f7f5ef;
}


.uganda-journeys-container {
    width: 100%;
    max-width: var(--site-max-width);

    margin: 0 auto;
}


/* HEADER */

.uganda-journeys-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.65fr);

    align-items: end;

    gap:
        clamp(
            50px,
            8vw,
            130px
        );

    margin-bottom: 52px;
}


.uganda-journeys-header h2 {
    margin: 0;

    color: #173429;

    font-family: var(--font-heading);

    font-size:
        clamp(
            44px,
            4.3vw,
            68px
        );

    font-weight: 600;

    line-height: 1.04;

    letter-spacing: -0.035em;
}


.uganda-journeys-header h2 em {
    display: block;

    color: var(--narina-green);

    font-weight: 500;
}


.uganda-journeys-header > p {
    max-width: 430px;

    margin: 0;

    color: #69716c;

    font-size: 15px;

    line-height: 1.75;
}


/* JOURNEY GRID */

.uganda-journeys-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* JOURNEY CARD */

.uganda-journey-card {
    min-width: 0;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    overflow: hidden;

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


.uganda-journey-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px
        rgba(22, 53, 38, 0.08);
}


/* IMAGE */

.uganda-journey-image {
    position: relative;

    height: 300px;

    overflow: hidden;

    background: #173429;
}


.uganda-journey-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}


.uganda-journey-card:hover
.uganda-journey-image img {
    transform: scale(1.05);
}


.uganda-journey-image > span {
    position: absolute;

    top: 18px;
    left: 18px;

    padding:
        8px
        11px;

    background:
        rgba(255, 255, 255, 0.94);

    color: var(--narina-dark-green);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* CONTENT */

.uganda-journey-content {
    flex: 1;

    padding:
        27px
        28px
        25px;

    display: flex;

    flex-direction: column;
}


.uganda-journey-category {
    color: var(--narina-red);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.uganda-journey-content h3 {
    margin:
        11px
        0
        0;

    color: #173429;

    font-family: var(--font-heading);

    font-size: 29px;
    font-weight: 600;

    line-height: 1.08;
}


.uganda-journey-content p {
    margin-top: 14px;

    color: #69716c;

    font-size: 13px;

    line-height: 1.7;
}


/* JOURNEY LINK */

.uganda-journey-link {
    margin-top: auto;

    padding-top: 23px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--narina-dark-green);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.10em;

    text-transform: uppercase;

    transition:
        color 0.3s ease;
}


.uganda-journey-link svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    transition:
        transform 0.3s ease;
}


.uganda-journey-card:hover
.uganda-journey-link {
    color: var(--narina-red);
}


.uganda-journey-card:hover
.uganda-journey-link svg {
    transform: translateX(5px);
}


/* =========================================================
   FINAL CTA AREA ON UGANDA PAGE
========================================================= */

.uganda-page .final-cta-wrap {
    background: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    /* ABOUT */

    .uganda-about-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .uganda-about-content {
        max-width: 700px;
    }


    .uganda-about-image {
        min-height: 550px;
    }


    /* DIRECTORY */

    .uganda-directory-header,
    .uganda-experiences-header,
    .uganda-journeys-header {
        grid-template-columns: 1fr;

        gap: 25px;
    }


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


    /* JOURNEYS */

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


    .uganda-journey-card:last-child {
        grid-column: 1 / 3;
    }

}


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

@media (max-width: 650px) {

    /* HERO */

    .uganda-hero {
        min-height: 570px;
    }


    .uganda-hero-container {
        padding:
            95px
            0
            60px;
    }


    .uganda-hero h1 {
        font-size: 59px;
    }


    .uganda-hero h1 em {
        font-size: 0.56em;
    }


    .uganda-hero-content p {
        font-size: 15px;

        line-height: 1.65;
    }


    .uganda-hero-side {
        display: none;
    }


    /* GENERAL SECTION SPACING */

    .uganda-about,
    .uganda-destination-directory,
    .uganda-experiences,
    .uganda-journeys {
        padding:
            75px
            var(--site-gutter);
    }


    /* ABOUT */

    .uganda-about-content h2,
    .uganda-directory-header h2,
    .uganda-experiences-header h2,
    .uganda-journeys-header h2 {
        font-size: 42px;
    }


    .uganda-about-image {
        min-height: 430px;
    }


    /* DIRECTORY */

    .uganda-directory-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .uganda-directory-image {
        height: 245px;
    }


    .uganda-directory-content {
        padding:
            23px
            22px;
    }


    .uganda-directory-content h3 {
        font-size: 25px;
    }


    .uganda-directory-footer {
        flex-direction: column;

        align-items: flex-start;
    }


    /* EXPERIENCES */

    .uganda-experiences-grid {
        grid-template-columns: 1fr;
    }


    .uganda-experience,
    .uganda-experience:nth-child(odd),
    .uganda-experience:nth-child(even) {
        padding:
            22px
            5px;

        border-right: 0;
    }


    .uganda-experience h3 {
        font-size: 23px;
    }


    /* JOURNEYS */

    .uganda-journeys-grid {
        grid-template-columns: 1fr;
    }


    .uganda-journey-card:last-child {
        grid-column: auto;
    }


    .uganda-journey-image {
        height: 270px;
    }

}



/* =========================================================
   NARINA SAFARIS
   UGANDA PAGE — DARK PREMIUM REDESIGN
   Appended overrides: no HTML changes required.
========================================================= */

:root {
    --uganda-bg: #06110d;
    --uganda-bg-deep: #030b08;
    --uganda-charcoal: #151916;
    --uganda-charcoal-soft: #1b211e;
    --uganda-forest: #073323;
    --uganda-forest-soft: #0b4934;

    --uganda-cream: #f5f1e7;
    --uganda-sage: #c8d6cd;
    --uganda-muted: #96a79d;

    --uganda-line: rgba(255, 255, 255, 0.08);
    --uganda-line-strong: rgba(255, 255, 255, 0.14);
}


/* =========================================================
   GLOBAL PAGE
========================================================= */

.uganda-page {
    position: relative;
    overflow: hidden;

    color: var(--uganda-cream);

    background:
        radial-gradient(circle at 16% 12%, rgba(98, 111, 77, .10), transparent 25%),
        radial-gradient(circle at 86% 65%, rgba(17, 87, 61, .12), transparent 30%),
        linear-gradient(
            to bottom,
            #111613 0%,
            #0b130f 24%,
            #06110d 62%,
            #030b08 100%
        );
}


/* Remove italic / slanted typography across this page */
.uganda-page em,
.uganda-page i {
    font-style: normal !important;
}


/* =========================================================
   HERO — SMALLER, CLEANER, MORE CINEMATIC
========================================================= */

.uganda-hero {
    min-height: 570px;

    border-bottom:
        1px solid
        rgba(255,255,255,.055);
}


.uganda-hero-image {
    filter:
        saturate(.95)
        brightness(.86)
        contrast(1.04);

    transform: scale(1.01);
}


.uganda-hero-overlay {
    background:
        linear-gradient(
            to top,
            rgba(2,18,11,.92) 0%,
            rgba(2,18,11,.45) 40%,
            rgba(2,18,11,.18) 72%,
            rgba(2,18,11,.35) 100%
        ),
        linear-gradient(
            90deg,
            rgba(3,29,19,.43) 0%,
            rgba(3,29,19,.10) 50%,
            rgba(3,22,15,.24) 100%
        ),
        radial-gradient(
            circle at 50% 42%,
            transparent 18%,
            rgba(0,0,0,.30) 100%
        );
}


.uganda-hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 120px;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(8,18,14,.54)
        );
}


.uganda-hero-container {
    padding:
        100px
        0
        74px;
}


.uganda-hero-content {
    max-width: 760px;
}


.uganda-hero-eyebrow {
    margin-bottom: 17px;

    color:
        rgba(
            245,
            241,
            231,
            .74
        );

    font-size: 9px;
}


.uganda-hero h1 {
    color: var(--uganda-cream);

    font-size:
        clamp(
            52px,
            5.3vw,
            76px
        );

    line-height: .98;

    letter-spacing: -.04em;

    text-shadow:
        0 12px 42px
        rgba(0,0,0,.28);
}


.uganda-hero h1 em {
    margin-top: 10px;

    color: #d8e5dd;

    font-size: .46em;

    font-weight: 500;

    line-height: 1.08;
}


.uganda-hero-content p {
    max-width: 650px;

    margin-top: 22px;

    color:
        rgba(
            245,
            241,
            231,
            .78
        );

    font-size: 14px;

    line-height: 1.72;
}


.uganda-hero-button {
    min-height: 51px;

    margin-top: 28px;

    padding:
        0
        24px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #e20b1c 0%,
            #c60017 100%
        );

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.13),
        0 10px 26px
        rgba(190,0,18,.20);
}


.uganda-hero-button:hover {
    background:
        linear-gradient(
            135deg,
            #f01628,
            #b80015
        );

    box-shadow:
        0 14px 32px
        rgba(190,0,18,.27);
}


.uganda-hero-side {
    color:
        rgba(
            245,
            241,
            231,
            .45
        );
}


/* =========================================================
   ABOUT UGANDA — WARM CHARCOAL, NOT PLAIN GREEN
========================================================= */

.uganda-about {
    position: relative;

    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(128,101,59,.075),
            transparent 34%
        ),
        radial-gradient(
            circle at 82% 56%,
            rgba(19,80,57,.09),
            transparent 30%
        ),
        linear-gradient(
            to bottom,
            #151916,
            #101612
        );

    border-bottom:
        1px solid
        rgba(255,255,255,.055);
}


.uganda-about::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .55;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,.014),
            transparent 28%,
            transparent 74%,
            rgba(255,255,255,.010)
        );
}


.uganda-about-container {
    position: relative;
    z-index: 2;
}


.uganda-about-content h2 {
    color: var(--uganda-cream);

    font-size:
        clamp(
            38px,
            3.6vw,
            54px
        );

    line-height: 1.05;
}


.uganda-about-content h2 em {
    color: #a9c8b6;
}


.uganda-about-lead {
    color: #dce8e0;

    font-size:
        clamp(
            18px,
            1.5vw,
            23px
        );
}


.uganda-about-text {
    color:
        rgba(
            214,
            225,
            218,
            .66
        );

    font-size: 14px;
}


.uganda-text-link {
    color: #b8d9c6;

    border-color:
        rgba(
            184,
            217,
            198,
            .24
        );
}


.uganda-text-link:hover {
    color: #ff7e86;

    border-color:
        rgba(
            255,
            126,
            134,
            .52
        );
}


/* ABOUT IMAGE */

.uganda-about-image {
    min-height: 560px;

    padding: 8px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.02)
        ),
        rgba(13,25,19,.72);

    border:
        1px solid
        rgba(255,255,255,.095);

    border-radius: 22px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.04),
        0 22px 55px
        rgba(0,0,0,.28);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.uganda-about-image img {
    inset: 8px;

    width: calc(100% - 16px);
    height: calc(100% - 16px);

    border-radius: 15px;

    filter:
        saturate(.95)
        brightness(.94)
        contrast(1.03);
}


.uganda-about-label {
    left: 28px;
    bottom: 28px;

    min-width: 165px;

    padding:
        14px
        17px;

    color: #ffffff;

    background:
        rgba(
            11,
            25,
            19,
            .72
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .12
        );

    border-radius: 12px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.22);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.uganda-about-label strong {
    color: var(--uganda-cream);
}


/* =========================================================
   DESTINATION DIRECTORY — DARK EDITORIAL SECTION
========================================================= */

.uganda-destination-directory {
    position: relative;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(31,91,63,.15),
            transparent 34%
        ),
        radial-gradient(
            circle at 8% 50%,
            rgba(45,69,54,.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 74%,
            rgba(15,84,59,.10),
            transparent 24%
        ),
        linear-gradient(
            to bottom,
            #08130f 0%,
            #05100c 52%,
            #030c09 100%
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );
}


.uganda-destination-directory::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .55;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,.014),
            transparent 28%,
            transparent 74%,
            rgba(255,255,255,.010)
        );
}


.uganda-directory-container {
    position: relative;
    z-index: 2;
}


.uganda-directory-header h2 {
    color: var(--uganda-cream);

    font-size:
        clamp(
            38px,
            3.7vw,
            55px
        );
}


.uganda-directory-header h2 em {
    color: #a9c8b6;
}


.uganda-directory-header > p {
    color:
        rgba(
            210,
            222,
            214,
            .64
        );

    font-size: 14px;
}


/* =========================================================
   DESTINATION GRID — PREMIUM GLASS CARDS
========================================================= */

.uganda-directory-grid {
    gap:
        28px
        22px;
}


.uganda-directory-card {
    position: relative;

    padding: 8px;

    overflow: hidden;

    color: var(--uganda-cream);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075) 0%,
            rgba(255,255,255,.030) 42%,
            rgba(255,255,255,.018) 100%
        ),
        rgba(12,24,18,.72);

    border:
        1px solid
        rgba(255,255,255,.105);

    border-radius: 20px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.045),
        0 18px 45px
        rgba(0,0,0,.28);

    backdrop-filter:
        blur(18px)
        saturate(1.1);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(1.1);

    isolation: isolate;

    transition:
        transform .38s
        cubic-bezier(.2,.7,.2,1),
        border-color .38s ease,
        box-shadow .38s ease,
        background .38s ease;
}


.uganda-directory-card::before {
    content: "";

    position: absolute;
    z-index: 6;

    inset: 0;

    pointer-events: none;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(255,255,255,.055),
            transparent 30%
        );
}


.uganda-directory-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(
            255,
            255,
            255,
            .18
        );

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.095),
            rgba(255,255,255,.034) 42%,
            rgba(255,255,255,.022)
        ),
        rgba(14,28,21,.80);

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.07),
        0 30px 72px
        rgba(0,0,0,.42);
}


/* CARD IMAGE */

.uganda-directory-image {
    height: 255px;

    border-radius: 14px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .06
        );

    box-shadow:
        0 14px 30px
        rgba(0,0,0,.24);
}


.uganda-directory-image::after {
    background:
        linear-gradient(
            to top,
            rgba(2,20,13,.62) 0%,
            rgba(2,20,13,.20) 44%,
            transparent 75%
        );
}


.uganda-directory-image img {
    filter:
        saturate(.95)
        brightness(.94)
        contrast(1.03);

    transition:
        transform .75s
        cubic-bezier(.2,.65,.25,1),
        filter .4s ease;
}


.uganda-directory-card:hover
.uganda-directory-image img {
    transform:
        scale(1.06);

    filter:
        saturate(1.03)
        brightness(1)
        contrast(1.035);
}


/* NUMBER BADGE */

.uganda-directory-index {
    top: 15px;
    right: 15px;

    width: 36px;
    height: 36px;

    color: #173429;

    background:
        rgba(
            248,
            246,
            239,
            .88
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .44
        );

    border-radius: 50%;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.72),
        0 7px 18px
        rgba(0,0,0,.14);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* CARD CONTENT */

.uganda-directory-content {
    padding:
        23px
        18px
        18px;
}


.uganda-directory-type {
    color: #ff727b;

    font-size: 8px;
}


.uganda-directory-content h3 {
    color: var(--uganda-cream);

    font-size: 24px;

    font-weight: 500;
}


.uganda-directory-content p {
    color:
        rgba(
            210,
            222,
            214,
            .64
        );

    font-size: 13px;
}


.uganda-directory-link {
    margin-top: 20px;

    padding-top: 18px;

    color: #b8d9c6;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .085
        );
}


.uganda-directory-card:hover
.uganda-directory-link {
    color: #ff7e86;
}


/* DIRECTORY FOOTER */

.uganda-directory-footer {
    border-color:
        rgba(
            255,
            255,
            255,
            .085
        );
}


.uganda-directory-footer p {
    color:
        rgba(
            205,
            217,
            210,
            .46
        );
}


.uganda-directory-footer a {
    color: #b8d9c6;
}


/* =========================================================
   EXPERIENCES — DIFFERENT GREEN, MORE LAYERED
========================================================= */

.uganda-experiences {
    position: relative;

    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(82,156,113,.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 88% 100%,
            rgba(6,46,32,.36),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #0a5a3e 0%,
            #07432f 48%,
            #052d20 100%
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .07
        );
}


.uganda-experiences::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -250px;
    top: -290px;

    border-radius: 50%;

    pointer-events: none;

    background:
        rgba(
            255,
            255,
            255,
            .025
        );
}


.uganda-experiences-container {
    position: relative;
    z-index: 2;
}


.uganda-experiences-header h2 {
    font-size:
        clamp(
            38px,
            3.7vw,
            55px
        );
}


.uganda-experiences-header h2 em {
    color: #c3d9cc;
}


.uganda-experiences-header > p {
    font-size: 14px;
}


/* EXPERIENCE ITEMS AS SUBTLE GLASS ROWS */

.uganda-experiences-grid {
    gap: 12px;

    border-top: 0;
}


.uganda-experience,
.uganda-experience:nth-child(odd),
.uganda-experience:nth-child(even) {
    min-height: 110px;

    padding:
        22px
        22px;

    background:
        rgba(
            255,
            255,
            255,
            .045
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .075
        );

    border-radius: 14px;

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

    transition:
        background .3s ease,
        transform .3s ease,
        border-color .3s ease;
}


.uganda-experience:hover {
    background:
        rgba(
            255,
            255,
            255,
            .085
        );

    border-color:
        rgba(
            255,
            255,
            255,
            .12
        );

    transform:
        translateY(-3px);
}


.uganda-experience h3 {
    font-size: 24px;
}


/* =========================================================
   FEATURED JOURNEYS — WARM CHARCOAL
========================================================= */

.uganda-journeys {
    position: relative;

    background:
        radial-gradient(
            circle at 18% 0%,
            rgba(127,100,58,.07),
            transparent 34%
        ),
        radial-gradient(
            circle at 82% 58%,
            rgba(19,79,56,.09),
            transparent 30%
        ),
        linear-gradient(
            to bottom,
            #151916,
            #101612
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );
}


.uganda-journeys-header h2 {
    color: var(--uganda-cream);

    font-size:
        clamp(
            38px,
            3.7vw,
            55px
        );
}


.uganda-journeys-header h2 em {
    color: #a9c8b6;
}


.uganda-journeys-header > p {
    color:
        rgba(
            210,
            222,
            214,
            .64
        );

    font-size: 14px;
}


/* JOURNEY CARDS */

.uganda-journey-card {
    position: relative;

    padding: 8px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.024) 50%,
            rgba(255,255,255,.016)
        ),
        rgba(12,24,18,.74);

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .105
        );

    border-radius: 20px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.045),
        0 18px 45px
        rgba(0,0,0,.27);

    backdrop-filter:
        blur(18px)
        saturate(1.08);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(1.08);

    transition:
        transform .36s ease,
        border-color .36s ease,
        box-shadow .36s ease;
}


.uganda-journey-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(
            255,
            255,
            255,
            .18
        );

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.07),
        0 30px 70px
        rgba(0,0,0,.40);
}


.uganda-journey-image {
    height: 285px;

    border-radius: 14px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .06
        );

    box-shadow:
        0 14px 30px
        rgba(0,0,0,.24);
}


.uganda-journey-image img {
    filter:
        saturate(.95)
        brightness(.94)
        contrast(1.03);

    transition:
        transform .75s ease,
        filter .4s ease;
}


.uganda-journey-card:hover
.uganda-journey-image img {
    transform:
        scale(1.055);

    filter:
        saturate(1.03)
        brightness(1)
        contrast(1.035);
}


.uganda-journey-image > span {
    top: 15px;
    left: 15px;

    color: #173429;

    background:
        rgba(
            248,
            246,
            239,
            .88
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .42
        );

    border-radius: 999px;

    box-shadow:
        0 7px 18px
        rgba(0,0,0,.14);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.uganda-journey-content {
    padding:
        23px
        18px
        18px;
}


.uganda-journey-category {
    color: #ff727b;
}


.uganda-journey-content h3 {
    color: var(--uganda-cream);

    font-size: 25px;

    font-weight: 500;
}


.uganda-journey-content p {
    color:
        rgba(
            210,
            222,
            214,
            .64
        );
}


.uganda-journey-link {
    margin-top: 20px;

    padding-top: 18px;

    color: #b8d9c6;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .085
        );
}


.uganda-journey-card:hover
.uganda-journey-link {
    color: #ff7e86;
}


/* =========================================================
   FINAL CTA AREA
========================================================= */

.uganda-page
.final-cta-wrap {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(123,96,52,.07),
            transparent 36%
        ),
        linear-gradient(
            to bottom,
            #111613,
            #0d120f
        );

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .055
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .uganda-hero h1 {
        font-size:
            clamp(
                48px,
                7vw,
                65px
            );
    }


    .uganda-about-content h2,
    .uganda-directory-header h2,
    .uganda-experiences-header h2,
    .uganda-journeys-header h2 {
        font-size:
            clamp(
                36px,
                5vw,
                50px
            );
    }


    .uganda-directory-grid {
        gap: 20px;
    }

}


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

@media (max-width: 650px) {

    .uganda-hero {
        min-height: 520px;
    }


    .uganda-hero h1 {
        font-size: 48px;
    }


    .uganda-hero h1 em {
        font-size: .48em;
    }


    .uganda-hero-content p {
        font-size: 13px;
    }


    .uganda-about,
    .uganda-destination-directory,
    .uganda-experiences,
    .uganda-journeys {
        padding:
            68px
            var(--site-gutter);
    }


    .uganda-about-content h2,
    .uganda-directory-header h2,
    .uganda-experiences-header h2,
    .uganda-journeys-header h2 {
        font-size: 38px;
    }


    .uganda-about-image {
        min-height: 420px;

        border-radius: 18px;
    }


    .uganda-directory-card,
    .uganda-journey-card {
        border-radius: 18px;
    }


    .uganda-directory-image {
        height: 235px;
    }


    .uganda-directory-content h3 {
        font-size: 23px;
    }


    .uganda-experiences-grid {
        gap: 10px;
    }


    .uganda-experience,
    .uganda-experience:nth-child(odd),
    .uganda-experience:nth-child(even) {
        padding:
            20px
            16px;
    }


    .uganda-journey-image {
        height: 255px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .uganda-hero-button,
    .uganda-directory-card,
    .uganda-directory-image img,
    .uganda-experience,
    .uganda-journey-card,
    .uganda-journey-image img,
    .uganda-text-link svg,
    .uganda-directory-link svg,
    .uganda-journey-link svg {
        transition: none;
    }

}



/* =========================================================
   UGANDA NATIONAL PARKS MAP
========================================================= */

.uganda-parks-map-section {
    position: relative;

    padding:
        clamp(90px, 8vw, 130px)
        var(--site-gutter);

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(126, 99, 57, .075),
            transparent 34%
        ),
        radial-gradient(
            circle at 88% 62%,
            rgba(18, 84, 59, .11),
            transparent 30%
        ),
        linear-gradient(
            to bottom,
            #151916 0%,
            #101612 48%,
            #0b130f 100%
        );

    border-bottom:
        1px solid
        rgba(255,255,255,.055);
}


.uganda-parks-map-section::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .65;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,.014),
            transparent 28%,
            transparent 74%,
            rgba(255,255,255,.010)
        );
}


.uganda-parks-map-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--site-max-width);

    margin: 0 auto;
}


/* HEADER */

.uganda-parks-map-header {
    margin-bottom:
        clamp(45px, 5vw, 68px);

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, .62fr);

    align-items: end;

    gap:
        clamp(
            50px,
            8vw,
            120px
        );
}


.uganda-parks-map-header h2 {
    margin: 12px 0 0;

    color:
        var(--uganda-cream);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            38px,
            3.7vw,
            55px
        );

    font-weight: 500;

    line-height: 1.04;

    letter-spacing: -.03em;
}


.uganda-parks-map-header > p {
    max-width: 460px;

    margin: 0;

    color:
        rgba(
            210,
            222,
            214,
            .64
        );

    font-size: 14px;

    line-height: 1.78;
}


/* LAYOUT */

.uganda-parks-map-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(350px, .92fr);

    align-items: stretch;

    gap: 22px;
}


/* MAP PANEL */

.uganda-map-panel {
    position: relative;

    min-width: 0;

    padding:
        24px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.02) 48%,
            rgba(255,255,255,.014)
        ),
        rgba(11,24,18,.72);

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 24px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.045),
        0 24px 60px
        rgba(0,0,0,.30);

    backdrop-filter:
        blur(18px)
        saturate(1.08);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(1.08);
}


.uganda-map-panel::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    left: -250px;
    top: -280px;

    border-radius: 50%;

    pointer-events: none;

    background:
        rgba(
            115,
            170,
            137,
            .055
        );
}


.uganda-map-panel-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;
}


.uganda-map-panel-top > div span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(
            204,
            217,
            209,
            .48
        );

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.uganda-map-panel-top > div strong {
    display: block;

    color:
        var(--uganda-cream);

    font-family:
        var(--font-heading);

    font-size: 22px;

    font-weight: 500;
}


.uganda-map-hint {
    padding:
        8px
        11px;

    color:
        rgba(
            221,
            231,
            225,
            .64
        );

    background:
        rgba(
            255,
            255,
            255,
            .04
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .075
        );

    border-radius: 999px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* MAP STAGE */

.uganda-map-stage {
    position: relative;

    max-width: 575px;

    margin:
        18px
        auto
        0;

    padding:
        10px
        25px
        4px;
}


.uganda-svg-map {
    width: 100%;
    height: auto;

    display: block;

    overflow: visible;
}


.uganda-country-shape {
    stroke:
        rgba(
            178,
            213,
            193,
            .28
        );

    stroke-width: 2;

    vector-effect:
        non-scaling-stroke;
}


.uganda-map-glow {
    opacity: .85;
}


.uganda-map-contour {
    fill: none;

    stroke:
        rgba(
            187,
            214,
            199,
            .075
        );

    stroke-width: 1.2;

    stroke-dasharray:
        3
        8;

    vector-effect:
        non-scaling-stroke;
}


/* MARKERS */

.uganda-park-marker {
    cursor: pointer;

    outline: none;
}


.uganda-marker-ring {
    fill:
        rgba(
            213,
            0,
            23,
            0
        );

    stroke:
        rgba(
            255,
            115,
            124,
            .32
        );

    stroke-width: 1.5;

    opacity: 0;

    transform-box: fill-box;
    transform-origin: center;

    transition:
        opacity .28s ease,
        transform .28s ease;
}


.uganda-marker-dot {
    fill:
        rgba(
            11,
            28,
            21,
            .92
        );

    stroke:
        rgba(
            245,
            241,
            231,
            .55
        );

    stroke-width: 1.4;

    transition:
        fill .28s ease,
        stroke .28s ease,
        transform .28s ease;
}


.uganda-park-marker text {
    fill:
        rgba(
            245,
            241,
            231,
            .84
        );

    font-family:
        var(--font-body);

    font-size: 7px;

    font-weight: 700;

    text-anchor: middle;

    pointer-events: none;
}

.uganda-marker-leader {
    stroke: rgba(226, 236, 230, .46);
    stroke-width: 1;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    pointer-events: none;
}

.uganda-park-label-bg {
    fill: rgba(7, 23, 17, .92);
    stroke: rgba(226, 236, 230, .20);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
    pointer-events: none;
    transition: fill .28s ease, stroke .28s ease;
}

.uganda-park-marker .uganda-park-label {
    fill: rgba(245, 241, 231, .92);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .025em;
    text-anchor: middle;
}

.uganda-park-marker .uganda-park-number {
    font-size: 7px;
}

.uganda-park-marker:hover .uganda-park-label-bg,
.uganda-park-marker:focus .uganda-park-label-bg,
.uganda-park-marker.active .uganda-park-label-bg {
    fill: rgba(190, 9, 28, .94);
    stroke: rgba(255, 255, 255, .48);
}


.uganda-park-marker:hover
.uganda-marker-dot,
.uganda-park-marker:focus
.uganda-marker-dot,
.uganda-park-marker.active
.uganda-marker-dot {
    fill:
        var(--narina-red);

    stroke: #ffffff;

    transform:
        scale(1.12);

    transform-box:
        fill-box;

    transform-origin:
        center;
}


.uganda-park-marker:hover
.uganda-marker-ring,
.uganda-park-marker:focus
.uganda-marker-ring,
.uganda-park-marker.active
.uganda-marker-ring {
    opacity: 1;

    transform:
        scale(1.12);
}


.uganda-park-marker.active text,
.uganda-park-marker:hover text,
.uganda-park-marker:focus text {
    fill: #ffffff;
}


/* COMPASS */

.uganda-map-compass {
    position: absolute;

    right: 20px;
    top: 32px;

    width: 40px;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 6px;

    color:
        rgba(
            245,
            241,
            231,
            .48
        );

    font-size: 8px;
    font-weight: 700;
}


.uganda-map-compass i {
    width: 1px;
    height: 46px;

    display: block;

    background:
        linear-gradient(
            to bottom,
            rgba(245,241,231,.38),
            transparent
        );
}


.uganda-map-note {
    margin:
        4px
        0
        0;

    color:
        rgba(
            201,
            214,
            206,
            .36
        );

    font-size: 9px;

    line-height: 1.5;
}


/* DETAIL PANEL */

.uganda-park-detail {
    position: relative;

    min-width: 0;

    padding:
        38px
        35px
        32px;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(91,173,128,.20),
            transparent 34%
        ),
        radial-gradient(
            circle at 96% 100%,
            rgba(7,48,33,.42),
            transparent 38%
        ),
        linear-gradient(
            150deg,
            rgba(11,87,60,.97),
            rgba(6,54,38,.98)
        );

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 24px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.07),
        0 24px 60px
        rgba(0,0,0,.30);
}


.uganda-park-detail::before {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    right: -165px;
    top: -200px;

    border-radius: 50%;

    pointer-events: none;

    background:
        rgba(
            255,
            255,
            255,
            .045
        );
}


.uganda-park-detail > * {
    position: relative;
    z-index: 2;
}


.uganda-park-detail-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}


.uganda-park-number {
    width: 46px;
    height: 46px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        rgba(
            255,
            255,
            255,
            .075
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .13
        );

    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;
}


.uganda-park-region {
    color:
        rgba(
            255,
            255,
            255,
            .55
        );

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.uganda-park-detail h3 {
    margin: 0;

    max-width: 420px;

    color: #ffffff;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            31px,
            3vw,
            42px
        );

    font-weight: 500;

    line-height: 1.06;

    letter-spacing: -.025em;
}


.uganda-park-tagline {
    margin-top: 16px;

    color:
        rgba(
            232,
            241,
            235,
            .84
        );

    font-size: 14px;
    font-weight: 600;

    line-height: 1.62;
}


.uganda-park-description {
    margin-top: 14px;

    color:
        rgba(
            255,
            255,
            255,
            .60
        );

    font-size: 13px;

    line-height: 1.75;
}


/* META */

.uganda-park-meta {
    margin-top: 25px;

    padding:
        18px
        0;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.10);

    border-bottom:
        1px solid
        rgba(255,255,255,.10);
}


.uganda-park-meta span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(
            255,
            255,
            255,
            .42
        );

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .10em;

    text-transform: uppercase;
}


.uganda-park-meta strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
}


/* HIGHLIGHTS */

.uganda-park-highlights {
    margin-top: 20px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.uganda-park-highlights span {
    padding:
        8px
        10px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    background:
        rgba(
            255,
            255,
            255,
            .065
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .085
        );

    border-radius: 999px;

    font-size: 9px;
    font-weight: 600;
}


/* PLAN LINK */

.uganda-park-plan {
    min-height: 49px;

    margin-top: 24px;

    padding:
        0
        19px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    color:
        #173429;

    background:
        var(--uganda-cream);

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .38
        );

    border-radius: 999px;

    box-shadow:
        0 10px 26px
        rgba(0,0,0,.14);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    transition:
        background .28s ease,
        color .28s ease,
        transform .28s ease;
}


.uganda-park-plan svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.5;

    transition:
        transform .28s ease;
}


.uganda-park-plan:hover {
    color: #ffffff;

    background:
        var(--narina-red);

    transform:
        translateY(-2px);
}


.uganda-park-plan:hover svg {
    transform:
        translateX(4px);
}


/* SELECTOR */

.uganda-park-selector {
    margin-top: 28px;

    padding-top: 24px;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 8px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .10
        );
}


.uganda-park-select {
    min-height: 38px;

    padding:
        0
        11px;

    color:
        rgba(
            255,
            255,
            255,
            .56
        );

    background:
        rgba(
            255,
            255,
            255,
            .04
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .07
        );

    border-radius: 10px;

    font-family:
        var(--font-body);

    font-size: 9px;
    font-weight: 600;

    cursor: pointer;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.uganda-park-select:hover {
    color: #ffffff;

    background:
        rgba(
            255,
            255,
            255,
            .08
        );

    transform:
        translateY(-1px);
}


.uganda-park-select.active {
    color: #ffffff;

    background:
        rgba(
            213,
            0,
            23,
            .82
        );

    border-color:
        rgba(
            255,
            255,
            255,
            .14
        );
}


/* FOCUS */

.uganda-park-marker:focus-visible,
.uganda-park-select:focus-visible,
.uganda-park-plan:focus-visible {
    outline:
        3px solid
        rgba(
            123,
            180,
            146,
            .28
        );

    outline-offset: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .uganda-parks-map-header {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    .uganda-parks-map-layout {
        grid-template-columns: 1fr;
    }


    .uganda-map-stage {
        max-width: 620px;
    }


    .uganda-park-detail {
        min-height: auto;
    }

}


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

@media (max-width: 650px) {

    .uganda-parks-map-section {
        padding:
            68px
            var(--site-gutter);
    }


    .uganda-parks-map-header h2 {
        font-size: 38px;
    }


    .uganda-map-panel {
        padding:
            19px
            15px;

        border-radius: 18px;
    }


    .uganda-map-panel-top {
        align-items: center;
    }


    .uganda-map-stage {
        padding:
            10px
            5px
            0;
    }


    .uganda-map-hint {
        display: none;
    }


    .uganda-map-compass {
        right: 6px;
        top: 24px;
    }


    .uganda-marker-ring {
        r: 22;
    }


    .uganda-marker-dot {
        r: 14;
    }


    .uganda-park-marker text {
        font-size: 7.5px;
    }


    .uganda-park-detail {
        padding:
            31px
            22px
            25px;

        border-radius: 18px;
    }


    .uganda-park-detail h3 {
        font-size: 31px;
    }


    .uganda-park-meta {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    .uganda-park-plan {
        width: 100%;
    }


    .uganda-park-selector {
        grid-template-columns: 1fr 1fr;
    }

}


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

@media (max-width: 390px) {

    .uganda-map-panel-top > div strong {
        font-size: 19px;
    }


    .uganda-park-selector {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .uganda-marker-ring,
    .uganda-marker-dot,
    .uganda-park-plan,
    .uganda-park-plan svg,
    .uganda-park-select {
        transition: none;
    }

}
