
/* =========================================================
   UNIVERSAL CSS
========================================================= */

:root {
    --bg: #f6f1ea;
    --gold: #a97a2f;
    --text-dark: #000;
    --card-border: #e8ded0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f3ed;
    color: #000;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    background: transparent;
    margin-bottom: 0;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    min-height: 95px;
    margin: 0 auto;
    padding: 22px 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 101;
}


/* ---------- Logo ---------- */

.brand-logo {
    display: block;
    width: 180px;
    height: auto;
    max-width: 100%;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 102;
}



/* ---------- Navigation ---------- */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    flex-wrap: nowrap;
    padding-top: 12px;
    position: relative;
    z-index: 102;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 5px 0;
    color: #000;
    font-size: 11px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin-top: 4px;
    background: #a97a2f;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #8a5d22;
}

.nav-link:hover::after {
    width: 100%;
}


/* ---------- Header Button ---------- */

.journey-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 42px;
    padding: 0 18px;
    border: 2px solid #a97a2f;
    border-radius: 3px;
    background: #a97a2f;
    color: #fffdf8;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all .3s ease;
}

.journey-button:hover {
    background: transparent;
    color: #a97a2f;
    border-color: #a97a2f;
}


/* =========================================================
   GENERAL TYPOGRAPHY
========================================================= */

.section-label {
    display: inline-block;
    color: #a97a2f;
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 1.5px;
}
/* 
.section-title {
    color: #35322e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.25;
} */
 .S4-flower-icon {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem 0;
    object-fit: contain;
}
.S4-flower-icon-IC {
    display: block;
    width: clamp(6.25rem, 7vw, 6.25rem);
    height: auto;
    margin: 0.7rem auto;
    object-fit: contain;
}
.gold-line,
.small-line,
.tiny-line {
    background: #a97a2f;
}

.gold-line {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px auto;
}
.gold-line-H {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px 0 10px 0;
    background: #a97a2f
}

.small-line {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px auto;;
}

.tiny-line {
    width: 3.125rem;
    height: 0.125rem;
    border-radius: 999px;
    margin: 20px auto;
}


/* =========================================================
   PHILOSOPHY HERO
   FULL BACKGROUND IMAGE
========================================================= */

.philosophy-hero {
    position: relative;

    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #f7f3ed;
}


/* =========================================================
   HERO IMAGE WRAPPER
   Actual HTML image is used as the background layer
========================================================= */

.hero-image-wrapper {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 1;

    pointer-events: none;
    isolation: isolate;
}


/* =========================================================
   HERO IMAGE BLEND
   Strong on right / light toward left
========================================================= */

.hero-image-wrapper::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,

            rgba(247, 243, 237, 1) 0%,

            rgba(247, 243, 237, 0.98) 10%,

            rgba(247, 243, 237, 0.92) 20%,

            rgba(247, 243, 237, 0.78) 30%,

            rgba(247, 243, 237, 0.55) 40%,

            rgba(247, 243, 237, 0.30) 52%,

            rgba(247, 243, 237, 0.10) 66%,

            rgba(247, 243, 237, 0.00) 80%,

            rgba(247, 243, 237, 0.00) 100%
        );
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {
    display: block;

    width: 100%;
    height: 100vh;

    max-width: none;

    object-fit: cover;
    object-position: right center;

    transition: transform 0.7s ease;
}


/* =========================================================
   HERO IMAGE HOVER
========================================================= */

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.025);
}


/* =========================================================
   HERO CONTENT
   Text remains on LEFT side
========================================================= */

.hero-content {
    position: relative;

    z-index: 5;

    width: 52%;
    max-width: 650px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        125px
        40px
        75px
        max(6.5vw, 55px);

    background: transparent;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
    max-width: 500px;
    color: #000;
    font-family: "Times New Roman";
    font-size: clamp(43px, 4vw, 59px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1.8px;
}

.hero-title em {
    color: #a97a2f;
    font-style: italic;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 430px;
    color: #000;
    font-weight: 500;
    font-family: "poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
}

/* ===========================
   BUTTONS
=========================== */

.R-H-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 20px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 42px;
    padding: 0 18px;
    border: 2px solid #a97a2f;
    border-radius: 3px;
    background: transparent;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all .3s ease;
}


