/*=========================================================
MARAMATTA SAFARIS
ABOUT LANDING PAGE
EDITORIAL SYSTEM
=========================================================

PRINCIPLES
-----------------------------------------------------------
01. Mobile first
02. Inherit global .ms-section / .container
03. Photography supports the story
04. Avoid oversized repetitive images
05. Cards for principles and process
06. Editorial layouts for human stories
07. Generous whitespace
08. Strong visual rhythm
09. No unnecessary borders
10. Premium safari-journal feeling

=========================================================*/


/*=========================================================
01 · ABOUT LANDING FOUNDATION
=========================================================*/

.ms-landing.about-landing {

    width: 100%;
    min-height: 100vh;

    background: var(--ms-bg);

    overflow-x: hidden;

}


/*
Do not redefine:
.container
.ms-section
.section-header
.section-body

Those belong to the global layout system.
*/


/*=========================================================
02 · SHARED ABOUT ELEMENTS
=========================================================*/

.ms-landing.about-landing
.showcase-header {

    max-width: 760px;
    margin-inline: auto;

}


.ms-landing.about-landing
.showcase-description {

    max-width: 680px;
    margin-inline: auto;

}


/* Editorial labels */

.about-story__label,
.about-people__label,
.about-approach__label,
.about-guides__label,
.about-vehicles__label,
.about-responsibility__label,
.about-tanzania__label {

    display: block;

    margin-bottom: var(--space-sm);

    color: var(--ms-orange);

    font-size: .68rem;
    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;

}


/* Shared editorial links */

.about-story__link,
.about-people__link,
.about-guides__link,
.about-vehicles__link,
.about-tanzania__link,
.about-journeys__link {

    display: inline-flex;

    align-items: center;

    gap: .6rem;

    width: fit-content;

    color: var(--ms-green);

    font-size: .72rem;
    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;

    border-bottom: 1px solid
        rgba(39,73,33,.45);

    padding-bottom: .4rem;

    transition:
        gap .25s ease,
        opacity .25s ease,
        border-color .25s ease;

}


.about-story__link:hover,
.about-people__link:hover,
.about-guides__link:hover,
.about-vehicles__link:hover,
.about-tanzania__link:hover,
.about-journeys__link:hover {

    gap: .9rem;

    opacity: .72;

    border-color: var(--ms-green);

}


/*=========================================================
03 · HERO: hero handled in the landing page css
=========================================================


/*=========================================================
04 · OUR STORY
=========================================================*/

.about-story {

    background: var(--ms-bg);

}


.about-story__layout {

    display: grid;

    gap: var(--space-xl);

}


/*
Image deliberately restrained.
The story is the subject, not the photograph.
*/

.about-story__media {

    width: 100%;

    aspect-ratio: 5 / 4;

    margin: 0;

    overflow: hidden;

}


.about-story__image {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

}


.about-story__content {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.about-story__title {

    max-width: 560px;

    margin: 0 0 var(--space-md);

    font-size:
        clamp(
            2rem,
            6vw,
            3.5rem
        );

    line-height: 1.02;

    letter-spacing: -.025em;

}


.about-story__content p {

    max-width: 620px;

    margin:
        0
        0
        var(--space-md);

    font-size: .98rem;

    line-height: 1.8;

}


.about-story__link {

    margin-top: var(--space-sm);

}


/*=========================================================
05 · WHAT WE BELIEVE
=========================================================

This becomes a proper editorial philosophy section.

Not a generic 4-column list.
Cards create hierarchy and breathing room.
=========================================================*/

.about-beliefs {

    background: var(--ms-surface-soft);

}


.about-beliefs__grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 1px;

    background:
        rgba(39,73,33,.12);

}


.about-beliefs__item {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    min-height: 280px;

    padding:
        var(--space-xl)
        var(--space-lg);

    background: var(--ms-surface-soft);

}


.about-beliefs__number {

    margin-bottom:
        2.5rem;

    color: var(--ms-orange);

    font-size: .65rem;

    font-weight: 700;

    letter-spacing: .14em;

}


.about-beliefs__label {

    margin-bottom: .7rem;

    color: rgba(39,73,33,.55);

    font-size: .62rem;

    font-weight: 700;

    letter-spacing: .15em;

    text-transform: uppercase;

}


.about-beliefs__item h3 {

    max-width: 360px;

    margin:
        0
        0
        var(--space-sm);

    font-size:
        clamp(
            1.4rem,
            3vw,
            2rem
        );

    line-height: 1.08;

}


.about-beliefs__item p {

    max-width: 430px;

    margin: 0;

    font-size: .92rem;

    line-height: 1.75;

}