.primary-btn:hover {
    background: #a97a2f;
    color: #fff;
}



/* =========================================================
   IMAGE SAFETY
========================================================= */

.hero-image,
.hero-image-wrapper img {
    max-width: none;
}


/* =========================================================
   RESPONSIVE SAFETY
========================================================= */

@media (max-width: 900px) {

    .philosophy-hero {
        min-height: 570px;
    }

    .hero-content {
        width: 100%;
        max-width: 650px;

        padding:
            120px
            40px
            70px
            40px;
    }

    .hero-image-wrapper {
        width: 100%;
    }

    .hero-image-wrapper::before {
        background:
            linear-gradient(
                90deg,
                rgba(247, 243, 237, 0.98) 0%,
                rgba(247, 243, 237, 0.90) 25%,
                rgba(247, 243, 237, 0.55) 45%,
                rgba(247, 243, 237, 0.15) 70%,
                rgba(247, 243, 237, 0) 100%
            );
    }
}

/* =========================================
   ACTIVITY PAGE
   Desktop Layout CSS
   ========================================= */


/* =========================================
   INTRO TEXT SECTION — 20VH
   ========================================= */

.activity-intro {
    height: 20vh;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #f5f1eb;
    padding: 30px 20px;
}

.activity-intro__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.activity-intro__quote {
    display: block;
    font-family: "Times New Roman";
    font-size: 50px;
    margin-top: 10px;
    line-height: 0.2;
    color: #a98b5c;
}

.activity-intro__content h2 {
    margin: 4px 0;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    line-height: 1.2;
    font-weight: 500;
    color: #000;
}

/* =========================================
   ZIG-ZAG MAIN WRAPPER
   ========================================= */

.activity-zigzag {
    width: 100%;
    display: flex;
    flex-direction: column;
}


/* =========================================
   EACH ZIG-ZAG ROW — 50VH
   ========================================= */

.activity-row {
    width: 100%;
    height: 50vh;
    min-height: 420px;
    display: flex;
    overflow: hidden;
    background: #f5f1eb;
}


/* =========================================
   IMAGE SIDE
   ========================================= */

.activity-row__image {
    width: 50%;
    height: 100%;
    flex: 0 0 50%;
    overflow: hidden;
    position: relative;
}

.activity-row__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}



/* =========================================
   TEXT SIDE
   ========================================= */

.activity-row__content {
    width: 50%;
    height: 100%;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5.5vw;
    background: #f5f1eb;
    box-sizing: border-box;
}


/* =========================================
   HEADING + CIRCULAR PNG ICON
   ========================================= */

.activity-row__heading {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 24px;
}

.activity-row__icon {
    width: clamp(5.75rem, 5vw, 4.5rem);
    height: clamp(5.75rem, 5vw, 4.5rem);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.activity-row__icon img {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    line-height: 1;
}


/* =========================================
   SECTION HEADINGS
   ========================================= */

.activity-row__heading h2 {
    margin: 0;
    font-family: "Times New Roman";
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    line-height: 1.2;
    font-weight: 500;
    color: #000;
}


/* =========================================
   DESCRIPTION
   ========================================= */

.activity-row__description {
    max-width: 620px;
    margin: 0 0 28px;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
    font-weight: 500;
    color: #000;
}


/* =========================================
   FOUR POINTS
   ========================================= */

.activity-row__points {
    width: 100%;
    max-width: 620px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 35px;
    row-gap: 12px;
}

.activity-row__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-family: "Poppins";
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    line-height: 1.5;
    color: #000;
}

.activity-point__icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Times New Roman";
    font-size: 12px;
    line-height: 1;
    color: #a97a2f;
}


/* =========================================
   ZIG-ZAG ORDER
   ========================================= */

.activity-row--image-left {
    flex-direction: row;
}

.activity-row--image-right {
    flex-direction: row;
}