/* subtle editorial marker */

.about-beliefs__item::after {

    content: "";

    position: absolute;

    top: var(--space-xl);
    right: var(--space-lg);

    width: 28px;
    height: 1px;

    background: var(--ms-orange);

    opacity: .45;

}


/*=========================================================
06 · THE PEOPLE
=========================================================*/

.about-people {

    background: var(--ms-bg);

}


.about-people__feature {

    display: grid;

    gap: var(--space-xl);

}


.about-people__media {

    width: 100%;

    aspect-ratio: 5 / 4;

    margin: 0;

    overflow: hidden;

}


.about-people__image {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.about-people__editorial {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.about-people__editorial h3 {

    max-width: 600px;

    margin:
        0
        0
        var(--space-md);

    font-size:
        clamp(
            2rem,
            5vw,
            3.4rem
        );

    line-height: 1.02;

    letter-spacing: -.025em;

}


.about-people__editorial p {

    max-width: 620px;

    margin:
        0
        0
        var(--space-lg);

    line-height: 1.8;

}


/*=========================================================
07 · HOW WE TRAVEL
=========================================================

Turns the process into a journey rather than four dumped blocks.
=========================================================*/

.about-approach {

    background: var(--ms-surface-soft);

}


.about-approach__sequence {

    display: grid;

    grid-template-columns: 1fr;

}


.about-approach__chapter {

    position: relative;

    display: grid;

    grid-template-columns: 42px 1fr;

    column-gap: var(--space-md);

    padding:
        var(--space-lg)
        0;

    border-top:
        1px solid
        rgba(39,73,33,.13);

}


.about-approach__chapter:last-child {

    border-bottom:
        1px solid
        rgba(39,73,33,.13);

}


.about-approach__number {

    grid-row: 1 / span 3;

    color: var(--ms-orange);

    font-size: .65rem;

    font-weight: 700;

    letter-spacing: .12em;

}


.about-approach__label {

    margin-bottom: .5rem;

    color: rgba(39,73,33,.52);

    font-size: .62rem;

    font-weight: 700;

    letter-spacing: .15em;

    text-transform: uppercase;

}


.about-approach__chapter h3 {

    margin:
        0
        0
        .55rem;

    font-size:
        clamp(
            1.3rem,
            3vw,
            1.8rem
        );

    line-height: 1.1;

}


.about-approach__chapter p {

    max-width: 560px;

    margin: 0;

    font-size: .92rem;

    line-height: 1.7;

}


/*=========================================================
08 · OUR GUIDES
=========================================================*/

.about-guides {

    background: var(--ms-bg);

}


.about-guides__layout {

    display: grid;

    gap: var(--space-xl);

}


.about-guides__editorial {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.about-guides__editorial h3 {

    max-width: 560px;

    margin:
        0
        0
        var(--space-md);

    font-size:
        clamp(
            2rem,
            6vw,
            3.6rem
        );

    line-height: 1;

    letter-spacing: -.03em;

}


.about-guides__editorial p {

    max-width: 600px;

    margin:
        0
        0
        var(--space-lg);

    line-height: 1.8;

}


.about-guides__media {

    width: 100%;

    aspect-ratio: 4 / 3;

    margin: 0;

    overflow: hidden;

}


.about-guides__image {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

}


/*=========================================================
09 · SAFARI VEHICLES
=========================================================

This should feel more like a gateway to a dedicated
vehicle page than another giant photograph.
=========================================================*/

.about-vehicles {

    background: var(--ms-surface-soft);

}


.about-vehicles__stage {

    position: relative;

}


.about-vehicles__media {

    width: 100%;

    aspect-ratio: 16 / 9;

    margin: 0;

    overflow: hidden;

}


.about-vehicles__image {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.about-vehicles__editorial {

    position: relative;

    width: calc(100% - 2rem);

    margin:
        -2rem
        auto
        0;

    padding:
        var(--space-xl)
        var(--space-lg);

    background: var(--ms-surface);

    z-index: 2;

}


.about-vehicles__title,
.about-vehicles__editorial h3 {

    max-width: 600px;

    margin:
        0
        0
        var(--space-md);

    font-size:
        clamp(
            1.9rem,
            5vw,
            3.3rem
        );

    line-height: 1.03;

}


.about-vehicles__text {

    max-width: 620px;

    margin:
        0
        0
        var(--space-lg);

    line-height: 1.8;

}


/*=========================================================
10 · RESPONSIBLE TRAVEL
=========================================================

Less corporate.
More editorial.
Three principles with visual weight.
=========================================================*/

.about-responsibility {

    background: var(--ms-bg);

}


.about-responsibility__grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: var(--space-md);

}


.about-responsibility__item {

    position: relative;

    min-height: 240px;

    padding:
        var(--space-xl)
        var(--space-lg);

    background:
        var(--ms-surface-soft);

}


.about-responsibility__item > span {

    display: block;

    margin-bottom: 3rem;

    color: var(--ms-orange);

    font-size: .65rem;

    font-weight: 700;

    letter-spacing: .14em;

}


.about-responsibility__item h3 {

    margin:
        0
        0
        var(--space-sm);

    font-size:
        clamp(
            1.5rem,
            4vw,
            2.1rem
        );

    line-height: 1.05;

}


.about-responsibility__item p {

    max-width: 480px;

    margin: 0;

    font-size: .9rem;

    line-height: 1.75;

}


.about-responsibility__closing {

    max-width: 760px;

    margin:
        var(--space-2xl)
        auto
        0;

    text-align: center;

}


.about-responsibility__closing p {

    margin: 0;

    font-size:
        clamp(
            1.4rem,
            4vw,
            2.3rem
        );

    line-height: 1.25;

    letter-spacing: -.02em;

}


/*=========================================================
11 · TANZANIA FROM OUR PERSPECTIVE
=========================================================*/

.about-tanzania {

    background: var(--ms-surface-soft);

}


.about-tanzania__stage {

    display: grid;

    gap: var(--space-xl);

}


.about-tanzania__media {

    width: 100%;

    aspect-ratio: 5 / 4;

    margin: 0;

    overflow: hidden;

}


.about-tanzania__image {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.about-tanzania__editorial {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.about-tanzania__editorial h2 {

    max-width: 620px;

    margin:
        0
        0
        var(--space-md);

    font-size:
        clamp(
            2rem,
            6vw,
            3.8rem
        );

    line-height: 1;

    letter-spacing: -.035em;

}


.about-tanzania__editorial p {

    max-width: 650px;

    margin:
        0
        0
        var(--space-md);

    line-height: 1.8;

}


.about-tanzania__link {

    margin-top: var(--space-sm);

}


/*=========================================================
12 · JOURNEYS WITH MARAMATTA
=========================================================

This becomes a visual journey/timeline.
=========================================================*/

.about-journeys {

    background: var(--ms-bg);

}


.about-journeys__sequence {

    display: grid;

    grid-template-columns: 1fr;

}


.about-journeys__step {

    position: relative;

    display: grid;

    grid-template-columns: 42px 1fr;

    column-gap: var(--space-md);

    padding:
        var(--space-lg)
        0;

    border-top:
        1px solid
        rgba(39,73,33,.13);

}


.about-journeys__step:last-child {

    border-bottom:
        1px solid
        rgba(39,73,33,.13);

}


.about-journeys__step > span {

    grid-row: 1 / span 3;

    color: var(--ms-orange);

    font-size: .65rem;

    font-weight: 700;

    letter-spacing: .12em;

}


.about-journeys__step h3 {

    margin:
        0
        0
        .55rem;

    font-size:
        clamp(
            1.35rem,
            3vw,
            1.9rem
        );

    line-height: 1.08;

}


.about-journeys__step p {

    max-width: 520px;

    margin: 0;

    font-size: .92rem;

    line-height: 1.7;

}


.about-journeys__footer {

    margin-top: var(--space-xl);

}


/*=========================================================
13 · GUEST STORIES
=========================================================*/

.about-guest-stories {

    background: var(--ms-surface-soft);

}


.about-guest-stories
.guest-stories__intro {

    max-width: 720px;

    margin-inline: auto;

    text-align: center;

}


.about-guest-stories
.guest-stories__quote {

    margin:
        0
        0
        var(--space-2xl);

    font-size:
        clamp(
            2rem,
            7vw,
            4.5rem
        );

    line-height: .98;

    letter-spacing: -.04em;

}


.about-guest-stories
.guest-stories__reviews {

    width: 100%;

}


.about-guest-stories
.guest-stories__closing {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: var(--space-md);

    margin-top: var(--space-2xl);

    text-align: center;

}


.about-guest-stories
.guest-stories__closing p {

    margin: 0;

    font-size: 1rem;

}


.about-guest-stories
.guest-stories__link {

    display: inline-flex;

    align-items: center;

    gap: .6rem;

    color: var(--ms-green);

    font-size: .7rem;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;

}


/*=========================================================
14 · FINAL CTA
=========================================================*/

.about-final-cta {

    background: var(--ms-bg);

}


.about-final-cta__stage {

    position: relative;

    min-height:
        clamp(
            520px,
            72svh,
            720px
        );

    overflow: hidden;

}


.about-final-cta__media {

    position: absolute;

    inset: 0;

}


.about-final-cta__image {

    display: block;

    width: 100%;
    height: 100%;

    max-width: none !important;

    object-fit: cover;

    object-position: center;

}


.about-final-cta__overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15,25,13,.72),
            rgba(15,25,13,.25) 65%,
            rgba(15,25,13,.08)
        );

}


.about-final-cta__content {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: flex-end;

    min-height:
        clamp(
            520px,
            72svh,
            720px
        );

    padding:
        var(--space-xl)
        var(--space-md);

    color: var(--ms-white);

}


.about-final-cta__eyebrow {

    margin-bottom: var(--space-md);

    font-size: .65rem;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

}


.about-final-cta__title {

    max-width: 720px;

    margin:
        0
        0
        var(--space-md);

    color: var(--ms-white) !important;

    font-size:
        clamp(
            2.8rem,
            9vw,
            5.5rem
        );

    line-height: .94;

    letter-spacing: -.04em;

}


.about-final-cta__text {

    max-width: 560px;

    margin:
        0
        0
        var(--space-lg);

    color: rgba(255,255,255,.9);

    line-height: 1.7;

}


.about-final-cta__actions {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 1rem;

}


.about-final-cta__button {

    display: inline-flex;

    align-items: center;

    gap: .7rem;

}


.about-final-cta__link {

    display: inline-flex;

    align-items: center;

    min-height: 50px;

    color: var(--ms-white);

    font-size: .67rem;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;

    border-bottom:
        1px solid
        rgba(255,255,255,.5);

}


/*=========================================================
15 · TABLET
=========================================================*/

@media (min-width: 700px) {


    /* HERO */

    .about-hero__content {

        padding-inline:
            clamp(
                var(--space-lg),
                6vw,
                6rem
            );

    }


    /* STORY */

    .about-story__layout {

        grid-template-columns:
            minmax(0, .85fr)
            minmax(0, 1.15fr);

        align-items: center;

        gap: var(--space-3xl);

    }


    .about-story__media {

        aspect-ratio: 4 / 3;

    }


    /* BELIEFS */

    .about-beliefs__grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .about-beliefs__item {

        min-height: 300px;

    }


    /* PEOPLE */

    .about-people__feature {

        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(300px, .85fr);

        align-items: center;

        gap: var(--space-3xl);

    }


    /* APPROACH */

    .about-approach__chapter {

        grid-template-columns:
            70px
            minmax(0, 1fr)
            minmax(0, 1fr);

        column-gap: var(--space-lg);

    }


    .about-approach__number {

        grid-row: auto;

    }


    .about-approach__label {

        grid-column: 2;

    }


    .about-approach__chapter h3 {

        grid-column: 2;

    }


    .about-approach__chapter p {

        grid-column: 3;

        grid-row: 1 / span 2;

        align-self: center;

    }


    /* GUIDES */

    .about-guides__layout {

        grid-template-columns:
            minmax(300px, .8fr)
            minmax(0, 1.2fr);

        align-items: center;

        gap: var(--space-3xl);

    }


    /* RESPONSIBILITY */

    .about-responsibility__grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: var(--space-md);

    }


    /* TANZANIA */

    .about-tanzania__stage {

        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(300px, .9fr);

        align-items: center;

        gap: var(--space-3xl);

    }


    /* JOURNEYS */

    .about-journeys__step {

        grid-template-columns:
            70px
            minmax(240px, .7fr)
            minmax(0, 1fr);

        column-gap: var(--space-lg);

    }


    .about-journeys__step > span {

        grid-row: auto;

    }


    .about-journeys__step h3 {

        margin: 0;

    }


    .about-journeys__step p {

        align-self: center;

    }


    /* CTA */

    .about-final-cta__content {

        padding-inline:
            clamp(
                var(--space-xl),
                7vw,
                7rem
            );

    }

}


/*=========================================================
16 · DESKTOP
=========================================================*/

@media (min-width: 1100px) {


    /* HERO */

    .about-hero {

        min-height: 88vh;

    }


    .about-hero__stage {

        min-height: 88vh;

    }


    .about-hero__content {

        left:
            clamp(
                3rem,
                8vw,
                9rem
            );

        right: auto;

        width:
            min(
                650px,
                48vw
            );

        padding:
            0
            0
            clamp(
                4rem,
                8vh,
                7rem
            );

    }


    /* STORY */

    .about-story__layout {

        grid-template-columns:
            minmax(320px, .7fr)
            minmax(500px, 1.3fr);

        gap:
            clamp(
                var(--space-3xl),
                8vw,
                9rem
            );

    }


    .about-story__media {

        aspect-ratio: 4 / 3;

    }


    /* BELIEFS */

    .about-beliefs__grid {

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

    }


    .about-beliefs__item {

        min-height: 340px;

        padding:
            var(--space-xl)
            var(--space-lg);

    }


    /* PEOPLE */

    .about-people__feature {

        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(320px, .65fr);

        gap:
            clamp(
                var(--space-3xl),
                7vw,
                8rem
            );

    }


    .about-people__media {

        aspect-ratio: 16 / 10;

    }


    /* APPROACH */

    .about-approach__sequence {

        position: relative;

    }


    .about-approach__chapter {

        padding-block:
            var(--space-xl);

    }


    /* GUIDES */

    .about-guides__layout {

        grid-template-columns:
            minmax(320px, .75fr)
            minmax(0, 1.25fr);

        gap:
            clamp(
                var(--space-3xl),
                8vw,
                10rem
            );

    }


    .about-guides__media {

        aspect-ratio: 16 / 10;

    }


    /* VEHICLES */

    .about-vehicles__media {

        aspect-ratio: 16 / 8;

    }


    .about-vehicles__editorial {

        width:
            min(
                620px,
                55%
            );

        margin-top: -7rem;

        margin-right: 4rem;

        margin-left: auto;

        padding:
            var(--space-2xl);

    }


    /* RESPONSIBILITY */

    .about-responsibility__item {

        min-height: 300px;

        padding:
            var(--space-2xl);

    }


    /* TANZANIA */

    .about-tanzania__stage {

        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(320px, .65fr);

    }


    .about-tanzania__media {

        aspect-ratio: 16 / 10;

    }


    /* JOURNEYS */

    .about-journeys__step {

        padding-block:
            var(--space-xl);

    }


    /* CTA */

    .about-final-cta__stage,
    .about-final-cta__content {

        min-height:
            clamp(
                580px,
                70vh,
                740px
            );

    }

}


/*=========================================================
17 · LARGE DESKTOP
=========================================================*/

@media (min-width: 1500px) {


    .about-hero__title {

        font-size:
            clamp(
                5rem,
                6vw,
                7rem
            );

    }


    .about-beliefs__item {

        min-height: 360px;

    }


    .about-vehicles__editorial {

        margin-right: 6rem;

    }

}


/*=========================================================
18 · MOBILE REFINEMENT
=========================================================*/

@media (max-width: 699px) {


    /*
    Prevent oversized editorial spacing
    on narrow screens.
    */

    .about-story,
    .about-beliefs,
    .about-people,
    .about-approach,
    .about-guides,
    .about-vehicles,
    .about-responsibility,
    .about-tanzania,
    .about-journeys,
    .about-guest-stories {

        overflow: hidden;

    }


    /* Hero */

    .about-hero__content {

        padding-bottom:
            2.25rem;

    }


    .about-hero__title {

        max-width: 340px;

    }


    .about-hero__text {

        max-width: 390px;

    }


    .about-hero__actions {

        width: 100%;

    }


    .about-hero__button {

        width: 100%;

    }


    /* Story */

    .about-story__media {

        aspect-ratio: 4 / 3;

    }


    /* Beliefs */

    .about-beliefs__item {

        min-height: 260px;

    }


    /* People */

    .about-people__media {

        aspect-ratio: 4 / 3;

    }


    /* Vehicles */

    .about-vehicles__editorial {

        width:
            calc(100% - 1rem);

        margin-top:
            -1rem;

        padding:
            var(--space-lg);

    }


    /* Responsibility */

    .about-responsibility__item {

        min-height: 230px;

    }


    /* Final CTA */

    .about-final-cta__actions {

        width: 100%;

        align-items: flex-start;

    }


    .about-final-cta__button {

        width: 100%;

        justify-content: center;

    }

}


/*=========================================================
19 · IMAGE SAFETY
=========================================================*/

.about-landing img {

    max-width: 100%;

}


/*=========================================================
20 · ACCESSIBILITY / MOTION
=========================================================*/

@media (prefers-reduced-motion: reduce) {

    .about-hero__image,
    .about-story__link,
    .about-people__link,
    .about-guides__link,
    .about-vehicles__link,
    .about-tanzania__link,
    .about-journeys__link,
    .about-hero__button {

        transition: none;

    }

}