/* =========================================
   SUBTLE IMAGE TREATMENT
   ========================================= */

.activity-row__image img {
    transition: transform 0.6s ease;
}

.activity-row__image:hover img {
    transform: scale(1.02);
}


/* =========================================
   MIDDLE MESSAGE SECTION — 15VH
   ========================================= */

.activity-message {
    height: 15vh;
    min-height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 25px 20px;

    background: #f5f1eb;
    box-sizing: border-box;
}

.activity-message__content {
    max-width: 850px;
}

.activity-message__content p {
    margin: 3px 0;

    font-family: "Times New Roman", serif;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.5;
    font-weight: 500;
    color: #000;
}


/* =========================================
   FINAL GREEN SECTION — 30VH
   ========================================= */

.activity-final {
    width: 100%;
    height: 30vh;
    min-height: 280px;
    position: relative;
    display: flex;
    overflow: hidden;
    background: #344a3d;
}


/* =========================================
   FINAL SECTION DECORATIVE PNG PATTERN
   ========================================= */

.activity-final__pattern {
    position: absolute;
    z-index: 1;
    width: 330px;
    height: 330px;
    left: -80px;
    bottom: -80px;
    object-fit: contain;
    opacity: 0.10;
    pointer-events: none;
    user-select: none;
}


/* =========================================
   FINAL TEXT AREA
   ========================================= */

.activity-final__content {
    width: 37%;
    height: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 3.5vw;
    padding-left: 120px;
    box-sizing: border-box;
}


/* =========================================
   FINAL HEADING
   ========================================= */

.activity-final__content h2 {
    margin: 0 0 14px;
    font-family: "Times New Roman", serif;
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    line-height: 1.2;
    font-weight: 500;
    color: #f5f1eb;
}


/* =========================================
   FINAL DESCRIPTION
   ========================================= */

.activity-final__content p {
    margin: 0 0 24px;
    font-family: "Times New Roman";
    font-size: clamp(0.75rem, 1.7vw, 1.875rem);
    line-height: 1.5;
    font-style: italic;
    font-weight: 500;
    color: #a97a2f;
}


/* =========================================
   FINAL BUTTON
   ========================================= */

.activity-final__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 42px;
    padding: 0 18px;
    border: 2px solid #a97a2f;
    border-radius: 3px;
    background: transparent;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all .3s ease;
}


.activity-final__button:hover {
    background: #a97a2f;
    color: #fff;
}


/* =========================================
   FINAL IMAGE AREA
   ========================================= */

.activity-final__image {
    width: 64%;
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.activity-final__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}
/* Subtle image effect */
.activity-final:hover .activity-final__image img {
    transform: scale(1.02);
}


/* =========================================
   IMAGE / GREEN BLEND
   ========================================= */

.activity-final__image::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 18%;
    height: 100%;

    z-index: 2;

    background: linear-gradient(
        to right,
        #344a3d 0%,
        rgba(52, 74, 61, 0.65) 35%,
        rgba(52, 74, 61, 0) 100%
    );

    pointer-events: none;
}


/* =========================================
   FINAL SECTION OVERALL OVERLAY
   ========================================= */

.activity-final::after {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 4;

    pointer-events: none;

    background: linear-gradient(
    90deg,
    rgba(65, 63, 48, 0.18) 0%,
    rgba(65, 63, 48, 0) 55%
);
}


/* =========================================
   Z-INDEX PROTECTION
   ========================================= */

.activity-final__content,
.activity-final__image,
.activity-final__pattern {
    isolation: isolate;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    min-height: 55px;

    background: #25261f;
    color: #e8dfd2;
}

.footer-container {
    width: 100%;
    max-width: 1400px;

    min-height: 55px;

    margin: 0 auto;

    padding: 10px 5.5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.footer-logo img {
    display: block;

    width: 150px;
    height: auto;

    max-width: 100%;

    object-fit: contain;
}

/* .footer-logo:hover {
    opacity: 0.75;
    transform: translateY(-1px);
} */

.footer-message {
    color: #a97a2f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-align: center;
}

.footer-phone {
    color: #f1e9dc;

    font-size: 12px;

    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

/* .footer-phone:hover {
    color: #c29a5e;
    transform: translateY(-1px);
} */

/* =========================================================
   RESPONSIVE CSS
   Paste this section BELOW your existing activity.css
   ========================================================= */


/* =========================================================
   TABLET
   Desktop layout remains the same.
   Only sizing / spacing is reduced.
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

    .site-header {
        width: 100%;
    }

    .header-container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .brand-logo {
        max-width: 150px;
        height: auto;
    }

    .menu-toggle {
        display: none !important;
    }

    .main-navigation {
        display: flex;
        align-items: center;
    }

    .nav-link {
        font-size: 10px;
    }

    .journey-button {
        font-size: 9px;
        padding: 10px 14px;
    }


    /* -------------------------
       PHILOSOPHY HERO
       ------------------------- */

    .philosophy-hero {
        min-height: 100vh;
    }

    .hero-content {
        padding-left: 45px;
        padding-right: 35px;
    }

    .hero-title {
        font-size: clamp(42px, 5vw, 65px);
        line-height: 1.03;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .section-label {
        font-size: 11px;
    }


    /* -------------------------
       INTRO SECTION
       ------------------------- */

    .activity-intro {
        height: 20vh;
        min-height: 170px;
        padding-left: 35px;
        padding-right: 35px;
    }

    .activity-intro__content {
        max-width: 760px;
    }

    .activity-intro__content p {
        font-size: clamp(18px, 2.2vw, 25px);
    }

    .activity-intro__quote {
        font-size: 36px;
    }

    .tiny-divider {
        margin-left: auto;
        margin-right: auto;
    }


    /* -------------------------
       ZIG-ZAG
       SAME DESKTOP STRUCTURE
       ------------------------- */

    .activity-row {
        height: 50vh;
        min-height: 390px;
    }

    .activity-row__image {
        width: 50%;
        flex: 0 0 50%;
    }

    .activity-row__content {
        width: 50%;
        flex: 0 0 50%;
        padding: 45px 4vw;
    }

    .activity-row__heading {
        gap: 17px;
        margin-bottom: 20px;
    }

    .activity-row__icon {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
    }

    .activity-row__icon img {
        width: 30px;
        height: 30px;
    }

    .activity-row__heading h2 {
        font-size: clamp(27px, 3vw, 39px);
    }

    .activity-row__description {
        font-size: 13px;
        line-height: 1.75;
        margin-bottom: 22px;
    }

    .activity-row__points {
        column-gap: 22px;
        row-gap: 10px;
    }

    .activity-row__points li {
        font-size: 11px;
    }


    /* -------------------------
       MID MESSAGE
       ------------------------- */

    .activity-message {
        height: 15vh;
        min-height: 120px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .activity-message__content p {
        font-size: clamp(18px, 2vw, 25px);
    }


    /* -------------------------
       FINAL GREEN SECTION
       ------------------------- */

    .activity-final {
        height: 45vh;
        min-height: 320px;
    }

    .activity-final__content {
        width: 40%;
        padding: 35px 3vw;
    }

    .activity-final__image {
        width: 60%;
    }

    .activity-final__content h2 {
        font-size: clamp(24px, 2.8vw, 35px);
    }

    .activity-final__content p {
        font-size: 16px;
    }

    .activity-final__pattern {
        width: 300px;
        height: 300px;
        left: -70px;
        bottom: -90px;
    }


    /* -------------------------
       FOOTER
       ------------------------- */

    .footer-container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .footer-logo img {
        max-width: 150px;
        height: auto;
    }

    .footer-message {
        font-size: 11px;
    }

    .footer-phone {
        font-size: 14px;
    }
}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 769px) {

    /* =====================================================
       HEADER
       ===================================================== */

    .site-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .header-container {
        width: 100%;
        min-height: 72px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 14px 20px;
        box-sizing: border-box;
    }

    .brand-logo {
        width: auto;
        max-width: 125px;
        height: auto;
        position: relative;
        z-index: 1002;
    }


    /* =====================================================
       MOBILE HAMBURGER
       ===================================================== */

    .menu-toggle {
        width: 36px;
        height: 32px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid #8a5d22;
        border-radius: 3px;
        background: transparent;
        cursor: pointer;
        flex-shrink: 0;
    }

    .menu-toggle span {
        width: 17px;
        height: 1.5px;
        background: #76501f;
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }


    /* =====================================================
       MOBILE NAVIGATION
       ===================================================== */

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 10px;
        background: rgba(248, 245, 239, 0.98);
        border: 1px solid #ded3c3;
        box-shadow:
            0 12px 30px rgba(60, 45, 30, 0.12);
        z-index: 200;
    }

    .main-navigation.menu-open {
        display: flex;
        animation: mobileMenuOpen 0.25s ease forwards;
    }

    .nav-link {
        width: 100%;
        padding: 11px 12px;

        font-size: 11px;

        border-bottom: 1px solid #e5dccf;
    }

     .nav-link::after {
        display: none;
    }


    .journey-button {
        margin-top: 10px;

        font-size: 10px;

        padding: 12px 20px;
    }


    @keyframes mobileMenuOpen {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* =====================================================
       HERO
       Mobile:
       Text LEFT
       Image RIGHT
       ===================================================== */

    .philosophy-hero {
        position: relative;

        width: 100%;
        min-height: 100vh;
        height: 100svh;

        display: flex;
        align-items: stretch;

        overflow: hidden;
    }


    /* Image becomes the right-side visual */
    .hero-image-wrapper {
        position: absolute;

        top: 0;
        right: 0;

        width: 67%;
        height: 100%;

        z-index: 1;

        overflow: hidden;
    }

    .hero-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        display: block;
    }


    /* =====================================================
       HERO TEXT OVER IMAGE
       VERY LIGHT CREAM OVERLAY
       ===================================================== */

    .hero-content {
        position: relative;

        width: 72%;
        min-height: 100%;

        display: flex;
        flex-direction: column;
        justify-content: center;

        padding: 95px 25px 45px 20px;

        box-sizing: border-box;

        z-index: 3;

        /*
         * Image should remain the main visual.
         * Cream/white overlay kept extremely subtle.
         */
        background:
            linear-gradient(
                90deg,
                rgba(245, 241, 235, 0.10) 0%,
                rgba(245, 241, 235, 0.08) 45%,
                rgba(245, 241, 235, 0.04) 75%,
                rgba(245, 241, 235, 0) 100%
            );
    }

    .section-label {
        margin-bottom: 14px;

        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .hero-title {
        margin: 0;

        font-size: clamp(35px, 10vw, 52px);
        line-height: 1.02;

        max-width: 360px;
    }

    .gold-divider {
        width: 55px;
        height: 1px;

        margin: 20px 0;
    }

    .hero-description {
        margin: 0;

        max-width: 270px;

        font-size: 11px;
        line-height: 1.7;
    }


    /* =====================================================
       ACTIVITY INTRO
       ===================================================== */

    .activity-intro {
        width: 100%;

        height: auto;
        min-height: 20vh;

        padding: 45px 25px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;

        box-sizing: border-box;
    }

    .activity-intro__content {
        width: 100%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .activity-intro__quote {
        font-size: 32px;
        line-height: 0.7;

        margin-bottom: 12px;
    }

    .activity-intro__content p {
        margin: 4px 0;

        font-size: clamp(17px, 5vw, 22px);
        line-height: 1.4;

        text-align: center;
    }

    .activity-intro .tiny-divider {
        display: block;

        margin-left: auto;
        margin-right: auto;

        margin-top: 18px;
    }


    /* =====================================================
       ZIG-ZAG WRAPPER
       ===================================================== */

    .activity-zigzag {
        width: 100%;
        display: flex;
        flex-direction: column;
    }


    /* =====================================================
       MOBILE ACTIVITY ROW
       EVERY ROW:
       IMAGE
       THEN TEXT
       ===================================================== */

    .activity-row,
    .activity-row--image-left,
    .activity-row--image-right {
        width: 100%;

        height: auto;
        min-height: 0;

        display: flex;
        flex-direction: column;

        overflow: visible;
    }


    /* =====================================================
       IMAGE ALWAYS FIRST
       ===================================================== */

    .activity-row__image {
        order: 1;

        width: 100%;
        flex: none;

        height: 45vh;
        min-height: 260px;
        max-height: 420px;

        overflow: hidden;
    }

    .activity-row__image img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;
        object-position: center;
    }


    /* =====================================================
       TEXT ALWAYS SECOND
       ===================================================== */

    .activity-row__content {
        order: 2;

        width: 100%;
        flex: none;

        height: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        padding: 55px 25px 60px;

        box-sizing: border-box;

        text-align: center;
    }


    /* =====================================================
       ICON ABOVE HEADING
       ===================================================== */

    .activity-row__heading {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 17px;

        margin: 0 0 20px;
    }

    .activity-row__icon {
        width: 62px;
        height: 62px;

        flex: 0 0 62px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0 auto;

        border-radius: 50%;
        box-sizing: border-box;
    }

    .activity-row__icon img {
        width: 38px;
        height: 38px;

        display: block;

        object-fit: contain;
        object-position: center;
    }


    /* =====================================================
       HEADING CENTER
       ===================================================== */

    .activity-row__heading h2 {
        width: 100%;

        margin: 0;

        text-align: center;

        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.12;
    }


    /* =====================================================
       DESCRIPTION CENTER
       ===================================================== */

    .activity-row__description {
        width: 100%;
        max-width: 500px;

        margin: 0 auto 27px;

        text-align: center;

        font-size: 13px;
        line-height: 1.8;
    }


    /* =====================================================
       FOUR POINTS
       ONE BELOW ANOTHER
       ===================================================== */

    .activity-row__points {
        width: 100%;
        max-width: 480px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }

    .activity-row__points li {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 9px;

        text-align: center;

        font-size: 12px;
        line-height: 1.5;
    }

    .activity-point__icon {
        width: 14px;
        height: 14px;

        flex: 0 0 14px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        font-size: 11px;
    }


    /* =====================================================
       MID MESSAGE
       ===================================================== */

    .activity-message {
        width: 100%;

        height: auto;
        min-height: 15vh;

        padding: 45px 25px;

        display: flex;
        align-items: center;
        justify-content: center;

        box-sizing: border-box;

        text-align: center;
    }

    .activity-message__content {
        width: 100%;
        max-width: 500px;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .activity-message__content p {
        margin: 3px 0;

        font-size: clamp(17px, 5vw, 22px);
        line-height: 1.4;

        text-align: center;
    }

    .activity-message .tiny-divider {
        display: block;

        margin-left: auto;
        margin-right: auto;

        margin-top: 18px;
    }


    /* =====================================================
       FINAL GREEN SECTION
       MOBILE:
       IMAGE
       TEXT
       BUTTON
       ===================================================== */

    .activity-final {
        width: 100%;

        height: auto;
        min-height: 0;

        display: flex;
        flex-direction: column;

        position: relative;

        overflow: hidden;

        background: #344a3d;
    }


    /* =====================================================
       FINAL IMAGE FIRST
       ===================================================== */

    .activity-final__image {
        order: 1;

        width: 100%;
        height: 48vh;

        min-height: 280px;
        max-height: 430px;

        position: relative;

        overflow: hidden;
    }

    .activity-final__image img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;
        object-position: center;
    }


    /* =====================================================
       KEEP GREEN GRADIENT / IMAGE BLEND
       ===================================================== */

    .activity-final__image::before {
        content: "";

        position: absolute;

        top: auto;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 45%;

        z-index: 2;

        background:
            linear-gradient(
                to top,
                #344a3d 0%,
                rgba(52, 74, 61, 0.75) 35%,
                rgba(52, 74, 61, 0) 100%
            );

        pointer-events: none;
    }


    /* =====================================================
       FINAL CONTENT
       CENTERED THEME
       ===================================================== */

    .activity-final__content {
        order: 2;

        width: 100%;
        height: auto;

        min-height: 290px;

        position: relative;
        z-index: 5;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        padding: 40px 25px 50px;

        box-sizing: border-box;

        background: #344a3d;

        text-align: center;
    }


    /* =====================================================
       PATTERN — LEFT SIDE / BUTTON SIDE
       ===================================================== */

    .activity-final__pattern {
        width: 210px;
        height: 210px;

        position: absolute;

        left: -45px;
        bottom: -35px;

        z-index: 3;

        display: block;

        object-fit: contain;

        opacity: 0.10;

        pointer-events: none;
        user-select: none;
    }


    /* =====================================================
       FINAL HEADING CENTER
       ===================================================== */

    .activity-final__content h2 {
        width: 100%;
        max-width: 360px;

        margin: 0 auto 13px;

        font-size: clamp(25px, 7vw, 34px);
        line-height: 1.15;

        text-align: center;
    }


    /* =====================================================
       FINAL DESCRIPTION CENTER
       ===================================================== */

    .activity-final__content p {
        width: 100%;
        max-width: 330px;

        margin: 0 auto 22px;

        font-size: 15px;
        line-height: 1.45;

        text-align: center;
    }


    /* =====================================================
       FINAL BUTTON CENTER
       ===================================================== */

    .activity-final__button {
        width: fit-content;

        display: inline-flex;

        align-items: center;
        justify-content: center;

        padding: 10px 15px;

        gap: 9px;

        margin: 0 auto;

        font-size: 9px;

        position: relative;
        z-index: 6;
    }

    .activity-final__button span {
        font-size: 14px;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .site-footer {
        width: 100%;
    }

    .footer-container {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        padding: 45px 20px;

        box-sizing: border-box;

        text-align: center;
    }

    .footer-logo {
        width: 100%;

        display: flex;
        justify-content: center;

        margin-bottom: 20px;
    }

    .footer-logo img {
        width: auto;
        max-width: 135px;
        height: auto;
    }

    .footer-message {
        width: 100%;
        max-width: 330px;

        margin: 0 auto 18px;

        font-size: 9px;
        line-height: 1.8;

        text-align: center;
    }

    .footer-phone {
        display: block;

        font-size: 13px;

        text-align: center;
    }
}



/* =========================================================
   VERY SMALL MOBILE DEVICES
   ========================================================= */

@media (max-width: 380px) {

    .header-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand-logo {
        max-width: 110px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }

    .menu-toggle span {
        width: 23px;
    }


    /* Hero */

    .hero-image-wrapper {
        width: 64%;
    }

    .hero-content {
        width: 76%;

        padding-left: 17px;
        padding-right: 18px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        max-width: 240px;
        font-size: 10px;
    }


    /* Intro */

    .activity-intro {
        padding-left: 18px;
        padding-right: 18px;
    }

    .activity-intro__content p {
        font-size: 16px;
    }


    /* Activity sections */

    .activity-row__image {
        height: 40vh;
        min-height: 240px;
    }

    .activity-row__content {
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .activity-row__icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .activity-row__icon img {
        width: 35px;
        height: 35px;
    }

    .activity-row__heading h2 {
        font-size: 27px;
    }

    .activity-row__description {
        font-size: 12px;
    }

    .activity-row__points {
        display: flex;
        flex-direction: column;
        max-width: 300px;
    }


    /* Mid message */

    .activity-message {
        padding-left: 18px;
        padding-right: 18px;
    }

    .activity-message__content p {
        font-size: 16px;
    }


    /* Final section */

    .activity-final__image {
        height: 40vh;
        min-height: 250px;
    }

    .activity-final__content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .activity-final__content h2 {
        font-size: 24px;
    }

    .activity-final__content p {
        font-size: 14px;
    }

    .activity-final__pattern {
        width: 180px;
        height: 180px;

        left: -38px;
        bottom: -30px;

        opacity: 0.10;
    }


    /* Footer */

    .footer-message {
        font-size: 8px;
    }
}